(x)
| 498 | function equalCursorPos(a, b) { return a.sticky == b.sticky && cmp(a, b) == 0 } |
| 499 | |
| 500 | function copyPos(x) {return Pos(x.line, x.ch)} |
| 501 | function maxPos(a, b) { return cmp(a, b) < 0 ? b : a } |
| 502 | function minPos(a, b) { return cmp(a, b) < 0 ? a : b } |
| 503 |
no test coverage detected