| 155 | bool enable_recursive_program() { return std::get<1>(GetParam()); } |
| 156 | |
| 157 | absl::StatusOr<CelValue> RunMapExpression( |
| 158 | const std::vector<std::pair<CelValue, CelValue>>& values) { |
| 159 | return RunCreateMapExpression(env_, values, &arena_, enable_unknowns(), |
| 160 | enable_recursive_program()); |
| 161 | } |
| 162 | |
| 163 | protected: |
| 164 | absl_nonnull std::shared_ptr<const RuntimeEnv> env_; |
nothing calls this directly
no test coverage detected