| 315 | } |
| 316 | |
| 317 | absl::Status CustomListValueInterface::Equal( |
| 318 | const ListValue& other, |
| 319 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 320 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 321 | google::protobuf::Arena* absl_nonnull arena, Value* absl_nonnull result) const { |
| 322 | return ListValueEqual(*this, other, descriptor_pool, message_factory, arena, |
| 323 | result); |
| 324 | } |
| 325 | |
| 326 | absl::Status CustomListValueInterface::Contains( |
| 327 | const Value& other, |
no test coverage detected