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

Method doResolve

src/gdb.ts:501–506  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

499 private processLaunchAttachRequest(response: DebugProtocol.LaunchResponse, attach: boolean): Promise<void> {
500 return new Promise<void>((resolve) => {
501 const doResolve = () => {
502 if (resolve) {
503 resolve();
504 resolve = null;
505 }
506 };
507 const haveSymFiles = this.args.symbolFiles && (this.args.symbolFiles.length > 0);
508 if (!fs.existsSync(this.args.executable) && !haveSymFiles) {
509 this.sendErrorResponse(response, 103, `Unable to find executable file at ${this.args.executable}.`);

Callers

nothing calls this directly

Calls 3

isMIStatusStoppedMethod · 0.95
sendContinueMethod · 0.95
startCompleteMethod · 0.95

Tested by

no test coverage detected