| 447 | } |
| 448 | |
| 449 | bool IsAny(const Message& message) { |
| 450 | return message.GetDescriptor()->well_known_type() == |
| 451 | Descriptor::WELLKNOWNTYPE_ANY; |
| 452 | } |
| 453 | |
| 454 | bool IsAnyField(const FieldDescriptor* absl_nonnull field) { |
| 455 | return field->type() == FieldDescriptor::TYPE_MESSAGE && |
no test coverage detected