| 2648 | |
| 2649 | template <typename Base> |
| 2650 | absl::StatusOr<Value> ListValueMixin<Base>::Contains( |
| 2651 | const Value& other, |
| 2652 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 2653 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 2654 | google::protobuf::Arena* absl_nonnull arena) const { |
| 2655 | ABSL_DCHECK(descriptor_pool != nullptr); |
| 2656 | ABSL_DCHECK(message_factory != nullptr); |
| 2657 | ABSL_DCHECK(arena != nullptr); |
| 2658 | |
| 2659 | Value result; |
| 2660 | CEL_RETURN_IF_ERROR(static_cast<const Base*>(this)->Contains( |
| 2661 | other, descriptor_pool, message_factory, arena, &result)); |
| 2662 | return result; |
| 2663 | } |
| 2664 | |
| 2665 | template <typename Base> |
| 2666 | absl::StatusOr<Value> MapValueMixin<Base>::Get( |
no outgoing calls
no test coverage detected