WhileRule constructor

WhileRule(
  1. Expression condition,
  2. Iterable<Statement> children,
  3. FileSpan span
)

Implementation

WhileRule(this.condition, Iterable<Statement> children, this.span)
    : super(List<Statement>.unmodifiable(children));