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

Method continueIfNoMore

src/gdb.ts:1993–2000  ·  view source on GitHub ↗
(pendContinue: PendingContinue)

Source from the content-addressed store, hash-verified

1991 }
1992
1993 private continueIfNoMore(pendContinue: PendingContinue) {
1994 if (pendContinue.haveMore()) {
1995 } else if (pendContinue.shouldContinue) {
1996 this.disableSendStoppedEvents = false;
1997 pendContinue.shouldContinue = false;
1998 this.sendContinue();
1999 }
2000 }
2001
2002 private async doPauseExecContinue(createBreakpoints: () => Promise<void>, pendContinue: PendingContinue) {
2003 if (this.miDebugger.status !== 'running') { // May not even have started just yet

Callers 1

createBreakpointsMethod · 0.95

Calls 2

sendContinueMethod · 0.95
haveMoreMethod · 0.80

Tested by

no test coverage detected