Home
last modified time | relevance | path

Searched refs:tokenSource (Results 1 – 4 of 4) sorted by relevance

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php27 protected $tokenSource; variable in Antlr\\Antlr4\\Runtime\\BufferedTokenStream
56 * {@see BufferedTokenStream::tokenSource()} and added to
74 public function __construct(TokenSource $tokenSource) argument
76 $this->tokenSource = $tokenSource;
81 return $this->tokenSource;
164 $token = $this->tokenSource->nextToken();
273 public function setTokenSource(TokenSource $tokenSource) : void argument
275 $this->tokenSource = $tokenSource;
[all...]
H A DCommonTokenStream.php50 * @param TokenSource $tokenSource The token source.
53 public function __construct(TokenSource $tokenSource, int $channel = Token::DEFAULT_CHANNEL) argument
55 parent::__construct($tokenSource);
H A DCommonToken.php113 $tokenSource = $this->source->a;
115 if ($tokenSource instanceof TokenSource) {
116 $this->line = $tokenSource->getLine();
117 $this->charPositionInLine = $tokenSource->getCharPositionInLine();
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php671 $tokenSource = $currentSymbol->getTokenSource();
673 if ($tokenSource === null) {
700 $tokenSource,
701 $tokenSource->getInputStream()