| 485 | } |
| 486 | |
| 487 | void DAPDebugger::removeAllBreakpoints() |
| 488 | { |
| 489 | const auto &bps = d->breakpointModel.breakpointList(); |
| 490 | for (const auto &bp : bps) |
| 491 | removeBreakpoint(bp.filePath(), bp.lineNumber()); |
| 492 | } |
| 493 | |
| 494 | void DAPDebugger::switchBreakpointsStatus(const QString &filePath, int lineNumber, bool enabled) |
| 495 | { |
nothing calls this directly
no test coverage detected