Method
dataBreakpointInfoRequest
(args: DebugProtocol.DataBreakpointInfoArguments)
Source from the content-addressed store, hash-verified
| 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 |
| 221 | // cast 🤷♂️ |
| 222 | return this.send('dataBreakpointInfo', args) as Promise<DebugProtocol.DataBreakpointInfoResponse>; |
| 223 | } |
| 224 | |
| 225 | public setDataBreakpointsRequest(args: DebugProtocol.SetDataBreakpointsArguments): Promise<DebugProtocol.SetDataBreakpointsResponse> { |
| 226 | return this.send('setDataBreakpoints', args); |
Callers
nothing calls this directly
Tested by
no test coverage detected