Boo.Lang.Compiler.TypeSystem.TypeSystemServices.AddLiteralPrimitiveType C# (CSharp) Method

AddLiteralPrimitiveType() protected method

protected AddLiteralPrimitiveType ( string name, IType type ) : void
name string
type IType
return void
        protected void AddLiteralPrimitiveType(string name, IType type)
        {
            AddPrimitiveType(name, type);
            _literalPrimitives.Add(name);
        }
TypeSystemServices