(isolateId: string, objectId: string, offset?: number, count?: number)
| 427 | } |
| 428 | |
| 429 | public getObject(isolateId: string, objectId: string, offset?: number, count?: number): Promise<DebuggerResult> { |
| 430 | interface ObjectData { |
| 431 | isolateId: string, |
| 432 | objectId: string, |
| 433 | offset?: number, |
| 434 | count?: number, |
| 435 | } |
| 436 | const data: ObjectData = { isolateId, objectId, offset, count }; |
| 437 | return this.callMethod("getObject", data); |
| 438 | } |
| 439 | |
| 440 | public evaluate(isolateId: string, targetId: string, expression: string, disableBreakpoints: boolean | undefined): Promise<DebuggerResult> { |
| 441 | return this.callMethod("evaluate", { |
no test coverage detected