Boo.Lang.Compiler.CompilerErrorFactory.CustomError C# (CSharp) 메소드

CustomError() 공개 정적인 메소드

public static CustomError ( Node anchor, string msg ) : CompilerError
anchor Node
msg string
리턴 CompilerError
        public static CompilerError CustomError(Node anchor, string msg)
        {
            return CustomError(AstUtil.SafeLexicalInfo(anchor), msg);
        }

Same methods

CompilerErrorFactory::CustomError ( LexicalInfo lexicalInfo, string msg ) : CompilerError
CompilerErrorFactory::CustomError ( string msg ) : CompilerError
CompilerErrorFactory