visitRepeatUntilLoopStmt method

  1. @override
Object? visitRepeatUntilLoopStmt(
  1. RepeatUntilLoopStmt repeatUntilLoopStmt
)
inherited

Implementation

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