WhileLoopStatement.init constructor

WhileLoopStatement.init(
  1. bool isDoWhile,
  2. DartBlockBooleanExpression condition,
  3. List<Statement> bodyStatements
)

Implementation

WhileLoopStatement.init(this.isDoWhile, this.condition, this.bodyStatements)
  : super.init(StatementType.whileLoopStatement);