| 212 | } |
| 213 | |
| 214 | Variable* DebuggerTestBase::variableChildAt(Variable* variable, int index) const |
| 215 | { |
| 216 | QVERIFY_RETURN(variable, nullptr); |
| 217 | const auto variableIndex = variableCollection()->indexForItem(variable, 0); |
| 218 | const auto childIndex = variableCollection()->index(index, 0, variableIndex); |
| 219 | return qobject_cast<Variable*>(variableCollection()->itemForIndex(childIndex)); |
| 220 | } |
| 221 | |
| 222 | Variable* DebuggerTestBase::watchVariableAt(int index) const |
| 223 | { |
nothing calls this directly
no test coverage detected