(step?: string, frameIndex?: number)
| 322 | } |
| 323 | |
| 324 | public async resume(step?: string, frameIndex?: number): Promise<void> { |
| 325 | if (!this.paused || this.hasPendingResume || !this.manager.debugSession.vmService) |
| 326 | return; |
| 327 | |
| 328 | this.hasPendingResume = true; |
| 329 | try { |
| 330 | await this.manager.debugSession.vmService.resume(this.ref.id, step, frameIndex); |
| 331 | this.handleResumed(); |
| 332 | } finally { |
| 333 | this.hasPendingResume = false; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | public getScript(scriptRef: VMScriptRef): Promise<VMScript> { |
| 338 | const scriptId = scriptRef.id; |
no test coverage detected