Home
last modified time | relevance | path

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

/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfig.php81 ?self $oldConfig, argument
87 if ($oldConfig === null) {
97 $this->state = $state ?? $oldConfig->state;
98 $this->alt = $alt ?? $oldConfig->alt;
99 $this->context = $context ?? $oldConfig->context;
100 $this->semanticContext = $semanticContext ?? $oldConfig->semanticContext;
101 $this->reachesIntoOuterContext = $oldConfig->reachesIntoOuterContext;
H A DLexerATNConfig.php22 ?self $oldConfig, argument
28 parent::__construct($oldConfig, $state, $context, null, $alt);
30 $this->lexerActionExecutor = $executor ?? ($oldConfig->lexerActionExecutor ?? null);
31 $this->passedThroughNonGreedyDecision = $oldConfig ?
32 self::checkNonGreedyDecision($oldConfig, $this->state) :