public MethodInvocationExpression(IExpression target) { this.target = target; this.target.Parent = this; this.args = new ExpressionCollection(this); }
public MultipleVariableDeclarationStatement(AccessLevel accessLevel) { // decls = new ExpressionCollection(this); initExps = new ExpressionCollection(this); this.accessLevel = accessLevel; }
public ListExpression() { items = new ExpressionCollection(this); }
public YieldExpression() { this.expColl = new ExpressionCollection(this); }