RepeatUntilLoopStmt constructor

RepeatUntilLoopStmt(
  1. Token token, {
  2. required MathExpr untilExpr,
  3. required List<Stmt> body,
})

Implementation

RepeatUntilLoopStmt(
  this.token, {
  required this.untilExpr,
  required this.body,
});