LanguageServer.jl icon indicating copy to clipboard operation
LanguageServer.jl copied to clipboard

Claims "missing reference" when loading files with includet

Open jarbus opened this issue 4 years ago • 0 comments

LanguageServer.jl can check calls with functions loaded using include, but when using Revise's includet, I'll get Missing reference: FUNCTION_NAME. Ex:

main.jl

using Revise
includet("foo.jl")
bar()      # <------ Missing reference: bar 

foo.jl

bar() = println("baz")

jarbus avatar Oct 31 '21 06:10 jarbus