| 315 | namespace { |
| 316 | |
| 317 | Value NonNullEnumValue(const google::protobuf::EnumValueDescriptor* absl_nonnull value) { |
| 318 | ABSL_DCHECK(value != nullptr); |
| 319 | return IntValue(value->number()); |
| 320 | } |
| 321 | |
| 322 | Value NonNullEnumValue(const google::protobuf::EnumDescriptor* absl_nonnull type, |
| 323 | int32_t number) { |
no test coverage detected