| 1084 | } |
| 1085 | |
| 1086 | bool DbgEngAdapter::Go() |
| 1087 | { |
| 1088 | // TODO: we should have the debugger core to detect the failure and notify the user about it. |
| 1089 | // Currently, LLDB directly notifies such errors, which needs to be changed in the future. |
| 1090 | if (ExecStatus() != DEBUG_STATUS_BREAK) |
| 1091 | return false; |
| 1092 | |
| 1093 | m_lastOperationIsStepInto = false; |
| 1094 | if (this->m_debugControl->SetExecutionStatus(DEBUG_STATUS_GO) != S_OK) |
| 1095 | return false; |
| 1096 | |
| 1097 | m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient)); |
| 1098 | return true; |
| 1099 | } |
| 1100 | |
| 1101 | bool DbgEngAdapter::StepInto() |
| 1102 | { |
nothing calls this directly
no test coverage detected