Skip to content

Commit

Permalink
Execution of post-expression upon terminal continue signal on loop ex…
Browse files Browse the repository at this point in the history
…pression.
  • Loading branch information
nthnn committed Sep 10, 2024
1 parent acb8040 commit c17c12c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ast/expression/LoopExpression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ DynamicObject LoopExpression::visit(SymbolTable& symbols) {
break;
}
catch(const TerminativeContinueSignal& continueSig) {
this->postexpr->visit(symbols);
continue;
}

Expand Down

0 comments on commit c17c12c

Please sign in to comment.