(type)
| 383 | return expressionInner(type, true); |
| 384 | } |
| 385 | function parenExpr(type) { |
| 386 | if (type != "(") return pass() |
| 387 | return cont(pushlex(")"), expression, expect(")"), poplex) |
| 388 | } |
| 389 | function expressionInner(type, noComma) { |
| 390 | if (cx.state.fatArrowAt == cx.stream.start) { |
| 391 | var body = noComma ? arrowBodyNoComma : arrowBody; |