Boo.Lang.Compiler.CompilerErrorFactory.NameNotType C# (CSharp) Метод

NameNotType() публичный статический Метод

public static NameNotType ( Node node, string typeName, IEntity whatItIs, string suggestion ) : CompilerError
node Node
typeName string
whatItIs IEntity
suggestion string
Результат 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