| 554 | } |
| 555 | |
| 556 | void DebugController::run() { |
| 557 | if (m_continueStartsDebug) { |
| 558 | Core::self()->runControllerInternal()->debugCurrentLaunch(); |
| 559 | } else { |
| 560 | Q_ASSERT(m_currentSession); |
| 561 | m_currentSession->run(); |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | void DebugController::runToCursor() { |
| 566 | if (m_currentSession) { |
nothing calls this directly
no test coverage detected