| 358 | } |
| 359 | |
| 360 | CustomListValue ListValueBuilderImpl::BuildCustom() && { |
| 361 | if (elements_->empty()) { |
| 362 | return CustomListValue(EmptyCompatListValue(), arena_); |
| 363 | } |
| 364 | return CustomListValue(std::move(*this).BuildCompat(), arena_); |
| 365 | } |
| 366 | |
| 367 | const CompatListValue* absl_nonnull ListValueBuilderImpl::BuildCompat() && { |
| 368 | if (elements_->empty()) { |
no test coverage detected