{
return
new AntlrUtils<SqlLexer, SqlParser>() {
@Override
public SqlLexer createLexer(CharStream input) {
return new SqlLexer(input) {
/* bail out at the first lexical error */
@Override public void recover(LexerNoViableAltException e) {
throw new RuntimeException(e);
}
};