Skip to content

Commit 5abdc68

Browse files
committed
fix
1 parent 0d178e1 commit 5abdc68

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

script/parser/compile.lua

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2313,7 +2313,12 @@ local function parseFunction(isLocal, isAction)
23132313
local params
23142314
if func.name and func.name.type == 'getmethod' then
23152315
if func.name.type == 'getmethod' then
2316-
params = {}
2316+
params = {
2317+
type = 'funcargs',
2318+
start = funcRight,
2319+
finish = funcRight,
2320+
parent = func
2321+
}
23172322
params[1] = createLocal {
23182323
start = funcRight,
23192324
finish = funcRight,

0 commit comments

Comments
 (0)