| 452 | } |
| 453 | |
| 454 | bool IsAnyField(const FieldDescriptor* absl_nonnull field) { |
| 455 | return field->type() == FieldDescriptor::TYPE_MESSAGE && |
| 456 | field->message_type()->well_known_type() == |
| 457 | Descriptor::WELLKNOWNTYPE_ANY; |
| 458 | } |
| 459 | |
| 460 | absl::StatusOr<EquatableValue> MapValueAsEquatableValue( |
| 461 | google::protobuf::Arena* absl_nonnull arena, const DescriptorPool* absl_nonnull pool, |
no test coverage detected