(x)
| 988 | function equalCursorPos(a, b) { return a.sticky == b.sticky && cmp(a, b) == 0 } |
| 989 | |
| 990 | function copyPos(x) {return Pos(x.line, x.ch)} |
| 991 | function maxPos(a, b) { return cmp(a, b) < 0 ? b : a } |
| 992 | function minPos(a, b) { return cmp(a, b) < 0 ? a : b } |
| 993 |
no test coverage detected