summaryrefslogtreecommitdiff
path: root/script/vm/compiler.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script/vm/compiler.lua')
-rw-r--r--script/vm/compiler.lua6
1 files changed, 1 insertions, 5 deletions
diff --git a/script/vm/compiler.lua b/script/vm/compiler.lua
index d0063d00..409b2f47 100644
--- a/script/vm/compiler.lua
+++ b/script/vm/compiler.lua
@@ -1494,14 +1494,10 @@ local compilerSwitch = util.switch()
if (source.parent.type == 'table') then
local node = vm.compileNode(source.parent)
for n in node:eachObject() do
- if (n.type == 'global'
- and n.cate == 'type') then
- vm.setNode(source, vm.compileNode(n))
- elseif n.type == 'doc.type.array' then
+ if n.type == 'doc.type.array' then
vm.setNode(source, vm.compileNode(n.node))
end
end
- return
end
vm.setNode(source, vm.compileNode(source.value))
end)