(pendContinue: PendingContinue)
| 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 |
no test coverage detected