/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/ |
H A D | ParseTreeListener.php | 7 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 15 public function enterEveryRule(ParserRuleContext $ctx) : void; 17 public function exitEveryRule(ParserRuleContext $ctx) : void;
|
H A D | ParseTreeWalker.php | 7 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 59 /** @var ParserRuleContext $ctx */ 69 /** @var ParserRuleContext $ctx */
|
H A D | Trees.php | 8 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 155 …} elseif (!$findTokens && $tree instanceof ParserRuleContext && $tree->getRuleIndex() === $index) {
|
/plugin/combo/ComboStrap/ |
H A D | PageSqlTreeListener.php | 7 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 107 if ($child instanceof ParserRuleContext) { 109 * @var ParserRuleContext $child 248 * @param ParserRuleContext $ctx 251 function enterEveryRule(ParserRuleContext $ctx): void 313 * @param ParserRuleContext $ctx 316 function exitEveryRule(ParserRuleContext $ctx): void 347 * @param ParserRuleContext $ctx 351 function getRuleName(ParserRuleContext $ctx): string
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
H A D | Parser.php | 68 * @var ParserRuleContext|null 576 if ($parent instanceof ParserRuleContext) { 614 if ($parent === null || $parent instanceof ParserRuleContext) { 619 public function enterOuterAlt(ParserRuleContext $localctx, int $altNum) : void 626 /** @var ParserRuleContext $parent */ 681 public function unrollRecursionContexts(?ParserRuleContext $parentctx) : void 695 if ($parent !== null && !$parent instanceof ParserRuleContext) { 728 public function getContext() : ?ParserRuleContext 733 private function context() : ParserRuleContext 747 public function setContext(ParserRuleContext $ctx) : void [all …]
|
H A D | ParserTraceListener.php | 21 public function enterEveryRule(ParserRuleContext $context) : void 42 public function exitEveryRule(ParserRuleContext $context) : void
|
H A D | RuleContext.php | 83 public static function emptyContext() : ParserRuleContext 87 return $empty ?? ($empty = new ParserRuleContext(null));
|
H A D | ParserRuleContext.php | 37 class ParserRuleContext extends RuleContext class 77 public function copyFrom(ParserRuleContext $ctx) : void
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/ |
H A D | BailErrorStrategy.php | 11 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 50 if (!$context instanceof ParserRuleContext) { 72 if (!$context instanceof ParserRuleContext) {
|
H A D | DefaultErrorStrategy.php | 15 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 58 * @var ParserRuleContext|null
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/ |
H A D | InputMismatchException.php | 8 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 16 …public function __construct(Parser $recognizer, ?int $state = null, ?ParserRuleContext $ctx = null)
|
H A D | NoViableAltException.php | 9 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 45 ?ParserRuleContext $ctx = null
|
H A D | RecognitionException.php | 9 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 51 ?ParserRuleContext $ctx,
|
/plugin/combo/ComboStrap/PageSqlParser/ |
H A D | PageSqlParser.php | 1017 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 1072 class TableNamesContext extends ParserRuleContext 1118 class SqlNamesContext extends ParserRuleContext 1164 class ColumnContext extends ParserRuleContext 1227 class PatternContext extends ParserRuleContext 1368 class PredicateContext extends ParserRuleContext 1518 class ColumnsContext extends ParserRuleContext 1655 class TablesContext extends ParserRuleContext 1701 class LimitContext extends ParserRuleContext 1747 class OrderBysContext extends ParserRuleContext [all …]
|
H A D | PageSqlBaseListener.php | 9 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 208 public function enterEveryRule(ParserRuleContext $context) : void {} 215 public function exitEveryRule(ParserRuleContext $context) : void {}
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/ |
H A D | ATN.php | 16 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 207 $context = ParserRuleContext::emptyContext();
|
H A D | ParserATNSimulator.php | 28 use Antlr\Antlr4\Runtime\ParserRuleContext; alias 288 /** @var ParserRuleContext|null */ 324 …public function adaptivePredict(TokenStream $input, int $decision, ParserRuleContext $outerContext… 378 ParserRuleContext::emptyContext(), 459 ParserRuleContext $outerContext 758 ParserRuleContext $outerContext 1427 * @param ParserRuleContext $outerContext The \gamma_0 initial parser context 1440 ParserRuleContext $outerContext 1496 …protected function splitAccordingToSemanticValidity(ATNConfigSet $configs, ParserRuleContext $oute… 1529 ParserRuleContext $outerContext, [all …]
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/ |
H A D | README.md | 69 use Antlr\Antlr4\Runtime\ParserRuleContext; 78 public function exitEveryRule(ParserRuleContext $ctx) : void {} 80 public function enterEveryRule(ParserRuleContext $ctx) : void {
|