| 1011 | |
| 1012 | |
| 1013 | DebugStopReason DebuggerController::StepOverAndWaitInternal() |
| 1014 | { |
| 1015 | m_userRequestedBreak = false; |
| 1016 | |
| 1017 | if (true /* StepOverAvailable() */) |
| 1018 | { |
| 1019 | return ExecuteAdapterAndWait(DebugAdapterStepOver); |
| 1020 | } |
| 1021 | else |
| 1022 | { |
| 1023 | // Emulate a step over |
| 1024 | return EmulateStepOverAndWait(); |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | |
| 1029 | void DebuggerController::LaunchOrConnect() |
nothing calls this directly
no outgoing calls
no test coverage detected