summaryrefslogtreecommitdiff
path: root/script/proto/define.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script/proto/define.lua')
-rw-r--r--script/proto/define.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/script/proto/define.lua b/script/proto/define.lua
index a49a0ac1..b5e40c60 100644
--- a/script/proto/define.lua
+++ b/script/proto/define.lua
@@ -284,4 +284,19 @@ m.BuiltIn = {
['utf8'] = 'default',
}
+m.BuiltinClass = {
+ ['unknown'] = true,
+ ['any'] = true,
+ ['nil'] = true,
+ ['boolean'] = true,
+ ['number'] = true,
+ ['integer'] = true,
+ ['thread'] = true,
+ ['table'] = true,
+ ['string'] = true,
+ ['userdata'] = true,
+ ['lightuserdata'] = true,
+ ['Function'] = true,
+}
+
return m