(params, body, type)
| 2680 | return new NotExpr(expr); |
| 2681 | } |
| 2682 | function fn(params, body, type) { |
| 2683 | if (type === void 0) { type = null; } |
| 2684 | return new FunctionExpr(params, body, type); |
| 2685 | } |
| 2686 | function literal(value, type) { |
| 2687 | if (type === void 0) { type = null; } |
| 2688 | return new LiteralExpr(value, type); |
no outgoing calls
no test coverage detected