Boo.Lang.Compiler.Steps.ProcessMethodBodies.MetaAttributeOf C# (CSharp) Method

MetaAttributeOf() private static method

private static MetaAttributeOf ( CandidateMethod method ) : MetaAttribute
method Boo.Lang.Runtime.CandidateMethod
return MetaAttribute
        private static MetaAttribute MetaAttributeOf(CandidateMethod method)
        {
            return (MetaAttribute) method.Method.GetCustomAttributes(typeof (MetaAttribute), false).Single();
        }
ProcessMethodBodies