(isolateId: string, breakpointId: string)
| 410 | } |
| 411 | |
| 412 | public removeBreakpoint(isolateId: string, breakpointId: string) { |
| 413 | return this.callMethod("removeBreakpoint", { isolateId, breakpointId }); |
| 414 | } |
| 415 | |
| 416 | public pause(isolateId: string): Promise<DebuggerResult> { |
| 417 | return this.callMethod("pause", { isolateId }); |
no test coverage detected