()
| 254 | } |
| 255 | |
| 256 | private advance() { |
| 257 | this.peek = ++this.index >= this.length ? chars.$EOF : this.input.charCodeAt(this.index); |
| 258 | } |
| 259 | |
| 260 | private scanToken(): Token | null { |
| 261 | const input = this.input; |
no outgoing calls
no test coverage detected