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

UnknownAttribute() public static method

public static UnknownAttribute ( Node node, string attributeName, string suggestion ) : CompilerError
node Node
attributeName string
suggestion string
return CompilerError
        public static CompilerError UnknownAttribute(Node node, string attributeName, string suggestion)
        {
            return Instantiate("BCE0064", node, attributeName, DidYouMeanOrNull(suggestion));
        }
CompilerErrorFactory