| 446 | |
| 447 | |
| 448 | bool DebuggerController::StepInto(BNFunctionGraphType il) |
| 449 | { |
| 450 | if (!CanResumeTarget()) |
| 451 | return false; |
| 452 | |
| 453 | std::thread([&, il]() { StepIntoAndWait(il); }).detach(); |
| 454 | |
| 455 | return true; |
| 456 | } |
| 457 | |
| 458 | |
| 459 | DebugStopReason DebuggerController::StepIntoAndWait(BNFunctionGraphType il) |
no test coverage detected