| 25 | } |
| 26 | |
| 27 | inline DocumentRange(const IndexedString& document, const KTextEditor::Range& range) |
| 28 | : KTextEditor::Range(range) |
| 29 | , document(document) |
| 30 | { |
| 31 | Q_ASSERT(document.toUrl() == document.toUrl().adjusted(QUrl::NormalizePathSegments)); |
| 32 | } |
| 33 | |
| 34 | inline bool operator==(const DocumentRange& rhs) const |
| 35 | { |
no test coverage detected