Boo.Lang.Parser.BooParsingStep.ParserError C# (CSharp) Method

ParserError() private method

private ParserError ( LexicalInfo data, antlr error ) : void
data LexicalInfo
error antlr
return void
        void ParserError(LexicalInfo data, antlr.NoViableAltException error)
        {
            _context.Errors.Add(CompilerErrorFactory.UnexpectedToken(data, error, error.token.getText()));
        }