(isolateId: string, targetId: string, expression: string, disableBreakpoints: boolean | undefined)
| 438 | } |
| 439 | |
| 440 | public evaluate(isolateId: string, targetId: string, expression: string, disableBreakpoints: boolean | undefined): Promise<DebuggerResult> { |
| 441 | return this.callMethod("evaluate", { |
| 442 | disableBreakpoints, |
| 443 | expression, |
| 444 | isolateId, |
| 445 | targetId, |
| 446 | }); |
| 447 | } |
| 448 | |
| 449 | public evaluateInFrame(isolateId: string, frameIndex: number, expression: string, disableBreakpoints: boolean | undefined): Promise<DebuggerResult> { |
| 450 | return this.callMethod("evaluateInFrame", { |
no test coverage detected