Jinbo Wang
Jinbo Wang
I don't think this is the correct approach to define two classes with the same name in the same namespace. This is not allowed by Java language. You must put...
**Impossible**. From the perspective of the build tool, what most concerned is about **classpath**. project, package, src are all used to help define the classpath. You didn't declare any packages,...
You may take a look at multi-root workspace. https://code.visualstudio.com/docs/editor/multi-root-workspaces. Root will be considered as a kind of isolation mechanism. Classes with same name in different root are allowed.
This is an interesting topic, we need have a conversation with team first. // @hexiaokai @akaroml
Which terminal are you using? Could you change the VS Code user setting `java.debug.settings.console` to `internalConsole` and try again?
Currently "Don't show again" button is only taking effect in current debug session. And this button only suppresses the cause of the same failure in the current debug session. Once...
Not supported yet. We didn't expose the timeout setting for the launching. We only expose the timeout in launch.json for remote debugging.
Could you share us a sample project for reproducing the issue?
The contextual menu is added statically. To support filter out those files without a main method, we have to watch the file changes to dynamically calculate the main method info...
For the screenshot you shared, actually that stack frame doesn't contain any local variables. The fix for the debugger is just to ignore the exception. But i have one question...