MCPcopy Create free account
hub / github.com/Vector35/debugger / ExpectSingleStep

Method ExpectSingleStep

core/debuggercontroller.cpp:317–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

315
316
317bool 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
326bool DebuggerController::Go()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected