visitRepeatUntilLoopStmt method
Implementation
@override
Object? visitRepeatUntilLoopStmt(RepeatUntilLoopStmt repeatUntilLoopStmt) {
for (Stmt stmt in repeatUntilLoopStmt.body) {
stmt.accept(this);
}
final _ = repeatUntilLoopStmt.untilExpr.accept(this);
return null;
}