| 153 | } |
| 154 | |
| 155 | static CallExpr MakeCall() { |
| 156 | CallExpr call; |
| 157 | call.set_function("Sink"); |
| 158 | call.mutable_args().emplace_back(); |
| 159 | call.set_target(nullptr); |
| 160 | return call; |
| 161 | } |
| 162 | |
| 163 | absl::Status Evaluate(absl::Span<const CelValue> args, CelValue* result, |
| 164 | google::protobuf::Arena* arena) const override { |
nothing calls this directly
no test coverage detected