(value)
| 2349 | |
| 2350 | |
| 2351 | function expect(value) { |
| 2352 | var token = lex(); |
| 2353 | if (token.type !== Token.Punctuator || token.value !== value) { |
| 2354 | throwUnexpectedToken(token); |
| 2355 | } |
| 2356 | } |
| 2357 | |
| 2358 | function expectCommaSeparator() { |
| 2359 | var token; |
no test coverage detected