Esempio n. 1
0
 public StdSimpleCallNodeWithAttrs(RVList <LNode> attrs, Symbol name, RVList <LNode> args, StdSimpleCallNode ras)
     : base(name, args, ras)
 {
     _attrs = attrs; NoNulls(attrs, "Attrs");
 }
Esempio n. 2
0
		public StdSimpleCallNodeWithAttrs(VList<LNode> attrs, Symbol name, VList<LNode> args, StdSimpleCallNode ras)
			: base(name, args, ras) { _attrs = attrs; NoNulls(attrs, "Attrs"); }
Esempio n. 3
0
 public StdSimpleCallNode(Symbol name, RVList <LNode> args, StdSimpleCallNode ras)
     : base(args, ras)
 {
     _name = name ?? GSymbol.Empty; _targetOffs = ras._targetOffs; _targetLen = ras._targetLen;
 }
Esempio n. 4
0
		public StdSimpleCallNode(Symbol name, VList<LNode> args, StdSimpleCallNode ras)
			: base(args, ras) { _name = name ?? GSymbol.Empty; _targetOffs = ras._targetOffs; _targetLen = ras._targetLen; }