Home
last modified time | relevance | path

Searched refs:getTokenIndex (Results 1 – 6 of 6) sorted by relevance

/template/strap/vendor/antlr/antlr4-php-runtime/src/
H A DToken.php85 public function getTokenIndex() : int; function
H A DParserRuleContext.php261 return new Interval($this->start->getTokenIndex(), $this->stop->getTokenIndex());
H A DCommonToken.php251 public function getTokenIndex() : int function in Antlr\\Antlr4\\Runtime\\CommonToken
292 $this->getTokenIndex(),
H A DBufferedTokenStream.php489 $startIndex = $start === null ? 0 : $start->getTokenIndex();
490 $stopIndex = $stop === null ? \count($this->tokens) - 1 : $stop->getTokenIndex();
H A DParser.php186 if ($this->buildParseTree && $t->getTokenIndex() === -1) {
225 if ($this->buildParseTree && $t->getTokenIndex() === -1) {
/template/strap/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DTerminalNodeImpl.php58 $tokenIndex = $this->symbol->getTokenIndex();