diff options
Diffstat (limited to 'script/vm/runner.lua')
-rw-r--r-- | script/vm/runner.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/script/vm/runner.lua b/script/vm/runner.lua index 43cbd155..793b4417 100644 --- a/script/vm/runner.lua +++ b/script/vm/runner.lua @@ -294,6 +294,8 @@ function mt:_lookInto(action, topNode, outNode) self:_lookInto(arg, topNode) end end + elseif action.type == 'paren' then + topNode, outNode = self:_lookInto(action.exp, topNode, outNode) else guide.eachSourceContain(action, top.finish, function(source) self:_lookInto(source, topNode) |