MCPcopy Index your code
hub / github.com/Marus/cortex-debug / launchErrorResponse

Method launchErrorResponse

src/gdb.ts:731–737  ·  view source on GitHub ↗
(response: DebugProtocol.LaunchResponse, code: number, msg: string)

Source from the content-addressed store, hash-verified

729 // However, send everything to the Debug Console anyways.
730 private errResponseSent = false;
731 private launchErrorResponse(response: DebugProtocol.LaunchResponse, code: number, msg: string) {
732 this.handleMsg('stderr', `Error ${code}: ` + msg.endsWith('\n') ? msg : msg + '\n');
733 if (!this.errResponseSent) {
734 this.errResponseSent = true;
735 this.sendErrorResponse(response, code, msg);
736 }
737 }
738
739 //
740 // Following function should never exist. The only way ST tools work is if the are run from the dir. where the

Callers 3

getGdbPathMethod · 0.95
startGdbMethod · 0.95

Calls 1

handleMsgMethod · 0.95

Tested by

no test coverage detected