LanguageServer.jl
LanguageServer.jl copied to clipboard
References not resolvable in anonymous function with both positional and keyword arguments.
In the example below, both bar or baz are highlighted with "no definition found". If I remove the ; or make the inner function non-anonymous, name resolution works.
function foo()
function (bar; baz)
bar + baz
end
end