| 489 | } |
| 490 | |
| 491 | void DebugSession::next(integer threadId, dap::optional<dap::SteppingGranularity> granularity) |
| 492 | { |
| 493 | NextRequest request; |
| 494 | request.threadId = threadId; |
| 495 | request.granularity = granularity; |
| 496 | editor.removeDebugLine(); |
| 497 | raw->next(request); |
| 498 | } |
| 499 | |
| 500 | void DebugSession::sendBreakpoints(const QString &sourcePath, dap::array<IBreakpoint> &breakpointsToSend) |
| 501 | { |
no test coverage detected