summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rw-r--r--script/parser/newparser.lua4
-rw-r--r--script/vm/compiler.lua2
2 files changed, 3 insertions, 3 deletions
diff --git a/script/parser/newparser.lua b/script/parser/newparser.lua
index 8b5e6ee8..e226417f 100644
--- a/script/parser/newparser.lua
+++ b/script/parser/newparser.lua
@@ -1749,13 +1749,13 @@ local function addDummySelf(node, call)
parent = call,
}
end
- local self = createLocal {
+ local self = {
+ type = 'self',
start = node.colon.start,
finish = node.colon.finish,
parent = call.args,
[1] = 'self',
}
- self.type = 'self'
tinsert(call.args, 1, self)
end
diff --git a/script/vm/compiler.lua b/script/vm/compiler.lua
index bbc6a333..7b6531aa 100644
--- a/script/vm/compiler.lua
+++ b/script/vm/compiler.lua
@@ -731,7 +731,7 @@ local function compileLocalBase(source)
local hasMarkParam
if source.type == 'self' and not hasMarkDoc then
hasMarkParam = true
- if source.parent.parent.type == 'call' then
+ if source.parent.type == 'callargs' then
-- obj:func(...)
vm.setNode(source, vm.compileNode(source.parent.parent.node.node))
else