| 780 | } |
| 781 | |
| 782 | absl::Status LegacyMapValue::ListKeys( |
| 783 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 784 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 785 | google::protobuf::Arena* absl_nonnull arena, ListValue* absl_nonnull result) const { |
| 786 | CEL_ASSIGN_OR_RETURN(auto keys, impl_->ListKeys(arena)); |
| 787 | *result = ListValue{common_internal::LegacyListValue(keys)}; |
| 788 | return absl::OkStatus(); |
| 789 | } |
| 790 | |
| 791 | absl::Status LegacyMapValue::ForEach( |
| 792 | ForEachCallback callback, |
no test coverage detected