(line, ch)
| 2265 | // POSITION OBJECT |
| 2266 | |
| 2267 | function Pos(line, ch) { |
| 2268 | if (!(this instanceof Pos)) return new Pos(line, ch); |
| 2269 | this.line = line; this.ch = ch; |
| 2270 | } |
| 2271 | CodeMirror.Pos = Pos; |
| 2272 | |
| 2273 | function posEq(a, b) {return a.line == b.line && a.ch == b.ch;} |
no outgoing calls
no test coverage detected