(type)
| 418 | return pass(expression); |
| 419 | } |
| 420 | function arrowBodyNoComma(type) { |
| 421 | findFatArrow(cx.stream, cx.state); |
| 422 | if (type == "{") return pass(statement); |
| 423 | return pass(expressionNoComma); |
| 424 | } |
| 425 | function maybelabel(type) { |
| 426 | if (type == ":") return cont(poplex, statement); |
| 427 | return pass(maybeoperatorComma, expect(";"), poplex); |
nothing calls this directly
no test coverage detected