| 32 | |
| 33 | namespace { |
| 34 | bool rangesConnect(const KTextEditor::Range& firstRange, const KTextEditor::Range& secondRange) |
| 35 | { |
| 36 | return !firstRange.intersect(secondRange + KTextEditor::Range(0, -1, 0, +1)).isEmpty(); |
| 37 | } |
| 38 | |
| 39 | Declaration* declarationForChangedRange(KTextEditor::Document* doc, const KTextEditor::Range& changed) |
| 40 | { |
no test coverage detected