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

Method evaluateInFrame

src/debug/dart_debug_protocol.ts:449–456  ·  view source on GitHub ↗
(isolateId: string, frameIndex: number, expression: string, disableBreakpoints: boolean | undefined)

Source from the content-addressed store, hash-verified

447 }
448
449 public evaluateInFrame(isolateId: string, frameIndex: number, expression: string, disableBreakpoints: boolean | undefined): Promise<DebuggerResult> {
450 return this.callMethod("evaluateInFrame", {
451 disableBreakpoints,
452 expression,
453 frameIndex,
454 isolateId,
455 });
456 }
457
458 public invoke(isolateId: string, targetId: string, selector: string, argumentIds: string[], disableBreakpoints: boolean | undefined): Promise<DebuggerResult> {
459 return this.callMethod("invoke", {

Callers 2

evaluateRequestFunction · 0.80
evaluateAndSendErrorsFunction · 0.80

Calls 1

callMethodMethod · 0.95

Tested by

no test coverage detected