Boo.Lang.Compiler.Steps.BindNamespaces.IsValidNamespace C# (CSharp) 메소드

IsValidNamespace() 개인적인 메소드

private IsValidNamespace ( IEntity entity ) : bool
entity IEntity
리턴 bool
        private bool IsValidNamespace(IEntity entity)
        {
            EntityType type = entity.EntityType;
            return type == EntityType.Namespace || type == EntityType.Type;
        }