| 543 | #endif |
| 544 | |
| 545 | void DebugController::stopDebugger() { |
| 546 | if (m_currentSession) { |
| 547 | m_currentSession->stopDebugger(); |
| 548 | } |
| 549 | } |
| 550 | void DebugController::interruptDebugger() { |
| 551 | if (m_currentSession) { |
| 552 | m_currentSession->interruptDebugger(); |
no outgoing calls
no test coverage detected