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); }
internal ARRAY_ACCESS(Node array, Node args, YYLTYPE location): base(location) { Debug.Assert(array != null); this.array = array; this.args = (ListGen)args; }