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

NameNotType() public static method

public static NameNotType ( Node node, string typeName, IEntity whatItIs, string suggestion ) : CompilerError
node Node
typeName string
whatItIs IEntity
suggestion string
return CompilerError
        public static CompilerError NameNotType(Node node, string typeName, IEntity whatItIs, string suggestion)
        {
            return Instantiate("BCE0018", node, typeName, whatItIs == null ? "not found" : (object)whatItIs, DidYouMeanOrNull(suggestion));
        }
CompilerErrorFactory