| 153 | } |
| 154 | |
| 155 | Expr CallExprOneArg(absl::string_view operation) { |
| 156 | Expr expr; |
| 157 | auto call = expr.mutable_call_expr(); |
| 158 | call->set_function(operation); |
| 159 | |
| 160 | auto arg = call->add_args(); |
| 161 | auto ident = arg->mutable_ident_expr(); |
| 162 | ident->set_name("a"); |
| 163 | return expr; |
| 164 | } |
| 165 | |
| 166 | Expr CallExprTwoArgs(absl::string_view operation) { |
| 167 | Expr expr; |
no test coverage detected