(charCode: number)
| 545 | } |
| 546 | |
| 547 | private _attemptCharCode(charCode: number): boolean { |
| 548 | if (this._cursor.peek() === charCode) { |
| 549 | this._cursor.advance(); |
| 550 | return true; |
| 551 | } |
| 552 | return false; |
| 553 | } |
| 554 | |
| 555 | private _attemptCharCodeCaseInsensitive(charCode: number): boolean { |
| 556 | if (compareCharCodeCaseInsensitive(this._cursor.peek(), charCode)) { |
no test coverage detected