(char: number)
| 624 | } |
| 625 | |
| 626 | private _attemptUntilChar(char: number) { |
| 627 | while (this._cursor.peek() !== char) { |
| 628 | this._cursor.advance(); |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | private _attemptUntilIgnoreQuotes(predicate: (code: number) => boolean) { |
| 633 | while (this._cursor.peek() !== chars.$EOF) { |
no test coverage detected