| 34 | } // namespace |
| 35 | |
| 36 | CelValue CelProtoWrapper::InternalWrapMessage(const Message* message) { |
| 37 | return CelValue::CreateMessageWrapper( |
| 38 | MessageWrapper(message, &GetGenericProtoTypeInfoInstance())); |
| 39 | } |
| 40 | |
| 41 | // CreateMessage creates CelValue from google::protobuf::Message. |
| 42 | // As some of CEL basic types are subclassing google::protobuf::Message, |
nothing calls this directly
no test coverage detected