Babel.Compiler.TypeManager.AddBuiltinType C# (CSharp) Method

AddBuiltinType() protected method

protected AddBuiltinType ( string name, Type type ) : BuiltinTypeData
name string
type System.Type
return BuiltinTypeData
        protected virtual BuiltinTypeData AddBuiltinType(string name, Type type)
        {
            BuiltinTypeData typeData = new BuiltinTypeData(this, type, name);
            builtinTypes.Add(name, typeData);
            builtinTypeNames.Add(type, name);
            typeDataTable.Add(type, typeData);
            return typeData;
        }

Same methods

TypeManager::AddBuiltinType ( string name, Type type, Type builtinMethodContainer ) : BuiltinTypeData