| 58 | } // namespace common_internal |
| 59 | |
| 60 | std::string ParsedJsonMapValue::DebugString() const { |
| 61 | if (value_ == nullptr) { |
| 62 | return "{}"; |
| 63 | } |
| 64 | return internal::JsonMapDebugString(*value_); |
| 65 | } |
| 66 | |
| 67 | absl::Status ParsedJsonMapValue::SerializeTo( |
| 68 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
no test coverage detected