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

Function stepOutRequest

src/debug/dart_debug_impl.ts:1140–1149  ·  view source on GitHub ↗
(response: DebugProtocol.StepOutResponse, args: DebugProtocol.StepOutArguments)

Source from the content-addressed store, hash-verified

1138 }
1139
1140 protected stepOutRequest(response: DebugProtocol.StepOutResponse, args: DebugProtocol.StepOutArguments): void {
1141 const thread = this.threadManager.getThreadInfoFromNumber(args.threadId);
1142 if (!thread) {
1143 this.errorResponse(response, `No thread with id ${args.threadId}`);
1144 return;
1145 }
1146 thread.resume("Out").then(() => {
1147 this.sendResponse(response);
1148 }).catch((error) => this.errorResponse(response, `${error}`));
1149 }
1150
1151 protected restartFrameRequest(response: DebugProtocol.RestartFrameResponse, args: DebugProtocol.RestartFrameArguments): void {
1152 const frameId = args.frameId;

Callers

nothing calls this directly

Calls 3

sendResponseMethod · 0.80
resumeMethod · 0.45

Tested by

no test coverage detected