(char: number)
| 639 | } |
| 640 | |
| 641 | private _attemptUntilChar(char: number) { |
| 642 | while (this._cursor.peek() !== char) { |
| 643 | this._cursor.advance(); |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | private _attemptUntilIgnoreQuotes(predicate: (code: number) => boolean) { |
| 648 | while (this._cursor.peek() !== chars.$EOF) { |
no test coverage detected