(charCode: number)
| 560 | } |
| 561 | |
| 562 | private _attemptCharCode(charCode: number): boolean { |
| 563 | if (this._cursor.peek() === charCode) { |
| 564 | this._cursor.advance(); |
| 565 | return true; |
| 566 | } |
| 567 | return false; |
| 568 | } |
| 569 | |
| 570 | private _attemptCharCodeCaseInsensitive(charCode: number): boolean { |
| 571 | if (compareCharCodeCaseInsensitive(this._cursor.peek(), charCode)) { |
no test coverage detected