Boo.Lang.Compiler.Steps.EmitAssembly.EmitMethodAttributes C# (CSharp) Méthode

EmitMethodAttributes() private méthode

private EmitMethodAttributes ( Method node ) : void
node Boo.Lang.Compiler.Ast.Method
Résultat void
        void EmitMethodAttributes(Method node)
        {
            MethodBuilder builder = GetMethodBuilder(node);
            EmitAttributes(node, builder.SetCustomAttribute);
        }
EmitAssembly