| 87 | } |
| 88 | |
| 89 | CelValue Get(google::protobuf::Arena* arena, int index) const override { |
| 90 | if (arena == nullptr) { |
| 91 | return (*this)[index]; |
| 92 | } |
| 93 | return CelValue::CreateError(google::protobuf::Arena::Create<absl::Status>( |
| 94 | arena, absl::InvalidArgumentError("index out of bounds"))); |
| 95 | } |
| 96 | |
| 97 | private: |
| 98 | absl::Status Get(size_t index, const google::protobuf::DescriptorPool* absl_nonnull, |
nothing calls this directly
no test coverage detected