Boo.Lang.Compiler.Steps.EmitAssembly.GetNestedTypeAccessibility C# (CSharp) 메소드

GetNestedTypeAccessibility() 개인적인 메소드

private GetNestedTypeAccessibility ( Boo.Lang.Compiler.Ast.TypeMember type ) : TypeAttributes
type Boo.Lang.Compiler.Ast.TypeMember
리턴 TypeAttributes
        TypeAttributes GetNestedTypeAccessibility(TypeMember type)
        {
            if (type.IsPublic) return TypeAttributes.NestedPublic;
            if (type.IsInternal) return TypeAttributes.NestedAssembly;
            return TypeAttributes.NestedPrivate;
        }
EmitAssembly