(isolateId: string, step?: string, frameIndex?: number)
| 419 | |
| 420 | // Into, Over, OverAsyncSuspension, and Out |
| 421 | public resume(isolateId: string, step?: string, frameIndex?: number): Promise<DebuggerResult> { |
| 422 | return this.callMethod("resume", { isolateId, step, frameIndex }); |
| 423 | } |
| 424 | |
| 425 | public getStack(isolateId: string, limit: number | undefined): Promise<DebuggerResult> { |
| 426 | return this.callMethod("getStack", { isolateId, limit }); |
nothing calls this directly
no test coverage detected