()
| 1395 | } |
| 1396 | |
| 1397 | private _onThreadResumed() { |
| 1398 | this._dap.with(dap => |
| 1399 | dap.continued({ |
| 1400 | threadId: this.id, |
| 1401 | allThreadsContinued: false, |
| 1402 | }), |
| 1403 | ); |
| 1404 | } |
| 1405 | |
| 1406 | public async setScriptSourceMapHandler( |
| 1407 | pause: boolean, |
no test coverage detected