示例#1
0
 internal CALL(Node args, YYLTYPE location)
     : base(location)
 {
     if (args == null)
         this.args = null;
     else if (args is ListGen)
         this.args = (ListGen)args;
     else
         this.args = new ARGS(args, null, null, null, location, false);
 }
示例#2
0
 internal ARRAY_ACCESS(Node array, Node args, YYLTYPE location): base(location)
 {
     Debug.Assert(array != null);
     this.array = array;
     this.args = (ListGen)args;
 }