| 67 | } // namespace |
| 68 | |
| 69 | CelExpressionFlatEvaluationState::CelExpressionFlatEvaluationState( |
| 70 | google::protobuf::Arena* arena, |
| 71 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 72 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 73 | const FlatExpression& expression) |
| 74 | : state_(expression.MakeEvaluatorState(descriptor_pool, message_factory, |
| 75 | arena)) {} |
| 76 | |
| 77 | absl::StatusOr<CelValue> CelExpressionFlatImpl::Trace( |
| 78 | const BaseActivation& activation, CelEvaluationState* _state, |
nothing calls this directly
no test coverage detected