Boo.Lang.Compiler.Steps.EmitAssembly.GetNestedTypeAccessibility C# (CSharp) Method

GetNestedTypeAccessibility() private method

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