inputStream property
Implementation
@override
CharStream get inputStream {
return _input;
}
Set the char stream and reset the lexer
Implementation
@override
set inputStream(CharStream input) {
_tokenFactorySourcePair = Pair(this, null);
reset(false);
_input = input;
_tokenFactorySourcePair = Pair(this, _input);
}