| 240 | explicit MutableMapStep(int64_t expr_id) : ExpressionStep(expr_id) {} |
| 241 | |
| 242 | absl::Status Evaluate(ExecutionFrame* frame) const override { |
| 243 | frame->value_stack().Push(cel::CustomMapValue( |
| 244 | NewMutableMapValue(frame->arena()), frame->arena())); |
| 245 | return absl::OkStatus(); |
| 246 | } |
| 247 | }; |
| 248 | |
| 249 | class DirectMutableMapStep final : public DirectExpressionStep { |
nothing calls this directly
no test coverage detected