Jinbo Wang

Results 332 comments of Jinbo Wang
trafficstars

@prumseycsi Would you mind sharing a screenshot to show the snippet you evaluate and the error message you get? thanks.

Cannot reproduce it with JDK 11. ![image](https://user-images.githubusercontent.com/14052197/165423410-9ac77b8f-ef5c-488e-b604-5222bba2d16c.png) What JDK version you're using? ![image](https://user-images.githubusercontent.com/14052197/165431532-36620cba-89eb-46b9-b30c-99f899f3c105.png)

@clankill3r Could you please provide more details about your case? It's better to provide the snippet and a sample project?

@clankill3r thanks for the snippet, I can reproduce it and it's a bug. I create a new issue to track your use case. https://github.com/microsoft/vscode-java-debug/issues/1169

@IzakMarais The java debug extension doesn't cache your java files to some temp directory. Not sure where it comes from. Can you share why there are cached versions in your...

The debugger will ask the language server to get the source mapping (file class) for current hitting location. And the source mapping relationship is built up by java language server...

The cached source mapping is placed at the directory `C:\Users\jinbwan\AppData\Roaming\Code\User\workspaceStorage`, cleaning up it will remove the cached data.

It looks like a bug at the underlying language server service. It caches external java files (don't belong to current vscode workspace folder) to current workspace mistakenly. If you could...

Look likes the newline is escaped, need to take a look with the upstream VS Code together about how to support that.

>If I understand the above comments correctly, remote debugging using vscode-java-debug currently requires the remote jvm debuggee be started with the jwdp agent with parameter "server=n" No, currently you need...