summaryrefslogtreecommitdiff
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/template/basic.lua54
-rw-r--r--meta/template/debug.lua24
-rw-r--r--meta/template/io.lua64
-rw-r--r--meta/template/os.lua12
4 files changed, 77 insertions, 77 deletions
diff --git a/meta/template/basic.lua b/meta/template/basic.lua
index f3ebae94..f2f6a49c 100644
--- a/meta/template/basic.lua
+++ b/meta/template/basic.lua
@@ -13,18 +13,18 @@ arg = {}
function assert(v, message, ...) end
---@alias gcoptions
----|>'"collect"' # ---#DESTAIL 'cgopt.collect'
----| '"stop"' # ---#DESTAIL 'cgopt.stop'
----| '"restart"' # ---#DESTAIL 'cgopt.restart'
----| '"count"' # ---#DESTAIL 'cgopt.count'
----| '"step"' # ---#DESTAIL 'cgopt.step'
----| '"isrunning"' # ---#DESTAIL 'cgopt.isrunning'
+---|>"collect" # ---#DESTAIL 'cgopt.collect'
+---| "stop" # ---#DESTAIL 'cgopt.stop'
+---| "restart" # ---#DESTAIL 'cgopt.restart'
+---| "count" # ---#DESTAIL 'cgopt.count'
+---| "step" # ---#DESTAIL 'cgopt.step'
+---| "isrunning" # ---#DESTAIL 'cgopt.isrunning'
---#if VERSION >= 5.4 then
----| '"incremental"' # ---#DESTAIL 'cgopt.incremental'
----| '"generational"' # ---#DESTAIL 'cgopt.generational'
+---| "incremental" # ---#DESTAIL 'cgopt.incremental'
+---| "generational" # ---#DESTAIL 'cgopt.generational'
---#else
----| '"setpause"' # ---#DESTAIL 'cgopt.setpause'
----| '"setstepmul"' # ---#DESTAIL 'cgopt.setstepmul'
+---| "setpause" # ---#DESTAIL 'cgopt.setpause'
+---| "setstepmul" # ---#DESTAIL 'cgopt.setstepmul'
---#end
---#if VERSION >= 5.4 then
@@ -76,9 +76,9 @@ function getmetatable(object) end
function ipairs(t) end
---@alias loadmode
----| '"b"' # ---#DESTAIL 'loadmode.b'
----| '"t"' # ---#DESTAIL 'loadmode.t'
----|>'"bt"' # ---#DESTAIL 'loadmode.bt'
+---| "b" # ---#DESTAIL 'loadmode.b'
+---| "t" # ---#DESTAIL 'loadmode.t'
+---|>"bt" # ---#DESTAIL 'loadmode.bt'
---#if VERSION <= 5.1 and not JIT then
---#DES 'load<5.1'
@@ -197,7 +197,7 @@ function rawlen(v) end
function rawset(table, index, value) end
---#DES 'select'
----@param index integer|'"#"'
+---@param index integer|"#"
---@return any
---@nodiscard
function select(index, ...) end
@@ -229,16 +229,16 @@ function tonumber(e) end
function tostring(v) end
---@alias type
----| '"nil"'
----| '"number"'
----| '"string"'
----| '"boolean"'
----| '"table"'
----| '"function"'
----| '"thread"'
----| '"userdata"'
+---| "nil"
+---| "number"
+---| "string"
+---| "boolean"
+---| "table"
+---| "function"
+---| "thread"
+---| "userdata"
---#if VERSION == JIT then
----| '"cdata"'
+---| "cdata"
---#end
---#DES 'type'
@@ -249,13 +249,13 @@ function type(v) end
---#DES '_VERSION'
---#if VERSION == 5.1 then
-_VERSION = 'Lua 5.1'
+_VERSION = "Lua 5.1"
---#elseif VERSION == 5.2 then
-_VERSION = 'Lua 5.2'
+_VERSION = "Lua 5.2"
---#elseif VERSION == 5.3 then
-_VERSION = 'Lua 5.3'
+_VERSION = "Lua 5.3"
---#elseif VERSION == 5.4 then
-_VERSION = 'Lua 5.4'
+_VERSION = "Lua 5.4"
---#end
---@version >5.4
diff --git a/meta/template/debug.lua b/meta/template/debug.lua
index e7ac5911..9f48ee98 100644
--- a/meta/template/debug.lua
+++ b/meta/template/debug.lua
@@ -45,20 +45,20 @@ function debug.getfenv(o) end
function debug.gethook(co) end
---@alias infowhat string
----|+'"n"' # ---#DESTAIL 'infowhat.n'
----|+'"S"' # ---#DESTAIL 'infowhat.S'
----|+'"l"' # ---#DESTAIL 'infowhat.l'
----|+'"t"' # ---#DESTAIL 'infowhat.t'
+---|+"n" # ---#DESTAIL 'infowhat.n'
+---|+"S" # ---#DESTAIL 'infowhat.S'
+---|+"l" # ---#DESTAIL 'infowhat.l'
+---|+"t" # ---#DESTAIL 'infowhat.t'
---#if VERSION <= 5.1 and not JIT then
----|+'"u"' # ---#DESTAIL 'infowhat.u<5.1'
+---|+"u" # ---#DESTAIL 'infowhat.u<5.1'
---#else
----|+'"u"' # ---#DESTAIL 'infowhat.u>5.2'
+---|+"u" # ---#DESTAIL 'infowhat.u>5.2'
---#end
----|+'"f"' # ---#DESTAIL 'infowhat.f'
+---|+"f" # ---#DESTAIL 'infowhat.f'
---#if VERSION >= 5.4 then
----|+'"r"' # ---#DESTAIL 'infowhat.r'
+---|+"r" # ---#DESTAIL 'infowhat.r'
---#end
----|+'"L"' # ---#DESTAIL 'infowhat.L'
+---|+"L" # ---#DESTAIL 'infowhat.L'
---#DES 'debug.getinfo'
---@overload fun(f: integer|function, what?: infowhat):debuginfo
@@ -141,9 +141,9 @@ function debug.setcstacklimit(limit) end
function debug.setfenv(object, env) end
---@alias hookmask string
----|+'"c"' # ---#DESTAIL 'hookmask.c'
----|+'"r"' # ---#DESTAIL 'hookmask.r'
----|+'"l"' # ---#DESTAIL 'hookmask.l'
+---|+"c" # ---#DESTAIL 'hookmask.c'
+---|+"r" # ---#DESTAIL 'hookmask.r'
+---|+"l" # ---#DESTAIL 'hookmask.l'
---#DES 'debug.sethook'
---@overload fun(hook: (async fun(...):...), mask: hookmask, count?: integer)
diff --git a/meta/template/io.lua b/meta/template/io.lua
index a3420479..2200a626 100644
--- a/meta/template/io.lua
+++ b/meta/template/io.lua
@@ -11,18 +11,18 @@
io = {}
---@alias openmode
----|>'"r"' # ---#DESTAIL 'openmode.r'
----| '"w"' # ---#DESTAIL 'openmode.w'
----| '"a"' # ---#DESTAIL 'openmode.a'
----| '"r+"' # ---#DESTAIL 'openmode.r+'
----| '"w+"' # ---#DESTAIL 'openmode.w+'
----| '"a+"' # ---#DESTAIL 'openmode.a+'
----| '"rb"' # ---#DESTAIL 'openmode.rb'
----| '"wb"' # ---#DESTAIL 'openmode.wb'
----| '"ab"' # ---#DESTAIL 'openmode.ab'
----| '"r+b"' # ---#DESTAIL 'openmode.r+b'
----| '"w+b"' # ---#DESTAIL 'openmode.w+b'
----| '"a+b"' # ---#DESTAIL 'openmode.a+b'
+---|>"r" # ---#DESTAIL 'openmode.r'
+---| "w" # ---#DESTAIL 'openmode.w'
+---| "a" # ---#DESTAIL 'openmode.a'
+---| "r+" # ---#DESTAIL 'openmode.r+'
+---| "w+" # ---#DESTAIL 'openmode.w+'
+---| "a+" # ---#DESTAIL 'openmode.a+'
+---| "rb" # ---#DESTAIL 'openmode.rb'
+---| "wb" # ---#DESTAIL 'openmode.wb'
+---| "ab" # ---#DESTAIL 'openmode.ab'
+---| "r+b" # ---#DESTAIL 'openmode.r+b'
+---| "w+b" # ---#DESTAIL 'openmode.w+b'
+---| "a+b" # ---#DESTAIL 'openmode.a+b'
---#DES 'io.close'
---@param file? file*
@@ -59,8 +59,8 @@ function io.open(filename, mode) end
function io.output(file) end
---@alias popenmode
----| '"r"' # ---#DESTAIL 'popenmode.r'
----| '"w"' # ---#DESTAIL 'popenmode.w'
+---| "r" # ---#DESTAIL 'popenmode.r'
+---| "w" # ---#DESTAIL 'popenmode.w'
---#DES 'io.popen'
---@param prog string
@@ -82,9 +82,9 @@ function io.read(...) end
function io.tmpfile() end
---@alias filetype
----| '"file"' # ---#DESTAIL 'filetype.file'
----| '"closed file"' # ---#DESTAIL 'filetype.closed file'
----| 'nil' # ---#DESTAIL 'filetype.nil'
+---| "file" # ---#DESTAIL 'filetype.file'
+---| "closed file" # ---#DESTAIL 'filetype.closed file'
+---| `nil` # ---#DESTAIL 'filetype.nil'
---#DES 'io.type'
---@param file file*
@@ -103,20 +103,20 @@ local file = {}
---@alias readmode integer|string
---#if VERSION >= 5.3 then
----| '"n"' # ---#DESTAIL 'readmode.n'
----| '"a"' # ---#DESTAIL 'readmode.a'
----|>'"l"' # ---#DESTAIL 'readmode.l'
----| '"L"' # ---#DESTAIL 'readmode.L'
+---| "n" # ---#DESTAIL 'readmode.n'
+---| "a" # ---#DESTAIL 'readmode.a'
+---|>"l" # ---#DESTAIL 'readmode.l'
+---| "L" # ---#DESTAIL 'readmode.L'
---#else
----| '"*n"' # ---#DESTAIL 'readmode.n'
----| '"*a"' # ---#DESTAIL 'readmode.a'
----|>'"*l"' # ---#DESTAIL 'readmode.l'
+---| "*n" # ---#DESTAIL 'readmode.n'
+---| "*a" # ---#DESTAIL 'readmode.a'
+---|>"*l" # ---#DESTAIL 'readmode.l'
---#if JIT then
----| '"*L"' # ---#DESTAIL 'readmode.L'
+---| "*L" # ---#DESTAIL 'readmode.L'
---#end
---#end
----@alias exitcode '"exit"'|'"signal"'
+---@alias exitcode "exit"|"signal"
---#DES 'file:close'
---@return boolean? suc
@@ -140,9 +140,9 @@ function file:lines(...) end
function file:read(...) end
---@alias seekwhence
----| '"set"' # ---#DESTAIL 'seekwhence.set'
----|>'"cur"' # ---#DESTAIL 'seekwhence.cur'
----| '"end"' # ---#DESTAIL 'seekwhence.end'
+---| "set" # ---#DESTAIL 'seekwhence.set'
+---|>"cur" # ---#DESTAIL 'seekwhence.cur'
+---| "end" # ---#DESTAIL 'seekwhence.end'
---#DES 'file:seek'
---@param whence? seekwhence
@@ -152,9 +152,9 @@ function file:read(...) end
function file:seek(whence, offset) end
---@alias vbuf
----| '"no"' # ---#DESTAIL 'vbuf.no'
----| '"full"' # ---#DESTAIL 'vbuf.full'
----| '"line"' # ---#DESTAIL 'vbuf.line'
+---| "no" # ---#DESTAIL 'vbuf.no'
+---| "full" # ---#DESTAIL 'vbuf.full'
+---| "line" # ---#DESTAIL 'vbuf.line'
---#DES 'file:setvbuf'
---@param mode vbuf
diff --git a/meta/template/os.lua b/meta/template/os.lua
index fbc56ac1..102a9228 100644
--- a/meta/template/os.lua
+++ b/meta/template/os.lua
@@ -87,12 +87,12 @@ function os.remove(filename) end
function os.rename(oldname, newname) end
---@alias localecategory
----|>'"all"'
----| '"collate"'
----| '"ctype"'
----| '"monetary"'
----| '"numeric"'
----| '"time"'
+---|>"all"
+---| "collate"
+---| "ctype"
+---| "monetary"
+---| "numeric"
+---| "time"
---#DES 'os.setlocale'
---@param locale string|nil