| 315 | |
| 316 | |
| 317 | bool DebuggerController::ExpectSingleStep(DebugStopReason reason) |
| 318 | { |
| 319 | // On macOS, the stop reason we get for a single step is also the Breakpoint. |
| 320 | // To keep things working, we loosen the check. |
| 321 | // TODO: check how it works on other systems |
| 322 | return (reason == SingleStep) || (reason == Breakpoint) || (reason == UnknownReason); |
| 323 | } |
| 324 | |
| 325 | |
| 326 | bool DebuggerController::Go() |
nothing calls this directly
no outgoing calls
no test coverage detected