| 138 | } |
| 139 | |
| 140 | void MIDebugSession::markAllVariableDead() |
| 141 | { |
| 142 | for (auto* variable : std::as_const(m_allVariables)) { |
| 143 | variable->markAsDead(); |
| 144 | } |
| 145 | m_allVariables.clear(); |
| 146 | } |
| 147 | |
| 148 | bool MIDebugSession::restartAvaliable() const |
| 149 | { |
no test coverage detected