| 354 | } |
| 355 | |
| 356 | bool CheckNoSuchKeyError(CelValue value) { |
| 357 | return value.IsError() && |
| 358 | absl::StartsWith(value.ErrorOrDie()->message(), |
| 359 | cel::runtime_internal::kErrNoSuchKey); |
| 360 | } |
| 361 | |
| 362 | CelValue CreateMissingAttributeError(google::protobuf::Arena* arena, |
| 363 | absl::string_view missing_attribute_path) { |