| 35 | google::api::expr::runtime::CelValue legacy_value, |
| 36 | Value& result); |
| 37 | inline absl::StatusOr<Value> ModernValue( |
| 38 | google::protobuf::Arena* arena, google::api::expr::runtime::CelValue legacy_value) { |
| 39 | Value result; |
| 40 | CEL_RETURN_IF_ERROR(ModernValue(arena, legacy_value, result)); |
| 41 | return result; |
| 42 | } |
| 43 | |
| 44 | absl::StatusOr<google::api::expr::runtime::CelValue> LegacyValue( |
| 45 | google::protobuf::Arena* arena, const Value& modern_value); |