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

EmitConstructorAttributes() private method

private EmitConstructorAttributes ( Constructor node ) : void
node Boo.Lang.Compiler.Ast.Constructor
return void
        void EmitConstructorAttributes(Constructor node)
        {
            ConstructorBuilder builder = (ConstructorBuilder)GetBuilder(node);
            EmitAttributes(node, builder.SetCustomAttribute);
        }
EmitAssembly