| 28 | } // unnamed namespace |
| 29 | |
| 30 | bool MIVariable::sessionIsAlive() const |
| 31 | { |
| 32 | if (!m_debugSession) |
| 33 | return false; |
| 34 | |
| 35 | IDebugSession::DebuggerState s = m_debugSession->state(); |
| 36 | return s != IDebugSession::NotStartedState |
| 37 | && s != IDebugSession::EndedState |
| 38 | && !m_debugSession->debuggerStateIsOn(s_shuttingDown); |
| 39 | } |
| 40 | |
| 41 | MIVariable::MIVariable(MIDebugSession *session, TreeModel* model, TreeItem* parent, |
| 42 | const QString& expression, const QString& display) |
nothing calls this directly
no test coverage detected