MCPcopy Create free account
hub / github.com/Dart-Code/Dart-Code / getObject

Method getObject

src/debug/dart_debug_protocol.ts:429–438  ·  view source on GitHub ↗
(isolateId: string, objectId: string, offset?: number, count?: number)

Source from the content-addressed store, hash-verified

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", {

Callers 4

getScriptMethod · 0.80
variablesRequestFunction · 0.80
callToStringFunction · 0.80

Calls 1

callMethodMethod · 0.95

Tested by

no test coverage detected