| 204 | } |
| 205 | |
| 206 | absl::StatusOr<ErrorValue> AttributeUtility::CreateMissingAttributeError( |
| 207 | const cel::Attribute& attr) const { |
| 208 | CEL_ASSIGN_OR_RETURN(std::string message, attr.AsString()); |
| 209 | return cel::ErrorValue( |
| 210 | cel::runtime_internal::CreateMissingAttributeError(message)); |
| 211 | } |
| 212 | |
| 213 | UnknownValue AttributeUtility::CreateUnknownSet( |
| 214 | const cel::FunctionDescriptor& fn_descriptor, int64_t expr_id, |
no test coverage detected