(a, b)
| 2984 | // Operations on {line, ch} objects. |
| 2985 | function posEq(a, b) {return a.line == b.line && a.ch == b.ch;} |
| 2986 | function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);} |
| 2987 | function copyPos(x) {return {line: x.line, ch: x.ch};} |
| 2988 | |
| 2989 | var escapeElement = document.createElement("pre"); |
no outgoing calls
no test coverage detected