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

Instantiate() private static method

private static Instantiate ( string code, LexicalInfo location ) : CompilerError
code string
location LexicalInfo
return CompilerError
        private static CompilerError Instantiate(string code, LexicalInfo location, params object[] args)
        {
            return new CompilerError(code, location, Array.ConvertAll<object, string>(args, DisplayStringFor));
        }

Same methods

CompilerErrorFactory::Instantiate ( string code, Exception error ) : CompilerError
CompilerErrorFactory::Instantiate ( string code, LexicalInfo location, Exception error ) : CompilerError
CompilerErrorFactory::Instantiate ( string code, Node anchor ) : CompilerError
CompilerErrorFactory::Instantiate ( string code, Node anchor, Exception error ) : CompilerError
CompilerErrorFactory