Merge pull request #21980 from aschackmull/cfg/unless-until

Cfg: Add support for unless and until statements
This commit is contained in:
Anders Schack-Mulligen
2026-06-15 09:58:03 +02:00
committed by GitHub
3 changed files with 32 additions and 8 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 {