added setter for _token
This commit is contained in:
parent
3b1d91e010
commit
aab8806783
|
@ -297,6 +297,10 @@ public abstract class Lexer extends Recognizer<Integer, LexerATNSimulator>
|
||||||
this._text = text;
|
this._text = text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setToken(Token _token) {
|
||||||
|
this._token = _token;
|
||||||
|
}
|
||||||
|
|
||||||
public String[] getModeNames() {
|
public String[] getModeNames() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue