diff options
author | fesily <fesil@foxmail.com> | 2023-05-11 11:58:40 +0800 |
---|---|---|
committer | fesily <fesil@foxmail.com> | 2023-05-11 11:58:40 +0800 |
commit | 568694644d498e6023747e3f8421a0eeafd9dd43 (patch) | |
tree | edfdd1ffce90d86b2b877f72396640efbf9c16cf /meta/template/basic.lua | |
parent | d7e59826b5dec2d6f4b9ba59f6d64af42c078edd (diff) | |
download | lua-language-server-568694644d498e6023747e3f8421a0eeafd9dd43.zip |
meta:support metatable
Diffstat (limited to 'meta/template/basic.lua')
-rw-r--r-- | meta/template/basic.lua | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/meta/template/basic.lua b/meta/template/basic.lua index c024b222..0bbf2f3d 100644 --- a/meta/template/basic.lua +++ b/meta/template/basic.lua @@ -209,9 +209,46 @@ function select(index, ...) end ---@return function function setfenv(f, table) end + +---@class metatable +---@field __mode 'v'|'k'|'kv' +---@field __metatable any +---@field __tostring fun(t):string +---@field __gc fun(t) +---@field __add fun(t1,t2):any +---@field __sub fun(t1,t2):any +---@field __mul fun(t1,t2):any +---@field __div fun(t1,t2):any +---@field __mod fun(t1,t2):any +---@field __pow fun(t1,t2):any +---@field __unm fun(t):any +---#if VERSION >= 5.3 then +---@field __idiv fun(t1,t2):any +---@field __band fun(t1,t2):any +---@field __bor fun(t1,t2):any +---@field __bxor fun(t1,t2):any +---@field __bnot fun(t):any +---@field __shl fun(t1,t2):any +---@field __shr fun(t1,t2):any +---#end +---@field __concat fun(t1,t2):any +---@field __len fun(t):integer +---@field __eq fun(t1,t2):boolean +---@field __lt fun(t1,t2):boolean +---@field __le fun(t1,t2):boolean +---@field __index table|fun(t,k) +---@field __newindex table|fun(t,k,v) +---@field __call fun(t,...) +---#if VERSION > 5.1 or VERSION == JIT then +---@field __pairs fun(t):fun(t,k,v) +---#end +---#if VERSION == JIT or VERSION == 5.2 then +---@field __ipairs fun(t):fun(t,k,v) +---#end + ---#DES 'setmetatable' ---@param table table ----@param metatable? table +---@param metatable? metatable ---@return table function setmetatable(table, metatable) end |