| 44 | } |
| 45 | |
| 46 | bool hasStartedSession() |
| 47 | { |
| 48 | IDebugSession::DebuggerState s = currentSessionState(); |
| 49 | return s != IDebugSession::NotStartedState && s != IDebugSession::EndedState; |
| 50 | } |
| 51 | |
| 52 | Variable::Variable(TreeModel* model, TreeItem* parent, |
| 53 | const QString& expression, |
no test coverage detected