(a:Position, b:Position)
| 155 | } |
| 156 | |
| 157 | export function samePosition(a:Position, b:Position) { |
| 158 | return comparePositions(a, b) === 0; |
| 159 | } |
| 160 | |
| 161 | export function whollyEnclosed(inner:Range, outer:Range) { |
| 162 | let left = comparePositions(inner.from, outer.from); |
no test coverage detected