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