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

PropertyAccessorAttributesFor() private method

private PropertyAccessorAttributesFor ( Boo.Lang.Compiler.Ast.TypeMember property ) : MethodAttributes
property Boo.Lang.Compiler.Ast.TypeMember
return MethodAttributes
        MethodAttributes PropertyAccessorAttributesFor(TypeMember property)
        {
            const MethodAttributes defaultPropertyAccessorAttributes = MethodAttributes.SpecialName | MethodAttributes.HideBySig;
            return defaultPropertyAccessorAttributes | MethodAttributesFor(property);
        }
EmitAssembly