summaryrefslogtreecommitdiff
path: root/script/proto/define.lua
diff options
context:
space:
mode:
authorfesily <fesil@foxmail.com>2022-07-09 08:57:48 +0800
committerfesily <fesil@foxmail.com>2022-07-09 08:57:48 +0800
commit1d97909ac5517493eaa959178cd8a86db5dab1e7 (patch)
tree9a7d97b927fdfba2cb61e967e61e51349877ce07 /script/proto/define.lua
parentfd6b84b1f1fb910cac55278973623c8bcde36485 (diff)
downloadlua-language-server-1d97909ac5517493eaa959178cd8a86db5dab1e7.zip
table new/clear function actual use scenarios
Diffstat (limited to 'script/proto/define.lua')
-rw-r--r--script/proto/define.lua32
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 = {