| 144 | } |
| 145 | |
| 146 | absl::StatusOr<cel::Value> ResolveValue(const InputValue& input_value, |
| 147 | const CelTestContext& context, |
| 148 | google::protobuf::Arena* arena) { |
| 149 | return FromExprValue(input_value.value(), GetDescriptorPool(context), |
| 150 | GetMessageFactory(context), arena); |
| 151 | } |
| 152 | |
| 153 | absl::StatusOr<cel::Value> ResolveExpr(absl::string_view expr, |
| 154 | const CelTestContext& context, |
no test coverage detected