()
| 510 | } |
| 511 | |
| 512 | private consumeCodePoint(): number { |
| 513 | const value = this._value.shift(); |
| 514 | |
| 515 | return typeof value === 'undefined' ? -1 : value; |
| 516 | } |
| 517 | |
| 518 | private reconsumeCodePoint(codePoint: number) { |
| 519 | this._value.unshift(codePoint); |
no outgoing calls
no test coverage detected