()
| 1448 | } |
| 1449 | |
| 1450 | protected async tryDeleteBreakpoints(): Promise<boolean> { |
| 1451 | try { |
| 1452 | await this.miDebugger.sendCommand('break-delete'); |
| 1453 | return true; |
| 1454 | } |
| 1455 | catch (e) { |
| 1456 | this.handleMsg('log', `Could not delete all breakpoints. ${e}\n`); |
| 1457 | return false; |
| 1458 | } |
| 1459 | } |
| 1460 | |
| 1461 | protected disconnectRequest2( |
| 1462 | response: DebugProtocol.DisconnectResponse | DebugProtocol.Response, |
no test coverage detected