(source: TokenStream['source'])
| 57 | private _token: Token; |
| 58 | |
| 59 | constructor(source: TokenStream['source']) { |
| 60 | this.source = source; |
| 61 | this.index = 0; |
| 62 | this.load(); |
| 63 | } |
| 64 | |
| 65 | private get eof(): boolean { |
| 66 | return (this.index >= this.source.length); |