(args: DebugProtocol.SetExceptionBreakpointsArguments)
| 213 | } |
| 214 | |
| 215 | public setExceptionBreakpointsRequest(args: DebugProtocol.SetExceptionBreakpointsArguments): Promise<DebugProtocol.SetExceptionBreakpointsResponse> { |
| 216 | return this.send('setExceptionBreakpoints', args); |
| 217 | } |
| 218 | |
| 219 | public dataBreakpointInfoRequest(args: DebugProtocol.DataBreakpointInfoArguments): Promise<DebugProtocol.DataBreakpointInfoResponse> { |
| 220 | // After upgrading to TS 5.5, the return type doesn't appear to be picked up correctly from the overload so we need this |
no test coverage detected