ForRule constructor

ForRule(
  1. String variable,
  2. Expression from,
  3. Expression to,
  4. Iterable<Statement> children,
  5. FileSpan span, {
  6. bool exclusive = true,
})

Implementation

ForRule(this.variable, this.from, this.to, Iterable<Statement> children,
    this.span,
    {bool exclusive = true})
    : isExclusive = exclusive,
      super(List.unmodifiable(children));