(isolateId: string)
| 414 | } |
| 415 | |
| 416 | public pause(isolateId: string): Promise<DebuggerResult> { |
| 417 | return this.callMethod("pause", { isolateId }); |
| 418 | } |
| 419 | |
| 420 | // Into, Over, OverAsyncSuspension, and Out |
| 421 | public resume(isolateId: string, step?: string, frameIndex?: number): Promise<DebuggerResult> { |
no test coverage detected