Home
last modified time | relevance | path

Searched refs:isCtxDependent (Results 1 – 4 of 4) sorted by relevance

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DPredicate.php20 public $isCtxDependent; variable in Antlr\\Antlr4\\Runtime\\Atn\\SemanticContexts\\Predicate
22 public function __construct(int $ruleIndex = -1, int $predIndex = -1, bool $isCtxDependent = false) argument
26 $this->isCtxDependent = $isCtxDependent;
31 $localctx = $this->isCtxDependent ? $parserCallStack : null;
38 return Hasher::hash($this->ruleIndex, $this->predIndex, $this->isCtxDependent);
53 && $this->isCtxDependent === $other->isCtxDependent;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DPredicateTransition.php23 public $isCtxDependent; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PredicateTransition
25 public function __construct(ATNState $target, int $ruleIndex, int $predIndex, bool $isCtxDependent) argument
31 $this->isCtxDependent = $isCtxDependent;
41 return new Predicate($this->ruleIndex, $this->predIndex, $this->isCtxDependent);
66 && $this->isCtxDependent === $other->isCtxDependent
H A DActionTransition.php22 public $isCtxDependent; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\ActionTransition
24 public function __construct(ATNState $target, int $ruleIndex, int $actionIndex = -1, bool $isCtxDependent = false) argument
30 $this->isCtxDependent = $isCtxDependent;
63 && $this->isCtxDependent === $other->isCtxDependent
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DParserATNSimulator.php2136 $pt->isCtxDependent
2149 if ($collectPredicates && (!$pt->isCtxDependent || $inContext)) {