add default ctor to Lexer

This commit is contained in:
Terence Parr 2012-07-02 12:45:30 -07:00
parent ae7313f36a
commit 111c44b3fd
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;
}