Home
last modified time | relevance | path

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

/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
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;
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
DActionTransition.php15 public $actionIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\ActionTransition
24 …public function __construct(ATNState $target, int $ruleIndex, int $actionIndex = -1, bool $isCtxDe… argument
29 $this->actionIndex = $actionIndex;
62 && $this->actionIndex === $other->actionIndex
69 return \sprintf('action_%d:%d', $this->ruleIndex, $this->actionIndex);
/template/strap/vendor/antlr/antlr4-php-runtime/src/
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
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
DLexerATNSimulator.php636 $lexerAction = $this->atn->lexerActions[$t->actionIndex];
DParserATNSimulator.php2059 $this->log[] = \sprintf('ACTION edge %d:%d', $t->ruleIndex, $t->actionIndex);