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