private LexerRestartInfo<PLSQLTokenId> info;
private PL_SQLLexer lexer;
public PLSQLLexer(LexerRestartInfo<PLSQLTokenId> info) {
this.info = info;
AntlrCharStream charStream = new AntlrCharStream(info.input(), "PL/SQL Editor");
lexer = new PL_SQLLexer(charStream);
}