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

Function stepInRequest

src/debug/dart_debug_impl.ts:1129–1138  ·  view source on GitHub ↗
(response: DebugProtocol.StepInResponse, args: DebugProtocol.StepInArguments)

Source from the content-addressed store, hash-verified

1127 }
1128
1129 protected stepInRequest(response: DebugProtocol.StepInResponse, args: DebugProtocol.StepInArguments): void {
1130 const thread = this.threadManager.getThreadInfoFromNumber(args.threadId);
1131 if (!thread) {
1132 this.errorResponse(response, `No thread with id ${args.threadId}`);
1133 return;
1134 }
1135 thread.resume("Into").then(() => {
1136 this.sendResponse(response);
1137 }).catch((error) => this.errorResponse(response, `${error}`));
1138 }
1139
1140 protected stepOutRequest(response: DebugProtocol.StepOutResponse, args: DebugProtocol.StepOutArguments): void {
1141 const thread = this.threadManager.getThreadInfoFromNumber(args.threadId);

Callers

nothing calls this directly

Calls 3

sendResponseMethod · 0.80
resumeMethod · 0.45

Tested by

no test coverage detected