(line, ch)
| 331 | } |
| 332 | |
| 333 | function makeCursor(line, ch) { |
| 334 | return new Pos(line, ch); |
| 335 | } |
| 336 | |
| 337 | function offsetCursor(cur, offsetLine, offsetCh) { |
| 338 | return new Pos(cur.line + offsetLine, cur.ch + offsetCh); |
no outgoing calls
no test coverage detected