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

Method evaluate

src/debug/dart_debug_protocol.ts:440–447  ·  view source on GitHub ↗
(isolateId: string, targetId: string, expression: string, disableBreakpoints: boolean | undefined)

Source from the content-addressed store, hash-verified

438 }
439
440 public evaluate(isolateId: string, targetId: string, expression: string, disableBreakpoints: boolean | undefined): Promise<DebuggerResult> {
441 return this.callMethod("evaluate", {
442 disableBreakpoints,
443 expression,
444 isolateId,
445 targetId,
446 });
447 }
448
449 public evaluateInFrame(isolateId: string, frameIndex: number, expression: string, disableBreakpoints: boolean | undefined): Promise<DebuggerResult> {
450 return this.callMethod("evaluateInFrame", {

Callers 3

variablesRequestFunction · 0.80
callToStringFunction · 0.80
evaluateRequestFunction · 0.80

Calls 1

callMethodMethod · 0.95

Tested by

no test coverage detected