-
Notifications
You must be signed in to change notification settings - Fork 7
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
Removing breakpoint doesn't work #50
Comments
TODO: |
jcward
added a commit
that referenced
this issue
Mar 21, 2017
…o only mark/sweep bp's from the current file
ok it's now possible to remove the breakpoints at runtime but then it's not possible to set them back at the same line if need be. |
Interesting, thanks for the note @JohnSword, I'll check that out. |
Got it. Thanks for keeping me on my toes, @JohnSword! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looking at adapter.log, it appears I'm always sending
AddFileLineBreakpoint
commands. I need to keep a local representation of "added" breakpoints, then remove them when the list is updated.e.g. on adding breakpoint at line 19, vscode sends me:
And I send:
AddFileLineBreakpoint(Main.hx,19)
Adding on 24:
And I send:
AddFileLineBreakpoint(Main.hx,19)
AddFileLineBreakpoint(Main.hx,24)
Then removing 24:
And I send:
AddFileLineBreakpoint(Main.hx,19)
I need to maintain state and send DeleteFileLineBreakpoint.
The text was updated successfully, but these errors were encountered: