setTokenStream method

void setTokenStream(
  1. TokenStream input
)

Set the token stream and reset the parser. */

Implementation

void setTokenStream(TokenStream input) {
  reset(false);
  _input = input;
}