(type)
| 352 | return expressionInner(type, false); |
| 353 | } |
| 354 | function expressionNoComma(type) { |
| 355 | return expressionInner(type, true); |
| 356 | } |
| 357 | function expressionInner(type, noComma) { |
| 358 | if (cx.state.fatArrowAt == cx.stream.start) { |
| 359 | var body = noComma ? arrowBodyNoComma : arrowBody; |
nothing calls this directly
no test coverage detected