(a, b)
| 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 | |
| 994 | // Most of the external API clips given positions to make sure they |
| 995 | // actually exist within the document. |
no test coverage detected