(isolateId: string)
| 378 | } |
| 379 | |
| 380 | public getIsolate(isolateId: string): Promise<DebuggerResult> { |
| 381 | return this.callMethod("getIsolate", { isolateId }); |
| 382 | } |
| 383 | |
| 384 | public on(streamId: string, callback: (event: VMEvent) => void): Promise<DebuggerResult> { |
| 385 | this.eventListeners[streamId] = callback; |
no test coverage detected