| 1153 | } |
| 1154 | |
| 1155 | void DAPDebugger::slotBreakpointSelected(const QModelIndex &index) |
| 1156 | { |
| 1157 | Q_UNUSED(index); |
| 1158 | auto curBP = d->breakpointModel.currentBreakpoint(); |
| 1159 | editor.gotoLine(curBP.filePath, curBP.lineNumber - 1); |
| 1160 | } |
| 1161 | |
| 1162 | void DAPDebugger::slotGetChildVariable(const QModelIndex &index) |
| 1163 | { |
nothing calls this directly
no test coverage detected