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

Method reverseContinueRequest

src/mibase.ts:644–650  ·  view source on GitHub ↗
(response: DebugProtocol.ReverseContinueResponse, args: DebugProtocol.ReverseContinueArguments)

Source from the content-addressed store, hash-verified

642 }
643
644 protected reverseContinueRequest(response: DebugProtocol.ReverseContinueResponse, args: DebugProtocol.ReverseContinueArguments): void {
645 this.miDebugger.continue(true).then(done => {
646 this.sendResponse(response);
647 }, msg => {
648 this.sendErrorResponse(response, 2, `Could not continue: ${msg}`);
649 });
650 }
651
652 protected continueRequest(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments): void {
653 this.miDebugger.continue().then(done => {

Callers

nothing calls this directly

Calls 1

continueMethod · 0.65

Tested by

no test coverage detected