Home
last modified time | relevance | path

Searched refs:maxTokenType (Results 1 – 6 of 6) sorted by last modified time

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DParserATNSimulator.php1304 return $trans->matches($ttype, 0, $this->atn->maxTokenType) ? $trans->target : null;
2351 if ($from === null || $t < -1 || $t > $this->atn->maxTokenType) {
2356 $from->edges = new \SplFixedArray($this->atn->maxTokenType + 1 + 1);
H A DATN.php67 public $maxTokenType; variable in Antlr\\Antlr4\\Runtime\\Atn\\ATN
94 public function __construct(int $grammarType, int $maxTokenType) argument
97 $this->maxTokenType = $maxTokenType;
H A DATNDeserializer.php222 $maxTokenType = $this->readInt();
224 return new ATN($grammarType, $maxTokenType);
508 $atn->ruleToTokenType[$i] = $atn->maxTokenType + $i + 1;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DVocabularyImpl.php25 private $maxTokenType; variable in Antlr\\Antlr4\\Runtime\\VocabularyImpl
51 $this->maxTokenType = \max(
127 return $this->maxTokenType;
H A DLL1Analyzer.php297 $look->addRange(Token::MIN_USER_TOKEN_TYPE, $this->atn->maxTokenType);
305 $this->atn->maxTokenType
H A DRecognizer.php65 for ($i = 0; $i <= $this->getATN()->maxTokenType; $i++) {