summaryrefslogtreecommitdiff
path: root/script/parser/compile.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script/parser/compile.lua')
-rw-r--r--script/parser/compile.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/script/parser/compile.lua b/script/parser/compile.lua
index e1e07c54..207664cc 100644
--- a/script/parser/compile.lua
+++ b/script/parser/compile.lua
@@ -198,6 +198,9 @@ local vmMap = {
Compile(obj.index, obj)
Compile(obj.value, obj)
end,
+ ['tableexp'] = function (obj)
+ Compile(obj.value, obj)
+ end,
['index'] = function (obj)
Compile(obj.index, obj)
end,