diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-09-20 14:43:34 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-09-20 14:43:34 +0800 |
commit | a641c2658120f1091846085686b4a95b96ce4f04 (patch) | |
tree | 75a81e960255c0bf78247e8379b9e0406152ca2b /meta | |
parent | a1af5107dd53388d86902c13ae2e0125ebcbc158 (diff) | |
download | lua-language-server-a641c2658120f1091846085686b4a95b96ce4f04.zip |
add `__close` to `setmetatable`
fix #2335
Diffstat (limited to 'meta')
-rw-r--r-- | meta/template/basic.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/template/basic.lua b/meta/template/basic.lua index 44f62a46..4a9360fd 100644 --- a/meta/template/basic.lua +++ b/meta/template/basic.lua @@ -251,6 +251,9 @@ function setfenv(f, table) end ---#if VERSION == JIT or VERSION == 5.2 then ---@field __ipairs (fun(t):(fun(t,k,v):(integer|nil),any))|nil ---#end +---#if VERSION >= 5.4 then +---@field __close (fun(t,errobj):any)|nil +---#end ---#DES 'setmetatable' ---@param table table |