(charCode: number)
| 566 | } |
| 567 | |
| 568 | private _attemptCharCode(charCode: number): boolean { |
| 569 | if (this._cursor.peek() === charCode) { |
| 570 | this._cursor.advance(); |
| 571 | return true; |
| 572 | } |
| 573 | return false; |
| 574 | } |
| 575 | |
| 576 | private _attemptCharCodeCaseInsensitive(charCode: number): boolean { |
| 577 | if (compareCharCodeCaseInsensitive(this._cursor.peek(), charCode)) { |
no test coverage detected