(state: CursorState)
| 1705 | } |
| 1706 | |
| 1707 | protected updatePeek(state: CursorState): void { |
| 1708 | state.peek = state.offset >= this.end ? chars.$EOF : this.charAt(state.offset); |
| 1709 | } |
| 1710 | |
| 1711 | private locationFromCursor(cursor: this): ParseLocation { |
| 1712 | return new ParseLocation( |
no test coverage detected