Merge branch 'master' into nogenerics-in-error-listener-2nd-try

This commit is contained in:
Terence Parr 2012-07-02 12:45:48 -07:00
commit 71bd16020f
1 changed files with 2 additions and 0 deletions

View File

@ -99,6 +99,8 @@ public abstract class Lexer extends Recognizer<Integer, LexerATNSimulator>
*/
public String _text;
public Lexer() { }
public Lexer(CharStream input) {
this._input = input;
}