| 252 | : DirectExpressionStep(expr_id) {} |
| 253 | |
| 254 | absl::Status Evaluate(ExecutionFrameBase& frame, Value& result, |
| 255 | AttributeTrail& attribute) const override { |
| 256 | result = |
| 257 | cel::CustomMapValue(NewMutableMapValue(frame.arena()), frame.arena()); |
| 258 | return absl::OkStatus(); |
| 259 | } |
| 260 | }; |
| 261 | |
| 262 | } // namespace |
nothing calls this directly
no test coverage detected