| 45 | [[nodiscard]] inline bool isEmpty() const { return !firstLine.isValid() || (firstLine == lastLine && firstPos == lastPos); } |
| 46 | |
| 47 | void reset() |
| 48 | { |
| 49 | oldLastLine = lastLine; |
| 50 | oldFirstLine = firstLine; |
| 51 | firstLine.invalidate(); |
| 52 | lastLine.invalidate(); |
| 53 | } |
| 54 | |
| 55 | void start(LineRef l, qsizetype p) |
| 56 | { |
nothing calls this directly
no test coverage detected