@elastic/esql 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @elastic/esql might be problematic. Click here for more details.
- package/LICENCE.txt +93 -0
- package/NOTICE.txt +5 -0
- package/README.md +167 -0
- package/lib/__tests__/fixtures.d.ts +4 -0
- package/lib/__tests__/fixtures.d.ts.map +1 -0
- package/lib/ast/builder/builder.d.ts +87 -0
- package/lib/ast/builder/builder.d.ts.map +1 -0
- package/lib/ast/builder/index.d.ts +3 -0
- package/lib/ast/builder/index.d.ts.map +1 -0
- package/lib/ast/builder/types.d.ts +18 -0
- package/lib/ast/builder/types.d.ts.map +1 -0
- package/lib/ast/grouping.d.ts +70 -0
- package/lib/ast/grouping.d.ts.map +1 -0
- package/lib/ast/index.d.ts +9 -0
- package/lib/ast/index.d.ts.map +1 -0
- package/lib/ast/is.d.ts +49 -0
- package/lib/ast/is.d.ts.map +1 -0
- package/lib/ast/location.d.ts +7 -0
- package/lib/ast/location.d.ts.map +1 -0
- package/lib/ast/mutate/commands/from/index.d.ts +4 -0
- package/lib/ast/mutate/commands/from/index.d.ts.map +1 -0
- package/lib/ast/mutate/commands/from/metadata.d.ts +63 -0
- package/lib/ast/mutate/commands/from/metadata.d.ts.map +1 -0
- package/lib/ast/mutate/commands/from/sources.d.ts +9 -0
- package/lib/ast/mutate/commands/from/sources.d.ts.map +1 -0
- package/lib/ast/mutate/commands/index.d.ts +9 -0
- package/lib/ast/mutate/commands/index.d.ts.map +1 -0
- package/lib/ast/mutate/commands/join/index.d.ts +17 -0
- package/lib/ast/mutate/commands/join/index.d.ts.map +1 -0
- package/lib/ast/mutate/commands/limit/index.d.ts +56 -0
- package/lib/ast/mutate/commands/limit/index.d.ts.map +1 -0
- package/lib/ast/mutate/commands/rerank/index.d.ts +41 -0
- package/lib/ast/mutate/commands/rerank/index.d.ts.map +1 -0
- package/lib/ast/mutate/commands/sort/index.d.ts +117 -0
- package/lib/ast/mutate/commands/sort/index.d.ts.map +1 -0
- package/lib/ast/mutate/commands/stats/index.d.ts +17 -0
- package/lib/ast/mutate/commands/stats/index.d.ts.map +1 -0
- package/lib/ast/mutate/commands/where/index.d.ts +48 -0
- package/lib/ast/mutate/commands/where/index.d.ts.map +1 -0
- package/lib/ast/mutate/generic/commands/args/index.d.ts +14 -0
- package/lib/ast/mutate/generic/commands/args/index.d.ts.map +1 -0
- package/lib/ast/mutate/generic/commands/index.d.ts +54 -0
- package/lib/ast/mutate/generic/commands/index.d.ts.map +1 -0
- package/lib/ast/mutate/generic/commands/options/index.d.ts +38 -0
- package/lib/ast/mutate/generic/commands/options/index.d.ts.map +1 -0
- package/lib/ast/mutate/generic/index.d.ts +2 -0
- package/lib/ast/mutate/generic/index.d.ts.map +1 -0
- package/lib/ast/mutate/index.d.ts +5 -0
- package/lib/ast/mutate/index.d.ts.map +1 -0
- package/lib/ast/mutate/types.d.ts +2 -0
- package/lib/ast/mutate/types.d.ts.map +1 -0
- package/lib/ast/mutate/util.d.ts +20 -0
- package/lib/ast/mutate/util.d.ts.map +1 -0
- package/lib/ast/visitor/contexts.d.ts +176 -0
- package/lib/ast/visitor/contexts.d.ts.map +1 -0
- package/lib/ast/visitor/global_visitor_context.d.ts +77 -0
- package/lib/ast/visitor/global_visitor_context.d.ts.map +1 -0
- package/lib/ast/visitor/index.d.ts +5 -0
- package/lib/ast/visitor/index.d.ts.map +1 -0
- package/lib/ast/visitor/types.d.ts +104 -0
- package/lib/ast/visitor/types.d.ts.map +1 -0
- package/lib/ast/visitor/utils.d.ts +26 -0
- package/lib/ast/visitor/utils.d.ts.map +1 -0
- package/lib/ast/visitor/visitor.d.ts +79 -0
- package/lib/ast/visitor/visitor.d.ts.map +1 -0
- package/lib/ast/walker/helpers.d.ts +23 -0
- package/lib/ast/walker/helpers.d.ts.map +1 -0
- package/lib/ast/walker/index.d.ts +2 -0
- package/lib/ast/walker/index.d.ts.map +1 -0
- package/lib/ast/walker/walker.d.ts +266 -0
- package/lib/ast/walker/walker.d.ts.map +1 -0
- package/lib/composer/composer_query.d.ts +684 -0
- package/lib/composer/composer_query.d.ts.map +1 -0
- package/lib/composer/esql.d.ts +25 -0
- package/lib/composer/esql.d.ts.map +1 -0
- package/lib/composer/index.d.ts +8 -0
- package/lib/composer/index.d.ts.map +1 -0
- package/lib/composer/parameter_hole.d.ts +11 -0
- package/lib/composer/parameter_hole.d.ts.map +1 -0
- package/lib/composer/query/index.d.ts +2 -0
- package/lib/composer/query/index.d.ts.map +1 -0
- package/lib/composer/query/query.d.ts +54 -0
- package/lib/composer/query/query.d.ts.map +1 -0
- package/lib/composer/synth/command.d.ts +7 -0
- package/lib/composer/synth/command.d.ts.map +1 -0
- package/lib/composer/synth/expression.d.ts +6 -0
- package/lib/composer/synth/expression.d.ts.map +1 -0
- package/lib/composer/synth/header.d.ts +7 -0
- package/lib/composer/synth/header.d.ts.map +1 -0
- package/lib/composer/synth/holes.d.ts +27 -0
- package/lib/composer/synth/holes.d.ts.map +1 -0
- package/lib/composer/synth/index.d.ts +7 -0
- package/lib/composer/synth/index.d.ts.map +1 -0
- package/lib/composer/synth/nodes.d.ts +104 -0
- package/lib/composer/synth/nodes.d.ts.map +1 -0
- package/lib/composer/synth/query.d.ts +7 -0
- package/lib/composer/synth/query.d.ts.map +1 -0
- package/lib/composer/synth/synth_literal_fragment.d.ts +19 -0
- package/lib/composer/synth/synth_literal_fragment.d.ts.map +1 -0
- package/lib/composer/synth/synth_node.d.ts +19 -0
- package/lib/composer/synth/synth_node.d.ts.map +1 -0
- package/lib/composer/synth/tag.d.ts +4 -0
- package/lib/composer/synth/tag.d.ts.map +1 -0
- package/lib/composer/synth/types.d.ts +65 -0
- package/lib/composer/synth/types.d.ts.map +1 -0
- package/lib/composer/types.d.ts +218 -0
- package/lib/composer/types.d.ts.map +1 -0
- package/lib/composer/util.d.ts +24 -0
- package/lib/composer/util.d.ts.map +1 -0
- package/lib/debug/index.d.ts +2 -0
- package/lib/debug/index.d.ts.map +1 -0
- package/lib/debug/print_ast.d.ts +60 -0
- package/lib/debug/print_ast.d.ts.map +1 -0
- package/lib/embedded_languages/index.d.ts +2 -0
- package/lib/embedded_languages/index.d.ts.map +1 -0
- package/lib/embedded_languages/promql/ast/builder/builder.d.ts +52 -0
- package/lib/embedded_languages/promql/ast/builder/builder.d.ts.map +1 -0
- package/lib/embedded_languages/promql/ast/builder/index.d.ts +3 -0
- package/lib/embedded_languages/promql/ast/builder/index.d.ts.map +1 -0
- package/lib/embedded_languages/promql/ast/builder/types.d.ts +12 -0
- package/lib/embedded_languages/promql/ast/builder/types.d.ts.map +1 -0
- package/lib/embedded_languages/promql/ast/is.d.ts +3 -0
- package/lib/embedded_languages/promql/ast/is.d.ts.map +1 -0
- package/lib/embedded_languages/promql/ast/traversal.d.ts +3 -0
- package/lib/embedded_languages/promql/ast/traversal.d.ts.map +1 -0
- package/lib/embedded_languages/promql/ast/walker/index.d.ts +3 -0
- package/lib/embedded_languages/promql/ast/walker/index.d.ts.map +1 -0
- package/lib/embedded_languages/promql/ast/walker/types.d.ts +93 -0
- package/lib/embedded_languages/promql/ast/walker/types.d.ts.map +1 -0
- package/lib/embedded_languages/promql/ast/walker/walker.d.ts +43 -0
- package/lib/embedded_languages/promql/ast/walker/walker.d.ts.map +1 -0
- package/lib/embedded_languages/promql/index.d.ts +8 -0
- package/lib/embedded_languages/promql/index.d.ts.map +1 -0
- package/lib/embedded_languages/promql/parser/cst_to_ast_converter.d.ts +48 -0
- package/lib/embedded_languages/promql/parser/cst_to_ast_converter.d.ts.map +1 -0
- package/lib/embedded_languages/promql/parser/index.d.ts +4 -0
- package/lib/embedded_languages/promql/parser/index.d.ts.map +1 -0
- package/lib/embedded_languages/promql/parser/parser.d.ts +65 -0
- package/lib/embedded_languages/promql/parser/parser.d.ts.map +1 -0
- package/lib/embedded_languages/promql/parser/promql_error_listener.d.ts +11 -0
- package/lib/embedded_languages/promql/parser/promql_error_listener.d.ts.map +1 -0
- package/lib/embedded_languages/promql/pretty_print/basic_pretty_printer.d.ts +65 -0
- package/lib/embedded_languages/promql/pretty_print/basic_pretty_printer.d.ts.map +1 -0
- package/lib/embedded_languages/promql/pretty_print/helpers.d.ts +34 -0
- package/lib/embedded_languages/promql/pretty_print/helpers.d.ts.map +1 -0
- package/lib/embedded_languages/promql/pretty_print/index.d.ts +2 -0
- package/lib/embedded_languages/promql/pretty_print/index.d.ts.map +1 -0
- package/lib/embedded_languages/promql/types.d.ts +355 -0
- package/lib/embedded_languages/promql/types.d.ts.map +1 -0
- package/lib/index.d.ts +7 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +63055 -0
- package/lib/index.js.map +1 -0
- package/lib/index.mjs +62941 -0
- package/lib/index.mjs.map +1 -0
- package/lib/parser/antlr/esql_lexer.d.ts +223 -0
- package/lib/parser/antlr/esql_lexer.d.ts.map +1 -0
- package/lib/parser/antlr/esql_parser.d.ts +1847 -0
- package/lib/parser/antlr/esql_parser.d.ts.map +1 -0
- package/lib/parser/antlr/esql_parser_listener.d.ts +1634 -0
- package/lib/parser/antlr/esql_parser_listener.d.ts.map +1 -0
- package/lib/parser/antlr/lexer_config.d.ts +13 -0
- package/lib/parser/antlr/lexer_config.d.ts.map +1 -0
- package/lib/parser/antlr/parser_config.d.ts +7 -0
- package/lib/parser/antlr/parser_config.d.ts.map +1 -0
- package/lib/parser/antlr/promql_lexer.d.ts +71 -0
- package/lib/parser/antlr/promql_lexer.d.ts.map +1 -0
- package/lib/parser/antlr/promql_parser.d.ts +441 -0
- package/lib/parser/antlr/promql_parser.d.ts.map +1 -0
- package/lib/parser/antlr/promql_parser_listener.d.ts +354 -0
- package/lib/parser/antlr/promql_parser_listener.d.ts.map +1 -0
- package/lib/parser/core/constants.d.ts +8 -0
- package/lib/parser/core/constants.d.ts.map +1 -0
- package/lib/parser/core/cst_to_ast_converter.d.ts +262 -0
- package/lib/parser/core/cst_to_ast_converter.d.ts.map +1 -0
- package/lib/parser/core/decorations.d.ts +29 -0
- package/lib/parser/core/decorations.d.ts.map +1 -0
- package/lib/parser/core/esql_error_listener.d.ts +8 -0
- package/lib/parser/core/esql_error_listener.d.ts.map +1 -0
- package/lib/parser/core/helpers.d.ts +9 -0
- package/lib/parser/core/helpers.d.ts.map +1 -0
- package/lib/parser/core/parser.d.ts +136 -0
- package/lib/parser/core/parser.d.ts.map +1 -0
- package/lib/parser/core/tokens.d.ts +45 -0
- package/lib/parser/core/tokens.d.ts.map +1 -0
- package/lib/parser/core/types.d.ts +69 -0
- package/lib/parser/core/types.d.ts.map +1 -0
- package/lib/parser/index.d.ts +4 -0
- package/lib/parser/index.d.ts.map +1 -0
- package/lib/pretty_print/__tests__/fixtures.d.ts +5 -0
- package/lib/pretty_print/__tests__/fixtures.d.ts.map +1 -0
- package/lib/pretty_print/basic_pretty_printer.d.ts +87 -0
- package/lib/pretty_print/basic_pretty_printer.d.ts.map +1 -0
- package/lib/pretty_print/constants.d.ts +47 -0
- package/lib/pretty_print/constants.d.ts.map +1 -0
- package/lib/pretty_print/helpers.d.ts +22 -0
- package/lib/pretty_print/helpers.d.ts.map +1 -0
- package/lib/pretty_print/index.d.ts +4 -0
- package/lib/pretty_print/index.d.ts.map +1 -0
- package/lib/pretty_print/leaf_printer.d.ts +19 -0
- package/lib/pretty_print/leaf_printer.d.ts.map +1 -0
- package/lib/pretty_print/utils.d.ts +7 -0
- package/lib/pretty_print/utils.d.ts.map +1 -0
- package/lib/pretty_print/wrapping_pretty_printer.d.ts +113 -0
- package/lib/pretty_print/wrapping_pretty_printer.d.ts.map +1 -0
- package/lib/types.d.ts +523 -0
- package/lib/types.d.ts.map +1 -0
- package/lib/types.js +19 -0
- package/lib/types.js.map +1 -0
- package/lib/types.mjs +1 -0
- package/lib/types.mjs.map +1 -0
- package/package.json +98 -0
|
@@ -0,0 +1,1634 @@
|
|
|
1
|
+
import { ParseTreeListener } from "antlr4";
|
|
2
|
+
import { StatementsContext } from "./esql_parser.js";
|
|
3
|
+
import { SingleStatementContext } from "./esql_parser.js";
|
|
4
|
+
import { CompositeQueryContext } from "./esql_parser.js";
|
|
5
|
+
import { SingleCommandQueryContext } from "./esql_parser.js";
|
|
6
|
+
import { SourceCommandContext } from "./esql_parser.js";
|
|
7
|
+
import { ProcessingCommandContext } from "./esql_parser.js";
|
|
8
|
+
import { WhereCommandContext } from "./esql_parser.js";
|
|
9
|
+
import { ToDataTypeContext } from "./esql_parser.js";
|
|
10
|
+
import { RowCommandContext } from "./esql_parser.js";
|
|
11
|
+
import { FieldsContext } from "./esql_parser.js";
|
|
12
|
+
import { FieldContext } from "./esql_parser.js";
|
|
13
|
+
import { FromCommandContext } from "./esql_parser.js";
|
|
14
|
+
import { TimeSeriesCommandContext } from "./esql_parser.js";
|
|
15
|
+
import { ExternalCommandContext } from "./esql_parser.js";
|
|
16
|
+
import { IndexPatternAndMetadataFieldsContext } from "./esql_parser.js";
|
|
17
|
+
import { IndexPatternOrSubqueryContext } from "./esql_parser.js";
|
|
18
|
+
import { SubqueryContext } from "./esql_parser.js";
|
|
19
|
+
import { IndexPatternContext } from "./esql_parser.js";
|
|
20
|
+
import { ClusterStringContext } from "./esql_parser.js";
|
|
21
|
+
import { SelectorStringContext } from "./esql_parser.js";
|
|
22
|
+
import { UnquotedIndexStringContext } from "./esql_parser.js";
|
|
23
|
+
import { IndexStringContext } from "./esql_parser.js";
|
|
24
|
+
import { MetadataContext } from "./esql_parser.js";
|
|
25
|
+
import { EvalCommandContext } from "./esql_parser.js";
|
|
26
|
+
import { StatsCommandContext } from "./esql_parser.js";
|
|
27
|
+
import { AggFieldsContext } from "./esql_parser.js";
|
|
28
|
+
import { AggFieldContext } from "./esql_parser.js";
|
|
29
|
+
import { QualifiedNameContext } from "./esql_parser.js";
|
|
30
|
+
import { FieldNameContext } from "./esql_parser.js";
|
|
31
|
+
import { QualifiedNamePatternContext } from "./esql_parser.js";
|
|
32
|
+
import { FieldNamePatternContext } from "./esql_parser.js";
|
|
33
|
+
import { QualifiedNamePatternsContext } from "./esql_parser.js";
|
|
34
|
+
import { IdentifierContext } from "./esql_parser.js";
|
|
35
|
+
import { IdentifierPatternContext } from "./esql_parser.js";
|
|
36
|
+
import { InputParamContext } from "./esql_parser.js";
|
|
37
|
+
import { InputNamedOrPositionalParamContext } from "./esql_parser.js";
|
|
38
|
+
import { InputDoubleParamsContext } from "./esql_parser.js";
|
|
39
|
+
import { InputNamedOrPositionalDoubleParamsContext } from "./esql_parser.js";
|
|
40
|
+
import { IdentifierOrParameterContext } from "./esql_parser.js";
|
|
41
|
+
import { StringOrParameterContext } from "./esql_parser.js";
|
|
42
|
+
import { LimitCommandContext } from "./esql_parser.js";
|
|
43
|
+
import { SortCommandContext } from "./esql_parser.js";
|
|
44
|
+
import { OrderExpressionContext } from "./esql_parser.js";
|
|
45
|
+
import { KeepCommandContext } from "./esql_parser.js";
|
|
46
|
+
import { DropCommandContext } from "./esql_parser.js";
|
|
47
|
+
import { RenameCommandContext } from "./esql_parser.js";
|
|
48
|
+
import { RenameClauseContext } from "./esql_parser.js";
|
|
49
|
+
import { DissectCommandContext } from "./esql_parser.js";
|
|
50
|
+
import { DissectCommandOptionsContext } from "./esql_parser.js";
|
|
51
|
+
import { DissectCommandOptionContext } from "./esql_parser.js";
|
|
52
|
+
import { CommandNamedParametersContext } from "./esql_parser.js";
|
|
53
|
+
import { GrokCommandContext } from "./esql_parser.js";
|
|
54
|
+
import { MvExpandCommandContext } from "./esql_parser.js";
|
|
55
|
+
import { ExplainCommandContext } from "./esql_parser.js";
|
|
56
|
+
import { SubqueryExpressionContext } from "./esql_parser.js";
|
|
57
|
+
import { ShowInfoContext } from "./esql_parser.js";
|
|
58
|
+
import { EnrichCommandContext } from "./esql_parser.js";
|
|
59
|
+
import { EnrichPolicyNameContext } from "./esql_parser.js";
|
|
60
|
+
import { EnrichWithClauseContext } from "./esql_parser.js";
|
|
61
|
+
import { SampleCommandContext } from "./esql_parser.js";
|
|
62
|
+
import { ChangePointCommandContext } from "./esql_parser.js";
|
|
63
|
+
import { ForkCommandContext } from "./esql_parser.js";
|
|
64
|
+
import { ForkSubQueriesContext } from "./esql_parser.js";
|
|
65
|
+
import { ForkSubQueryContext } from "./esql_parser.js";
|
|
66
|
+
import { SingleForkSubQueryCommandContext } from "./esql_parser.js";
|
|
67
|
+
import { CompositeForkSubQueryContext } from "./esql_parser.js";
|
|
68
|
+
import { ForkSubQueryProcessingCommandContext } from "./esql_parser.js";
|
|
69
|
+
import { RerankCommandContext } from "./esql_parser.js";
|
|
70
|
+
import { CompletionCommandContext } from "./esql_parser.js";
|
|
71
|
+
import { InlineStatsCommandContext } from "./esql_parser.js";
|
|
72
|
+
import { FuseCommandContext } from "./esql_parser.js";
|
|
73
|
+
import { FuseConfigurationContext } from "./esql_parser.js";
|
|
74
|
+
import { FuseKeyByFieldsContext } from "./esql_parser.js";
|
|
75
|
+
import { MetricsInfoCommandContext } from "./esql_parser.js";
|
|
76
|
+
import { LookupCommandContext } from "./esql_parser.js";
|
|
77
|
+
import { InsistCommandContext } from "./esql_parser.js";
|
|
78
|
+
import { UriPartsCommandContext } from "./esql_parser.js";
|
|
79
|
+
import { SetCommandContext } from "./esql_parser.js";
|
|
80
|
+
import { SetFieldContext } from "./esql_parser.js";
|
|
81
|
+
import { MmrCommandContext } from "./esql_parser.js";
|
|
82
|
+
import { MmrQueryVectorParameterContext } from "./esql_parser.js";
|
|
83
|
+
import { MmrQueryVectorExpressionContext } from "./esql_parser.js";
|
|
84
|
+
import { MatchExpressionContext } from "./esql_parser.js";
|
|
85
|
+
import { LogicalNotContext } from "./esql_parser.js";
|
|
86
|
+
import { BooleanDefaultContext } from "./esql_parser.js";
|
|
87
|
+
import { IsNullContext } from "./esql_parser.js";
|
|
88
|
+
import { RegexExpressionContext } from "./esql_parser.js";
|
|
89
|
+
import { LogicalInContext } from "./esql_parser.js";
|
|
90
|
+
import { LogicalBinaryContext } from "./esql_parser.js";
|
|
91
|
+
import { LikeExpressionContext } from "./esql_parser.js";
|
|
92
|
+
import { RlikeExpressionContext } from "./esql_parser.js";
|
|
93
|
+
import { LikeListExpressionContext } from "./esql_parser.js";
|
|
94
|
+
import { RlikeListExpressionContext } from "./esql_parser.js";
|
|
95
|
+
import { MatchBooleanExpressionContext } from "./esql_parser.js";
|
|
96
|
+
import { ValueExpressionDefaultContext } from "./esql_parser.js";
|
|
97
|
+
import { ComparisonContext } from "./esql_parser.js";
|
|
98
|
+
import { OperatorExpressionDefaultContext } from "./esql_parser.js";
|
|
99
|
+
import { ArithmeticBinaryContext } from "./esql_parser.js";
|
|
100
|
+
import { ArithmeticUnaryContext } from "./esql_parser.js";
|
|
101
|
+
import { DereferenceContext } from "./esql_parser.js";
|
|
102
|
+
import { InlineCastContext } from "./esql_parser.js";
|
|
103
|
+
import { ConstantDefaultContext } from "./esql_parser.js";
|
|
104
|
+
import { ParenthesizedExpressionContext } from "./esql_parser.js";
|
|
105
|
+
import { FunctionContext } from "./esql_parser.js";
|
|
106
|
+
import { FunctionExpressionContext } from "./esql_parser.js";
|
|
107
|
+
import { FunctionNameContext } from "./esql_parser.js";
|
|
108
|
+
import { MapExpressionContext } from "./esql_parser.js";
|
|
109
|
+
import { EntryExpressionContext } from "./esql_parser.js";
|
|
110
|
+
import { MapValueContext } from "./esql_parser.js";
|
|
111
|
+
import { NullLiteralContext } from "./esql_parser.js";
|
|
112
|
+
import { QualifiedIntegerLiteralContext } from "./esql_parser.js";
|
|
113
|
+
import { DecimalLiteralContext } from "./esql_parser.js";
|
|
114
|
+
import { IntegerLiteralContext } from "./esql_parser.js";
|
|
115
|
+
import { BooleanLiteralContext } from "./esql_parser.js";
|
|
116
|
+
import { InputParameterContext } from "./esql_parser.js";
|
|
117
|
+
import { StringLiteralContext } from "./esql_parser.js";
|
|
118
|
+
import { NumericArrayLiteralContext } from "./esql_parser.js";
|
|
119
|
+
import { BooleanArrayLiteralContext } from "./esql_parser.js";
|
|
120
|
+
import { StringArrayLiteralContext } from "./esql_parser.js";
|
|
121
|
+
import { BooleanValueContext } from "./esql_parser.js";
|
|
122
|
+
import { NumericValueContext } from "./esql_parser.js";
|
|
123
|
+
import { DecimalValueContext } from "./esql_parser.js";
|
|
124
|
+
import { IntegerValueContext } from "./esql_parser.js";
|
|
125
|
+
import { StringContext } from "./esql_parser.js";
|
|
126
|
+
import { ComparisonOperatorContext } from "./esql_parser.js";
|
|
127
|
+
import { JoinCommandContext } from "./esql_parser.js";
|
|
128
|
+
import { JoinTargetContext } from "./esql_parser.js";
|
|
129
|
+
import { JoinConditionContext } from "./esql_parser.js";
|
|
130
|
+
import { PromqlCommandContext } from "./esql_parser.js";
|
|
131
|
+
import { ValueNameContext } from "./esql_parser.js";
|
|
132
|
+
import { PromqlParamContext } from "./esql_parser.js";
|
|
133
|
+
import { PromqlParamNameContext } from "./esql_parser.js";
|
|
134
|
+
import { PromqlParamValueContext } from "./esql_parser.js";
|
|
135
|
+
import { PromqlQueryContentContext } from "./esql_parser.js";
|
|
136
|
+
import { PromqlQueryPartContext } from "./esql_parser.js";
|
|
137
|
+
import { PromqlIndexPatternContext } from "./esql_parser.js";
|
|
138
|
+
import { PromqlClusterStringContext } from "./esql_parser.js";
|
|
139
|
+
import { PromqlSelectorStringContext } from "./esql_parser.js";
|
|
140
|
+
import { PromqlUnquotedIndexStringContext } from "./esql_parser.js";
|
|
141
|
+
import { PromqlIndexStringContext } from "./esql_parser.js";
|
|
142
|
+
/**
|
|
143
|
+
* This interface defines a complete listener for a parse tree produced by
|
|
144
|
+
* `esql_parser`.
|
|
145
|
+
*/
|
|
146
|
+
export default class esql_parserListener extends ParseTreeListener {
|
|
147
|
+
/**
|
|
148
|
+
* Enter a parse tree produced by `esql_parser.statements`.
|
|
149
|
+
* @param ctx the parse tree
|
|
150
|
+
*/
|
|
151
|
+
enterStatements?: (ctx: StatementsContext) => void;
|
|
152
|
+
/**
|
|
153
|
+
* Exit a parse tree produced by `esql_parser.statements`.
|
|
154
|
+
* @param ctx the parse tree
|
|
155
|
+
*/
|
|
156
|
+
exitStatements?: (ctx: StatementsContext) => void;
|
|
157
|
+
/**
|
|
158
|
+
* Enter a parse tree produced by `esql_parser.singleStatement`.
|
|
159
|
+
* @param ctx the parse tree
|
|
160
|
+
*/
|
|
161
|
+
enterSingleStatement?: (ctx: SingleStatementContext) => void;
|
|
162
|
+
/**
|
|
163
|
+
* Exit a parse tree produced by `esql_parser.singleStatement`.
|
|
164
|
+
* @param ctx the parse tree
|
|
165
|
+
*/
|
|
166
|
+
exitSingleStatement?: (ctx: SingleStatementContext) => void;
|
|
167
|
+
/**
|
|
168
|
+
* Enter a parse tree produced by the `compositeQuery`
|
|
169
|
+
* labeled alternative in `esql_parser.query`.
|
|
170
|
+
* @param ctx the parse tree
|
|
171
|
+
*/
|
|
172
|
+
enterCompositeQuery?: (ctx: CompositeQueryContext) => void;
|
|
173
|
+
/**
|
|
174
|
+
* Exit a parse tree produced by the `compositeQuery`
|
|
175
|
+
* labeled alternative in `esql_parser.query`.
|
|
176
|
+
* @param ctx the parse tree
|
|
177
|
+
*/
|
|
178
|
+
exitCompositeQuery?: (ctx: CompositeQueryContext) => void;
|
|
179
|
+
/**
|
|
180
|
+
* Enter a parse tree produced by the `singleCommandQuery`
|
|
181
|
+
* labeled alternative in `esql_parser.query`.
|
|
182
|
+
* @param ctx the parse tree
|
|
183
|
+
*/
|
|
184
|
+
enterSingleCommandQuery?: (ctx: SingleCommandQueryContext) => void;
|
|
185
|
+
/**
|
|
186
|
+
* Exit a parse tree produced by the `singleCommandQuery`
|
|
187
|
+
* labeled alternative in `esql_parser.query`.
|
|
188
|
+
* @param ctx the parse tree
|
|
189
|
+
*/
|
|
190
|
+
exitSingleCommandQuery?: (ctx: SingleCommandQueryContext) => void;
|
|
191
|
+
/**
|
|
192
|
+
* Enter a parse tree produced by `esql_parser.sourceCommand`.
|
|
193
|
+
* @param ctx the parse tree
|
|
194
|
+
*/
|
|
195
|
+
enterSourceCommand?: (ctx: SourceCommandContext) => void;
|
|
196
|
+
/**
|
|
197
|
+
* Exit a parse tree produced by `esql_parser.sourceCommand`.
|
|
198
|
+
* @param ctx the parse tree
|
|
199
|
+
*/
|
|
200
|
+
exitSourceCommand?: (ctx: SourceCommandContext) => void;
|
|
201
|
+
/**
|
|
202
|
+
* Enter a parse tree produced by `esql_parser.processingCommand`.
|
|
203
|
+
* @param ctx the parse tree
|
|
204
|
+
*/
|
|
205
|
+
enterProcessingCommand?: (ctx: ProcessingCommandContext) => void;
|
|
206
|
+
/**
|
|
207
|
+
* Exit a parse tree produced by `esql_parser.processingCommand`.
|
|
208
|
+
* @param ctx the parse tree
|
|
209
|
+
*/
|
|
210
|
+
exitProcessingCommand?: (ctx: ProcessingCommandContext) => void;
|
|
211
|
+
/**
|
|
212
|
+
* Enter a parse tree produced by `esql_parser.whereCommand`.
|
|
213
|
+
* @param ctx the parse tree
|
|
214
|
+
*/
|
|
215
|
+
enterWhereCommand?: (ctx: WhereCommandContext) => void;
|
|
216
|
+
/**
|
|
217
|
+
* Exit a parse tree produced by `esql_parser.whereCommand`.
|
|
218
|
+
* @param ctx the parse tree
|
|
219
|
+
*/
|
|
220
|
+
exitWhereCommand?: (ctx: WhereCommandContext) => void;
|
|
221
|
+
/**
|
|
222
|
+
* Enter a parse tree produced by the `toDataType`
|
|
223
|
+
* labeled alternative in `esql_parser.dataType`.
|
|
224
|
+
* @param ctx the parse tree
|
|
225
|
+
*/
|
|
226
|
+
enterToDataType?: (ctx: ToDataTypeContext) => void;
|
|
227
|
+
/**
|
|
228
|
+
* Exit a parse tree produced by the `toDataType`
|
|
229
|
+
* labeled alternative in `esql_parser.dataType`.
|
|
230
|
+
* @param ctx the parse tree
|
|
231
|
+
*/
|
|
232
|
+
exitToDataType?: (ctx: ToDataTypeContext) => void;
|
|
233
|
+
/**
|
|
234
|
+
* Enter a parse tree produced by `esql_parser.rowCommand`.
|
|
235
|
+
* @param ctx the parse tree
|
|
236
|
+
*/
|
|
237
|
+
enterRowCommand?: (ctx: RowCommandContext) => void;
|
|
238
|
+
/**
|
|
239
|
+
* Exit a parse tree produced by `esql_parser.rowCommand`.
|
|
240
|
+
* @param ctx the parse tree
|
|
241
|
+
*/
|
|
242
|
+
exitRowCommand?: (ctx: RowCommandContext) => void;
|
|
243
|
+
/**
|
|
244
|
+
* Enter a parse tree produced by `esql_parser.fields`.
|
|
245
|
+
* @param ctx the parse tree
|
|
246
|
+
*/
|
|
247
|
+
enterFields?: (ctx: FieldsContext) => void;
|
|
248
|
+
/**
|
|
249
|
+
* Exit a parse tree produced by `esql_parser.fields`.
|
|
250
|
+
* @param ctx the parse tree
|
|
251
|
+
*/
|
|
252
|
+
exitFields?: (ctx: FieldsContext) => void;
|
|
253
|
+
/**
|
|
254
|
+
* Enter a parse tree produced by `esql_parser.field`.
|
|
255
|
+
* @param ctx the parse tree
|
|
256
|
+
*/
|
|
257
|
+
enterField?: (ctx: FieldContext) => void;
|
|
258
|
+
/**
|
|
259
|
+
* Exit a parse tree produced by `esql_parser.field`.
|
|
260
|
+
* @param ctx the parse tree
|
|
261
|
+
*/
|
|
262
|
+
exitField?: (ctx: FieldContext) => void;
|
|
263
|
+
/**
|
|
264
|
+
* Enter a parse tree produced by `esql_parser.fromCommand`.
|
|
265
|
+
* @param ctx the parse tree
|
|
266
|
+
*/
|
|
267
|
+
enterFromCommand?: (ctx: FromCommandContext) => void;
|
|
268
|
+
/**
|
|
269
|
+
* Exit a parse tree produced by `esql_parser.fromCommand`.
|
|
270
|
+
* @param ctx the parse tree
|
|
271
|
+
*/
|
|
272
|
+
exitFromCommand?: (ctx: FromCommandContext) => void;
|
|
273
|
+
/**
|
|
274
|
+
* Enter a parse tree produced by `esql_parser.timeSeriesCommand`.
|
|
275
|
+
* @param ctx the parse tree
|
|
276
|
+
*/
|
|
277
|
+
enterTimeSeriesCommand?: (ctx: TimeSeriesCommandContext) => void;
|
|
278
|
+
/**
|
|
279
|
+
* Exit a parse tree produced by `esql_parser.timeSeriesCommand`.
|
|
280
|
+
* @param ctx the parse tree
|
|
281
|
+
*/
|
|
282
|
+
exitTimeSeriesCommand?: (ctx: TimeSeriesCommandContext) => void;
|
|
283
|
+
/**
|
|
284
|
+
* Enter a parse tree produced by `esql_parser.externalCommand`.
|
|
285
|
+
* @param ctx the parse tree
|
|
286
|
+
*/
|
|
287
|
+
enterExternalCommand?: (ctx: ExternalCommandContext) => void;
|
|
288
|
+
/**
|
|
289
|
+
* Exit a parse tree produced by `esql_parser.externalCommand`.
|
|
290
|
+
* @param ctx the parse tree
|
|
291
|
+
*/
|
|
292
|
+
exitExternalCommand?: (ctx: ExternalCommandContext) => void;
|
|
293
|
+
/**
|
|
294
|
+
* Enter a parse tree produced by `esql_parser.indexPatternAndMetadataFields`.
|
|
295
|
+
* @param ctx the parse tree
|
|
296
|
+
*/
|
|
297
|
+
enterIndexPatternAndMetadataFields?: (ctx: IndexPatternAndMetadataFieldsContext) => void;
|
|
298
|
+
/**
|
|
299
|
+
* Exit a parse tree produced by `esql_parser.indexPatternAndMetadataFields`.
|
|
300
|
+
* @param ctx the parse tree
|
|
301
|
+
*/
|
|
302
|
+
exitIndexPatternAndMetadataFields?: (ctx: IndexPatternAndMetadataFieldsContext) => void;
|
|
303
|
+
/**
|
|
304
|
+
* Enter a parse tree produced by `esql_parser.indexPatternOrSubquery`.
|
|
305
|
+
* @param ctx the parse tree
|
|
306
|
+
*/
|
|
307
|
+
enterIndexPatternOrSubquery?: (ctx: IndexPatternOrSubqueryContext) => void;
|
|
308
|
+
/**
|
|
309
|
+
* Exit a parse tree produced by `esql_parser.indexPatternOrSubquery`.
|
|
310
|
+
* @param ctx the parse tree
|
|
311
|
+
*/
|
|
312
|
+
exitIndexPatternOrSubquery?: (ctx: IndexPatternOrSubqueryContext) => void;
|
|
313
|
+
/**
|
|
314
|
+
* Enter a parse tree produced by `esql_parser.subquery`.
|
|
315
|
+
* @param ctx the parse tree
|
|
316
|
+
*/
|
|
317
|
+
enterSubquery?: (ctx: SubqueryContext) => void;
|
|
318
|
+
/**
|
|
319
|
+
* Exit a parse tree produced by `esql_parser.subquery`.
|
|
320
|
+
* @param ctx the parse tree
|
|
321
|
+
*/
|
|
322
|
+
exitSubquery?: (ctx: SubqueryContext) => void;
|
|
323
|
+
/**
|
|
324
|
+
* Enter a parse tree produced by `esql_parser.indexPattern`.
|
|
325
|
+
* @param ctx the parse tree
|
|
326
|
+
*/
|
|
327
|
+
enterIndexPattern?: (ctx: IndexPatternContext) => void;
|
|
328
|
+
/**
|
|
329
|
+
* Exit a parse tree produced by `esql_parser.indexPattern`.
|
|
330
|
+
* @param ctx the parse tree
|
|
331
|
+
*/
|
|
332
|
+
exitIndexPattern?: (ctx: IndexPatternContext) => void;
|
|
333
|
+
/**
|
|
334
|
+
* Enter a parse tree produced by `esql_parser.clusterString`.
|
|
335
|
+
* @param ctx the parse tree
|
|
336
|
+
*/
|
|
337
|
+
enterClusterString?: (ctx: ClusterStringContext) => void;
|
|
338
|
+
/**
|
|
339
|
+
* Exit a parse tree produced by `esql_parser.clusterString`.
|
|
340
|
+
* @param ctx the parse tree
|
|
341
|
+
*/
|
|
342
|
+
exitClusterString?: (ctx: ClusterStringContext) => void;
|
|
343
|
+
/**
|
|
344
|
+
* Enter a parse tree produced by `esql_parser.selectorString`.
|
|
345
|
+
* @param ctx the parse tree
|
|
346
|
+
*/
|
|
347
|
+
enterSelectorString?: (ctx: SelectorStringContext) => void;
|
|
348
|
+
/**
|
|
349
|
+
* Exit a parse tree produced by `esql_parser.selectorString`.
|
|
350
|
+
* @param ctx the parse tree
|
|
351
|
+
*/
|
|
352
|
+
exitSelectorString?: (ctx: SelectorStringContext) => void;
|
|
353
|
+
/**
|
|
354
|
+
* Enter a parse tree produced by `esql_parser.unquotedIndexString`.
|
|
355
|
+
* @param ctx the parse tree
|
|
356
|
+
*/
|
|
357
|
+
enterUnquotedIndexString?: (ctx: UnquotedIndexStringContext) => void;
|
|
358
|
+
/**
|
|
359
|
+
* Exit a parse tree produced by `esql_parser.unquotedIndexString`.
|
|
360
|
+
* @param ctx the parse tree
|
|
361
|
+
*/
|
|
362
|
+
exitUnquotedIndexString?: (ctx: UnquotedIndexStringContext) => void;
|
|
363
|
+
/**
|
|
364
|
+
* Enter a parse tree produced by `esql_parser.indexString`.
|
|
365
|
+
* @param ctx the parse tree
|
|
366
|
+
*/
|
|
367
|
+
enterIndexString?: (ctx: IndexStringContext) => void;
|
|
368
|
+
/**
|
|
369
|
+
* Exit a parse tree produced by `esql_parser.indexString`.
|
|
370
|
+
* @param ctx the parse tree
|
|
371
|
+
*/
|
|
372
|
+
exitIndexString?: (ctx: IndexStringContext) => void;
|
|
373
|
+
/**
|
|
374
|
+
* Enter a parse tree produced by `esql_parser.metadata`.
|
|
375
|
+
* @param ctx the parse tree
|
|
376
|
+
*/
|
|
377
|
+
enterMetadata?: (ctx: MetadataContext) => void;
|
|
378
|
+
/**
|
|
379
|
+
* Exit a parse tree produced by `esql_parser.metadata`.
|
|
380
|
+
* @param ctx the parse tree
|
|
381
|
+
*/
|
|
382
|
+
exitMetadata?: (ctx: MetadataContext) => void;
|
|
383
|
+
/**
|
|
384
|
+
* Enter a parse tree produced by `esql_parser.evalCommand`.
|
|
385
|
+
* @param ctx the parse tree
|
|
386
|
+
*/
|
|
387
|
+
enterEvalCommand?: (ctx: EvalCommandContext) => void;
|
|
388
|
+
/**
|
|
389
|
+
* Exit a parse tree produced by `esql_parser.evalCommand`.
|
|
390
|
+
* @param ctx the parse tree
|
|
391
|
+
*/
|
|
392
|
+
exitEvalCommand?: (ctx: EvalCommandContext) => void;
|
|
393
|
+
/**
|
|
394
|
+
* Enter a parse tree produced by `esql_parser.statsCommand`.
|
|
395
|
+
* @param ctx the parse tree
|
|
396
|
+
*/
|
|
397
|
+
enterStatsCommand?: (ctx: StatsCommandContext) => void;
|
|
398
|
+
/**
|
|
399
|
+
* Exit a parse tree produced by `esql_parser.statsCommand`.
|
|
400
|
+
* @param ctx the parse tree
|
|
401
|
+
*/
|
|
402
|
+
exitStatsCommand?: (ctx: StatsCommandContext) => void;
|
|
403
|
+
/**
|
|
404
|
+
* Enter a parse tree produced by `esql_parser.aggFields`.
|
|
405
|
+
* @param ctx the parse tree
|
|
406
|
+
*/
|
|
407
|
+
enterAggFields?: (ctx: AggFieldsContext) => void;
|
|
408
|
+
/**
|
|
409
|
+
* Exit a parse tree produced by `esql_parser.aggFields`.
|
|
410
|
+
* @param ctx the parse tree
|
|
411
|
+
*/
|
|
412
|
+
exitAggFields?: (ctx: AggFieldsContext) => void;
|
|
413
|
+
/**
|
|
414
|
+
* Enter a parse tree produced by `esql_parser.aggField`.
|
|
415
|
+
* @param ctx the parse tree
|
|
416
|
+
*/
|
|
417
|
+
enterAggField?: (ctx: AggFieldContext) => void;
|
|
418
|
+
/**
|
|
419
|
+
* Exit a parse tree produced by `esql_parser.aggField`.
|
|
420
|
+
* @param ctx the parse tree
|
|
421
|
+
*/
|
|
422
|
+
exitAggField?: (ctx: AggFieldContext) => void;
|
|
423
|
+
/**
|
|
424
|
+
* Enter a parse tree produced by `esql_parser.qualifiedName`.
|
|
425
|
+
* @param ctx the parse tree
|
|
426
|
+
*/
|
|
427
|
+
enterQualifiedName?: (ctx: QualifiedNameContext) => void;
|
|
428
|
+
/**
|
|
429
|
+
* Exit a parse tree produced by `esql_parser.qualifiedName`.
|
|
430
|
+
* @param ctx the parse tree
|
|
431
|
+
*/
|
|
432
|
+
exitQualifiedName?: (ctx: QualifiedNameContext) => void;
|
|
433
|
+
/**
|
|
434
|
+
* Enter a parse tree produced by `esql_parser.fieldName`.
|
|
435
|
+
* @param ctx the parse tree
|
|
436
|
+
*/
|
|
437
|
+
enterFieldName?: (ctx: FieldNameContext) => void;
|
|
438
|
+
/**
|
|
439
|
+
* Exit a parse tree produced by `esql_parser.fieldName`.
|
|
440
|
+
* @param ctx the parse tree
|
|
441
|
+
*/
|
|
442
|
+
exitFieldName?: (ctx: FieldNameContext) => void;
|
|
443
|
+
/**
|
|
444
|
+
* Enter a parse tree produced by `esql_parser.qualifiedNamePattern`.
|
|
445
|
+
* @param ctx the parse tree
|
|
446
|
+
*/
|
|
447
|
+
enterQualifiedNamePattern?: (ctx: QualifiedNamePatternContext) => void;
|
|
448
|
+
/**
|
|
449
|
+
* Exit a parse tree produced by `esql_parser.qualifiedNamePattern`.
|
|
450
|
+
* @param ctx the parse tree
|
|
451
|
+
*/
|
|
452
|
+
exitQualifiedNamePattern?: (ctx: QualifiedNamePatternContext) => void;
|
|
453
|
+
/**
|
|
454
|
+
* Enter a parse tree produced by `esql_parser.fieldNamePattern`.
|
|
455
|
+
* @param ctx the parse tree
|
|
456
|
+
*/
|
|
457
|
+
enterFieldNamePattern?: (ctx: FieldNamePatternContext) => void;
|
|
458
|
+
/**
|
|
459
|
+
* Exit a parse tree produced by `esql_parser.fieldNamePattern`.
|
|
460
|
+
* @param ctx the parse tree
|
|
461
|
+
*/
|
|
462
|
+
exitFieldNamePattern?: (ctx: FieldNamePatternContext) => void;
|
|
463
|
+
/**
|
|
464
|
+
* Enter a parse tree produced by `esql_parser.qualifiedNamePatterns`.
|
|
465
|
+
* @param ctx the parse tree
|
|
466
|
+
*/
|
|
467
|
+
enterQualifiedNamePatterns?: (ctx: QualifiedNamePatternsContext) => void;
|
|
468
|
+
/**
|
|
469
|
+
* Exit a parse tree produced by `esql_parser.qualifiedNamePatterns`.
|
|
470
|
+
* @param ctx the parse tree
|
|
471
|
+
*/
|
|
472
|
+
exitQualifiedNamePatterns?: (ctx: QualifiedNamePatternsContext) => void;
|
|
473
|
+
/**
|
|
474
|
+
* Enter a parse tree produced by `esql_parser.identifier`.
|
|
475
|
+
* @param ctx the parse tree
|
|
476
|
+
*/
|
|
477
|
+
enterIdentifier?: (ctx: IdentifierContext) => void;
|
|
478
|
+
/**
|
|
479
|
+
* Exit a parse tree produced by `esql_parser.identifier`.
|
|
480
|
+
* @param ctx the parse tree
|
|
481
|
+
*/
|
|
482
|
+
exitIdentifier?: (ctx: IdentifierContext) => void;
|
|
483
|
+
/**
|
|
484
|
+
* Enter a parse tree produced by `esql_parser.identifierPattern`.
|
|
485
|
+
* @param ctx the parse tree
|
|
486
|
+
*/
|
|
487
|
+
enterIdentifierPattern?: (ctx: IdentifierPatternContext) => void;
|
|
488
|
+
/**
|
|
489
|
+
* Exit a parse tree produced by `esql_parser.identifierPattern`.
|
|
490
|
+
* @param ctx the parse tree
|
|
491
|
+
*/
|
|
492
|
+
exitIdentifierPattern?: (ctx: IdentifierPatternContext) => void;
|
|
493
|
+
/**
|
|
494
|
+
* Enter a parse tree produced by the `inputParam`
|
|
495
|
+
* labeled alternative in `esql_parser.parameter`.
|
|
496
|
+
* @param ctx the parse tree
|
|
497
|
+
*/
|
|
498
|
+
enterInputParam?: (ctx: InputParamContext) => void;
|
|
499
|
+
/**
|
|
500
|
+
* Exit a parse tree produced by the `inputParam`
|
|
501
|
+
* labeled alternative in `esql_parser.parameter`.
|
|
502
|
+
* @param ctx the parse tree
|
|
503
|
+
*/
|
|
504
|
+
exitInputParam?: (ctx: InputParamContext) => void;
|
|
505
|
+
/**
|
|
506
|
+
* Enter a parse tree produced by the `inputNamedOrPositionalParam`
|
|
507
|
+
* labeled alternative in `esql_parser.parameter`.
|
|
508
|
+
* @param ctx the parse tree
|
|
509
|
+
*/
|
|
510
|
+
enterInputNamedOrPositionalParam?: (ctx: InputNamedOrPositionalParamContext) => void;
|
|
511
|
+
/**
|
|
512
|
+
* Exit a parse tree produced by the `inputNamedOrPositionalParam`
|
|
513
|
+
* labeled alternative in `esql_parser.parameter`.
|
|
514
|
+
* @param ctx the parse tree
|
|
515
|
+
*/
|
|
516
|
+
exitInputNamedOrPositionalParam?: (ctx: InputNamedOrPositionalParamContext) => void;
|
|
517
|
+
/**
|
|
518
|
+
* Enter a parse tree produced by the `inputDoubleParams`
|
|
519
|
+
* labeled alternative in `esql_parser.doubleParameter`.
|
|
520
|
+
* @param ctx the parse tree
|
|
521
|
+
*/
|
|
522
|
+
enterInputDoubleParams?: (ctx: InputDoubleParamsContext) => void;
|
|
523
|
+
/**
|
|
524
|
+
* Exit a parse tree produced by the `inputDoubleParams`
|
|
525
|
+
* labeled alternative in `esql_parser.doubleParameter`.
|
|
526
|
+
* @param ctx the parse tree
|
|
527
|
+
*/
|
|
528
|
+
exitInputDoubleParams?: (ctx: InputDoubleParamsContext) => void;
|
|
529
|
+
/**
|
|
530
|
+
* Enter a parse tree produced by the `inputNamedOrPositionalDoubleParams`
|
|
531
|
+
* labeled alternative in `esql_parser.doubleParameter`.
|
|
532
|
+
* @param ctx the parse tree
|
|
533
|
+
*/
|
|
534
|
+
enterInputNamedOrPositionalDoubleParams?: (ctx: InputNamedOrPositionalDoubleParamsContext) => void;
|
|
535
|
+
/**
|
|
536
|
+
* Exit a parse tree produced by the `inputNamedOrPositionalDoubleParams`
|
|
537
|
+
* labeled alternative in `esql_parser.doubleParameter`.
|
|
538
|
+
* @param ctx the parse tree
|
|
539
|
+
*/
|
|
540
|
+
exitInputNamedOrPositionalDoubleParams?: (ctx: InputNamedOrPositionalDoubleParamsContext) => void;
|
|
541
|
+
/**
|
|
542
|
+
* Enter a parse tree produced by `esql_parser.identifierOrParameter`.
|
|
543
|
+
* @param ctx the parse tree
|
|
544
|
+
*/
|
|
545
|
+
enterIdentifierOrParameter?: (ctx: IdentifierOrParameterContext) => void;
|
|
546
|
+
/**
|
|
547
|
+
* Exit a parse tree produced by `esql_parser.identifierOrParameter`.
|
|
548
|
+
* @param ctx the parse tree
|
|
549
|
+
*/
|
|
550
|
+
exitIdentifierOrParameter?: (ctx: IdentifierOrParameterContext) => void;
|
|
551
|
+
/**
|
|
552
|
+
* Enter a parse tree produced by `esql_parser.stringOrParameter`.
|
|
553
|
+
* @param ctx the parse tree
|
|
554
|
+
*/
|
|
555
|
+
enterStringOrParameter?: (ctx: StringOrParameterContext) => void;
|
|
556
|
+
/**
|
|
557
|
+
* Exit a parse tree produced by `esql_parser.stringOrParameter`.
|
|
558
|
+
* @param ctx the parse tree
|
|
559
|
+
*/
|
|
560
|
+
exitStringOrParameter?: (ctx: StringOrParameterContext) => void;
|
|
561
|
+
/**
|
|
562
|
+
* Enter a parse tree produced by `esql_parser.limitCommand`.
|
|
563
|
+
* @param ctx the parse tree
|
|
564
|
+
*/
|
|
565
|
+
enterLimitCommand?: (ctx: LimitCommandContext) => void;
|
|
566
|
+
/**
|
|
567
|
+
* Exit a parse tree produced by `esql_parser.limitCommand`.
|
|
568
|
+
* @param ctx the parse tree
|
|
569
|
+
*/
|
|
570
|
+
exitLimitCommand?: (ctx: LimitCommandContext) => void;
|
|
571
|
+
/**
|
|
572
|
+
* Enter a parse tree produced by `esql_parser.sortCommand`.
|
|
573
|
+
* @param ctx the parse tree
|
|
574
|
+
*/
|
|
575
|
+
enterSortCommand?: (ctx: SortCommandContext) => void;
|
|
576
|
+
/**
|
|
577
|
+
* Exit a parse tree produced by `esql_parser.sortCommand`.
|
|
578
|
+
* @param ctx the parse tree
|
|
579
|
+
*/
|
|
580
|
+
exitSortCommand?: (ctx: SortCommandContext) => void;
|
|
581
|
+
/**
|
|
582
|
+
* Enter a parse tree produced by `esql_parser.orderExpression`.
|
|
583
|
+
* @param ctx the parse tree
|
|
584
|
+
*/
|
|
585
|
+
enterOrderExpression?: (ctx: OrderExpressionContext) => void;
|
|
586
|
+
/**
|
|
587
|
+
* Exit a parse tree produced by `esql_parser.orderExpression`.
|
|
588
|
+
* @param ctx the parse tree
|
|
589
|
+
*/
|
|
590
|
+
exitOrderExpression?: (ctx: OrderExpressionContext) => void;
|
|
591
|
+
/**
|
|
592
|
+
* Enter a parse tree produced by `esql_parser.keepCommand`.
|
|
593
|
+
* @param ctx the parse tree
|
|
594
|
+
*/
|
|
595
|
+
enterKeepCommand?: (ctx: KeepCommandContext) => void;
|
|
596
|
+
/**
|
|
597
|
+
* Exit a parse tree produced by `esql_parser.keepCommand`.
|
|
598
|
+
* @param ctx the parse tree
|
|
599
|
+
*/
|
|
600
|
+
exitKeepCommand?: (ctx: KeepCommandContext) => void;
|
|
601
|
+
/**
|
|
602
|
+
* Enter a parse tree produced by `esql_parser.dropCommand`.
|
|
603
|
+
* @param ctx the parse tree
|
|
604
|
+
*/
|
|
605
|
+
enterDropCommand?: (ctx: DropCommandContext) => void;
|
|
606
|
+
/**
|
|
607
|
+
* Exit a parse tree produced by `esql_parser.dropCommand`.
|
|
608
|
+
* @param ctx the parse tree
|
|
609
|
+
*/
|
|
610
|
+
exitDropCommand?: (ctx: DropCommandContext) => void;
|
|
611
|
+
/**
|
|
612
|
+
* Enter a parse tree produced by `esql_parser.renameCommand`.
|
|
613
|
+
* @param ctx the parse tree
|
|
614
|
+
*/
|
|
615
|
+
enterRenameCommand?: (ctx: RenameCommandContext) => void;
|
|
616
|
+
/**
|
|
617
|
+
* Exit a parse tree produced by `esql_parser.renameCommand`.
|
|
618
|
+
* @param ctx the parse tree
|
|
619
|
+
*/
|
|
620
|
+
exitRenameCommand?: (ctx: RenameCommandContext) => void;
|
|
621
|
+
/**
|
|
622
|
+
* Enter a parse tree produced by `esql_parser.renameClause`.
|
|
623
|
+
* @param ctx the parse tree
|
|
624
|
+
*/
|
|
625
|
+
enterRenameClause?: (ctx: RenameClauseContext) => void;
|
|
626
|
+
/**
|
|
627
|
+
* Exit a parse tree produced by `esql_parser.renameClause`.
|
|
628
|
+
* @param ctx the parse tree
|
|
629
|
+
*/
|
|
630
|
+
exitRenameClause?: (ctx: RenameClauseContext) => void;
|
|
631
|
+
/**
|
|
632
|
+
* Enter a parse tree produced by `esql_parser.dissectCommand`.
|
|
633
|
+
* @param ctx the parse tree
|
|
634
|
+
*/
|
|
635
|
+
enterDissectCommand?: (ctx: DissectCommandContext) => void;
|
|
636
|
+
/**
|
|
637
|
+
* Exit a parse tree produced by `esql_parser.dissectCommand`.
|
|
638
|
+
* @param ctx the parse tree
|
|
639
|
+
*/
|
|
640
|
+
exitDissectCommand?: (ctx: DissectCommandContext) => void;
|
|
641
|
+
/**
|
|
642
|
+
* Enter a parse tree produced by `esql_parser.dissectCommandOptions`.
|
|
643
|
+
* @param ctx the parse tree
|
|
644
|
+
*/
|
|
645
|
+
enterDissectCommandOptions?: (ctx: DissectCommandOptionsContext) => void;
|
|
646
|
+
/**
|
|
647
|
+
* Exit a parse tree produced by `esql_parser.dissectCommandOptions`.
|
|
648
|
+
* @param ctx the parse tree
|
|
649
|
+
*/
|
|
650
|
+
exitDissectCommandOptions?: (ctx: DissectCommandOptionsContext) => void;
|
|
651
|
+
/**
|
|
652
|
+
* Enter a parse tree produced by `esql_parser.dissectCommandOption`.
|
|
653
|
+
* @param ctx the parse tree
|
|
654
|
+
*/
|
|
655
|
+
enterDissectCommandOption?: (ctx: DissectCommandOptionContext) => void;
|
|
656
|
+
/**
|
|
657
|
+
* Exit a parse tree produced by `esql_parser.dissectCommandOption`.
|
|
658
|
+
* @param ctx the parse tree
|
|
659
|
+
*/
|
|
660
|
+
exitDissectCommandOption?: (ctx: DissectCommandOptionContext) => void;
|
|
661
|
+
/**
|
|
662
|
+
* Enter a parse tree produced by `esql_parser.commandNamedParameters`.
|
|
663
|
+
* @param ctx the parse tree
|
|
664
|
+
*/
|
|
665
|
+
enterCommandNamedParameters?: (ctx: CommandNamedParametersContext) => void;
|
|
666
|
+
/**
|
|
667
|
+
* Exit a parse tree produced by `esql_parser.commandNamedParameters`.
|
|
668
|
+
* @param ctx the parse tree
|
|
669
|
+
*/
|
|
670
|
+
exitCommandNamedParameters?: (ctx: CommandNamedParametersContext) => void;
|
|
671
|
+
/**
|
|
672
|
+
* Enter a parse tree produced by `esql_parser.grokCommand`.
|
|
673
|
+
* @param ctx the parse tree
|
|
674
|
+
*/
|
|
675
|
+
enterGrokCommand?: (ctx: GrokCommandContext) => void;
|
|
676
|
+
/**
|
|
677
|
+
* Exit a parse tree produced by `esql_parser.grokCommand`.
|
|
678
|
+
* @param ctx the parse tree
|
|
679
|
+
*/
|
|
680
|
+
exitGrokCommand?: (ctx: GrokCommandContext) => void;
|
|
681
|
+
/**
|
|
682
|
+
* Enter a parse tree produced by `esql_parser.mvExpandCommand`.
|
|
683
|
+
* @param ctx the parse tree
|
|
684
|
+
*/
|
|
685
|
+
enterMvExpandCommand?: (ctx: MvExpandCommandContext) => void;
|
|
686
|
+
/**
|
|
687
|
+
* Exit a parse tree produced by `esql_parser.mvExpandCommand`.
|
|
688
|
+
* @param ctx the parse tree
|
|
689
|
+
*/
|
|
690
|
+
exitMvExpandCommand?: (ctx: MvExpandCommandContext) => void;
|
|
691
|
+
/**
|
|
692
|
+
* Enter a parse tree produced by `esql_parser.explainCommand`.
|
|
693
|
+
* @param ctx the parse tree
|
|
694
|
+
*/
|
|
695
|
+
enterExplainCommand?: (ctx: ExplainCommandContext) => void;
|
|
696
|
+
/**
|
|
697
|
+
* Exit a parse tree produced by `esql_parser.explainCommand`.
|
|
698
|
+
* @param ctx the parse tree
|
|
699
|
+
*/
|
|
700
|
+
exitExplainCommand?: (ctx: ExplainCommandContext) => void;
|
|
701
|
+
/**
|
|
702
|
+
* Enter a parse tree produced by `esql_parser.subqueryExpression`.
|
|
703
|
+
* @param ctx the parse tree
|
|
704
|
+
*/
|
|
705
|
+
enterSubqueryExpression?: (ctx: SubqueryExpressionContext) => void;
|
|
706
|
+
/**
|
|
707
|
+
* Exit a parse tree produced by `esql_parser.subqueryExpression`.
|
|
708
|
+
* @param ctx the parse tree
|
|
709
|
+
*/
|
|
710
|
+
exitSubqueryExpression?: (ctx: SubqueryExpressionContext) => void;
|
|
711
|
+
/**
|
|
712
|
+
* Enter a parse tree produced by the `showInfo`
|
|
713
|
+
* labeled alternative in `esql_parser.showCommand`.
|
|
714
|
+
* @param ctx the parse tree
|
|
715
|
+
*/
|
|
716
|
+
enterShowInfo?: (ctx: ShowInfoContext) => void;
|
|
717
|
+
/**
|
|
718
|
+
* Exit a parse tree produced by the `showInfo`
|
|
719
|
+
* labeled alternative in `esql_parser.showCommand`.
|
|
720
|
+
* @param ctx the parse tree
|
|
721
|
+
*/
|
|
722
|
+
exitShowInfo?: (ctx: ShowInfoContext) => void;
|
|
723
|
+
/**
|
|
724
|
+
* Enter a parse tree produced by `esql_parser.enrichCommand`.
|
|
725
|
+
* @param ctx the parse tree
|
|
726
|
+
*/
|
|
727
|
+
enterEnrichCommand?: (ctx: EnrichCommandContext) => void;
|
|
728
|
+
/**
|
|
729
|
+
* Exit a parse tree produced by `esql_parser.enrichCommand`.
|
|
730
|
+
* @param ctx the parse tree
|
|
731
|
+
*/
|
|
732
|
+
exitEnrichCommand?: (ctx: EnrichCommandContext) => void;
|
|
733
|
+
/**
|
|
734
|
+
* Enter a parse tree produced by `esql_parser.enrichPolicyName`.
|
|
735
|
+
* @param ctx the parse tree
|
|
736
|
+
*/
|
|
737
|
+
enterEnrichPolicyName?: (ctx: EnrichPolicyNameContext) => void;
|
|
738
|
+
/**
|
|
739
|
+
* Exit a parse tree produced by `esql_parser.enrichPolicyName`.
|
|
740
|
+
* @param ctx the parse tree
|
|
741
|
+
*/
|
|
742
|
+
exitEnrichPolicyName?: (ctx: EnrichPolicyNameContext) => void;
|
|
743
|
+
/**
|
|
744
|
+
* Enter a parse tree produced by `esql_parser.enrichWithClause`.
|
|
745
|
+
* @param ctx the parse tree
|
|
746
|
+
*/
|
|
747
|
+
enterEnrichWithClause?: (ctx: EnrichWithClauseContext) => void;
|
|
748
|
+
/**
|
|
749
|
+
* Exit a parse tree produced by `esql_parser.enrichWithClause`.
|
|
750
|
+
* @param ctx the parse tree
|
|
751
|
+
*/
|
|
752
|
+
exitEnrichWithClause?: (ctx: EnrichWithClauseContext) => void;
|
|
753
|
+
/**
|
|
754
|
+
* Enter a parse tree produced by `esql_parser.sampleCommand`.
|
|
755
|
+
* @param ctx the parse tree
|
|
756
|
+
*/
|
|
757
|
+
enterSampleCommand?: (ctx: SampleCommandContext) => void;
|
|
758
|
+
/**
|
|
759
|
+
* Exit a parse tree produced by `esql_parser.sampleCommand`.
|
|
760
|
+
* @param ctx the parse tree
|
|
761
|
+
*/
|
|
762
|
+
exitSampleCommand?: (ctx: SampleCommandContext) => void;
|
|
763
|
+
/**
|
|
764
|
+
* Enter a parse tree produced by `esql_parser.changePointCommand`.
|
|
765
|
+
* @param ctx the parse tree
|
|
766
|
+
*/
|
|
767
|
+
enterChangePointCommand?: (ctx: ChangePointCommandContext) => void;
|
|
768
|
+
/**
|
|
769
|
+
* Exit a parse tree produced by `esql_parser.changePointCommand`.
|
|
770
|
+
* @param ctx the parse tree
|
|
771
|
+
*/
|
|
772
|
+
exitChangePointCommand?: (ctx: ChangePointCommandContext) => void;
|
|
773
|
+
/**
|
|
774
|
+
* Enter a parse tree produced by `esql_parser.forkCommand`.
|
|
775
|
+
* @param ctx the parse tree
|
|
776
|
+
*/
|
|
777
|
+
enterForkCommand?: (ctx: ForkCommandContext) => void;
|
|
778
|
+
/**
|
|
779
|
+
* Exit a parse tree produced by `esql_parser.forkCommand`.
|
|
780
|
+
* @param ctx the parse tree
|
|
781
|
+
*/
|
|
782
|
+
exitForkCommand?: (ctx: ForkCommandContext) => void;
|
|
783
|
+
/**
|
|
784
|
+
* Enter a parse tree produced by `esql_parser.forkSubQueries`.
|
|
785
|
+
* @param ctx the parse tree
|
|
786
|
+
*/
|
|
787
|
+
enterForkSubQueries?: (ctx: ForkSubQueriesContext) => void;
|
|
788
|
+
/**
|
|
789
|
+
* Exit a parse tree produced by `esql_parser.forkSubQueries`.
|
|
790
|
+
* @param ctx the parse tree
|
|
791
|
+
*/
|
|
792
|
+
exitForkSubQueries?: (ctx: ForkSubQueriesContext) => void;
|
|
793
|
+
/**
|
|
794
|
+
* Enter a parse tree produced by `esql_parser.forkSubQuery`.
|
|
795
|
+
* @param ctx the parse tree
|
|
796
|
+
*/
|
|
797
|
+
enterForkSubQuery?: (ctx: ForkSubQueryContext) => void;
|
|
798
|
+
/**
|
|
799
|
+
* Exit a parse tree produced by `esql_parser.forkSubQuery`.
|
|
800
|
+
* @param ctx the parse tree
|
|
801
|
+
*/
|
|
802
|
+
exitForkSubQuery?: (ctx: ForkSubQueryContext) => void;
|
|
803
|
+
/**
|
|
804
|
+
* Enter a parse tree produced by the `singleForkSubQueryCommand`
|
|
805
|
+
* labeled alternative in `esql_parser.forkSubQueryCommand`.
|
|
806
|
+
* @param ctx the parse tree
|
|
807
|
+
*/
|
|
808
|
+
enterSingleForkSubQueryCommand?: (ctx: SingleForkSubQueryCommandContext) => void;
|
|
809
|
+
/**
|
|
810
|
+
* Exit a parse tree produced by the `singleForkSubQueryCommand`
|
|
811
|
+
* labeled alternative in `esql_parser.forkSubQueryCommand`.
|
|
812
|
+
* @param ctx the parse tree
|
|
813
|
+
*/
|
|
814
|
+
exitSingleForkSubQueryCommand?: (ctx: SingleForkSubQueryCommandContext) => void;
|
|
815
|
+
/**
|
|
816
|
+
* Enter a parse tree produced by the `compositeForkSubQuery`
|
|
817
|
+
* labeled alternative in `esql_parser.forkSubQueryCommand`.
|
|
818
|
+
* @param ctx the parse tree
|
|
819
|
+
*/
|
|
820
|
+
enterCompositeForkSubQuery?: (ctx: CompositeForkSubQueryContext) => void;
|
|
821
|
+
/**
|
|
822
|
+
* Exit a parse tree produced by the `compositeForkSubQuery`
|
|
823
|
+
* labeled alternative in `esql_parser.forkSubQueryCommand`.
|
|
824
|
+
* @param ctx the parse tree
|
|
825
|
+
*/
|
|
826
|
+
exitCompositeForkSubQuery?: (ctx: CompositeForkSubQueryContext) => void;
|
|
827
|
+
/**
|
|
828
|
+
* Enter a parse tree produced by `esql_parser.forkSubQueryProcessingCommand`.
|
|
829
|
+
* @param ctx the parse tree
|
|
830
|
+
*/
|
|
831
|
+
enterForkSubQueryProcessingCommand?: (ctx: ForkSubQueryProcessingCommandContext) => void;
|
|
832
|
+
/**
|
|
833
|
+
* Exit a parse tree produced by `esql_parser.forkSubQueryProcessingCommand`.
|
|
834
|
+
* @param ctx the parse tree
|
|
835
|
+
*/
|
|
836
|
+
exitForkSubQueryProcessingCommand?: (ctx: ForkSubQueryProcessingCommandContext) => void;
|
|
837
|
+
/**
|
|
838
|
+
* Enter a parse tree produced by `esql_parser.rerankCommand`.
|
|
839
|
+
* @param ctx the parse tree
|
|
840
|
+
*/
|
|
841
|
+
enterRerankCommand?: (ctx: RerankCommandContext) => void;
|
|
842
|
+
/**
|
|
843
|
+
* Exit a parse tree produced by `esql_parser.rerankCommand`.
|
|
844
|
+
* @param ctx the parse tree
|
|
845
|
+
*/
|
|
846
|
+
exitRerankCommand?: (ctx: RerankCommandContext) => void;
|
|
847
|
+
/**
|
|
848
|
+
* Enter a parse tree produced by `esql_parser.completionCommand`.
|
|
849
|
+
* @param ctx the parse tree
|
|
850
|
+
*/
|
|
851
|
+
enterCompletionCommand?: (ctx: CompletionCommandContext) => void;
|
|
852
|
+
/**
|
|
853
|
+
* Exit a parse tree produced by `esql_parser.completionCommand`.
|
|
854
|
+
* @param ctx the parse tree
|
|
855
|
+
*/
|
|
856
|
+
exitCompletionCommand?: (ctx: CompletionCommandContext) => void;
|
|
857
|
+
/**
|
|
858
|
+
* Enter a parse tree produced by `esql_parser.inlineStatsCommand`.
|
|
859
|
+
* @param ctx the parse tree
|
|
860
|
+
*/
|
|
861
|
+
enterInlineStatsCommand?: (ctx: InlineStatsCommandContext) => void;
|
|
862
|
+
/**
|
|
863
|
+
* Exit a parse tree produced by `esql_parser.inlineStatsCommand`.
|
|
864
|
+
* @param ctx the parse tree
|
|
865
|
+
*/
|
|
866
|
+
exitInlineStatsCommand?: (ctx: InlineStatsCommandContext) => void;
|
|
867
|
+
/**
|
|
868
|
+
* Enter a parse tree produced by `esql_parser.fuseCommand`.
|
|
869
|
+
* @param ctx the parse tree
|
|
870
|
+
*/
|
|
871
|
+
enterFuseCommand?: (ctx: FuseCommandContext) => void;
|
|
872
|
+
/**
|
|
873
|
+
* Exit a parse tree produced by `esql_parser.fuseCommand`.
|
|
874
|
+
* @param ctx the parse tree
|
|
875
|
+
*/
|
|
876
|
+
exitFuseCommand?: (ctx: FuseCommandContext) => void;
|
|
877
|
+
/**
|
|
878
|
+
* Enter a parse tree produced by `esql_parser.fuseConfiguration`.
|
|
879
|
+
* @param ctx the parse tree
|
|
880
|
+
*/
|
|
881
|
+
enterFuseConfiguration?: (ctx: FuseConfigurationContext) => void;
|
|
882
|
+
/**
|
|
883
|
+
* Exit a parse tree produced by `esql_parser.fuseConfiguration`.
|
|
884
|
+
* @param ctx the parse tree
|
|
885
|
+
*/
|
|
886
|
+
exitFuseConfiguration?: (ctx: FuseConfigurationContext) => void;
|
|
887
|
+
/**
|
|
888
|
+
* Enter a parse tree produced by `esql_parser.fuseKeyByFields`.
|
|
889
|
+
* @param ctx the parse tree
|
|
890
|
+
*/
|
|
891
|
+
enterFuseKeyByFields?: (ctx: FuseKeyByFieldsContext) => void;
|
|
892
|
+
/**
|
|
893
|
+
* Exit a parse tree produced by `esql_parser.fuseKeyByFields`.
|
|
894
|
+
* @param ctx the parse tree
|
|
895
|
+
*/
|
|
896
|
+
exitFuseKeyByFields?: (ctx: FuseKeyByFieldsContext) => void;
|
|
897
|
+
/**
|
|
898
|
+
* Enter a parse tree produced by `esql_parser.metricsInfoCommand`.
|
|
899
|
+
* @param ctx the parse tree
|
|
900
|
+
*/
|
|
901
|
+
enterMetricsInfoCommand?: (ctx: MetricsInfoCommandContext) => void;
|
|
902
|
+
/**
|
|
903
|
+
* Exit a parse tree produced by `esql_parser.metricsInfoCommand`.
|
|
904
|
+
* @param ctx the parse tree
|
|
905
|
+
*/
|
|
906
|
+
exitMetricsInfoCommand?: (ctx: MetricsInfoCommandContext) => void;
|
|
907
|
+
/**
|
|
908
|
+
* Enter a parse tree produced by `esql_parser.lookupCommand`.
|
|
909
|
+
* @param ctx the parse tree
|
|
910
|
+
*/
|
|
911
|
+
enterLookupCommand?: (ctx: LookupCommandContext) => void;
|
|
912
|
+
/**
|
|
913
|
+
* Exit a parse tree produced by `esql_parser.lookupCommand`.
|
|
914
|
+
* @param ctx the parse tree
|
|
915
|
+
*/
|
|
916
|
+
exitLookupCommand?: (ctx: LookupCommandContext) => void;
|
|
917
|
+
/**
|
|
918
|
+
* Enter a parse tree produced by `esql_parser.insistCommand`.
|
|
919
|
+
* @param ctx the parse tree
|
|
920
|
+
*/
|
|
921
|
+
enterInsistCommand?: (ctx: InsistCommandContext) => void;
|
|
922
|
+
/**
|
|
923
|
+
* Exit a parse tree produced by `esql_parser.insistCommand`.
|
|
924
|
+
* @param ctx the parse tree
|
|
925
|
+
*/
|
|
926
|
+
exitInsistCommand?: (ctx: InsistCommandContext) => void;
|
|
927
|
+
/**
|
|
928
|
+
* Enter a parse tree produced by `esql_parser.uriPartsCommand`.
|
|
929
|
+
* @param ctx the parse tree
|
|
930
|
+
*/
|
|
931
|
+
enterUriPartsCommand?: (ctx: UriPartsCommandContext) => void;
|
|
932
|
+
/**
|
|
933
|
+
* Exit a parse tree produced by `esql_parser.uriPartsCommand`.
|
|
934
|
+
* @param ctx the parse tree
|
|
935
|
+
*/
|
|
936
|
+
exitUriPartsCommand?: (ctx: UriPartsCommandContext) => void;
|
|
937
|
+
/**
|
|
938
|
+
* Enter a parse tree produced by `esql_parser.setCommand`.
|
|
939
|
+
* @param ctx the parse tree
|
|
940
|
+
*/
|
|
941
|
+
enterSetCommand?: (ctx: SetCommandContext) => void;
|
|
942
|
+
/**
|
|
943
|
+
* Exit a parse tree produced by `esql_parser.setCommand`.
|
|
944
|
+
* @param ctx the parse tree
|
|
945
|
+
*/
|
|
946
|
+
exitSetCommand?: (ctx: SetCommandContext) => void;
|
|
947
|
+
/**
|
|
948
|
+
* Enter a parse tree produced by `esql_parser.setField`.
|
|
949
|
+
* @param ctx the parse tree
|
|
950
|
+
*/
|
|
951
|
+
enterSetField?: (ctx: SetFieldContext) => void;
|
|
952
|
+
/**
|
|
953
|
+
* Exit a parse tree produced by `esql_parser.setField`.
|
|
954
|
+
* @param ctx the parse tree
|
|
955
|
+
*/
|
|
956
|
+
exitSetField?: (ctx: SetFieldContext) => void;
|
|
957
|
+
/**
|
|
958
|
+
* Enter a parse tree produced by `esql_parser.mmrCommand`.
|
|
959
|
+
* @param ctx the parse tree
|
|
960
|
+
*/
|
|
961
|
+
enterMmrCommand?: (ctx: MmrCommandContext) => void;
|
|
962
|
+
/**
|
|
963
|
+
* Exit a parse tree produced by `esql_parser.mmrCommand`.
|
|
964
|
+
* @param ctx the parse tree
|
|
965
|
+
*/
|
|
966
|
+
exitMmrCommand?: (ctx: MmrCommandContext) => void;
|
|
967
|
+
/**
|
|
968
|
+
* Enter a parse tree produced by the `mmrQueryVectorParameter`
|
|
969
|
+
* labeled alternative in `esql_parser.mmrQueryVectorParams`.
|
|
970
|
+
* @param ctx the parse tree
|
|
971
|
+
*/
|
|
972
|
+
enterMmrQueryVectorParameter?: (ctx: MmrQueryVectorParameterContext) => void;
|
|
973
|
+
/**
|
|
974
|
+
* Exit a parse tree produced by the `mmrQueryVectorParameter`
|
|
975
|
+
* labeled alternative in `esql_parser.mmrQueryVectorParams`.
|
|
976
|
+
* @param ctx the parse tree
|
|
977
|
+
*/
|
|
978
|
+
exitMmrQueryVectorParameter?: (ctx: MmrQueryVectorParameterContext) => void;
|
|
979
|
+
/**
|
|
980
|
+
* Enter a parse tree produced by the `mmrQueryVectorExpression`
|
|
981
|
+
* labeled alternative in `esql_parser.mmrQueryVectorParams`.
|
|
982
|
+
* @param ctx the parse tree
|
|
983
|
+
*/
|
|
984
|
+
enterMmrQueryVectorExpression?: (ctx: MmrQueryVectorExpressionContext) => void;
|
|
985
|
+
/**
|
|
986
|
+
* Exit a parse tree produced by the `mmrQueryVectorExpression`
|
|
987
|
+
* labeled alternative in `esql_parser.mmrQueryVectorParams`.
|
|
988
|
+
* @param ctx the parse tree
|
|
989
|
+
*/
|
|
990
|
+
exitMmrQueryVectorExpression?: (ctx: MmrQueryVectorExpressionContext) => void;
|
|
991
|
+
/**
|
|
992
|
+
* Enter a parse tree produced by the `matchExpression`
|
|
993
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
994
|
+
* @param ctx the parse tree
|
|
995
|
+
*/
|
|
996
|
+
enterMatchExpression?: (ctx: MatchExpressionContext) => void;
|
|
997
|
+
/**
|
|
998
|
+
* Exit a parse tree produced by the `matchExpression`
|
|
999
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1000
|
+
* @param ctx the parse tree
|
|
1001
|
+
*/
|
|
1002
|
+
exitMatchExpression?: (ctx: MatchExpressionContext) => void;
|
|
1003
|
+
/**
|
|
1004
|
+
* Enter a parse tree produced by the `logicalNot`
|
|
1005
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1006
|
+
* @param ctx the parse tree
|
|
1007
|
+
*/
|
|
1008
|
+
enterLogicalNot?: (ctx: LogicalNotContext) => void;
|
|
1009
|
+
/**
|
|
1010
|
+
* Exit a parse tree produced by the `logicalNot`
|
|
1011
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1012
|
+
* @param ctx the parse tree
|
|
1013
|
+
*/
|
|
1014
|
+
exitLogicalNot?: (ctx: LogicalNotContext) => void;
|
|
1015
|
+
/**
|
|
1016
|
+
* Enter a parse tree produced by the `booleanDefault`
|
|
1017
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1018
|
+
* @param ctx the parse tree
|
|
1019
|
+
*/
|
|
1020
|
+
enterBooleanDefault?: (ctx: BooleanDefaultContext) => void;
|
|
1021
|
+
/**
|
|
1022
|
+
* Exit a parse tree produced by the `booleanDefault`
|
|
1023
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1024
|
+
* @param ctx the parse tree
|
|
1025
|
+
*/
|
|
1026
|
+
exitBooleanDefault?: (ctx: BooleanDefaultContext) => void;
|
|
1027
|
+
/**
|
|
1028
|
+
* Enter a parse tree produced by the `isNull`
|
|
1029
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1030
|
+
* @param ctx the parse tree
|
|
1031
|
+
*/
|
|
1032
|
+
enterIsNull?: (ctx: IsNullContext) => void;
|
|
1033
|
+
/**
|
|
1034
|
+
* Exit a parse tree produced by the `isNull`
|
|
1035
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1036
|
+
* @param ctx the parse tree
|
|
1037
|
+
*/
|
|
1038
|
+
exitIsNull?: (ctx: IsNullContext) => void;
|
|
1039
|
+
/**
|
|
1040
|
+
* Enter a parse tree produced by the `regexExpression`
|
|
1041
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1042
|
+
* @param ctx the parse tree
|
|
1043
|
+
*/
|
|
1044
|
+
enterRegexExpression?: (ctx: RegexExpressionContext) => void;
|
|
1045
|
+
/**
|
|
1046
|
+
* Exit a parse tree produced by the `regexExpression`
|
|
1047
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1048
|
+
* @param ctx the parse tree
|
|
1049
|
+
*/
|
|
1050
|
+
exitRegexExpression?: (ctx: RegexExpressionContext) => void;
|
|
1051
|
+
/**
|
|
1052
|
+
* Enter a parse tree produced by the `logicalIn`
|
|
1053
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1054
|
+
* @param ctx the parse tree
|
|
1055
|
+
*/
|
|
1056
|
+
enterLogicalIn?: (ctx: LogicalInContext) => void;
|
|
1057
|
+
/**
|
|
1058
|
+
* Exit a parse tree produced by the `logicalIn`
|
|
1059
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1060
|
+
* @param ctx the parse tree
|
|
1061
|
+
*/
|
|
1062
|
+
exitLogicalIn?: (ctx: LogicalInContext) => void;
|
|
1063
|
+
/**
|
|
1064
|
+
* Enter a parse tree produced by the `logicalBinary`
|
|
1065
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1066
|
+
* @param ctx the parse tree
|
|
1067
|
+
*/
|
|
1068
|
+
enterLogicalBinary?: (ctx: LogicalBinaryContext) => void;
|
|
1069
|
+
/**
|
|
1070
|
+
* Exit a parse tree produced by the `logicalBinary`
|
|
1071
|
+
* labeled alternative in `esql_parser.booleanExpression`.
|
|
1072
|
+
* @param ctx the parse tree
|
|
1073
|
+
*/
|
|
1074
|
+
exitLogicalBinary?: (ctx: LogicalBinaryContext) => void;
|
|
1075
|
+
/**
|
|
1076
|
+
* Enter a parse tree produced by the `likeExpression`
|
|
1077
|
+
* labeled alternative in `esql_parser.regexBooleanExpression`.
|
|
1078
|
+
* @param ctx the parse tree
|
|
1079
|
+
*/
|
|
1080
|
+
enterLikeExpression?: (ctx: LikeExpressionContext) => void;
|
|
1081
|
+
/**
|
|
1082
|
+
* Exit a parse tree produced by the `likeExpression`
|
|
1083
|
+
* labeled alternative in `esql_parser.regexBooleanExpression`.
|
|
1084
|
+
* @param ctx the parse tree
|
|
1085
|
+
*/
|
|
1086
|
+
exitLikeExpression?: (ctx: LikeExpressionContext) => void;
|
|
1087
|
+
/**
|
|
1088
|
+
* Enter a parse tree produced by the `rlikeExpression`
|
|
1089
|
+
* labeled alternative in `esql_parser.regexBooleanExpression`.
|
|
1090
|
+
* @param ctx the parse tree
|
|
1091
|
+
*/
|
|
1092
|
+
enterRlikeExpression?: (ctx: RlikeExpressionContext) => void;
|
|
1093
|
+
/**
|
|
1094
|
+
* Exit a parse tree produced by the `rlikeExpression`
|
|
1095
|
+
* labeled alternative in `esql_parser.regexBooleanExpression`.
|
|
1096
|
+
* @param ctx the parse tree
|
|
1097
|
+
*/
|
|
1098
|
+
exitRlikeExpression?: (ctx: RlikeExpressionContext) => void;
|
|
1099
|
+
/**
|
|
1100
|
+
* Enter a parse tree produced by the `likeListExpression`
|
|
1101
|
+
* labeled alternative in `esql_parser.regexBooleanExpression`.
|
|
1102
|
+
* @param ctx the parse tree
|
|
1103
|
+
*/
|
|
1104
|
+
enterLikeListExpression?: (ctx: LikeListExpressionContext) => void;
|
|
1105
|
+
/**
|
|
1106
|
+
* Exit a parse tree produced by the `likeListExpression`
|
|
1107
|
+
* labeled alternative in `esql_parser.regexBooleanExpression`.
|
|
1108
|
+
* @param ctx the parse tree
|
|
1109
|
+
*/
|
|
1110
|
+
exitLikeListExpression?: (ctx: LikeListExpressionContext) => void;
|
|
1111
|
+
/**
|
|
1112
|
+
* Enter a parse tree produced by the `rlikeListExpression`
|
|
1113
|
+
* labeled alternative in `esql_parser.regexBooleanExpression`.
|
|
1114
|
+
* @param ctx the parse tree
|
|
1115
|
+
*/
|
|
1116
|
+
enterRlikeListExpression?: (ctx: RlikeListExpressionContext) => void;
|
|
1117
|
+
/**
|
|
1118
|
+
* Exit a parse tree produced by the `rlikeListExpression`
|
|
1119
|
+
* labeled alternative in `esql_parser.regexBooleanExpression`.
|
|
1120
|
+
* @param ctx the parse tree
|
|
1121
|
+
*/
|
|
1122
|
+
exitRlikeListExpression?: (ctx: RlikeListExpressionContext) => void;
|
|
1123
|
+
/**
|
|
1124
|
+
* Enter a parse tree produced by `esql_parser.matchBooleanExpression`.
|
|
1125
|
+
* @param ctx the parse tree
|
|
1126
|
+
*/
|
|
1127
|
+
enterMatchBooleanExpression?: (ctx: MatchBooleanExpressionContext) => void;
|
|
1128
|
+
/**
|
|
1129
|
+
* Exit a parse tree produced by `esql_parser.matchBooleanExpression`.
|
|
1130
|
+
* @param ctx the parse tree
|
|
1131
|
+
*/
|
|
1132
|
+
exitMatchBooleanExpression?: (ctx: MatchBooleanExpressionContext) => void;
|
|
1133
|
+
/**
|
|
1134
|
+
* Enter a parse tree produced by the `valueExpressionDefault`
|
|
1135
|
+
* labeled alternative in `esql_parser.valueExpression`.
|
|
1136
|
+
* @param ctx the parse tree
|
|
1137
|
+
*/
|
|
1138
|
+
enterValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void;
|
|
1139
|
+
/**
|
|
1140
|
+
* Exit a parse tree produced by the `valueExpressionDefault`
|
|
1141
|
+
* labeled alternative in `esql_parser.valueExpression`.
|
|
1142
|
+
* @param ctx the parse tree
|
|
1143
|
+
*/
|
|
1144
|
+
exitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void;
|
|
1145
|
+
/**
|
|
1146
|
+
* Enter a parse tree produced by the `comparison`
|
|
1147
|
+
* labeled alternative in `esql_parser.valueExpression`.
|
|
1148
|
+
* @param ctx the parse tree
|
|
1149
|
+
*/
|
|
1150
|
+
enterComparison?: (ctx: ComparisonContext) => void;
|
|
1151
|
+
/**
|
|
1152
|
+
* Exit a parse tree produced by the `comparison`
|
|
1153
|
+
* labeled alternative in `esql_parser.valueExpression`.
|
|
1154
|
+
* @param ctx the parse tree
|
|
1155
|
+
*/
|
|
1156
|
+
exitComparison?: (ctx: ComparisonContext) => void;
|
|
1157
|
+
/**
|
|
1158
|
+
* Enter a parse tree produced by the `operatorExpressionDefault`
|
|
1159
|
+
* labeled alternative in `esql_parser.operatorExpression`.
|
|
1160
|
+
* @param ctx the parse tree
|
|
1161
|
+
*/
|
|
1162
|
+
enterOperatorExpressionDefault?: (ctx: OperatorExpressionDefaultContext) => void;
|
|
1163
|
+
/**
|
|
1164
|
+
* Exit a parse tree produced by the `operatorExpressionDefault`
|
|
1165
|
+
* labeled alternative in `esql_parser.operatorExpression`.
|
|
1166
|
+
* @param ctx the parse tree
|
|
1167
|
+
*/
|
|
1168
|
+
exitOperatorExpressionDefault?: (ctx: OperatorExpressionDefaultContext) => void;
|
|
1169
|
+
/**
|
|
1170
|
+
* Enter a parse tree produced by the `arithmeticBinary`
|
|
1171
|
+
* labeled alternative in `esql_parser.operatorExpression`.
|
|
1172
|
+
* @param ctx the parse tree
|
|
1173
|
+
*/
|
|
1174
|
+
enterArithmeticBinary?: (ctx: ArithmeticBinaryContext) => void;
|
|
1175
|
+
/**
|
|
1176
|
+
* Exit a parse tree produced by the `arithmeticBinary`
|
|
1177
|
+
* labeled alternative in `esql_parser.operatorExpression`.
|
|
1178
|
+
* @param ctx the parse tree
|
|
1179
|
+
*/
|
|
1180
|
+
exitArithmeticBinary?: (ctx: ArithmeticBinaryContext) => void;
|
|
1181
|
+
/**
|
|
1182
|
+
* Enter a parse tree produced by the `arithmeticUnary`
|
|
1183
|
+
* labeled alternative in `esql_parser.operatorExpression`.
|
|
1184
|
+
* @param ctx the parse tree
|
|
1185
|
+
*/
|
|
1186
|
+
enterArithmeticUnary?: (ctx: ArithmeticUnaryContext) => void;
|
|
1187
|
+
/**
|
|
1188
|
+
* Exit a parse tree produced by the `arithmeticUnary`
|
|
1189
|
+
* labeled alternative in `esql_parser.operatorExpression`.
|
|
1190
|
+
* @param ctx the parse tree
|
|
1191
|
+
*/
|
|
1192
|
+
exitArithmeticUnary?: (ctx: ArithmeticUnaryContext) => void;
|
|
1193
|
+
/**
|
|
1194
|
+
* Enter a parse tree produced by the `dereference`
|
|
1195
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1196
|
+
* @param ctx the parse tree
|
|
1197
|
+
*/
|
|
1198
|
+
enterDereference?: (ctx: DereferenceContext) => void;
|
|
1199
|
+
/**
|
|
1200
|
+
* Exit a parse tree produced by the `dereference`
|
|
1201
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1202
|
+
* @param ctx the parse tree
|
|
1203
|
+
*/
|
|
1204
|
+
exitDereference?: (ctx: DereferenceContext) => void;
|
|
1205
|
+
/**
|
|
1206
|
+
* Enter a parse tree produced by the `inlineCast`
|
|
1207
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1208
|
+
* @param ctx the parse tree
|
|
1209
|
+
*/
|
|
1210
|
+
enterInlineCast?: (ctx: InlineCastContext) => void;
|
|
1211
|
+
/**
|
|
1212
|
+
* Exit a parse tree produced by the `inlineCast`
|
|
1213
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1214
|
+
* @param ctx the parse tree
|
|
1215
|
+
*/
|
|
1216
|
+
exitInlineCast?: (ctx: InlineCastContext) => void;
|
|
1217
|
+
/**
|
|
1218
|
+
* Enter a parse tree produced by the `constantDefault`
|
|
1219
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1220
|
+
* @param ctx the parse tree
|
|
1221
|
+
*/
|
|
1222
|
+
enterConstantDefault?: (ctx: ConstantDefaultContext) => void;
|
|
1223
|
+
/**
|
|
1224
|
+
* Exit a parse tree produced by the `constantDefault`
|
|
1225
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1226
|
+
* @param ctx the parse tree
|
|
1227
|
+
*/
|
|
1228
|
+
exitConstantDefault?: (ctx: ConstantDefaultContext) => void;
|
|
1229
|
+
/**
|
|
1230
|
+
* Enter a parse tree produced by the `parenthesizedExpression`
|
|
1231
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1232
|
+
* @param ctx the parse tree
|
|
1233
|
+
*/
|
|
1234
|
+
enterParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => void;
|
|
1235
|
+
/**
|
|
1236
|
+
* Exit a parse tree produced by the `parenthesizedExpression`
|
|
1237
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1238
|
+
* @param ctx the parse tree
|
|
1239
|
+
*/
|
|
1240
|
+
exitParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => void;
|
|
1241
|
+
/**
|
|
1242
|
+
* Enter a parse tree produced by the `function`
|
|
1243
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1244
|
+
* @param ctx the parse tree
|
|
1245
|
+
*/
|
|
1246
|
+
enterFunction?: (ctx: FunctionContext) => void;
|
|
1247
|
+
/**
|
|
1248
|
+
* Exit a parse tree produced by the `function`
|
|
1249
|
+
* labeled alternative in `esql_parser.primaryExpression`.
|
|
1250
|
+
* @param ctx the parse tree
|
|
1251
|
+
*/
|
|
1252
|
+
exitFunction?: (ctx: FunctionContext) => void;
|
|
1253
|
+
/**
|
|
1254
|
+
* Enter a parse tree produced by `esql_parser.functionExpression`.
|
|
1255
|
+
* @param ctx the parse tree
|
|
1256
|
+
*/
|
|
1257
|
+
enterFunctionExpression?: (ctx: FunctionExpressionContext) => void;
|
|
1258
|
+
/**
|
|
1259
|
+
* Exit a parse tree produced by `esql_parser.functionExpression`.
|
|
1260
|
+
* @param ctx the parse tree
|
|
1261
|
+
*/
|
|
1262
|
+
exitFunctionExpression?: (ctx: FunctionExpressionContext) => void;
|
|
1263
|
+
/**
|
|
1264
|
+
* Enter a parse tree produced by `esql_parser.functionName`.
|
|
1265
|
+
* @param ctx the parse tree
|
|
1266
|
+
*/
|
|
1267
|
+
enterFunctionName?: (ctx: FunctionNameContext) => void;
|
|
1268
|
+
/**
|
|
1269
|
+
* Exit a parse tree produced by `esql_parser.functionName`.
|
|
1270
|
+
* @param ctx the parse tree
|
|
1271
|
+
*/
|
|
1272
|
+
exitFunctionName?: (ctx: FunctionNameContext) => void;
|
|
1273
|
+
/**
|
|
1274
|
+
* Enter a parse tree produced by `esql_parser.mapExpression`.
|
|
1275
|
+
* @param ctx the parse tree
|
|
1276
|
+
*/
|
|
1277
|
+
enterMapExpression?: (ctx: MapExpressionContext) => void;
|
|
1278
|
+
/**
|
|
1279
|
+
* Exit a parse tree produced by `esql_parser.mapExpression`.
|
|
1280
|
+
* @param ctx the parse tree
|
|
1281
|
+
*/
|
|
1282
|
+
exitMapExpression?: (ctx: MapExpressionContext) => void;
|
|
1283
|
+
/**
|
|
1284
|
+
* Enter a parse tree produced by `esql_parser.entryExpression`.
|
|
1285
|
+
* @param ctx the parse tree
|
|
1286
|
+
*/
|
|
1287
|
+
enterEntryExpression?: (ctx: EntryExpressionContext) => void;
|
|
1288
|
+
/**
|
|
1289
|
+
* Exit a parse tree produced by `esql_parser.entryExpression`.
|
|
1290
|
+
* @param ctx the parse tree
|
|
1291
|
+
*/
|
|
1292
|
+
exitEntryExpression?: (ctx: EntryExpressionContext) => void;
|
|
1293
|
+
/**
|
|
1294
|
+
* Enter a parse tree produced by `esql_parser.mapValue`.
|
|
1295
|
+
* @param ctx the parse tree
|
|
1296
|
+
*/
|
|
1297
|
+
enterMapValue?: (ctx: MapValueContext) => void;
|
|
1298
|
+
/**
|
|
1299
|
+
* Exit a parse tree produced by `esql_parser.mapValue`.
|
|
1300
|
+
* @param ctx the parse tree
|
|
1301
|
+
*/
|
|
1302
|
+
exitMapValue?: (ctx: MapValueContext) => void;
|
|
1303
|
+
/**
|
|
1304
|
+
* Enter a parse tree produced by the `nullLiteral`
|
|
1305
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1306
|
+
* @param ctx the parse tree
|
|
1307
|
+
*/
|
|
1308
|
+
enterNullLiteral?: (ctx: NullLiteralContext) => void;
|
|
1309
|
+
/**
|
|
1310
|
+
* Exit a parse tree produced by the `nullLiteral`
|
|
1311
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1312
|
+
* @param ctx the parse tree
|
|
1313
|
+
*/
|
|
1314
|
+
exitNullLiteral?: (ctx: NullLiteralContext) => void;
|
|
1315
|
+
/**
|
|
1316
|
+
* Enter a parse tree produced by the `qualifiedIntegerLiteral`
|
|
1317
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1318
|
+
* @param ctx the parse tree
|
|
1319
|
+
*/
|
|
1320
|
+
enterQualifiedIntegerLiteral?: (ctx: QualifiedIntegerLiteralContext) => void;
|
|
1321
|
+
/**
|
|
1322
|
+
* Exit a parse tree produced by the `qualifiedIntegerLiteral`
|
|
1323
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1324
|
+
* @param ctx the parse tree
|
|
1325
|
+
*/
|
|
1326
|
+
exitQualifiedIntegerLiteral?: (ctx: QualifiedIntegerLiteralContext) => void;
|
|
1327
|
+
/**
|
|
1328
|
+
* Enter a parse tree produced by the `decimalLiteral`
|
|
1329
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1330
|
+
* @param ctx the parse tree
|
|
1331
|
+
*/
|
|
1332
|
+
enterDecimalLiteral?: (ctx: DecimalLiteralContext) => void;
|
|
1333
|
+
/**
|
|
1334
|
+
* Exit a parse tree produced by the `decimalLiteral`
|
|
1335
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1336
|
+
* @param ctx the parse tree
|
|
1337
|
+
*/
|
|
1338
|
+
exitDecimalLiteral?: (ctx: DecimalLiteralContext) => void;
|
|
1339
|
+
/**
|
|
1340
|
+
* Enter a parse tree produced by the `integerLiteral`
|
|
1341
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1342
|
+
* @param ctx the parse tree
|
|
1343
|
+
*/
|
|
1344
|
+
enterIntegerLiteral?: (ctx: IntegerLiteralContext) => void;
|
|
1345
|
+
/**
|
|
1346
|
+
* Exit a parse tree produced by the `integerLiteral`
|
|
1347
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1348
|
+
* @param ctx the parse tree
|
|
1349
|
+
*/
|
|
1350
|
+
exitIntegerLiteral?: (ctx: IntegerLiteralContext) => void;
|
|
1351
|
+
/**
|
|
1352
|
+
* Enter a parse tree produced by the `booleanLiteral`
|
|
1353
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1354
|
+
* @param ctx the parse tree
|
|
1355
|
+
*/
|
|
1356
|
+
enterBooleanLiteral?: (ctx: BooleanLiteralContext) => void;
|
|
1357
|
+
/**
|
|
1358
|
+
* Exit a parse tree produced by the `booleanLiteral`
|
|
1359
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1360
|
+
* @param ctx the parse tree
|
|
1361
|
+
*/
|
|
1362
|
+
exitBooleanLiteral?: (ctx: BooleanLiteralContext) => void;
|
|
1363
|
+
/**
|
|
1364
|
+
* Enter a parse tree produced by the `inputParameter`
|
|
1365
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1366
|
+
* @param ctx the parse tree
|
|
1367
|
+
*/
|
|
1368
|
+
enterInputParameter?: (ctx: InputParameterContext) => void;
|
|
1369
|
+
/**
|
|
1370
|
+
* Exit a parse tree produced by the `inputParameter`
|
|
1371
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1372
|
+
* @param ctx the parse tree
|
|
1373
|
+
*/
|
|
1374
|
+
exitInputParameter?: (ctx: InputParameterContext) => void;
|
|
1375
|
+
/**
|
|
1376
|
+
* Enter a parse tree produced by the `stringLiteral`
|
|
1377
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1378
|
+
* @param ctx the parse tree
|
|
1379
|
+
*/
|
|
1380
|
+
enterStringLiteral?: (ctx: StringLiteralContext) => void;
|
|
1381
|
+
/**
|
|
1382
|
+
* Exit a parse tree produced by the `stringLiteral`
|
|
1383
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1384
|
+
* @param ctx the parse tree
|
|
1385
|
+
*/
|
|
1386
|
+
exitStringLiteral?: (ctx: StringLiteralContext) => void;
|
|
1387
|
+
/**
|
|
1388
|
+
* Enter a parse tree produced by the `numericArrayLiteral`
|
|
1389
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1390
|
+
* @param ctx the parse tree
|
|
1391
|
+
*/
|
|
1392
|
+
enterNumericArrayLiteral?: (ctx: NumericArrayLiteralContext) => void;
|
|
1393
|
+
/**
|
|
1394
|
+
* Exit a parse tree produced by the `numericArrayLiteral`
|
|
1395
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1396
|
+
* @param ctx the parse tree
|
|
1397
|
+
*/
|
|
1398
|
+
exitNumericArrayLiteral?: (ctx: NumericArrayLiteralContext) => void;
|
|
1399
|
+
/**
|
|
1400
|
+
* Enter a parse tree produced by the `booleanArrayLiteral`
|
|
1401
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1402
|
+
* @param ctx the parse tree
|
|
1403
|
+
*/
|
|
1404
|
+
enterBooleanArrayLiteral?: (ctx: BooleanArrayLiteralContext) => void;
|
|
1405
|
+
/**
|
|
1406
|
+
* Exit a parse tree produced by the `booleanArrayLiteral`
|
|
1407
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1408
|
+
* @param ctx the parse tree
|
|
1409
|
+
*/
|
|
1410
|
+
exitBooleanArrayLiteral?: (ctx: BooleanArrayLiteralContext) => void;
|
|
1411
|
+
/**
|
|
1412
|
+
* Enter a parse tree produced by the `stringArrayLiteral`
|
|
1413
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1414
|
+
* @param ctx the parse tree
|
|
1415
|
+
*/
|
|
1416
|
+
enterStringArrayLiteral?: (ctx: StringArrayLiteralContext) => void;
|
|
1417
|
+
/**
|
|
1418
|
+
* Exit a parse tree produced by the `stringArrayLiteral`
|
|
1419
|
+
* labeled alternative in `esql_parser.constant`.
|
|
1420
|
+
* @param ctx the parse tree
|
|
1421
|
+
*/
|
|
1422
|
+
exitStringArrayLiteral?: (ctx: StringArrayLiteralContext) => void;
|
|
1423
|
+
/**
|
|
1424
|
+
* Enter a parse tree produced by `esql_parser.booleanValue`.
|
|
1425
|
+
* @param ctx the parse tree
|
|
1426
|
+
*/
|
|
1427
|
+
enterBooleanValue?: (ctx: BooleanValueContext) => void;
|
|
1428
|
+
/**
|
|
1429
|
+
* Exit a parse tree produced by `esql_parser.booleanValue`.
|
|
1430
|
+
* @param ctx the parse tree
|
|
1431
|
+
*/
|
|
1432
|
+
exitBooleanValue?: (ctx: BooleanValueContext) => void;
|
|
1433
|
+
/**
|
|
1434
|
+
* Enter a parse tree produced by `esql_parser.numericValue`.
|
|
1435
|
+
* @param ctx the parse tree
|
|
1436
|
+
*/
|
|
1437
|
+
enterNumericValue?: (ctx: NumericValueContext) => void;
|
|
1438
|
+
/**
|
|
1439
|
+
* Exit a parse tree produced by `esql_parser.numericValue`.
|
|
1440
|
+
* @param ctx the parse tree
|
|
1441
|
+
*/
|
|
1442
|
+
exitNumericValue?: (ctx: NumericValueContext) => void;
|
|
1443
|
+
/**
|
|
1444
|
+
* Enter a parse tree produced by `esql_parser.decimalValue`.
|
|
1445
|
+
* @param ctx the parse tree
|
|
1446
|
+
*/
|
|
1447
|
+
enterDecimalValue?: (ctx: DecimalValueContext) => void;
|
|
1448
|
+
/**
|
|
1449
|
+
* Exit a parse tree produced by `esql_parser.decimalValue`.
|
|
1450
|
+
* @param ctx the parse tree
|
|
1451
|
+
*/
|
|
1452
|
+
exitDecimalValue?: (ctx: DecimalValueContext) => void;
|
|
1453
|
+
/**
|
|
1454
|
+
* Enter a parse tree produced by `esql_parser.integerValue`.
|
|
1455
|
+
* @param ctx the parse tree
|
|
1456
|
+
*/
|
|
1457
|
+
enterIntegerValue?: (ctx: IntegerValueContext) => void;
|
|
1458
|
+
/**
|
|
1459
|
+
* Exit a parse tree produced by `esql_parser.integerValue`.
|
|
1460
|
+
* @param ctx the parse tree
|
|
1461
|
+
*/
|
|
1462
|
+
exitIntegerValue?: (ctx: IntegerValueContext) => void;
|
|
1463
|
+
/**
|
|
1464
|
+
* Enter a parse tree produced by `esql_parser.string`.
|
|
1465
|
+
* @param ctx the parse tree
|
|
1466
|
+
*/
|
|
1467
|
+
enterString?: (ctx: StringContext) => void;
|
|
1468
|
+
/**
|
|
1469
|
+
* Exit a parse tree produced by `esql_parser.string`.
|
|
1470
|
+
* @param ctx the parse tree
|
|
1471
|
+
*/
|
|
1472
|
+
exitString?: (ctx: StringContext) => void;
|
|
1473
|
+
/**
|
|
1474
|
+
* Enter a parse tree produced by `esql_parser.comparisonOperator`.
|
|
1475
|
+
* @param ctx the parse tree
|
|
1476
|
+
*/
|
|
1477
|
+
enterComparisonOperator?: (ctx: ComparisonOperatorContext) => void;
|
|
1478
|
+
/**
|
|
1479
|
+
* Exit a parse tree produced by `esql_parser.comparisonOperator`.
|
|
1480
|
+
* @param ctx the parse tree
|
|
1481
|
+
*/
|
|
1482
|
+
exitComparisonOperator?: (ctx: ComparisonOperatorContext) => void;
|
|
1483
|
+
/**
|
|
1484
|
+
* Enter a parse tree produced by `esql_parser.joinCommand`.
|
|
1485
|
+
* @param ctx the parse tree
|
|
1486
|
+
*/
|
|
1487
|
+
enterJoinCommand?: (ctx: JoinCommandContext) => void;
|
|
1488
|
+
/**
|
|
1489
|
+
* Exit a parse tree produced by `esql_parser.joinCommand`.
|
|
1490
|
+
* @param ctx the parse tree
|
|
1491
|
+
*/
|
|
1492
|
+
exitJoinCommand?: (ctx: JoinCommandContext) => void;
|
|
1493
|
+
/**
|
|
1494
|
+
* Enter a parse tree produced by `esql_parser.joinTarget`.
|
|
1495
|
+
* @param ctx the parse tree
|
|
1496
|
+
*/
|
|
1497
|
+
enterJoinTarget?: (ctx: JoinTargetContext) => void;
|
|
1498
|
+
/**
|
|
1499
|
+
* Exit a parse tree produced by `esql_parser.joinTarget`.
|
|
1500
|
+
* @param ctx the parse tree
|
|
1501
|
+
*/
|
|
1502
|
+
exitJoinTarget?: (ctx: JoinTargetContext) => void;
|
|
1503
|
+
/**
|
|
1504
|
+
* Enter a parse tree produced by `esql_parser.joinCondition`.
|
|
1505
|
+
* @param ctx the parse tree
|
|
1506
|
+
*/
|
|
1507
|
+
enterJoinCondition?: (ctx: JoinConditionContext) => void;
|
|
1508
|
+
/**
|
|
1509
|
+
* Exit a parse tree produced by `esql_parser.joinCondition`.
|
|
1510
|
+
* @param ctx the parse tree
|
|
1511
|
+
*/
|
|
1512
|
+
exitJoinCondition?: (ctx: JoinConditionContext) => void;
|
|
1513
|
+
/**
|
|
1514
|
+
* Enter a parse tree produced by `esql_parser.promqlCommand`.
|
|
1515
|
+
* @param ctx the parse tree
|
|
1516
|
+
*/
|
|
1517
|
+
enterPromqlCommand?: (ctx: PromqlCommandContext) => void;
|
|
1518
|
+
/**
|
|
1519
|
+
* Exit a parse tree produced by `esql_parser.promqlCommand`.
|
|
1520
|
+
* @param ctx the parse tree
|
|
1521
|
+
*/
|
|
1522
|
+
exitPromqlCommand?: (ctx: PromqlCommandContext) => void;
|
|
1523
|
+
/**
|
|
1524
|
+
* Enter a parse tree produced by `esql_parser.valueName`.
|
|
1525
|
+
* @param ctx the parse tree
|
|
1526
|
+
*/
|
|
1527
|
+
enterValueName?: (ctx: ValueNameContext) => void;
|
|
1528
|
+
/**
|
|
1529
|
+
* Exit a parse tree produced by `esql_parser.valueName`.
|
|
1530
|
+
* @param ctx the parse tree
|
|
1531
|
+
*/
|
|
1532
|
+
exitValueName?: (ctx: ValueNameContext) => void;
|
|
1533
|
+
/**
|
|
1534
|
+
* Enter a parse tree produced by `esql_parser.promqlParam`.
|
|
1535
|
+
* @param ctx the parse tree
|
|
1536
|
+
*/
|
|
1537
|
+
enterPromqlParam?: (ctx: PromqlParamContext) => void;
|
|
1538
|
+
/**
|
|
1539
|
+
* Exit a parse tree produced by `esql_parser.promqlParam`.
|
|
1540
|
+
* @param ctx the parse tree
|
|
1541
|
+
*/
|
|
1542
|
+
exitPromqlParam?: (ctx: PromqlParamContext) => void;
|
|
1543
|
+
/**
|
|
1544
|
+
* Enter a parse tree produced by `esql_parser.promqlParamName`.
|
|
1545
|
+
* @param ctx the parse tree
|
|
1546
|
+
*/
|
|
1547
|
+
enterPromqlParamName?: (ctx: PromqlParamNameContext) => void;
|
|
1548
|
+
/**
|
|
1549
|
+
* Exit a parse tree produced by `esql_parser.promqlParamName`.
|
|
1550
|
+
* @param ctx the parse tree
|
|
1551
|
+
*/
|
|
1552
|
+
exitPromqlParamName?: (ctx: PromqlParamNameContext) => void;
|
|
1553
|
+
/**
|
|
1554
|
+
* Enter a parse tree produced by `esql_parser.promqlParamValue`.
|
|
1555
|
+
* @param ctx the parse tree
|
|
1556
|
+
*/
|
|
1557
|
+
enterPromqlParamValue?: (ctx: PromqlParamValueContext) => void;
|
|
1558
|
+
/**
|
|
1559
|
+
* Exit a parse tree produced by `esql_parser.promqlParamValue`.
|
|
1560
|
+
* @param ctx the parse tree
|
|
1561
|
+
*/
|
|
1562
|
+
exitPromqlParamValue?: (ctx: PromqlParamValueContext) => void;
|
|
1563
|
+
/**
|
|
1564
|
+
* Enter a parse tree produced by `esql_parser.promqlQueryContent`.
|
|
1565
|
+
* @param ctx the parse tree
|
|
1566
|
+
*/
|
|
1567
|
+
enterPromqlQueryContent?: (ctx: PromqlQueryContentContext) => void;
|
|
1568
|
+
/**
|
|
1569
|
+
* Exit a parse tree produced by `esql_parser.promqlQueryContent`.
|
|
1570
|
+
* @param ctx the parse tree
|
|
1571
|
+
*/
|
|
1572
|
+
exitPromqlQueryContent?: (ctx: PromqlQueryContentContext) => void;
|
|
1573
|
+
/**
|
|
1574
|
+
* Enter a parse tree produced by `esql_parser.promqlQueryPart`.
|
|
1575
|
+
* @param ctx the parse tree
|
|
1576
|
+
*/
|
|
1577
|
+
enterPromqlQueryPart?: (ctx: PromqlQueryPartContext) => void;
|
|
1578
|
+
/**
|
|
1579
|
+
* Exit a parse tree produced by `esql_parser.promqlQueryPart`.
|
|
1580
|
+
* @param ctx the parse tree
|
|
1581
|
+
*/
|
|
1582
|
+
exitPromqlQueryPart?: (ctx: PromqlQueryPartContext) => void;
|
|
1583
|
+
/**
|
|
1584
|
+
* Enter a parse tree produced by `esql_parser.promqlIndexPattern`.
|
|
1585
|
+
* @param ctx the parse tree
|
|
1586
|
+
*/
|
|
1587
|
+
enterPromqlIndexPattern?: (ctx: PromqlIndexPatternContext) => void;
|
|
1588
|
+
/**
|
|
1589
|
+
* Exit a parse tree produced by `esql_parser.promqlIndexPattern`.
|
|
1590
|
+
* @param ctx the parse tree
|
|
1591
|
+
*/
|
|
1592
|
+
exitPromqlIndexPattern?: (ctx: PromqlIndexPatternContext) => void;
|
|
1593
|
+
/**
|
|
1594
|
+
* Enter a parse tree produced by `esql_parser.promqlClusterString`.
|
|
1595
|
+
* @param ctx the parse tree
|
|
1596
|
+
*/
|
|
1597
|
+
enterPromqlClusterString?: (ctx: PromqlClusterStringContext) => void;
|
|
1598
|
+
/**
|
|
1599
|
+
* Exit a parse tree produced by `esql_parser.promqlClusterString`.
|
|
1600
|
+
* @param ctx the parse tree
|
|
1601
|
+
*/
|
|
1602
|
+
exitPromqlClusterString?: (ctx: PromqlClusterStringContext) => void;
|
|
1603
|
+
/**
|
|
1604
|
+
* Enter a parse tree produced by `esql_parser.promqlSelectorString`.
|
|
1605
|
+
* @param ctx the parse tree
|
|
1606
|
+
*/
|
|
1607
|
+
enterPromqlSelectorString?: (ctx: PromqlSelectorStringContext) => void;
|
|
1608
|
+
/**
|
|
1609
|
+
* Exit a parse tree produced by `esql_parser.promqlSelectorString`.
|
|
1610
|
+
* @param ctx the parse tree
|
|
1611
|
+
*/
|
|
1612
|
+
exitPromqlSelectorString?: (ctx: PromqlSelectorStringContext) => void;
|
|
1613
|
+
/**
|
|
1614
|
+
* Enter a parse tree produced by `esql_parser.promqlUnquotedIndexString`.
|
|
1615
|
+
* @param ctx the parse tree
|
|
1616
|
+
*/
|
|
1617
|
+
enterPromqlUnquotedIndexString?: (ctx: PromqlUnquotedIndexStringContext) => void;
|
|
1618
|
+
/**
|
|
1619
|
+
* Exit a parse tree produced by `esql_parser.promqlUnquotedIndexString`.
|
|
1620
|
+
* @param ctx the parse tree
|
|
1621
|
+
*/
|
|
1622
|
+
exitPromqlUnquotedIndexString?: (ctx: PromqlUnquotedIndexStringContext) => void;
|
|
1623
|
+
/**
|
|
1624
|
+
* Enter a parse tree produced by `esql_parser.promqlIndexString`.
|
|
1625
|
+
* @param ctx the parse tree
|
|
1626
|
+
*/
|
|
1627
|
+
enterPromqlIndexString?: (ctx: PromqlIndexStringContext) => void;
|
|
1628
|
+
/**
|
|
1629
|
+
* Exit a parse tree produced by `esql_parser.promqlIndexString`.
|
|
1630
|
+
* @param ctx the parse tree
|
|
1631
|
+
*/
|
|
1632
|
+
exitPromqlIndexString?: (ctx: PromqlIndexStringContext) => void;
|
|
1633
|
+
}
|
|
1634
|
+
//# sourceMappingURL=esql_parser_listener.d.ts.map
|