diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-11-22 23:26:32 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-11-22 23:26:32 +0800 |
commit | d0ff66c9abe9d6abbca12fd811e0c3cb69c1033a (patch) | |
tree | bb34518d70b85de7656dbdbe958dfa221a3ff3b3 /libs/@lua/coroutine.lni | |
parent | 0a2c2ad15e1ec359171fb0dd4c72e57c5b66e9ba (diff) | |
download | lua-language-server-d0ff66c9abe9d6abbca12fd811e0c3cb69c1033a.zip |
整理一下目录结构
Diffstat (limited to 'libs/@lua/coroutine.lni')
-rw-r--r-- | libs/@lua/coroutine.lni | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/libs/@lua/coroutine.lni b/libs/@lua/coroutine.lni new file mode 100644 index 00000000..05db9038 --- /dev/null +++ b/libs/@lua/coroutine.lni @@ -0,0 +1,112 @@ +[coroutine] +type = 'table' +[[.source]] +type = 'global' +`````````` +type = 'library' +name = 'coroutine' + +<default> +type = 'function' +parent = { + 1 = { + type = 'global', + name = 'coroutine', + }, + 2 = { + type = 'library', + name = 'coroutine', + } +} + +[create] +[[.args]] +name = 'f' +type = 'function' +[[.returns]] +name = 'coroutine' +type = 'thread' + +[isyieldable] +[[.returns]] +type = 'boolean' + +['isyieldable Lua 5.4'] +name = isyieldable +version = 'Lua 5.4' +[[.args]] +name = co +type = thread +optional = after +[[.returns]] +type = boolean + +[close] +version = 'Lua 5.4' +[[.args]] +name = 'co' +type = 'thread' +[[.returns]] +name = 'noerror' +type = 'boolean' +````````` +name = 'errorobject' +type = 'any' + +[resume] +[[.args]] +name = 'co' +type = 'thread' +`````````` +name = 'val1' +optional = 'after' +`````````` +type = '...' +[[.returns]] +name = 'success' +type = 'boolean' +`````````` +name = 'result' +`````````` +type = '...' + +[running] +[[.returns]] +name = 'running_co' +type = 'thread' +`````````` +name = 'is_main' +type = 'boolean' + +[status] +[[.args]] +name = 'co' +type = 'thread' +[[.returns]] +name = 'status' +type = 'string' +[[.enums]] +name = 'status' +enum = '"running"' +`````````` +name = 'status' +enum = '"suspended"' +`````````` +name = 'status' +enum = '"normal"' +`````````` +name = 'status' +enum = '"dead"' + +[wrap] +[[.args]] +name = 'f' +type = 'function' +[[.returns]] +type = '...' + +[yield] +[[.args]] +type = '...' +[[.returns]] +type = '...' |