(type)
| 424 | return expressionInner(type, value, true); |
| 425 | } |
| 426 | function parenExpr(type) { |
| 427 | if (type != "(") return pass() |
| 428 | return cont(pushlex(")"), maybeexpression, expect(")"), poplex) |
| 429 | } |
| 430 | function expressionInner(type, value, noComma) { |
| 431 | if (cx.state.fatArrowAt == cx.stream.start) { |
| 432 | var body = noComma ? arrowBodyNoComma : arrowBody; |