(isolateId: string, targetId: string, selector: string, argumentIds: string[], disableBreakpoints: boolean | undefined)
| 456 | } |
| 457 | |
| 458 | public invoke(isolateId: string, targetId: string, selector: string, argumentIds: string[], disableBreakpoints: boolean | undefined): Promise<DebuggerResult> { |
| 459 | return this.callMethod("invoke", { |
| 460 | argumentIds, |
| 461 | disableBreakpoints, |
| 462 | isolateId, |
| 463 | selector, |
| 464 | targetId, |
| 465 | }); |
| 466 | } |
| 467 | |
| 468 | public setLibraryDebuggable(isolateId: string, libraryId: string, isDebuggable: boolean): Promise<DebuggerResult> { |
| 469 | return this.callMethod("setLibraryDebuggable", { isolateId, libraryId, isDebuggable }); |
no test coverage detected