| 1000 | } |
| 1001 | |
| 1002 | absl::Status ConvertToJsonObject( |
| 1003 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 1004 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 1005 | google::protobuf::Message* absl_nonnull json) const override { |
| 1006 | return MapValueToJsonObject(map_, descriptor_pool, message_factory, json); |
| 1007 | } |
| 1008 | |
| 1009 | CustomMapValue Clone(google::protobuf::Arena* absl_nonnull arena) const override { |
| 1010 | ABSL_DCHECK(arena != nullptr); |
nothing calls this directly
no test coverage detected