(state: CursorState)
| 1687 | } |
| 1688 | |
| 1689 | protected updatePeek(state: CursorState): void { |
| 1690 | state.peek = state.offset >= this.end ? chars.$EOF : this.charAt(state.offset); |
| 1691 | } |
| 1692 | |
| 1693 | private locationFromCursor(cursor: this): ParseLocation { |
| 1694 | return new ParseLocation( |
no test coverage detected