public ForeachStmt(Text.Span span, Expression /*!*/ enumeree, ForeachVar key, ForeachVar /*!*/ value, Statement /*!*/ body) : base(span) { Debug.Assert(enumeree != null && value != null && body != null); this.enumeree = enumeree; this.keyVariable = key; this.valueVariable = value; this.body = body; }
public ForeachStmt(Position position, Expression/*!*/ enumeree, ForeachVar key, ForeachVar/*!*/ value, Statement/*!*/ body) : base(position) { Debug.Assert(enumeree != null && value != null && body != null); this.enumeree = enumeree; this.keyVariable = key; this.valueVariable = value; this.body = body; }