Skip to content

Commit cbb5b1d

Browse files
authored
Update plugins wiki page (#23)
#22
1 parent 6af68a8 commit cbb5b1d

File tree

1 file changed

+62
-6
lines changed

1 file changed

+62
-6
lines changed

src/content/wiki/plugins.mdx

+62-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
---
22
title: Plugins
33
description: Add support for a custom syntax that can export standard Lua.
4-
incomplete: true
54
---
65

7-
import Remark from "~/components/common/Remark.astro";
8-
import Icon from "~/components/common/Icon.astro";
6+
import Accordion from "~/components/common/Accordion.astro";
97

108
<video autoplay controls loop muted>
119
<source src="/videos/wiki/plugin-diff.webm" type="video/webm" />
1210
<source src="/videos/wiki/plugin-diff.mp4" type="video/mp4" />
1311
</video>
12+
<div align="center">*[View code](#demo-example)*</div>
13+
14+
## Introduction
15+
Plugins allow you to create a custom syntax that will then be output to a separate file. They cannot be used to report custom [diagnostics](/wiki/diagnostics).
1416

1517
## Template
1618

@@ -43,9 +45,8 @@ This function provides the uri and text of the file that has been edited and exp
4345
function OnSetText(uri, text) end
4446
```
4547

46-
## Example
47-
48-
The example [above](#plugins) uses the below code:
48+
<Accordion>
49+
<span slot="summary" id="demo-example">Example</span>
4950

5051
```Lua
5152
function OnSetText(uri, text)
@@ -75,3 +76,58 @@ function OnSetText(uri, text)
7576
return diffs
7677
end
7778
```
79+
80+
</Accordion>
81+
82+
### OnTransformAst
83+
This function provides the ability to modify `ast`.
84+
85+
After the token is generated and before the comments are compiled, so it is possible to modify ast directly and ensure that changes to the comments take effect as well.
86+
87+
You can return new one `ast` or modify the origin `ast`.
88+
89+
```Lua
90+
---@param uri string # The uri of file
91+
---@param ast parser.object # The file ast
92+
---@return parser.object? ast
93+
function OnTransformAst(uri, ast) end
94+
```
95+
96+
### VM.OnCompileFunctionParam
97+
This function modifies the behavior of a function when compiling (presumably) the type of its arguments.
98+
99+
`next` is the compiler's default behavior for functions. `func` is the function to be compiled, `param` is the parameter.
100+
If all functions return `false`, the parameter is defined as `any`.
101+
102+
```Lua
103+
---@param next fun(func:parser.object, param:parser.object) # Default behavior
104+
---@param func parser.object # The function
105+
---@param param parser.object # The param
106+
---@return boolean? ready # Already know the type.
107+
function VM.OnCompileFunctionParam(next, func, param) end
108+
```
109+
110+
<Accordion>
111+
<span slot="summary">Example</span>
112+
113+
```Lua
114+
local nodeHelper = reuqire 'nodeHelper'
115+
-- Create pattern that already matches code in the form of `*.components.`
116+
local pattern = nodeHelper.createFieldPattern("*.components")
117+
118+
function VM.OnCompileFunctionParam (next, func, param)
119+
-- Call the default
120+
if next(func, param) then
121+
return true -- If ready known the type, return true. Also you can continue
122+
end
123+
-- Try match pattern
124+
if nodeHelper.matchPattern(source, pattern) then
125+
-- Add a TestClass type to the parameters that match the pattern
126+
local type = vm.declareGlobal('type', 'TestClass', TESTURI)
127+
vm.setNode(source, vm.createNode(type, source))
128+
return true
129+
end
130+
end
131+
```
132+
133+
</Accordion>

0 commit comments

Comments
 (0)