Home
last modified time | relevance | path

Searched refs:RuleContext (Results 1 – 22 of 22) sorted by path

/plugin/combo/ComboStrap/PageSqlParser/
H A DPageSqlLexer.php13 use Antlr\Antlr4\Runtime\RuleContext; alias
H A DPageSqlParser.php16 use Antlr\Antlr4\Runtime\RuleContext; alias
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATN.php17 use Antlr\Antlr4\Runtime\RuleContext; alias
106 public function nextTokensInContext(ATNState $state, ?RuleContext $context) : IntervalSet
181 * @param RuleContext $context The full parse context
188 public function getExpectedTokens(int $stateNumber, ?RuleContext $context) : IntervalSet
H A DParserATNSimulator.php32 use Antlr\Antlr4\Runtime\RuleContext; alias
1093 protected function computeStartState(ATNState $p, RuleContext $ctx, bool $fullCtx) : ATNConfigSet
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DAndOperator.php10 use Antlr\Antlr4\Runtime\RuleContext; alias
68 public function eval(Recognizer $parser, RuleContext $parserCallStack) : bool
78 public function evalPrecedence(Recognizer $parser, RuleContext $parserCallStack) : ?SemanticContext
H A DOrOperator.php10 use Antlr\Antlr4\Runtime\RuleContext; alias
70 public function eval(Recognizer $parser, RuleContext $parserCallStack) : bool
81 public function evalPrecedence(Recognizer $parser, RuleContext $parserCallStack) : ?SemanticContext
H A DPrecedencePredicate.php9 use Antlr\Antlr4\Runtime\RuleContext; alias
21 public function eval(Recognizer $parser, RuleContext $parserCallStack) : bool
26 public function evalPrecedence(Recognizer $parser, RuleContext $parserCallStack) : ?SemanticContext
H A DPredicate.php9 use Antlr\Antlr4\Runtime\RuleContext; alias
29 public function eval(Recognizer $parser, RuleContext $parserCallStack) : bool
H A DSemanticContext.php9 use Antlr\Antlr4\Runtime\RuleContext; alias
73 * sense, this avoids a cast exception from RuleContext to myruleContext.
81 abstract public function eval(Recognizer $parser, RuleContext $parserCallStack);
100 public function evalPrecedence(Recognizer $parser, RuleContext $parserCallStack) : ?self
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php495 public function getTextByContext(RuleContext $context) : string
H A DLL1Analyzer.php97 * @param RuleContext|null $context The complete parser context, or `null`
103 public function look(ATNState $s, ?ATNState $stopState, ?RuleContext $context) : IntervalSet
H A DParser.php714 public function getInvokingContext(int $ruleIndex) : ?RuleContext
752 public function precpred(RuleContext $localctx, int $precedence) : bool
854 public function getRuleInvocationStack(?RuleContext $p = null) : array
H A DParserRuleContext.php18 * in the RuleContext. It handles parse tree children list, any ATN state
37 class ParserRuleContext extends RuleContext
79 // from RuleContext
143 * Used by enterOuterAlt to toss out a RuleContext previously added as
155 * @return RuleContext|null
H A DRecognizer.php186 public function sempred(?RuleContext $localctx, int $ruleIndex, int $actionIndex) : bool
191 public function precpred(RuleContext $localctx, int $precedence) : bool
196 public function action(?RuleContext $localctx, int $ruleIndex, int $actionIndex) : void
H A DRuleContext.php59 class RuleContext implements RuleNode class
64 * @var RuleContext|null
77 public function __construct(?RuleContext $parent, ?int $invokingState = null)
117 public function getRuleContext() : RuleContext
122 public function getPayload() : RuleContext
178 * @return RuleContext|null
185 public function setParent(?RuleContext $ctx) : void
227 public function toString(?array $ruleNames = null, ?RuleContext $stop = null) : string
H A DTokenStream.php89 * @param RuleContext $context The context providing the source interval
94 public function getTextByContext(RuleContext $context) : string;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DRecognitionException.php11 use Antlr\Antlr4\Runtime\RuleContext; alias
30 /** @var RuleContext|null */
111 * Gets the {@see RuleContext} at the time this exception was thrown.
115 * @return RuleContext|null The {@see RuleContext} at the time this exception
119 public function getCtx() : ?RuleContext
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DPredictionContext.php10 use Antlr\Antlr4\Runtime\RuleContext; alias
72 * Convert a {@see RuleContext} tree to a {@see PredictionContext} graph.
75 public static function fromRuleContext(ATN $atn, ?RuleContext $outerContext) : PredictionContext
78 $outerContext = RuleContext::emptyContext();
81 // If we are in RuleContext of start rule, s, then PredictionContext
83 if ($outerContext->getParent() === null || $outerContext === RuleContext::emptyContext()) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DParseTree.php7 use Antlr\Antlr4\Runtime\RuleContext; alias
35 public function setParent(RuleContext $parent) : void;
H A DRuleNode.php7 use Antlr\Antlr4\Runtime\RuleContext; alias
11 public function getRuleContext() : RuleContext;
H A DTerminalNodeImpl.php8 use Antlr\Antlr4\Runtime\RuleContext; alias
42 public function setParent(RuleContext $parent) : void
H A DTrees.php9 use Antlr\Antlr4\Runtime\RuleContext; alias
55 if ($tree instanceof RuleContext) {