| 55 | } // namespace common_internal |
| 56 | |
| 57 | std::string ParsedJsonListValue::DebugString() const { |
| 58 | if (value_ == nullptr) { |
| 59 | return "[]"; |
| 60 | } |
| 61 | return internal::JsonListDebugString(*value_); |
| 62 | } |
| 63 | |
| 64 | absl::Status ParsedJsonListValue::SerializeTo( |
| 65 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
nothing calls this directly
no test coverage detected