MCPcopy Create free account
hub / github.com/WebFreak001/code-debug / continueRequest

Method continueRequest

src/mibase.ts:652–658  ·  view source on GitHub ↗
(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments)

Source from the content-addressed store, hash-verified

650 }
651
652 protected continueRequest(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments): void {
653 this.miDebugger.continue().then(done => {
654 this.sendResponse(response);
655 }, msg => {
656 this.sendErrorResponse(response, 2, `Could not continue: ${msg}`);
657 });
658 }
659
660 protected stepBackRequest(response: DebugProtocol.StepBackResponse, args: DebugProtocol.StepBackArguments): void {
661 this.miDebugger.step(true).then(done => {

Callers

nothing calls this directly

Calls 1

continueMethod · 0.65

Tested by

no test coverage detected