ForRule constructor
ForRule(
- String variable,
- Expression from,
- Expression to,
- Iterable<
Statement> children, - FileSpan span, {
- 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));