()
| 2262 | } |
| 2263 | |
| 2264 | private _getNextToken(): Token { |
| 2265 | let token = this._tokenizerOutput!.tokens.getItemAt(this._tokenIndex); |
| 2266 | if (!this._atEof()) { |
| 2267 | this._tokenIndex++; |
| 2268 | } |
| 2269 | |
| 2270 | return token; |
| 2271 | } |
| 2272 | |
| 2273 | private _atEof(): boolean { |
| 2274 | // Are we pointing at the last token in the stream (which is |
no test coverage detected