Revert "LibRegex: Remove orphaned save points in nested LookAhead"

This reverts commit f2678bfcb8.
This commit is contained in:
Tim Ledbetter 2025-03-14 17:14:41 +00:00 committed by Tim Ledbetter
parent 0a5f68eba6
commit b9ac99d2eb
Notes: github-actions[bot] 2025-03-14 19:58:28 +00:00
3 changed files with 0 additions and 23 deletions

View file

@ -217,12 +217,6 @@ ALWAYS_INLINE ExecutionResult OpCode_FailForks::execute(MatchInput const& input,
input.fail_counter += state.forks_since_last_save;
return ExecutionResult::Failed_ExecuteLowPrioForks;
}
ALWAYS_INLINE ExecutionResult OpCode_PopSaved::execute(MatchInput const& input, MatchState&) const
{
input.saved_positions.take_last();
input.saved_code_unit_positions.take_last();
return ExecutionResult::Failed_ExecuteLowPrioForks;
}
ALWAYS_INLINE ExecutionResult OpCode_Jump::execute(MatchInput const&, MatchState& state) const
{