You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recent Julia versions support the renamed import syntax using Foo: Foo as Bar. Say Foo has the function baz. If I extend that function after the renamed import, i.e.
function Bar.baz()
#...end
the function definition gets flagged as "Possible method call error". That is, the language server seems to interpret this as a function call, not a definition of a new function.
The text was updated successfully, but these errors were encountered:
Recent Julia versions support the renamed import syntax
using Foo: Foo as Bar
. SayFoo
has the functionbaz
. If I extend that function after the renamed import, i.e.the function definition gets flagged as "Possible method call error". That is, the language server seems to interpret this as a function call, not a definition of a new function.
The text was updated successfully, but these errors were encountered: