| 41 | FakeConstExpressionStep() : ExpressionStep(0, true) {} |
| 42 | |
| 43 | absl::Status Evaluate(ExecutionFrame* frame) const override { |
| 44 | frame->value_stack().Push(CreateIntValue(0)); |
| 45 | return absl::OkStatus(); |
| 46 | } |
| 47 | }; |
| 48 | |
| 49 | // Fake expression implementation |
no test coverage detected