| 163 | } |
| 164 | |
| 165 | ParsedMessageValue ParsedMessageValue::Clone( |
| 166 | google::protobuf::Arena* absl_nonnull arena) const { |
| 167 | ABSL_DCHECK(arena != nullptr); |
| 168 | |
| 169 | if (arena_ == arena) { |
| 170 | return *this; |
| 171 | } |
| 172 | auto* cloned = value_->New(arena); |
| 173 | cloned->CopyFrom(*value_); |
| 174 | return ParsedMessageValue(cloned, arena); |
| 175 | } |
| 176 | |
| 177 | absl::Status ParsedMessageValue::GetFieldByName( |
| 178 | absl::string_view name, ProtoWrapperTypeOptions unboxing_options, |
nothing calls this directly
no test coverage detected