Home
last modified time | relevance | path

Searched refs:actionIndex (Results 1 – 5 of 5) sorted by relevance

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerCustomAction.php28 private $actionIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerCustomAction
36 * @param int $actionIndex The action index to use for calls to
39 public function __construct(int $ruleIndex, int $actionIndex) argument
42 $this->actionIndex = $actionIndex;
62 return $this->actionIndex;
99 $lexer->action(null, $this->ruleIndex, $this->actionIndex);
104 return Hasher::hash($this->getActionType(), $this->ruleIndex, $this->actionIndex);
118 && $this->actionIndex === $other->actionIndex;
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DActionTransition.php15 public $actionIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\ActionTransition
24 public function __construct(ATNState $target, int $ruleIndex, int $actionIndex = -1, bool $isCtxDependent = false) argument
29 $this->actionIndex = $actionIndex;
62 && $this->actionIndex === $other->actionIndex
69 return \sprintf('action_%d:%d', $this->ruleIndex, $this->actionIndex);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DRecognizer.php186 public function sempred(?RuleContext $localctx, int $ruleIndex, int $actionIndex) : bool argument
196 public function action(?RuleContext $localctx, int $ruleIndex, int $actionIndex) : void argument
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php636 $lexerAction = $this->atn->lexerActions[$t->actionIndex];
H A DParserATNSimulator.php2059 $this->log[] = \sprintf('ACTION edge %d:%d', $t->ruleIndex, $t->actionIndex);