(a, b)
| 3183 | |
| 3184 | // Operations on {line, ch} objects. |
| 3185 | function posEq(a, b) {return a.line == b.line && a.ch == b.ch;} |
| 3186 | function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);} |
| 3187 | function copyPos(x) {return {line: x.line, ch: x.ch};} |
| 3188 |
no outgoing calls
no test coverage detected