| 203 | } |
| 204 | |
| 205 | public setBreakpointsRequest(args: DebugProtocol.SetBreakpointsArguments): Promise<DebugProtocol.SetBreakpointsResponse> { |
| 206 | // After upgrading to TS 5.5, the return type doesn't appear to be picked up correctly from the overload so we need this |
| 207 | // cast 🤷♂️ |
| 208 | return this.send('setBreakpoints', args) as Promise<DebugProtocol.SetBreakpointsResponse>; |
| 209 | } |
| 210 | |
| 211 | public setFunctionBreakpointsRequest(args: DebugProtocol.SetFunctionBreakpointsArguments): Promise<DebugProtocol.SetFunctionBreakpointsResponse> { |
| 212 | return this.send('setFunctionBreakpoints', args); |