Boo.Lang.Compiler.CompilerErrorFactory.NameNotType C# (CSharp) Méthode

NameNotType() public static méthode

public static NameNotType ( Node node, string typeName, IEntity whatItIs, string suggestion ) : CompilerError
node Node
typeName string
whatItIs IEntity
suggestion string
Résultat 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