-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Debug Adapter Protocol] - Sending BreakpointEvent for new breakpoints do not work for data breakpoints #406
Comments
My interpretation is that the existing breakpoint event in DAP can't do this, it would have to be extended to let you send along the info from |
I concur |
Probably true. So a better place to request this feature would be in the DAP-github? |
Rob already moved this issue to the DAP repo 🙂 |
Thanks a bunch! I'm going to close this issue then. |
This issue is now on the DAP repo, so we should keep it open to track |
Supporting this is a bit ugly because we have no way to go backwards from a
Neither are very nice. The latter is probably nicer, but I hesitate to add a whole other request for a very niche flow (we've had no other requests for this.) Since this issue was written there have been additional capabilities added, under |
When attempting to inform VSCode that a new data breakpoint has been created, for instance by using the debug console (so it doesn't go through the normal route of clicking on the watch variables etc), VSCode never registers it in the "Breakpoints" list - it only seems to be able to register them if they are normal breakpoints (and as such contains the source information).
So for instance, if I set a breakpoint using the debug console;
Vscode will register it. However, the same can not be said for data breakpoints, which only contain an id and the verified field.
Can VSCode only show watchpoints if they have gone through the
dataBreakpointInfo
request - and if so, why?The text was updated successfully, but these errors were encountered: