()
| 6070 | } |
| 6071 | |
| 6072 | function peekToken() { |
| 6073 | if (tokens.length === 0) |
| 6074 | throw Error("Unexpected end of expression: " + text); |
| 6075 | return tokens[0]; |
| 6076 | } |
| 6077 | |
| 6078 | function peek(e1, e2, e3, e4) { |
| 6079 | if (tokens.length > 0) { |
no test coverage detected