Example #1
0
 internal New(AST parent, AST exp, Location location)
     : base(parent, location)
 {
     this.exp = exp;
     this.args = new Args (location);
 }
Example #2
0
 internal Call(AST parent, AST exp, Location location)
     : base(parent, location)
 {
     this.member_exp = exp;
     this.args = new Args (location);
 }