(private readonly input: string)
| 238 | private braceStack: ('interpolation' | 'expression')[] = []; |
| 239 | |
| 240 | constructor(private readonly input: string) { |
| 241 | this.length = input.length; |
| 242 | this.advance(); |
| 243 | } |
| 244 | |
| 245 | scan(): Token[] { |
| 246 | let token = this.scanToken(); |