()
| 116 | return tokenList; |
| 117 | } |
| 118 | consumeUntilWhitespace() { |
| 119 | return this.consumeUntil(null, "WHITESPACE"); |
| 120 | } |
| 121 | // ----- Lookahead ----- |
| 122 | peekToken(value, peek, type) { |
| 123 | peek = peek || 0; |
nothing calls this directly
no test coverage detected