| 386 | } |
| 387 | |
| 388 | static expr make_binary_operator(expr left, expr right, nd::binary_operator_type type) |
| 389 | { |
| 390 | return expr(binary_operator_expr(std::move(left), std::move(right), type)); |
| 391 | } |
| 392 | |
| 393 | static expr make_ternary_operator(expr first, expr second, expr third, nd::ternary_operator_type type) |
| 394 | { |
nothing calls this directly
no test coverage detected