WhileLoopStmt constructor

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

Implementation

WhileLoopStmt(this.token, {required this.expr, required this.body});