diff options
Diffstat (limited to 'script/core')
-rw-r--r-- | script/core/diagnostics/newfield-call.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/script/core/diagnostics/newfield-call.lua b/script/core/diagnostics/newfield-call.lua index 27ac6fce..fe86ad66 100644 --- a/script/core/diagnostics/newfield-call.lua +++ b/script/core/diagnostics/newfield-call.lua @@ -21,6 +21,9 @@ return function (uri, callback) if not call then goto CONTINUE end + if call.type ~= 'call' then + return + end local func = call.node local args = call.args if args then |