Factory method for Jump step.
| 132 | |
| 133 | // Factory method for Jump step. |
| 134 | std::unique_ptr<JumpStepBase> CreateJumpStep(absl::optional<int> jump_offset, |
| 135 | int64_t expr_id) { |
| 136 | return std::make_unique<JumpStep>(jump_offset, expr_id); |
| 137 | } |
| 138 | |
| 139 | // Factory method for Conditional Jump step. |
| 140 | // Conditional Jump requires a value to sit on the stack. |
no outgoing calls
no test coverage detected