Cfg: Add support for until-statements.

This commit is contained in:
Anders Schack-Mulligen
2026-06-12 13:55:05 +02:00
parent fe8c029ac7
commit ff61344afa
3 changed files with 26 additions and 7 deletions

View File

@@ -84,6 +84,10 @@ private module Ast implements AstSig<Location> {
class DoStmt = J::DoStmt;
class UntilStmt extends LoopStmt {
UntilStmt() { none() }
}
final private class FinalForStmt = J::ForStmt;
class ForStmt extends FinalForStmt {