| 20 | google::protobuf::Arena* arena); |
| 21 | |
| 22 | inline absl::Status CelValueToValue(const CelValue& value, Value* result) { |
| 23 | google::protobuf::Arena arena; |
| 24 | return CelValueToValue(value, result, &arena); |
| 25 | } |
| 26 | |
| 27 | // Translates a cel::expr::Value into a CelValue. Allocates any required |
| 28 | // external data on the provided arena. Returns an error if translation is not |
no outgoing calls
no test coverage detected