Creates a `ParsedMessageValue` without specifying a managing arena. The message must outlive the `ParsedMessageValue` or any value that might be derived from it. Prefer to use `cel::Value::WrapMessageUnsafe()`.
| 227 | // The message must outlive the `ParsedMessageValue` or any value that might |
| 228 | // be derived from it. Prefer to use `cel::Value::WrapMessageUnsafe()`. |
| 229 | inline ParsedMessageValue UnsafeParsedMessageValue( |
| 230 | const google::protobuf::Message* absl_nonnull value) { |
| 231 | return ParsedMessageValue(value); |
| 232 | } |
| 233 | |
| 234 | } // namespace cel |
| 235 |
no test coverage detected