Home
last modified time | relevance | path

Searched refs:ParserRuleContext (Results 1 – 18 of 18) sorted by relevance

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DParseTreeListener.php7 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
15 public function enterEveryRule(ParserRuleContext $ctx) : void;
17 public function exitEveryRule(ParserRuleContext $ctx) : void;
H A DParseTreeWalker.php7 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
59 /** @var ParserRuleContext $ctx */
69 /** @var ParserRuleContext $ctx */
H A DTrees.php8 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
155 } elseif (!$findTokens && $tree instanceof ParserRuleContext && $tree->getRuleIndex() === $index) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParser.php65 * The {@see ParserRuleContext} object for the currently executing rule.
68 * @var ParserRuleContext|null
159 * {@see Parser::createErrorNode(ParserRuleContext, Token)} then
160 * {@see ParserRuleContext::addErrorNode(ErrorNode)}.
206 * {@see Parser::createErrorNode(ParserRuleContext, Token)}. then
207 * {@see ParserRuleContext::addErrorNode(ErrorNode)}
236 * Track the {@see ParserRuleContext} objects during the parse and hook
237 * them up using the {@see ParserRuleContext::$children} list so that it
238 * forms a parse tree. The {@see ParserRuleContext} returned from the start
247 * {@see ParserRuleContext
[all...]
H A DParserTraceListener.php21 public function enterEveryRule(ParserRuleContext $context) : void
42 public function exitEveryRule(ParserRuleContext $context) : void
H A DRuleContext.php19 * The {@see ParserRuleContext} subclass as a children list so that we can turn
57 * of parsers, we use the subclass {@see ParserRuleContext}.
83 public static function emptyContext() : ParserRuleContext
87 return $empty ?? ($empty = new ParserRuleContext(null));
159 * {@see ParserRuleContext} with backing field and set option
170 * that don't need it. Create a subclass of {@see ParserRuleContext} with backing
H A DParserRuleContext.php37 class ParserRuleContext extends RuleContext class
77 public function copyFrom(ParserRuleContext $ctx) : void
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DBailErrorStrategy.php11 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
18 * {@see ParserRuleContext::$exception} field is set for all parse tree nodes
50 if (!$context instanceof ParserRuleContext) {
72 if (!$context instanceof ParserRuleContext) {
H A DDefaultErrorStrategy.php15 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
58 * @var ParserRuleContext|null
/plugin/combo/ComboStrap/
H A DPageSqlTreeListener.php7 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
125 if ($child instanceof ParserRuleContext) {
127 * @var ParserRuleContext $child
307 * @param ParserRuleContext $ctx
310 function enterEveryRule(ParserRuleContext $ctx): void
410 * @param ParserRuleContext $ctx
413 function exitEveryRule(ParserRuleContext $ctx): void
449 * @param ParserRuleContext $ctx
453 function getRuleName(ParserRuleContext $ctx): string
/plugin/combo/ComboStrap/PageSqlParser/
H A DPageSqlParser.php1134 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
1142 class FunctionNamesContext extends ParserRuleContext
1144 public function __construct(?ParserRuleContext $parent, ?int $invokingState = null)
1179 class TableNamesContext extends ParserRuleContext
1181 public function __construct(?ParserRuleContext $parent, ?int $invokingState = null)
1221 class SqlNamesContext extends ParserRuleContext
1223 public function __construct(?ParserRuleContext $parent, ?int $invokingState = null)
1258 class ColumnContext extends ParserRuleContext
1260 public function __construct(?ParserRuleContext $parent, ?int $invokingState = null)
1312 class PatternContext extends ParserRuleContext
[all...]
H A DPageSqlBaseListener.php9 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
221 public function enterEveryRule(ParserRuleContext $context) : void {}
228 public function exitEveryRule(ParserRuleContext $context) : void {}
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DInputMismatchException.php8 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
16 public function __construct(Parser $recognizer, ?int $state = null, ?ParserRuleContext $ctx = null)
H A DNoViableAltException.php9 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
45 ?ParserRuleContext $ctx = null
H A DRecognitionException.php9 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
51 ?ParserRuleContext $ctx,
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATN.php16 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
178 * If `context` is `null`, it is treated as {@see ParserRuleContext::EMPTY}.
207 $context = ParserRuleContext::emptyContext();
H A DParserATNSimulator.php28 use Antlr\Antlr4\Runtime\ParserRuleContext; alias
288 /** @var ParserRuleContext|null */
324 public function adaptivePredict(TokenStream $input, int $decision, ParserRuleContext $outerContext) : int
378 ParserRuleContext::emptyContext(),
459 ParserRuleContext $outerContext
758 ParserRuleContext $outerContext
1402 * {@see ParserRuleContext} returned by the calling rule will be complete
1427 * @param ParserRuleContext $outerContext The \gamma_0 initial parser context
1440 ParserRuleContext $outerContext
1496 protected function splitAccordingToSemanticValidity(ATNConfigSet $configs, ParserRuleContext
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DREADME.md69 use Antlr\Antlr4\Runtime\ParserRuleContext;
78 public function exitEveryRule(ParserRuleContext $ctx) : void {}
80 public function enterEveryRule(ParserRuleContext $ctx) : void {