|
1 | 1 | ---
|
2 | 2 | title: Plugins
|
3 | 3 | description: Add support for a custom syntax that can export standard Lua.
|
4 |
| -incomplete: true |
5 | 4 | ---
|
6 | 5 |
|
7 |
| -import Remark from "~/components/common/Remark.astro"; |
8 |
| -import Icon from "~/components/common/Icon.astro"; |
| 6 | +import Accordion from "~/components/common/Accordion.astro"; |
9 | 7 |
|
10 | 8 | <video autoplay controls loop muted>
|
11 | 9 | <source src="/videos/wiki/plugin-diff.webm" type="video/webm" />
|
12 | 10 | <source src="/videos/wiki/plugin-diff.mp4" type="video/mp4" />
|
13 | 11 | </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). |
14 | 16 |
|
15 | 17 | ## Template
|
16 | 18 |
|
@@ -43,9 +45,8 @@ This function provides the uri and text of the file that has been edited and exp
|
43 | 45 | function OnSetText(uri, text) end
|
44 | 46 | ```
|
45 | 47 |
|
46 |
| -## Example |
47 |
| - |
48 |
| -The example [above](#plugins) uses the below code: |
| 48 | +<Accordion> |
| 49 | +<span slot="summary" id="demo-example">Example</span> |
49 | 50 |
|
50 | 51 | ```Lua
|
51 | 52 | function OnSetText(uri, text)
|
@@ -75,3 +76,58 @@ function OnSetText(uri, text)
|
75 | 76 | return diffs
|
76 | 77 | end
|
77 | 78 | ```
|
| 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