Skip to content

Commit 778212a

Browse files
authored
Merge pull request #307 from julia-vscode/sp/fix-is-func-call
Fix is_func_call
2 parents 5c0cac8 + a130e47 commit 778212a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/interface.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,8 @@ function is_func_call(x::EXPR)
8282
return true
8383
elseif x.head === :where || isbracketed(x)
8484
return is_func_call(x.args[1])
85-
else
86-
return false
8785
end
86+
return false
8887
end
8988

9089

0 commit comments

Comments
 (0)