public ExprNewInstanceNodeArrayForge(
     ExprNewInstanceNode parent,
     Type targetClass,
     Type targetClassArrayed)
 {
     Parent = parent;
     TargetClass = targetClass;
     TargetClassArrayed = targetClassArrayed;
 }
示例#2
0
 public ExprNewInstanceNodeForge(
     ExprNewInstanceNode parent,
     Type targetClass,
     InstanceManufacturerFactory manufacturerFactory)
 {
     this.parent = parent;
     EvaluationType = targetClass;
     this.manufacturerFactory = manufacturerFactory;
 }
 public ExprNewInstanceNodeNonArrayForge(
     ExprNewInstanceNode parent,
     Type targetClass,
     InstanceManufacturerFactory manufacturerFactory)
 {
     _parent = parent;
     EvaluationType = targetClass;
     _manufacturerFactory = manufacturerFactory;
 }