summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-11-10 16:30:23 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-11-10 16:30:23 +0800
commit6d96909f9040da4eec9ae62cf70bc03279bbad2c (patch)
tree316b955c55c57e2b1eec2e1dd87cc0d8794efaea
parent7d57597ac4b661d35723fea4de00b9048058efdc (diff)
downloadlua-language-server-6d96909f9040da4eec9ae62cf70bc03279bbad2c.zip
fix template docs
-rw-r--r--meta/template/basic.lua4
-rw-r--r--meta/template/coroutine.lua4
-rw-r--r--meta/template/debug.lua24
-rw-r--r--meta/template/jit.lua6
-rw-r--r--meta/template/string.lua2
5 files changed, 20 insertions, 20 deletions
diff --git a/meta/template/basic.lua b/meta/template/basic.lua
index b3eec153..9b6210e1 100644
--- a/meta/template/basic.lua
+++ b/meta/template/basic.lua
@@ -56,7 +56,7 @@ _G = {}
---@version 5.1
---#DES 'getfenv'
----@param f? integer|async fun()
+---@param f? integer|async fun(...):...
---@return table
---@nodiscard
function getfenv(f) end
@@ -204,7 +204,7 @@ function select(index, ...) end
---@version 5.1
---#DES 'setfenv'
----@param f async fun()|integer
+---@param f async fun(...):...|integer
---@param table table
---@return function
function setfenv(f, table) end
diff --git a/meta/template/coroutine.lua b/meta/template/coroutine.lua
index 6ff5d6de..e807f357 100644
--- a/meta/template/coroutine.lua
+++ b/meta/template/coroutine.lua
@@ -5,7 +5,7 @@
coroutine = {}
---#DES 'coroutine.create'
----@param f async fun()
+---@param f async fun(...):...
---@return thread
---@nodiscard
function coroutine.create(f) end
@@ -54,7 +54,7 @@ function coroutine.running() end
function coroutine.status(co) end
---#DES 'coroutine.wrap'
----@param f async fun()
+---@param f async fun(...):...
---@return fun(...):...
---@nodiscard
function coroutine.wrap(f) end
diff --git a/meta/template/debug.lua b/meta/template/debug.lua
index 7cb417b2..48ba52d9 100644
--- a/meta/template/debug.lua
+++ b/meta/template/debug.lua
@@ -63,7 +63,7 @@ function debug.gethook(co) end
---#DES 'debug.getinfo'
---@overload fun(f: integer|function, what?: infowhat):debuginfo
---@param thread thread
----@param f integer|async fun()
+---@param f integer|async fun(...):...
---@param what? infowhat
---@return debuginfo
---@nodiscard
@@ -81,9 +81,9 @@ function debug.getinfo(thread, f, what) end
function debug.getlocal(thread, level, index) end
---#else
---#DES 'debug.getlocal>5.2'
----@overload fun(f: integer|async fun(), index: integer):string, any
+---@overload fun(f: integer|async fun(...):..., index: integer):string, any
---@param thread thread
----@param f integer|async fun()
+---@param f integer|async fun(...):...
---@param index integer
---@return string name
---@return any value
@@ -103,7 +103,7 @@ function debug.getmetatable(object) end
function debug.getregistry() end
---#DES 'debug.getupvalue'
----@param f async fun()
+---@param f async fun(...):...
---@param up integer
---@return string name
---@return any value
@@ -146,11 +146,11 @@ function debug.setfenv(object, env) end
---|+'"l"' # ---#DESTAIL 'hookmask.l'
---#DES 'debug.sethook'
----@overload fun(hook: async fun(), mask: hookmask, count?: integer)
----@overload fun(thread: thread)
----@overload fun()
+---@overload fun(hook: (async fun(...):...), mask: hookmask, count?: integer)
+---@overload fun(thread: thread):...
+---@overload fun(...):...
---@param thread thread
----@param hook async fun()
+---@param hook async fun(...):...
---@param mask hookmask
---@param count? integer
function debug.sethook(thread, hook, mask, count) end
@@ -172,7 +172,7 @@ function debug.setlocal(thread, level, index, value) end
function debug.setmetatable(value, meta) end
---#DES 'debug.setupvalue'
----@param f async fun()
+---@param f async fun(...):...
---@param up integer
---@param value any
---@return string name
@@ -204,7 +204,7 @@ function debug.traceback(thread, message, level) end
---@version >5.2, JIT
---#DES 'debug.upvalueid'
----@param f async fun()
+---@param f async fun(...):...
---@param n integer
---@return lightuserdata id
---@nodiscard
@@ -212,9 +212,9 @@ function debug.upvalueid(f, n) end
---@version >5.2, JIT
---#DES 'debug.upvaluejoin'
----@param f1 async fun()
+---@param f1 async fun(...):...
---@param n1 integer
----@param f2 async fun()
+---@param f2 async fun(...):...
---@param n2 integer
function debug.upvaluejoin(f1, n1, f2, n2) end
diff --git a/meta/template/jit.lua b/meta/template/jit.lua
index c88377ed..d1684a04 100644
--- a/meta/template/jit.lua
+++ b/meta/template/jit.lua
@@ -9,17 +9,17 @@
---@field arch string
jit = {}
----@overload fun()
+---@overload fun(...):...
---@param func function|boolean
---@param recursive? boolean
function jit.on(func, recursive) end
----@overload fun()
+---@overload fun(...):...
---@param func function|boolean
---@param recursive? boolean
function jit.off(func, recursive) end
----@overload fun()
+---@overload fun(...):...
---@overload fun(tr: number)
---@param func function|boolean
---@param recursive? boolean
diff --git a/meta/template/string.lua b/meta/template/string.lua
index e8016f76..c68e1117 100644
--- a/meta/template/string.lua
+++ b/meta/template/string.lua
@@ -20,7 +20,7 @@ function string.byte(s, i, j) end
function string.char(byte, ...) end
---#DES 'string.dump'
----@param f async fun()
+---@param f async fun(...):...
---@param strip? boolean
---@return string
---@nodiscard