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

CustomError() public static method

public static CustomError ( Node anchor, string msg ) : CompilerError
anchor Node
msg string
return 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