(type)
| 784 | return pass(type == "{" ? statement : expression); |
| 785 | } |
| 786 | function arrowBodyNoComma(type) { |
| 787 | findFatArrow(cx.stream, cx.state); |
| 788 | return pass(type == "{" ? statement : expressionNoComma); |
| 789 | } |
| 790 | function maybeTarget(noComma) { |
| 791 | return function (type) { |
| 792 | if (type == ".") return cont(noComma ? targetNoComma : target); |
nothing calls this directly
no test coverage detected