Sebastian Pfitzner
Sebastian Pfitzner
Both of those should be `-33000` I think. As far as I'm aware no-one is actually checking for the specific error code anyways, FWIW.
Turns out this works fine in JuliaSyntax (e.g. with `JuliaSyntax.parseall(Expr,join(('0' for _ in 1:5043000), ','));`). CSTParser is a bit more recursive and fails here for me: ``` julia> CSTParser.parse(repeat("0,",1043000)); ERROR:...
Yeah, I agree. "Go to references" already handles this case: 
FWIW, the LSP also defines the [textDocument/declaration](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_declaration) request, which could maybe do this?
I'm also not sure how e.g. VS Code shows "Go to definition" and "Go to declaration" or how the user would interact with them, FWIW.
That's a completely unrelated issue.
Your case is unrelated to this issue, which is about missing functionality in the test dir. Unless I misunderstood you and symbol resolution works fine in package files even with...
Is this on Julia 1.10+? Is your code using any fancy new syntactical constructs?
It's likely that you have a invalid Julia file somewhere in your workspace (or one with very deeply nested expression trees). I think the next release of the extension might...
Manually deleting the depot folder can help in these cases.