MCPcopy Create free account
hub / github.com/Marus/cortex-debug / continueRequest

Method continueRequest

src/gdb.ts:3031–3044  ·  view source on GitHub ↗
(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments)

Source from the content-addressed store, hash-verified

3029 }
3030
3031 protected async continueRequest(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments): Promise<void> {
3032 try {
3033 if (this.args.ctiOpenOCDConfig?.enabled && this.args.ctiOpenOCDConfig?.resumeCommands && this.serverController.ctiStopResume) {
3034 this.serverController.ctiStopResume(CTIAction.resume);
3035 } else {
3036 const done = await this.miDebugger.continue(args.threadId);
3037 }
3038 response.body = { allThreadsContinued: true };
3039 this.sendResponse(response);
3040 }
3041 catch (msg) {
3042 this.sendErrorResponse(response, 2, `Could not continue: ${msg}`);
3043 }
3044 }
3045
3046 protected async stepInRequest(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments): Promise<void> {
3047 try {

Callers

nothing calls this directly

Calls 2

ctiStopResumeMethod · 0.65
continueMethod · 0.65

Tested by

no test coverage detected