diff options
author | fesily <fesil@foxmail.com> | 2022-07-09 08:57:48 +0800 |
---|---|---|
committer | fesily <fesil@foxmail.com> | 2022-07-09 08:57:48 +0800 |
commit | 1d97909ac5517493eaa959178cd8a86db5dab1e7 (patch) | |
tree | 9a7d97b927fdfba2cb61e967e61e51349877ce07 /script/proto/define.lua | |
parent | fd6b84b1f1fb910cac55278973623c8bcde36485 (diff) | |
download | lua-language-server-1d97909ac5517493eaa959178cd8a86db5dab1e7.zip |
table new/clear function actual use scenarios
Diffstat (limited to 'script/proto/define.lua')
-rw-r--r-- | script/proto/define.lua | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/script/proto/define.lua b/script/proto/define.lua index c73203f5..ecdaf306 100644 --- a/script/proto/define.lua +++ b/script/proto/define.lua @@ -165,21 +165,23 @@ m.TokenTypes = { } m.BuiltIn = { - ['basic'] = 'default', - ['bit'] = 'default', - ['bit32'] = 'default', - ['builtin'] = 'default', - ['coroutine'] = 'default', - ['debug'] = 'default', - ['ffi'] = 'default', - ['io'] = 'default', - ['jit'] = 'default', - ['math'] = 'default', - ['os'] = 'default', - ['package'] = 'default', - ['string'] = 'default', - ['table'] = 'default', - ['utf8'] = 'default', + ['basic'] = 'default', + ['bit'] = 'default', + ['bit32'] = 'default', + ['builtin'] = 'default', + ['coroutine'] = 'default', + ['debug'] = 'default', + ['ffi'] = 'default', + ['io'] = 'default', + ['jit'] = 'default', + ['math'] = 'default', + ['os'] = 'default', + ['package'] = 'default', + ['string'] = 'default', + ['table'] = 'default', + ['table.new'] = 'default', + ['table.clear'] = 'default', + ['utf8'] = 'default', } m.InlayHintKind = { |