(state: CursorState)
| 1720 | } |
| 1721 | |
| 1722 | protected updatePeek(state: CursorState): void { |
| 1723 | state.peek = state.offset >= this.end ? chars.$EOF : this.charAt(state.offset); |
| 1724 | } |
| 1725 | |
| 1726 | private locationFromCursor(cursor: this): ParseLocation { |
| 1727 | return new ParseLocation( |
no test coverage detected