Support method breakpoints#424
Conversation
|
Overall, the new functionality works well. One concern is about the inner class case. Since we require binary name here, so user has to use |
Agreed, currently adding a function breakpoint from the BREAKPOINTS panel is very limited and we need a more user friendly way to guide the user in enabling function breakpoints. As a first release, I will keep the current implementation. I opened an issue in microsoft/vscode-java-debug#1183 and hope to improve function breakpoints in the next release. |
This reverts commit 9bb9832.
Add support for function breakpoint for java, this will resolve microsoft/vscode-java-debug#258. The current version support adding a function breakpoint with the following syntax.
FullyQualifiedClassName#methodNamelike
java.util.ArrayList#addThe current version doesn't consider parameter signatures.
This PR is based on PR #418, and addresses the additional issues as follows:
Thanks to the initial contribution from @gayanper.