| 74 | } |
| 75 | |
| 76 | static CallExpr MakeCall(absl::string_view name) { |
| 77 | CallExpr call; |
| 78 | call.set_function(std::string(name)); |
| 79 | call.set_target(nullptr); |
| 80 | return call; |
| 81 | } |
| 82 | |
| 83 | absl::Status Evaluate(absl::Span<const CelValue> args, CelValue* result, |
| 84 | google::protobuf::Arena* arena) const override { |
nothing calls this directly
no test coverage detected