(type)
| 413 | } |
| 414 | } |
| 415 | function arrowBody(type) { |
| 416 | findFatArrow(cx.stream, cx.state); |
| 417 | if (type == "{") return pass(statement); |
| 418 | return pass(expression); |
| 419 | } |
| 420 | function arrowBodyNoComma(type) { |
| 421 | findFatArrow(cx.stream, cx.state); |
| 422 | if (type == "{") return pass(statement); |
nothing calls this directly
no test coverage detected