-
Notifications
You must be signed in to change notification settings - Fork 133
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
add a BreakpointMode for different types of breakpoints #460
Conversation
debugAdapterProtocol.json
Outdated
"breakpointModes": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/ChecksumAlgorithm" |
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.
Should it be #/definitions/BreakpointMode
instead?
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.
Oops, yes
Same suggestion as from the issue: I think we should add this to all of the breakpoint requests (missing: |
PR Updated. |
LGTM |
|
||
/** | ||
* A help text providing additional information about the breakpoint mode. | ||
* This string is typically shown as a hover and can be translated. |
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.
'label' could be translated too, right? Do we normally call this out?
"items": { | ||
"$ref": "#/definitions/BreakpointModeApplicability" | ||
}, | ||
"description": "Describes one or more type of breakpoint this mode applies to." |
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.
"description": "Describes one or more type of breakpoint this mode applies to." | |
"description": "Describes one or more types of breakpoints this mode applies to." |
Closes #454