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