(line, ch)
| 2530 | // POSITION OBJECT |
| 2531 | |
| 2532 | function Pos(line, ch) { |
| 2533 | if (!(this instanceof Pos)) return new Pos(line, ch); |
| 2534 | this.line = line; this.ch = ch; |
| 2535 | } |
| 2536 | CodeMirror.Pos = Pos; |
| 2537 | |
| 2538 | function posEq(a, b) {return a.line == b.line && a.ch == b.ch;} |
no outgoing calls
no test coverage detected