Babel.Compiler.PredefinedConstructorData.PredefinedConstructorData C# (CSharp) Method

PredefinedConstructorData() public method

public PredefinedConstructorData ( TypeManager typeManager, ConstructorInfo constructorInfo ) : System
typeManager TypeManager
constructorInfo System.Reflection.ConstructorInfo
return System
        public PredefinedConstructorData(TypeManager typeManager,
                                         ConstructorInfo constructorInfo)
            : base(typeManager, constructorInfo)
        {
            parameterList = new PredefinedParameterList(typeManager,
                                                        constructorInfo);
        }
PredefinedConstructorData