| 423 | } |
| 424 | |
| 425 | absl::Status MapBoolFieldToValue( |
| 426 | const google::protobuf::MapValueConstRef& value, |
| 427 | const google::protobuf::FieldDescriptor* absl_nonnull field, |
| 428 | google::protobuf::MessageLite* absl_nonnull result) { |
| 429 | ABSL_DCHECK_EQ(value.type(), field->cpp_type()); |
| 430 | ABSL_DCHECK(!field->is_repeated()); |
| 431 | ABSL_DCHECK_EQ(field->cpp_type(), FieldDescriptor::CPPTYPE_BOOL); |
| 432 | SetBoolValue(result, value.GetBoolValue()); |
| 433 | return absl::OkStatus(); |
| 434 | } |
| 435 | |
| 436 | absl::Status MapInt32FieldToValue( |
| 437 | const google::protobuf::MapValueConstRef& value, |
nothing calls this directly
no test coverage detected