-
Notifications
You must be signed in to change notification settings - Fork 34.9k
Closed
Labels
debugDebug viewlet, configurations, breakpoints, adapter issuesDebug viewlet, configurations, breakpoints, adapter issues
Milestone
Description
- VSCode Version: 1.44.2
- OS Version: Windows 10 (2004)
Steps to Reproduce:
- Implement a DebugSession with a setBreakPointsRequest method
- Add some breakpoints to your code before submitting
- In
DebugSession.setBreakPointsRequest
return the "response" without adding a "breakpoints" array.
Does this issue occur when all extensions are disabled?: NA
My debug sessions are hanging (not proceeding to the "ConfigurationDoneRequest") with the following code:
protected setBreakPointsRequest(response: DebugProtocol.SetBreakpointsResponse, args: DebugProtocol.SetBreakpointsArguments): void {
this.sendResponse(response);
}
But proceed as expected with the following:
protected setBreakPointsRequest(response: DebugProtocol.SetBreakpointsResponse, args: DebugProtocol.SetBreakpointsArguments): void {
response.body = {
breakpoints: []
};
this.sendResponse(response);
}
The above code is quite old, so suspect this is a regression in VS Code
Metadata
Metadata
Assignees
Labels
debugDebug viewlet, configurations, breakpoints, adapter issuesDebug viewlet, configurations, breakpoints, adapter issues