(type)
| 451 | return pass(type == "{" ? statement : expression); |
| 452 | } |
| 453 | function arrowBodyNoComma(type) { |
| 454 | findFatArrow(cx.stream, cx.state); |
| 455 | return pass(type == "{" ? statement : expressionNoComma); |
| 456 | } |
| 457 | function maybeTarget(noComma) { |
| 458 | return function(type) { |
| 459 | if (type == ".") return cont(noComma ? targetNoComma : target); |
nothing calls this directly
no test coverage detected