| 1345 | } |
| 1346 | |
| 1347 | void DAPDebugger::exitDebug() |
| 1348 | { |
| 1349 | // Change UI. |
| 1350 | editor.removeDebugLine(); |
| 1351 | d->watchsModel.clear(); |
| 1352 | d->localsModel.clear(); |
| 1353 | d->currentDebugKit.clear(); |
| 1354 | |
| 1355 | d->localsModel.clear(); |
| 1356 | d->stackModel.removeAll(); |
| 1357 | |
| 1358 | d->threadId = 0; |
| 1359 | |
| 1360 | d->threads.clear(); |
| 1361 | d->threadSelector->clear(); |
| 1362 | } |
| 1363 | |
| 1364 | void DAPDebugger::updateRunState(DAPDebugger::RunState state) |
| 1365 | { |
nothing calls this directly
no test coverage detected