Replies: 1 comment 1 reply
-
Thanks for the question! It used to be possible to go and search library sources by adding |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to debug into a dependency. I've been able to make this work by setting a breakpoint in my application code in a place where it gets called back from some place in the dependency. Then by clicking up the stack trace displayed in VSCode I can get metals to open the relevant dependency code at
.metals/readonly/dependencies\<jar-file>\...
. I can set additional breakpoints in that same source file since it is open on the screen. So far so good. However, I can't see how to set a breakpoint in a "sibling" dependency source file that hasn't been "magically" copied into the readonly hierarchy by clicking on a function in a stack trace. The only files there appear to be files that have already been opened by the stack trace clicking trick. Is there a secret to how to say "open a file in that jar please" so I can set breakpoints in it?Beta Was this translation helpful? Give feedback.
All reactions