()
| 313 | } |
| 314 | |
| 315 | public handleResumed() { |
| 316 | this.manager.removeStoredData(this); |
| 317 | // TODO: Should we be waiting for acknowledgement before doing this? |
| 318 | this.atAsyncSuspension = false; |
| 319 | this.exceptionReference = 0; |
| 320 | this.paused = false; |
| 321 | this.pauseEvent = undefined; |
| 322 | } |
| 323 | |
| 324 | public async resume(step?: string, frameIndex?: number): Promise<void> { |
| 325 | if (!this.paused || this.hasPendingResume || !this.manager.debugSession.vmService) |
no test coverage detected