| 381 | } |
| 382 | |
| 383 | static expr make_unary_operator(expr operand, nd::unary_operator_type type) |
| 384 | { |
| 385 | return expr(unary_operator_expr(std::move(operand), type)); |
| 386 | } |
| 387 | |
| 388 | static expr make_binary_operator(expr left, expr right, nd::binary_operator_type type) |
| 389 | { |
nothing calls this directly
no test coverage detected