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

Method invoke

src/debug/dart_debug_protocol.ts:458–466  ·  view source on GitHub ↗
(isolateId: string, targetId: string, selector: string, argumentIds: string[], disableBreakpoints: boolean | undefined)

Source from the content-addressed store, hash-verified

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 });

Callers 1

callToStringFunction · 0.80

Calls 1

callMethodMethod · 0.95

Tested by

no test coverage detected