Skip to content

Commit

Permalink
Merge pull request #307 from julia-vscode/sp/fix-is-func-call
Browse files Browse the repository at this point in the history
Fix is_func_call
  • Loading branch information
pfitzseb authored Aug 8, 2021
2 parents 5c0cac8 + a130e47 commit 778212a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@ function is_func_call(x::EXPR)
return true
elseif x.head === :where || isbracketed(x)
return is_func_call(x.args[1])
else
return false
end
return false
end


Expand Down

0 comments on commit 778212a

Please sign in to comment.