public ExprNewInstanceNodeArrayForge( ExprNewInstanceNode parent, Type targetClass, Type targetClassArrayed) { Parent = parent; TargetClass = targetClass; TargetClassArrayed = targetClassArrayed; }
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; }