Lines Matching refs:token
50 public $token; variable in Antlr\\Antlr4\\Runtime\\Lexer
133 $this->token = null;
168 return $this->token;
175 $this->token = null;
216 if ($this->token === null) {
220 return $this->token;
310 public function emitToken(Token $token) : void argument
312 $this->token = $token;
324 $token = $this->factory->createEx(
335 $this->emitToken($token);
337 return $token;
438 return $this->token;
444 public function setToken(Token $token) : void argument
446 $this->token = $token;
494 $token = $this->nextToken();
496 while ($token && $token->getType() !== Token::EOF) {
497 $tokens[] = $token;
498 $token = $this->nextToken();