| 566 | |
| 567 | |
| 568 | bool DebuggerController::StepOver(BNFunctionGraphType il) |
| 569 | { |
| 570 | if (!CanResumeTarget()) |
| 571 | return false; |
| 572 | |
| 573 | std::thread([&, il]() { StepOverAndWait(il); }).detach(); |
| 574 | |
| 575 | return true; |
| 576 | } |
| 577 | |
| 578 | |
| 579 | DebugStopReason DebuggerController::StepOverAndWait(BNFunctionGraphType il) |
no test coverage detected