(char: number)
| 645 | } |
| 646 | |
| 647 | private _attemptUntilChar(char: number) { |
| 648 | while (this._cursor.peek() !== char) { |
| 649 | this._cursor.advance(); |
| 650 | } |
| 651 | } |
| 652 | |
| 653 | private _readChar(): string { |
| 654 | // Don't rely upon reading directly from `_input` as the actual char value |
no test coverage detected