Returns debug string describing a value
| 230 | |
| 231 | // Returns debug string describing a value |
| 232 | const std::string CelValue::DebugString() const { |
| 233 | google::protobuf::Arena arena; |
| 234 | return absl::StrCat(CelValue::TypeName(type()), ": ", |
| 235 | InternalVisit<std::string>(DebugStringVisitor{&arena})); |
| 236 | } |
| 237 | |
| 238 | namespace { |
| 239 |
no outgoing calls