-
Notifications
You must be signed in to change notification settings - Fork 14.8k
[Dexter] Add DAP stepNext and stepOut support #152717
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
Conversation
5ae3f45
to
a963080
Compare
73804d1
to
2bb714e
Compare
) | ||
response = self._await_response(step_req_id) | ||
if not response["success"]: | ||
raise DebuggerException("failed to step") | ||
raise DebuggerException(f"failed to {step_request_string}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Slight nit, this message is good if we have stepIn or stepOut, but it may be slightly confusing if a user just gets the exception "failed to next" - maybe make it a little more explicit, like "failed to perform debugger action: '{step_request_string}'"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed, done
✅ With the latest revision this PR passed the Python code formatter. |
No description provided.