Boo.Lang.Compiler.Steps.CheckAttributesUsage.AttributeType C# (CSharp) Метод

AttributeType() приватный статический Метод

private static AttributeType ( Ast node ) : Type
node Ast
Результат System.Type
        private static Type AttributeType(Ast.Attribute node)
        {
            IExternalEntity attr = TypeSystemServices.GetOptionalEntity(node) as IExternalEntity;
            if (null == attr) return null;
            return attr.MemberInfo.DeclaringType;
        }