Home
last modified time | relevance | path

Searched refs:addDFAEdge (Results 1 – 2 of 2) sorted by relevance

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php308 $this->addDFAEdge($s, $t, ATNSimulator::error());
749 $this->addDFAEdge($from, $t, $to);
754 protected function addDFAEdge(DFAState $from, int $t, ?DFAState $to) : void function in Antlr\\Antlr4\\Runtime\\Atn\\LexerATNSimulator
H A DParserATNSimulator.php172 * {@see ParserATNSimulator::$addDFAEdge} locks on the DFA for the current
188 * {@see ParserATNSimulator::addDFAEdge()} method could be racing to set the field
654 $this->addDFAEdge($dfa, $previousD, $t, self::error());
715 $D = $this->addDFAEdge($dfa, $previousD, $t, $D);
2339 protected function addDFAEdge(DFA $dfa, ?DFAState $from, int $t, ?DFAState $to) : ?DFAState function in Antlr\\Antlr4\\Runtime\\Atn\\ParserATNSimulator