| 257 | } |
| 258 | |
| 259 | absl::Status ConvertToJsonArray( |
| 260 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 261 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 262 | google::protobuf::Message* absl_nonnull json) const override { |
| 263 | return ListValueToJsonArray(elements_, descriptor_pool, message_factory, |
| 264 | json); |
| 265 | } |
| 266 | |
| 267 | CustomListValue Clone(google::protobuf::Arena* absl_nonnull arena) const override { |
| 268 | ABSL_DCHECK(arena != nullptr); |
nothing calls this directly
no test coverage detected