| 179 | friend class common_internal::ListValueMixin<ParsedJsonListValue>; |
| 180 | |
| 181 | static absl::Status CheckListValue( |
| 182 | const google::protobuf::Message* absl_nullable message) { |
| 183 | return message == nullptr |
| 184 | ? absl::OkStatus() |
| 185 | : common_internal::CheckWellKnownListValueMessage(*message); |
| 186 | } |
| 187 | |
| 188 | static absl::Status CheckArena(const google::protobuf::Message* absl_nullable message, |
| 189 | google::protobuf::Arena* absl_nonnull arena) { |
nothing calls this directly
no test coverage detected