Home
last modified time | relevance | path

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

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php302 $expecting = $recognizer->getExpectedTokens();
358 $expectedTokens = $e->getExpectedTokens();
417 $expecting = $this->getExpectedTokens($recognizer);
454 $expecting = $this->getExpectedTokens($recognizer);
623 $expecting = $this->getExpectedTokens($recognizer);
677 $expecting = $this->getExpectedTokens($recognizer);
713 protected function getExpectedTokens(Parser $recognizer) : IntervalSet function in Antlr\\Antlr4\\Runtime\\Error\\DefaultErrorStrategy
715 return $recognizer->getExpectedTokens();
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DRecognitionException.php97 public function getExpectedTokens() : ?IntervalSet function in Antlr\\Antlr4\\Runtime\\Error\\Exceptions\\RecognitionException
107 return $this->recognizer->getATN()->getExpectedTokens($this->offendingState, $this->ctx);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATN.php188 public function getExpectedTokens(int $stateNumber, ?RuleContext $context) : IntervalSet function in Antlr\\Antlr4\\Runtime\\Atn\\ATN
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParser.php770 * return getExpectedTokens().contains(symbol);
822 * @see ATN::getExpectedTokens()
824 public function getExpectedTokens() : IntervalSet function in Antlr\\Antlr4\\Runtime\\Parser
827 ->getExpectedTokens($this->getState(), $this->getContext());