Searched refs:lexerActionExecutor (Results 1 – 4 of 4) sorted by relevance
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/ |
| H A D | LexerATNConfig.php | 16 private $lexerActionExecutor; variable in Antlr\\Antlr4\\Runtime\\Atn\\LexerATNConfig 30 $this->lexerActionExecutor = $executor ?? ($oldConfig->lexerActionExecutor ?? null); 38 return $this->lexerActionExecutor; 54 $this->lexerActionExecutor 76 return Equality::equals($this->lexerActionExecutor, $other->lexerActionExecutor);
|
| H A D | LexerActionExecutor.php | 51 * @param LexerActionExecutor|null $lexerActionExecutor The executor for actions 69 ?LexerActionExecutor $lexerActionExecutor, argument 72 if ($lexerActionExecutor === null) { 76 $lexerActions = \array_merge($lexerActionExecutor->lexerActions, [$lexerAction]);
|
| H A D | LexerATNSimulator.php | 328 $lexerActionExecutor = $dfaState->lexerActionExecutor; 332 $lexerActionExecutor, 419 ?LexerActionExecutor $lexerActionExecutor, argument 426 $this->log[] = \sprintf('ACTION %s', (string) $lexerActionExecutor) . \PHP_EOL; 434 if ($lexerActionExecutor !== null && $this->recog) { 435 $lexerActionExecutor->execute($this->recog, $input, $startIndex); 638 …$lexerActionExecutor = LexerActionExecutor::append($config->getLexerActionExecutor(), $lexerAction… 640 $cfg = new LexerATNConfig($config, $t->target, null, $lexerActionExecutor); 804 … $proposed->lexerActionExecutor = $firstConfigWithRuleStopState->getLexerActionExecutor();
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/ |
| H A D | DFAState.php | 67 public $lexerActionExecutor; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFAState
|