()
| 6446 | } |
| 6447 | |
| 6448 | function computedPropertyName() { |
| 6449 | advance("["); |
| 6450 | if (!state.option.esnext) { |
| 6451 | warning("W119", state.tokens.curr, "computed property names"); |
| 6452 | } |
| 6453 | var value = expression(10); |
| 6454 | advance("]"); |
| 6455 | return value; |
| 6456 | } |
| 6457 | function checkPunctuators(token, values) { |
| 6458 | return token.type === "(punctuator)" && _.contains(values, token.value); |
| 6459 | } |
no test coverage detected