Home
last modified time | relevance | path

Searched refs:lexerAction (Results 1 – 3 of 3) sorted by path

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php497 $lexerAction = $this->lexerActionFactory($actionType, $data1, $data2);
498 $atn->lexerActions[$i] = $lexerAction;
H A DLexerATNSimulator.php636 $lexerAction = $this->atn->lexerActions[$t->actionIndex];
638 $lexerActionExecutor = LexerActionExecutor::append($config->getLexerActionExecutor(), $lexerAction);
H A DLexerActionExecutor.php49 * the input `lexerActionExecutor` followed by a specified `lexerAction`.
60 * @param LexerAction $lexerAction The lexer action to
66 * of `lexerActionExecutor` and `lexerAction`.
70 LexerAction $lexerAction argument
73 return new LexerActionExecutor([$lexerAction]);
76 $lexerActions = \array_merge($lexerActionExecutor->lexerActions, [$lexerAction]);
170 foreach ($this->lexerActions as $lexerAction) {
171 if ($lexerAction instanceof LexerIndexedCustomAction) {
172 $offset = $lexerAction->getOffset();
174 $lexerAction
[all...]