(type)
| 497 | return pass(type == "{" ? statement : expression); |
| 498 | } |
| 499 | function arrowBodyNoComma(type) { |
| 500 | findFatArrow(cx.stream, cx.state); |
| 501 | return pass(type == "{" ? statement : expressionNoComma); |
| 502 | } |
| 503 | function maybeTarget(noComma) { |
| 504 | return function(type) { |
| 505 | if (type == ".") return cont(noComma ? targetNoComma : target); |
nothing calls this directly
no test coverage detected