ForLoopStmt constructor

ForLoopStmt(
  1. Token token, {
  2. required AssignExpr control,
  3. required MathExpr endExpr,
  4. required MathExpr stepExpr,
  5. required List<Stmt> body,
})

Implementation

ForLoopStmt(
  this.token, {
  required this.control,
  required this.endExpr,
  required this.stepExpr,
  required this.body,
});