forked from jasder/antlr
add default ctor to Lexer
This commit is contained in:
parent
ae7313f36a
commit
111c44b3fd
|
@ -99,6 +99,8 @@ public abstract class Lexer extends Recognizer<Integer, LexerATNSimulator>
|
|||
*/
|
||||
public String _text;
|
||||
|
||||
public Lexer() { }
|
||||
|
||||
public Lexer(CharStream input) {
|
||||
this._input = input;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue