Boo.Lang.Compiler.CompilerErrorFactory.InvalidAttributeTarget C# (CSharp) Method

InvalidAttributeTarget() public static method

public static InvalidAttributeTarget ( Node node, Type attrType, AttributeTargets validOn ) : CompilerError
node Node
attrType System.Type
validOn AttributeTargets
return CompilerError
        public static CompilerError InvalidAttributeTarget(Node node, Type attrType, AttributeTargets validOn)
        {
            return Instantiate("BCE0153", node, attrType, validOn);
        }
CompilerErrorFactory