-
Notifications
You must be signed in to change notification settings - Fork 42
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
Can not remove breakpoint when debugging #330
Comments
It looks like the logic that compares breakpoints is incorrect in regards (probably) to
I think this happens because the first request from Theia has The adapter relies on comparing original-location to identify matching files. Since the files don't match, we assume the second request is about a different file. For the adapter we could use a case-insensitive comparison, but it would be really useful if Theia sent canonical file names to the backend too. |
Discussed in eclipse-cdt-cloud/cdt-cloud#42
Originally posted by wss29 July 2, 2024
I set a breakpoint in a loop code when debugging I click to remove the breakpoint, but I find it will be triggered at the point in the next loop
The text was updated successfully, but these errors were encountered: