()
| 367 | } |
| 368 | |
| 369 | private configurationDone(): Promise<DebugProtocol.Response> { |
| 370 | if (this._supportsConfigurationDoneRequest) { |
| 371 | return this.configurationDoneRequest(); |
| 372 | } else { |
| 373 | // if debug adapter doesn't support the configurationDoneRequest we have to send the setExceptionBreakpointsRequest. |
| 374 | return this.setExceptionBreakpointsRequest({ filters: ['all'] }); |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | public waitForStop(reason?: string, description?: string): Promise<DebugProtocol.Event> { |
| 379 | return this.waitForEvent( |
no test coverage detected