Home
last modified time | relevance | path

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

/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
DParserATNSimulator.php289 protected $outerContext; variable in Antlr\\Antlr4\\Runtime\\Atn\\ParserATNSimulator
324 … function adaptivePredict(TokenStream $input, int $decision, ParserRuleContext $outerContext) : int argument
340 $this->outerContext = $outerContext;
366 $outerContext->toString($this->parser->getRuleNames())
408 $alt = $this->execATN($dfa, $s0, $input, $index, $outerContext);
459 ParserRuleContext $outerContext argument
504 $e = $this->noViableAlt($input, $outerContext, $previousD->configs, $startIndex);
510 $outerContext
536 … $conflictingAlts = $this->evalSemanticContextMany($D->predicates, $outerContext, true);
557 (string) $outerContext,
[all …]
/template/strap/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
DPredictionContext.php75 public static function fromRuleContext(ATN $atn, ?RuleContext $outerContext) : PredictionContext argument
77 if ($outerContext === null) {
78 $outerContext = RuleContext::emptyContext();
83 if ($outerContext->getParent() === null || $outerContext === RuleContext::emptyContext()) {
88 $parent = self::fromRuleContext($atn, $outerContext->getParent());
89 $state = $atn->states[$outerContext->invokingState];