Home
last modified time | relevance | path

Searched refs:LT (Results 1 – 8 of 8) sorted by relevance

/template/strap/vendor/antlr/antlr4-php-runtime/src/
H A DParserTraceListener.php24 $token = $stream !== null ? $stream->LT(1) : null;
45 $token = $stream !== null ? $stream->LT(1) : null;
H A DParser.php465 return $this->tokenStream()->LT(1);
589 $this->context()->start = $this->tokenStream()->LT(1);
602 $this->context()->stop = $this->tokenStream()->LT(1); // LT(1) will be end of file
604 … $this->context()->stop = $this->tokenStream()->LT(-1); // stop node is what we just matched
654 $this->context()->start = $this->tokenStream()->LT(1);
669 $previous->stop = $this->tokenStream()->LT(-1);
685 $this->context()->stop = $this->tokenStream()->LT(-1);
H A DTokenStream.php21 public function LT(int $k) : ?Token; function
H A DCommonTokenStream.php87 public function LT(int $k) : ?Token function in Antlr\\Antlr4\\Runtime\\CommonTokenStream
H A DInputStream.php98 public function LT(int $offset) : int function in Antlr\\Antlr4\\Runtime\\InputStream
H A DBufferedTokenStream.php198 $token = $this->LT($i);
212 public function LT(int $k) : ?Token function in Antlr\\Antlr4\\Runtime\\BufferedTokenStream
/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php692 $lookback = $inputStream->LT(-1);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DParserATNSimulator.php327 $token = $input->LT(1);
462 $token = $input->LT(1);
2298 $input->LT(1),