tricc-oo 1.0.1__py3-none-any.whl → 1.4.15__py3-none-any.whl
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.
- tests/build.py +213 -0
- tests/test_cql.py +197 -0
- tests/to_ocl.py +51 -0
- {tricc → tricc_oo}/__init__.py +3 -1
- tricc_oo/converters/codesystem_to_ocl.py +169 -0
- tricc_oo/converters/cql/cqlLexer.py +822 -0
- tricc_oo/converters/cql/cqlListener.py +1632 -0
- tricc_oo/converters/cql/cqlParser.py +11204 -0
- tricc_oo/converters/cql/cqlVisitor.py +913 -0
- tricc_oo/converters/cql_to_operation.py +402 -0
- tricc_oo/converters/datadictionnary.py +115 -0
- tricc_oo/converters/drawio_type_map.py +222 -0
- tricc_oo/converters/tricc_to_xls_form.py +61 -0
- tricc_oo/converters/utils.py +65 -0
- tricc_oo/converters/xml_to_tricc.py +1003 -0
- tricc_oo/models/__init__.py +4 -0
- tricc_oo/models/base.py +732 -0
- tricc_oo/models/calculate.py +216 -0
- tricc_oo/models/ocl.py +281 -0
- tricc_oo/models/ordered_set.py +125 -0
- tricc_oo/models/tricc.py +418 -0
- tricc_oo/parsers/xml.py +138 -0
- tricc_oo/serializers/__init__.py +0 -0
- tricc_oo/serializers/xls_form.py +745 -0
- tricc_oo/strategies/__init__.py +0 -0
- tricc_oo/strategies/input/__init__.py +0 -0
- tricc_oo/strategies/input/base_input_strategy.py +111 -0
- tricc_oo/strategies/input/drawio.py +317 -0
- tricc_oo/strategies/output/base_output_strategy.py +148 -0
- tricc_oo/strategies/output/spice.py +365 -0
- tricc_oo/strategies/output/xls_form.py +697 -0
- tricc_oo/strategies/output/xlsform_cdss.py +189 -0
- tricc_oo/strategies/output/xlsform_cht.py +200 -0
- tricc_oo/strategies/output/xlsform_cht_hf.py +334 -0
- tricc_oo/visitors/__init__.py +0 -0
- tricc_oo/visitors/tricc.py +2198 -0
- tricc_oo/visitors/utils.py +17 -0
- tricc_oo/visitors/xform_pd.py +264 -0
- tricc_oo-1.4.15.dist-info/METADATA +219 -0
- tricc_oo-1.4.15.dist-info/RECORD +46 -0
- {tricc_oo-1.0.1.dist-info → tricc_oo-1.4.15.dist-info}/WHEEL +1 -1
- tricc_oo-1.4.15.dist-info/top_level.txt +2 -0
- tricc/converters/mc_to_tricc.py +0 -542
- tricc/converters/tricc_to_xls_form.py +0 -553
- tricc/converters/utils.py +0 -44
- tricc/converters/xml_to_tricc.py +0 -740
- tricc/models/tricc.py +0 -1093
- tricc/parsers/xml.py +0 -81
- tricc/serializers/xls_form.py +0 -364
- tricc/strategies/input/base_input_strategy.py +0 -80
- tricc/strategies/input/drawio.py +0 -246
- tricc/strategies/input/medalcreator.py +0 -168
- tricc/strategies/output/base_output_strategy.py +0 -92
- tricc/strategies/output/xls_form.py +0 -194
- tricc/strategies/output/xlsform_cdss.py +0 -46
- tricc/strategies/output/xlsform_cht.py +0 -106
- tricc/visitors/tricc.py +0 -375
- tricc_oo-1.0.1.dist-info/LICENSE +0 -78
- tricc_oo-1.0.1.dist-info/METADATA +0 -229
- tricc_oo-1.0.1.dist-info/RECORD +0 -26
- tricc_oo-1.0.1.dist-info/top_level.txt +0 -2
- venv/bin/vba_extract.py +0 -78
- {tricc → tricc_oo}/converters/__init__.py +0 -0
- {tricc → tricc_oo}/models/lang.py +0 -0
- {tricc/serializers → tricc_oo/parsers}/__init__.py +0 -0
- {tricc → tricc_oo}/serializers/planuml.py +0 -0
|
@@ -0,0 +1,1632 @@
|
|
|
1
|
+
# Generated from cql.g4 by ANTLR 4.13.2
|
|
2
|
+
from antlr4 import *
|
|
3
|
+
if "." in __name__:
|
|
4
|
+
from .cqlParser import cqlParser
|
|
5
|
+
else:
|
|
6
|
+
from cqlParser import cqlParser
|
|
7
|
+
|
|
8
|
+
# This class defines a complete listener for a parse tree produced by cqlParser.
|
|
9
|
+
class cqlListener(ParseTreeListener):
|
|
10
|
+
|
|
11
|
+
# Enter a parse tree produced by cqlParser#definition.
|
|
12
|
+
def enterDefinition(self, ctx:cqlParser.DefinitionContext):
|
|
13
|
+
pass
|
|
14
|
+
|
|
15
|
+
# Exit a parse tree produced by cqlParser#definition.
|
|
16
|
+
def exitDefinition(self, ctx:cqlParser.DefinitionContext):
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# Enter a parse tree produced by cqlParser#library.
|
|
21
|
+
def enterLibrary(self, ctx:cqlParser.LibraryContext):
|
|
22
|
+
pass
|
|
23
|
+
|
|
24
|
+
# Exit a parse tree produced by cqlParser#library.
|
|
25
|
+
def exitLibrary(self, ctx:cqlParser.LibraryContext):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# Enter a parse tree produced by cqlParser#libraryDefinition.
|
|
30
|
+
def enterLibraryDefinition(self, ctx:cqlParser.LibraryDefinitionContext):
|
|
31
|
+
pass
|
|
32
|
+
|
|
33
|
+
# Exit a parse tree produced by cqlParser#libraryDefinition.
|
|
34
|
+
def exitLibraryDefinition(self, ctx:cqlParser.LibraryDefinitionContext):
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# Enter a parse tree produced by cqlParser#usingDefinition.
|
|
39
|
+
def enterUsingDefinition(self, ctx:cqlParser.UsingDefinitionContext):
|
|
40
|
+
pass
|
|
41
|
+
|
|
42
|
+
# Exit a parse tree produced by cqlParser#usingDefinition.
|
|
43
|
+
def exitUsingDefinition(self, ctx:cqlParser.UsingDefinitionContext):
|
|
44
|
+
pass
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# Enter a parse tree produced by cqlParser#includeDefinition.
|
|
48
|
+
def enterIncludeDefinition(self, ctx:cqlParser.IncludeDefinitionContext):
|
|
49
|
+
pass
|
|
50
|
+
|
|
51
|
+
# Exit a parse tree produced by cqlParser#includeDefinition.
|
|
52
|
+
def exitIncludeDefinition(self, ctx:cqlParser.IncludeDefinitionContext):
|
|
53
|
+
pass
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
# Enter a parse tree produced by cqlParser#localIdentifier.
|
|
57
|
+
def enterLocalIdentifier(self, ctx:cqlParser.LocalIdentifierContext):
|
|
58
|
+
pass
|
|
59
|
+
|
|
60
|
+
# Exit a parse tree produced by cqlParser#localIdentifier.
|
|
61
|
+
def exitLocalIdentifier(self, ctx:cqlParser.LocalIdentifierContext):
|
|
62
|
+
pass
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
# Enter a parse tree produced by cqlParser#accessModifier.
|
|
66
|
+
def enterAccessModifier(self, ctx:cqlParser.AccessModifierContext):
|
|
67
|
+
pass
|
|
68
|
+
|
|
69
|
+
# Exit a parse tree produced by cqlParser#accessModifier.
|
|
70
|
+
def exitAccessModifier(self, ctx:cqlParser.AccessModifierContext):
|
|
71
|
+
pass
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
# Enter a parse tree produced by cqlParser#parameterDefinition.
|
|
75
|
+
def enterParameterDefinition(self, ctx:cqlParser.ParameterDefinitionContext):
|
|
76
|
+
pass
|
|
77
|
+
|
|
78
|
+
# Exit a parse tree produced by cqlParser#parameterDefinition.
|
|
79
|
+
def exitParameterDefinition(self, ctx:cqlParser.ParameterDefinitionContext):
|
|
80
|
+
pass
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
# Enter a parse tree produced by cqlParser#codesystemDefinition.
|
|
84
|
+
def enterCodesystemDefinition(self, ctx:cqlParser.CodesystemDefinitionContext):
|
|
85
|
+
pass
|
|
86
|
+
|
|
87
|
+
# Exit a parse tree produced by cqlParser#codesystemDefinition.
|
|
88
|
+
def exitCodesystemDefinition(self, ctx:cqlParser.CodesystemDefinitionContext):
|
|
89
|
+
pass
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
# Enter a parse tree produced by cqlParser#valuesetDefinition.
|
|
93
|
+
def enterValuesetDefinition(self, ctx:cqlParser.ValuesetDefinitionContext):
|
|
94
|
+
pass
|
|
95
|
+
|
|
96
|
+
# Exit a parse tree produced by cqlParser#valuesetDefinition.
|
|
97
|
+
def exitValuesetDefinition(self, ctx:cqlParser.ValuesetDefinitionContext):
|
|
98
|
+
pass
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
# Enter a parse tree produced by cqlParser#codesystems.
|
|
102
|
+
def enterCodesystems(self, ctx:cqlParser.CodesystemsContext):
|
|
103
|
+
pass
|
|
104
|
+
|
|
105
|
+
# Exit a parse tree produced by cqlParser#codesystems.
|
|
106
|
+
def exitCodesystems(self, ctx:cqlParser.CodesystemsContext):
|
|
107
|
+
pass
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
# Enter a parse tree produced by cqlParser#codesystemIdentifier.
|
|
111
|
+
def enterCodesystemIdentifier(self, ctx:cqlParser.CodesystemIdentifierContext):
|
|
112
|
+
pass
|
|
113
|
+
|
|
114
|
+
# Exit a parse tree produced by cqlParser#codesystemIdentifier.
|
|
115
|
+
def exitCodesystemIdentifier(self, ctx:cqlParser.CodesystemIdentifierContext):
|
|
116
|
+
pass
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
# Enter a parse tree produced by cqlParser#libraryIdentifier.
|
|
120
|
+
def enterLibraryIdentifier(self, ctx:cqlParser.LibraryIdentifierContext):
|
|
121
|
+
pass
|
|
122
|
+
|
|
123
|
+
# Exit a parse tree produced by cqlParser#libraryIdentifier.
|
|
124
|
+
def exitLibraryIdentifier(self, ctx:cqlParser.LibraryIdentifierContext):
|
|
125
|
+
pass
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
# Enter a parse tree produced by cqlParser#codeDefinition.
|
|
129
|
+
def enterCodeDefinition(self, ctx:cqlParser.CodeDefinitionContext):
|
|
130
|
+
pass
|
|
131
|
+
|
|
132
|
+
# Exit a parse tree produced by cqlParser#codeDefinition.
|
|
133
|
+
def exitCodeDefinition(self, ctx:cqlParser.CodeDefinitionContext):
|
|
134
|
+
pass
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
# Enter a parse tree produced by cqlParser#conceptDefinition.
|
|
138
|
+
def enterConceptDefinition(self, ctx:cqlParser.ConceptDefinitionContext):
|
|
139
|
+
pass
|
|
140
|
+
|
|
141
|
+
# Exit a parse tree produced by cqlParser#conceptDefinition.
|
|
142
|
+
def exitConceptDefinition(self, ctx:cqlParser.ConceptDefinitionContext):
|
|
143
|
+
pass
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
# Enter a parse tree produced by cqlParser#codeIdentifier.
|
|
147
|
+
def enterCodeIdentifier(self, ctx:cqlParser.CodeIdentifierContext):
|
|
148
|
+
pass
|
|
149
|
+
|
|
150
|
+
# Exit a parse tree produced by cqlParser#codeIdentifier.
|
|
151
|
+
def exitCodeIdentifier(self, ctx:cqlParser.CodeIdentifierContext):
|
|
152
|
+
pass
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
# Enter a parse tree produced by cqlParser#codesystemId.
|
|
156
|
+
def enterCodesystemId(self, ctx:cqlParser.CodesystemIdContext):
|
|
157
|
+
pass
|
|
158
|
+
|
|
159
|
+
# Exit a parse tree produced by cqlParser#codesystemId.
|
|
160
|
+
def exitCodesystemId(self, ctx:cqlParser.CodesystemIdContext):
|
|
161
|
+
pass
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
# Enter a parse tree produced by cqlParser#valuesetId.
|
|
165
|
+
def enterValuesetId(self, ctx:cqlParser.ValuesetIdContext):
|
|
166
|
+
pass
|
|
167
|
+
|
|
168
|
+
# Exit a parse tree produced by cqlParser#valuesetId.
|
|
169
|
+
def exitValuesetId(self, ctx:cqlParser.ValuesetIdContext):
|
|
170
|
+
pass
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
# Enter a parse tree produced by cqlParser#versionSpecifier.
|
|
174
|
+
def enterVersionSpecifier(self, ctx:cqlParser.VersionSpecifierContext):
|
|
175
|
+
pass
|
|
176
|
+
|
|
177
|
+
# Exit a parse tree produced by cqlParser#versionSpecifier.
|
|
178
|
+
def exitVersionSpecifier(self, ctx:cqlParser.VersionSpecifierContext):
|
|
179
|
+
pass
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
# Enter a parse tree produced by cqlParser#codeId.
|
|
183
|
+
def enterCodeId(self, ctx:cqlParser.CodeIdContext):
|
|
184
|
+
pass
|
|
185
|
+
|
|
186
|
+
# Exit a parse tree produced by cqlParser#codeId.
|
|
187
|
+
def exitCodeId(self, ctx:cqlParser.CodeIdContext):
|
|
188
|
+
pass
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
# Enter a parse tree produced by cqlParser#typeSpecifier.
|
|
192
|
+
def enterTypeSpecifier(self, ctx:cqlParser.TypeSpecifierContext):
|
|
193
|
+
pass
|
|
194
|
+
|
|
195
|
+
# Exit a parse tree produced by cqlParser#typeSpecifier.
|
|
196
|
+
def exitTypeSpecifier(self, ctx:cqlParser.TypeSpecifierContext):
|
|
197
|
+
pass
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
# Enter a parse tree produced by cqlParser#namedTypeSpecifier.
|
|
201
|
+
def enterNamedTypeSpecifier(self, ctx:cqlParser.NamedTypeSpecifierContext):
|
|
202
|
+
pass
|
|
203
|
+
|
|
204
|
+
# Exit a parse tree produced by cqlParser#namedTypeSpecifier.
|
|
205
|
+
def exitNamedTypeSpecifier(self, ctx:cqlParser.NamedTypeSpecifierContext):
|
|
206
|
+
pass
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
# Enter a parse tree produced by cqlParser#modelIdentifier.
|
|
210
|
+
def enterModelIdentifier(self, ctx:cqlParser.ModelIdentifierContext):
|
|
211
|
+
pass
|
|
212
|
+
|
|
213
|
+
# Exit a parse tree produced by cqlParser#modelIdentifier.
|
|
214
|
+
def exitModelIdentifier(self, ctx:cqlParser.ModelIdentifierContext):
|
|
215
|
+
pass
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
# Enter a parse tree produced by cqlParser#listTypeSpecifier.
|
|
219
|
+
def enterListTypeSpecifier(self, ctx:cqlParser.ListTypeSpecifierContext):
|
|
220
|
+
pass
|
|
221
|
+
|
|
222
|
+
# Exit a parse tree produced by cqlParser#listTypeSpecifier.
|
|
223
|
+
def exitListTypeSpecifier(self, ctx:cqlParser.ListTypeSpecifierContext):
|
|
224
|
+
pass
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
# Enter a parse tree produced by cqlParser#intervalTypeSpecifier.
|
|
228
|
+
def enterIntervalTypeSpecifier(self, ctx:cqlParser.IntervalTypeSpecifierContext):
|
|
229
|
+
pass
|
|
230
|
+
|
|
231
|
+
# Exit a parse tree produced by cqlParser#intervalTypeSpecifier.
|
|
232
|
+
def exitIntervalTypeSpecifier(self, ctx:cqlParser.IntervalTypeSpecifierContext):
|
|
233
|
+
pass
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
# Enter a parse tree produced by cqlParser#tupleTypeSpecifier.
|
|
237
|
+
def enterTupleTypeSpecifier(self, ctx:cqlParser.TupleTypeSpecifierContext):
|
|
238
|
+
pass
|
|
239
|
+
|
|
240
|
+
# Exit a parse tree produced by cqlParser#tupleTypeSpecifier.
|
|
241
|
+
def exitTupleTypeSpecifier(self, ctx:cqlParser.TupleTypeSpecifierContext):
|
|
242
|
+
pass
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
# Enter a parse tree produced by cqlParser#tupleElementDefinition.
|
|
246
|
+
def enterTupleElementDefinition(self, ctx:cqlParser.TupleElementDefinitionContext):
|
|
247
|
+
pass
|
|
248
|
+
|
|
249
|
+
# Exit a parse tree produced by cqlParser#tupleElementDefinition.
|
|
250
|
+
def exitTupleElementDefinition(self, ctx:cqlParser.TupleElementDefinitionContext):
|
|
251
|
+
pass
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
# Enter a parse tree produced by cqlParser#choiceTypeSpecifier.
|
|
255
|
+
def enterChoiceTypeSpecifier(self, ctx:cqlParser.ChoiceTypeSpecifierContext):
|
|
256
|
+
pass
|
|
257
|
+
|
|
258
|
+
# Exit a parse tree produced by cqlParser#choiceTypeSpecifier.
|
|
259
|
+
def exitChoiceTypeSpecifier(self, ctx:cqlParser.ChoiceTypeSpecifierContext):
|
|
260
|
+
pass
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
# Enter a parse tree produced by cqlParser#statement.
|
|
264
|
+
def enterStatement(self, ctx:cqlParser.StatementContext):
|
|
265
|
+
pass
|
|
266
|
+
|
|
267
|
+
# Exit a parse tree produced by cqlParser#statement.
|
|
268
|
+
def exitStatement(self, ctx:cqlParser.StatementContext):
|
|
269
|
+
pass
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
# Enter a parse tree produced by cqlParser#expressionDefinition.
|
|
273
|
+
def enterExpressionDefinition(self, ctx:cqlParser.ExpressionDefinitionContext):
|
|
274
|
+
pass
|
|
275
|
+
|
|
276
|
+
# Exit a parse tree produced by cqlParser#expressionDefinition.
|
|
277
|
+
def exitExpressionDefinition(self, ctx:cqlParser.ExpressionDefinitionContext):
|
|
278
|
+
pass
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
# Enter a parse tree produced by cqlParser#contextDefinition.
|
|
282
|
+
def enterContextDefinition(self, ctx:cqlParser.ContextDefinitionContext):
|
|
283
|
+
pass
|
|
284
|
+
|
|
285
|
+
# Exit a parse tree produced by cqlParser#contextDefinition.
|
|
286
|
+
def exitContextDefinition(self, ctx:cqlParser.ContextDefinitionContext):
|
|
287
|
+
pass
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
# Enter a parse tree produced by cqlParser#fluentModifier.
|
|
291
|
+
def enterFluentModifier(self, ctx:cqlParser.FluentModifierContext):
|
|
292
|
+
pass
|
|
293
|
+
|
|
294
|
+
# Exit a parse tree produced by cqlParser#fluentModifier.
|
|
295
|
+
def exitFluentModifier(self, ctx:cqlParser.FluentModifierContext):
|
|
296
|
+
pass
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
# Enter a parse tree produced by cqlParser#functionDefinition.
|
|
300
|
+
def enterFunctionDefinition(self, ctx:cqlParser.FunctionDefinitionContext):
|
|
301
|
+
pass
|
|
302
|
+
|
|
303
|
+
# Exit a parse tree produced by cqlParser#functionDefinition.
|
|
304
|
+
def exitFunctionDefinition(self, ctx:cqlParser.FunctionDefinitionContext):
|
|
305
|
+
pass
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
# Enter a parse tree produced by cqlParser#operandDefinition.
|
|
309
|
+
def enterOperandDefinition(self, ctx:cqlParser.OperandDefinitionContext):
|
|
310
|
+
pass
|
|
311
|
+
|
|
312
|
+
# Exit a parse tree produced by cqlParser#operandDefinition.
|
|
313
|
+
def exitOperandDefinition(self, ctx:cqlParser.OperandDefinitionContext):
|
|
314
|
+
pass
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
# Enter a parse tree produced by cqlParser#functionBody.
|
|
318
|
+
def enterFunctionBody(self, ctx:cqlParser.FunctionBodyContext):
|
|
319
|
+
pass
|
|
320
|
+
|
|
321
|
+
# Exit a parse tree produced by cqlParser#functionBody.
|
|
322
|
+
def exitFunctionBody(self, ctx:cqlParser.FunctionBodyContext):
|
|
323
|
+
pass
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
# Enter a parse tree produced by cqlParser#querySource.
|
|
327
|
+
def enterQuerySource(self, ctx:cqlParser.QuerySourceContext):
|
|
328
|
+
pass
|
|
329
|
+
|
|
330
|
+
# Exit a parse tree produced by cqlParser#querySource.
|
|
331
|
+
def exitQuerySource(self, ctx:cqlParser.QuerySourceContext):
|
|
332
|
+
pass
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
# Enter a parse tree produced by cqlParser#aliasedQuerySource.
|
|
336
|
+
def enterAliasedQuerySource(self, ctx:cqlParser.AliasedQuerySourceContext):
|
|
337
|
+
pass
|
|
338
|
+
|
|
339
|
+
# Exit a parse tree produced by cqlParser#aliasedQuerySource.
|
|
340
|
+
def exitAliasedQuerySource(self, ctx:cqlParser.AliasedQuerySourceContext):
|
|
341
|
+
pass
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
# Enter a parse tree produced by cqlParser#alias.
|
|
345
|
+
def enterAlias(self, ctx:cqlParser.AliasContext):
|
|
346
|
+
pass
|
|
347
|
+
|
|
348
|
+
# Exit a parse tree produced by cqlParser#alias.
|
|
349
|
+
def exitAlias(self, ctx:cqlParser.AliasContext):
|
|
350
|
+
pass
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
# Enter a parse tree produced by cqlParser#queryInclusionClause.
|
|
354
|
+
def enterQueryInclusionClause(self, ctx:cqlParser.QueryInclusionClauseContext):
|
|
355
|
+
pass
|
|
356
|
+
|
|
357
|
+
# Exit a parse tree produced by cqlParser#queryInclusionClause.
|
|
358
|
+
def exitQueryInclusionClause(self, ctx:cqlParser.QueryInclusionClauseContext):
|
|
359
|
+
pass
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
# Enter a parse tree produced by cqlParser#withClause.
|
|
363
|
+
def enterWithClause(self, ctx:cqlParser.WithClauseContext):
|
|
364
|
+
pass
|
|
365
|
+
|
|
366
|
+
# Exit a parse tree produced by cqlParser#withClause.
|
|
367
|
+
def exitWithClause(self, ctx:cqlParser.WithClauseContext):
|
|
368
|
+
pass
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
# Enter a parse tree produced by cqlParser#withoutClause.
|
|
372
|
+
def enterWithoutClause(self, ctx:cqlParser.WithoutClauseContext):
|
|
373
|
+
pass
|
|
374
|
+
|
|
375
|
+
# Exit a parse tree produced by cqlParser#withoutClause.
|
|
376
|
+
def exitWithoutClause(self, ctx:cqlParser.WithoutClauseContext):
|
|
377
|
+
pass
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
# Enter a parse tree produced by cqlParser#retrieve.
|
|
381
|
+
def enterRetrieve(self, ctx:cqlParser.RetrieveContext):
|
|
382
|
+
pass
|
|
383
|
+
|
|
384
|
+
# Exit a parse tree produced by cqlParser#retrieve.
|
|
385
|
+
def exitRetrieve(self, ctx:cqlParser.RetrieveContext):
|
|
386
|
+
pass
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
# Enter a parse tree produced by cqlParser#contextIdentifier.
|
|
390
|
+
def enterContextIdentifier(self, ctx:cqlParser.ContextIdentifierContext):
|
|
391
|
+
pass
|
|
392
|
+
|
|
393
|
+
# Exit a parse tree produced by cqlParser#contextIdentifier.
|
|
394
|
+
def exitContextIdentifier(self, ctx:cqlParser.ContextIdentifierContext):
|
|
395
|
+
pass
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
# Enter a parse tree produced by cqlParser#codePath.
|
|
399
|
+
def enterCodePath(self, ctx:cqlParser.CodePathContext):
|
|
400
|
+
pass
|
|
401
|
+
|
|
402
|
+
# Exit a parse tree produced by cqlParser#codePath.
|
|
403
|
+
def exitCodePath(self, ctx:cqlParser.CodePathContext):
|
|
404
|
+
pass
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
# Enter a parse tree produced by cqlParser#codeComparator.
|
|
408
|
+
def enterCodeComparator(self, ctx:cqlParser.CodeComparatorContext):
|
|
409
|
+
pass
|
|
410
|
+
|
|
411
|
+
# Exit a parse tree produced by cqlParser#codeComparator.
|
|
412
|
+
def exitCodeComparator(self, ctx:cqlParser.CodeComparatorContext):
|
|
413
|
+
pass
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
# Enter a parse tree produced by cqlParser#terminology.
|
|
417
|
+
def enterTerminology(self, ctx:cqlParser.TerminologyContext):
|
|
418
|
+
pass
|
|
419
|
+
|
|
420
|
+
# Exit a parse tree produced by cqlParser#terminology.
|
|
421
|
+
def exitTerminology(self, ctx:cqlParser.TerminologyContext):
|
|
422
|
+
pass
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
# Enter a parse tree produced by cqlParser#qualifier.
|
|
426
|
+
def enterQualifier(self, ctx:cqlParser.QualifierContext):
|
|
427
|
+
pass
|
|
428
|
+
|
|
429
|
+
# Exit a parse tree produced by cqlParser#qualifier.
|
|
430
|
+
def exitQualifier(self, ctx:cqlParser.QualifierContext):
|
|
431
|
+
pass
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
# Enter a parse tree produced by cqlParser#query.
|
|
435
|
+
def enterQuery(self, ctx:cqlParser.QueryContext):
|
|
436
|
+
pass
|
|
437
|
+
|
|
438
|
+
# Exit a parse tree produced by cqlParser#query.
|
|
439
|
+
def exitQuery(self, ctx:cqlParser.QueryContext):
|
|
440
|
+
pass
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
# Enter a parse tree produced by cqlParser#sourceClause.
|
|
444
|
+
def enterSourceClause(self, ctx:cqlParser.SourceClauseContext):
|
|
445
|
+
pass
|
|
446
|
+
|
|
447
|
+
# Exit a parse tree produced by cqlParser#sourceClause.
|
|
448
|
+
def exitSourceClause(self, ctx:cqlParser.SourceClauseContext):
|
|
449
|
+
pass
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
# Enter a parse tree produced by cqlParser#letClause.
|
|
453
|
+
def enterLetClause(self, ctx:cqlParser.LetClauseContext):
|
|
454
|
+
pass
|
|
455
|
+
|
|
456
|
+
# Exit a parse tree produced by cqlParser#letClause.
|
|
457
|
+
def exitLetClause(self, ctx:cqlParser.LetClauseContext):
|
|
458
|
+
pass
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
# Enter a parse tree produced by cqlParser#letClauseItem.
|
|
462
|
+
def enterLetClauseItem(self, ctx:cqlParser.LetClauseItemContext):
|
|
463
|
+
pass
|
|
464
|
+
|
|
465
|
+
# Exit a parse tree produced by cqlParser#letClauseItem.
|
|
466
|
+
def exitLetClauseItem(self, ctx:cqlParser.LetClauseItemContext):
|
|
467
|
+
pass
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
# Enter a parse tree produced by cqlParser#whereClause.
|
|
471
|
+
def enterWhereClause(self, ctx:cqlParser.WhereClauseContext):
|
|
472
|
+
pass
|
|
473
|
+
|
|
474
|
+
# Exit a parse tree produced by cqlParser#whereClause.
|
|
475
|
+
def exitWhereClause(self, ctx:cqlParser.WhereClauseContext):
|
|
476
|
+
pass
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
# Enter a parse tree produced by cqlParser#returnClause.
|
|
480
|
+
def enterReturnClause(self, ctx:cqlParser.ReturnClauseContext):
|
|
481
|
+
pass
|
|
482
|
+
|
|
483
|
+
# Exit a parse tree produced by cqlParser#returnClause.
|
|
484
|
+
def exitReturnClause(self, ctx:cqlParser.ReturnClauseContext):
|
|
485
|
+
pass
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
# Enter a parse tree produced by cqlParser#aggregateClause.
|
|
489
|
+
def enterAggregateClause(self, ctx:cqlParser.AggregateClauseContext):
|
|
490
|
+
pass
|
|
491
|
+
|
|
492
|
+
# Exit a parse tree produced by cqlParser#aggregateClause.
|
|
493
|
+
def exitAggregateClause(self, ctx:cqlParser.AggregateClauseContext):
|
|
494
|
+
pass
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
# Enter a parse tree produced by cqlParser#startingClause.
|
|
498
|
+
def enterStartingClause(self, ctx:cqlParser.StartingClauseContext):
|
|
499
|
+
pass
|
|
500
|
+
|
|
501
|
+
# Exit a parse tree produced by cqlParser#startingClause.
|
|
502
|
+
def exitStartingClause(self, ctx:cqlParser.StartingClauseContext):
|
|
503
|
+
pass
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
# Enter a parse tree produced by cqlParser#sortClause.
|
|
507
|
+
def enterSortClause(self, ctx:cqlParser.SortClauseContext):
|
|
508
|
+
pass
|
|
509
|
+
|
|
510
|
+
# Exit a parse tree produced by cqlParser#sortClause.
|
|
511
|
+
def exitSortClause(self, ctx:cqlParser.SortClauseContext):
|
|
512
|
+
pass
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
# Enter a parse tree produced by cqlParser#sortDirection.
|
|
516
|
+
def enterSortDirection(self, ctx:cqlParser.SortDirectionContext):
|
|
517
|
+
pass
|
|
518
|
+
|
|
519
|
+
# Exit a parse tree produced by cqlParser#sortDirection.
|
|
520
|
+
def exitSortDirection(self, ctx:cqlParser.SortDirectionContext):
|
|
521
|
+
pass
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
# Enter a parse tree produced by cqlParser#sortByItem.
|
|
525
|
+
def enterSortByItem(self, ctx:cqlParser.SortByItemContext):
|
|
526
|
+
pass
|
|
527
|
+
|
|
528
|
+
# Exit a parse tree produced by cqlParser#sortByItem.
|
|
529
|
+
def exitSortByItem(self, ctx:cqlParser.SortByItemContext):
|
|
530
|
+
pass
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
# Enter a parse tree produced by cqlParser#qualifiedIdentifier.
|
|
534
|
+
def enterQualifiedIdentifier(self, ctx:cqlParser.QualifiedIdentifierContext):
|
|
535
|
+
pass
|
|
536
|
+
|
|
537
|
+
# Exit a parse tree produced by cqlParser#qualifiedIdentifier.
|
|
538
|
+
def exitQualifiedIdentifier(self, ctx:cqlParser.QualifiedIdentifierContext):
|
|
539
|
+
pass
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
# Enter a parse tree produced by cqlParser#qualifiedIdentifierExpression.
|
|
543
|
+
def enterQualifiedIdentifierExpression(self, ctx:cqlParser.QualifiedIdentifierExpressionContext):
|
|
544
|
+
pass
|
|
545
|
+
|
|
546
|
+
# Exit a parse tree produced by cqlParser#qualifiedIdentifierExpression.
|
|
547
|
+
def exitQualifiedIdentifierExpression(self, ctx:cqlParser.QualifiedIdentifierExpressionContext):
|
|
548
|
+
pass
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
# Enter a parse tree produced by cqlParser#qualifierExpression.
|
|
552
|
+
def enterQualifierExpression(self, ctx:cqlParser.QualifierExpressionContext):
|
|
553
|
+
pass
|
|
554
|
+
|
|
555
|
+
# Exit a parse tree produced by cqlParser#qualifierExpression.
|
|
556
|
+
def exitQualifierExpression(self, ctx:cqlParser.QualifierExpressionContext):
|
|
557
|
+
pass
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
# Enter a parse tree produced by cqlParser#simplePathIndexer.
|
|
561
|
+
def enterSimplePathIndexer(self, ctx:cqlParser.SimplePathIndexerContext):
|
|
562
|
+
pass
|
|
563
|
+
|
|
564
|
+
# Exit a parse tree produced by cqlParser#simplePathIndexer.
|
|
565
|
+
def exitSimplePathIndexer(self, ctx:cqlParser.SimplePathIndexerContext):
|
|
566
|
+
pass
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
# Enter a parse tree produced by cqlParser#simplePathQualifiedIdentifier.
|
|
570
|
+
def enterSimplePathQualifiedIdentifier(self, ctx:cqlParser.SimplePathQualifiedIdentifierContext):
|
|
571
|
+
pass
|
|
572
|
+
|
|
573
|
+
# Exit a parse tree produced by cqlParser#simplePathQualifiedIdentifier.
|
|
574
|
+
def exitSimplePathQualifiedIdentifier(self, ctx:cqlParser.SimplePathQualifiedIdentifierContext):
|
|
575
|
+
pass
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
# Enter a parse tree produced by cqlParser#simplePathReferentialIdentifier.
|
|
579
|
+
def enterSimplePathReferentialIdentifier(self, ctx:cqlParser.SimplePathReferentialIdentifierContext):
|
|
580
|
+
pass
|
|
581
|
+
|
|
582
|
+
# Exit a parse tree produced by cqlParser#simplePathReferentialIdentifier.
|
|
583
|
+
def exitSimplePathReferentialIdentifier(self, ctx:cqlParser.SimplePathReferentialIdentifierContext):
|
|
584
|
+
pass
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
# Enter a parse tree produced by cqlParser#simpleStringLiteral.
|
|
588
|
+
def enterSimpleStringLiteral(self, ctx:cqlParser.SimpleStringLiteralContext):
|
|
589
|
+
pass
|
|
590
|
+
|
|
591
|
+
# Exit a parse tree produced by cqlParser#simpleStringLiteral.
|
|
592
|
+
def exitSimpleStringLiteral(self, ctx:cqlParser.SimpleStringLiteralContext):
|
|
593
|
+
pass
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
# Enter a parse tree produced by cqlParser#simpleNumberLiteral.
|
|
597
|
+
def enterSimpleNumberLiteral(self, ctx:cqlParser.SimpleNumberLiteralContext):
|
|
598
|
+
pass
|
|
599
|
+
|
|
600
|
+
# Exit a parse tree produced by cqlParser#simpleNumberLiteral.
|
|
601
|
+
def exitSimpleNumberLiteral(self, ctx:cqlParser.SimpleNumberLiteralContext):
|
|
602
|
+
pass
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
# Enter a parse tree produced by cqlParser#durationBetweenExpression.
|
|
606
|
+
def enterDurationBetweenExpression(self, ctx:cqlParser.DurationBetweenExpressionContext):
|
|
607
|
+
pass
|
|
608
|
+
|
|
609
|
+
# Exit a parse tree produced by cqlParser#durationBetweenExpression.
|
|
610
|
+
def exitDurationBetweenExpression(self, ctx:cqlParser.DurationBetweenExpressionContext):
|
|
611
|
+
pass
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
# Enter a parse tree produced by cqlParser#inFixSetExpression.
|
|
615
|
+
def enterInFixSetExpression(self, ctx:cqlParser.InFixSetExpressionContext):
|
|
616
|
+
pass
|
|
617
|
+
|
|
618
|
+
# Exit a parse tree produced by cqlParser#inFixSetExpression.
|
|
619
|
+
def exitInFixSetExpression(self, ctx:cqlParser.InFixSetExpressionContext):
|
|
620
|
+
pass
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
# Enter a parse tree produced by cqlParser#retrieveExpression.
|
|
624
|
+
def enterRetrieveExpression(self, ctx:cqlParser.RetrieveExpressionContext):
|
|
625
|
+
pass
|
|
626
|
+
|
|
627
|
+
# Exit a parse tree produced by cqlParser#retrieveExpression.
|
|
628
|
+
def exitRetrieveExpression(self, ctx:cqlParser.RetrieveExpressionContext):
|
|
629
|
+
pass
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
# Enter a parse tree produced by cqlParser#timingExpression.
|
|
633
|
+
def enterTimingExpression(self, ctx:cqlParser.TimingExpressionContext):
|
|
634
|
+
pass
|
|
635
|
+
|
|
636
|
+
# Exit a parse tree produced by cqlParser#timingExpression.
|
|
637
|
+
def exitTimingExpression(self, ctx:cqlParser.TimingExpressionContext):
|
|
638
|
+
pass
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
# Enter a parse tree produced by cqlParser#queryExpression.
|
|
642
|
+
def enterQueryExpression(self, ctx:cqlParser.QueryExpressionContext):
|
|
643
|
+
pass
|
|
644
|
+
|
|
645
|
+
# Exit a parse tree produced by cqlParser#queryExpression.
|
|
646
|
+
def exitQueryExpression(self, ctx:cqlParser.QueryExpressionContext):
|
|
647
|
+
pass
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
# Enter a parse tree produced by cqlParser#notExpression.
|
|
651
|
+
def enterNotExpression(self, ctx:cqlParser.NotExpressionContext):
|
|
652
|
+
pass
|
|
653
|
+
|
|
654
|
+
# Exit a parse tree produced by cqlParser#notExpression.
|
|
655
|
+
def exitNotExpression(self, ctx:cqlParser.NotExpressionContext):
|
|
656
|
+
pass
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
# Enter a parse tree produced by cqlParser#booleanExpression.
|
|
660
|
+
def enterBooleanExpression(self, ctx:cqlParser.BooleanExpressionContext):
|
|
661
|
+
pass
|
|
662
|
+
|
|
663
|
+
# Exit a parse tree produced by cqlParser#booleanExpression.
|
|
664
|
+
def exitBooleanExpression(self, ctx:cqlParser.BooleanExpressionContext):
|
|
665
|
+
pass
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
# Enter a parse tree produced by cqlParser#orExpression.
|
|
669
|
+
def enterOrExpression(self, ctx:cqlParser.OrExpressionContext):
|
|
670
|
+
pass
|
|
671
|
+
|
|
672
|
+
# Exit a parse tree produced by cqlParser#orExpression.
|
|
673
|
+
def exitOrExpression(self, ctx:cqlParser.OrExpressionContext):
|
|
674
|
+
pass
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
# Enter a parse tree produced by cqlParser#castExpression.
|
|
678
|
+
def enterCastExpression(self, ctx:cqlParser.CastExpressionContext):
|
|
679
|
+
pass
|
|
680
|
+
|
|
681
|
+
# Exit a parse tree produced by cqlParser#castExpression.
|
|
682
|
+
def exitCastExpression(self, ctx:cqlParser.CastExpressionContext):
|
|
683
|
+
pass
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
# Enter a parse tree produced by cqlParser#andExpression.
|
|
687
|
+
def enterAndExpression(self, ctx:cqlParser.AndExpressionContext):
|
|
688
|
+
pass
|
|
689
|
+
|
|
690
|
+
# Exit a parse tree produced by cqlParser#andExpression.
|
|
691
|
+
def exitAndExpression(self, ctx:cqlParser.AndExpressionContext):
|
|
692
|
+
pass
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
# Enter a parse tree produced by cqlParser#betweenExpression.
|
|
696
|
+
def enterBetweenExpression(self, ctx:cqlParser.BetweenExpressionContext):
|
|
697
|
+
pass
|
|
698
|
+
|
|
699
|
+
# Exit a parse tree produced by cqlParser#betweenExpression.
|
|
700
|
+
def exitBetweenExpression(self, ctx:cqlParser.BetweenExpressionContext):
|
|
701
|
+
pass
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
# Enter a parse tree produced by cqlParser#membershipExpression.
|
|
705
|
+
def enterMembershipExpression(self, ctx:cqlParser.MembershipExpressionContext):
|
|
706
|
+
pass
|
|
707
|
+
|
|
708
|
+
# Exit a parse tree produced by cqlParser#membershipExpression.
|
|
709
|
+
def exitMembershipExpression(self, ctx:cqlParser.MembershipExpressionContext):
|
|
710
|
+
pass
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
# Enter a parse tree produced by cqlParser#differenceBetweenExpression.
|
|
714
|
+
def enterDifferenceBetweenExpression(self, ctx:cqlParser.DifferenceBetweenExpressionContext):
|
|
715
|
+
pass
|
|
716
|
+
|
|
717
|
+
# Exit a parse tree produced by cqlParser#differenceBetweenExpression.
|
|
718
|
+
def exitDifferenceBetweenExpression(self, ctx:cqlParser.DifferenceBetweenExpressionContext):
|
|
719
|
+
pass
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
# Enter a parse tree produced by cqlParser#inequalityExpression.
|
|
723
|
+
def enterInequalityExpression(self, ctx:cqlParser.InequalityExpressionContext):
|
|
724
|
+
pass
|
|
725
|
+
|
|
726
|
+
# Exit a parse tree produced by cqlParser#inequalityExpression.
|
|
727
|
+
def exitInequalityExpression(self, ctx:cqlParser.InequalityExpressionContext):
|
|
728
|
+
pass
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
# Enter a parse tree produced by cqlParser#equalityExpression.
|
|
732
|
+
def enterEqualityExpression(self, ctx:cqlParser.EqualityExpressionContext):
|
|
733
|
+
pass
|
|
734
|
+
|
|
735
|
+
# Exit a parse tree produced by cqlParser#equalityExpression.
|
|
736
|
+
def exitEqualityExpression(self, ctx:cqlParser.EqualityExpressionContext):
|
|
737
|
+
pass
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
# Enter a parse tree produced by cqlParser#existenceExpression.
|
|
741
|
+
def enterExistenceExpression(self, ctx:cqlParser.ExistenceExpressionContext):
|
|
742
|
+
pass
|
|
743
|
+
|
|
744
|
+
# Exit a parse tree produced by cqlParser#existenceExpression.
|
|
745
|
+
def exitExistenceExpression(self, ctx:cqlParser.ExistenceExpressionContext):
|
|
746
|
+
pass
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
# Enter a parse tree produced by cqlParser#impliesExpression.
|
|
750
|
+
def enterImpliesExpression(self, ctx:cqlParser.ImpliesExpressionContext):
|
|
751
|
+
pass
|
|
752
|
+
|
|
753
|
+
# Exit a parse tree produced by cqlParser#impliesExpression.
|
|
754
|
+
def exitImpliesExpression(self, ctx:cqlParser.ImpliesExpressionContext):
|
|
755
|
+
pass
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
# Enter a parse tree produced by cqlParser#negateMembershipExpression.
|
|
759
|
+
def enterNegateMembershipExpression(self, ctx:cqlParser.NegateMembershipExpressionContext):
|
|
760
|
+
pass
|
|
761
|
+
|
|
762
|
+
# Exit a parse tree produced by cqlParser#negateMembershipExpression.
|
|
763
|
+
def exitNegateMembershipExpression(self, ctx:cqlParser.NegateMembershipExpressionContext):
|
|
764
|
+
pass
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
# Enter a parse tree produced by cqlParser#termExpression.
|
|
768
|
+
def enterTermExpression(self, ctx:cqlParser.TermExpressionContext):
|
|
769
|
+
pass
|
|
770
|
+
|
|
771
|
+
# Exit a parse tree produced by cqlParser#termExpression.
|
|
772
|
+
def exitTermExpression(self, ctx:cqlParser.TermExpressionContext):
|
|
773
|
+
pass
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
# Enter a parse tree produced by cqlParser#typeExpression.
|
|
777
|
+
def enterTypeExpression(self, ctx:cqlParser.TypeExpressionContext):
|
|
778
|
+
pass
|
|
779
|
+
|
|
780
|
+
# Exit a parse tree produced by cqlParser#typeExpression.
|
|
781
|
+
def exitTypeExpression(self, ctx:cqlParser.TypeExpressionContext):
|
|
782
|
+
pass
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
# Enter a parse tree produced by cqlParser#dateTimePrecision.
|
|
786
|
+
def enterDateTimePrecision(self, ctx:cqlParser.DateTimePrecisionContext):
|
|
787
|
+
pass
|
|
788
|
+
|
|
789
|
+
# Exit a parse tree produced by cqlParser#dateTimePrecision.
|
|
790
|
+
def exitDateTimePrecision(self, ctx:cqlParser.DateTimePrecisionContext):
|
|
791
|
+
pass
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
# Enter a parse tree produced by cqlParser#dateTimeComponent.
|
|
795
|
+
def enterDateTimeComponent(self, ctx:cqlParser.DateTimeComponentContext):
|
|
796
|
+
pass
|
|
797
|
+
|
|
798
|
+
# Exit a parse tree produced by cqlParser#dateTimeComponent.
|
|
799
|
+
def exitDateTimeComponent(self, ctx:cqlParser.DateTimeComponentContext):
|
|
800
|
+
pass
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
# Enter a parse tree produced by cqlParser#pluralDateTimePrecision.
|
|
804
|
+
def enterPluralDateTimePrecision(self, ctx:cqlParser.PluralDateTimePrecisionContext):
|
|
805
|
+
pass
|
|
806
|
+
|
|
807
|
+
# Exit a parse tree produced by cqlParser#pluralDateTimePrecision.
|
|
808
|
+
def exitPluralDateTimePrecision(self, ctx:cqlParser.PluralDateTimePrecisionContext):
|
|
809
|
+
pass
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
# Enter a parse tree produced by cqlParser#additionExpressionTerm.
|
|
813
|
+
def enterAdditionExpressionTerm(self, ctx:cqlParser.AdditionExpressionTermContext):
|
|
814
|
+
pass
|
|
815
|
+
|
|
816
|
+
# Exit a parse tree produced by cqlParser#additionExpressionTerm.
|
|
817
|
+
def exitAdditionExpressionTerm(self, ctx:cqlParser.AdditionExpressionTermContext):
|
|
818
|
+
pass
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
# Enter a parse tree produced by cqlParser#indexedExpressionTerm.
|
|
822
|
+
def enterIndexedExpressionTerm(self, ctx:cqlParser.IndexedExpressionTermContext):
|
|
823
|
+
pass
|
|
824
|
+
|
|
825
|
+
# Exit a parse tree produced by cqlParser#indexedExpressionTerm.
|
|
826
|
+
def exitIndexedExpressionTerm(self, ctx:cqlParser.IndexedExpressionTermContext):
|
|
827
|
+
pass
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
# Enter a parse tree produced by cqlParser#widthExpressionTerm.
|
|
831
|
+
def enterWidthExpressionTerm(self, ctx:cqlParser.WidthExpressionTermContext):
|
|
832
|
+
pass
|
|
833
|
+
|
|
834
|
+
# Exit a parse tree produced by cqlParser#widthExpressionTerm.
|
|
835
|
+
def exitWidthExpressionTerm(self, ctx:cqlParser.WidthExpressionTermContext):
|
|
836
|
+
pass
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
# Enter a parse tree produced by cqlParser#setAggregateExpressionTerm.
|
|
840
|
+
def enterSetAggregateExpressionTerm(self, ctx:cqlParser.SetAggregateExpressionTermContext):
|
|
841
|
+
pass
|
|
842
|
+
|
|
843
|
+
# Exit a parse tree produced by cqlParser#setAggregateExpressionTerm.
|
|
844
|
+
def exitSetAggregateExpressionTerm(self, ctx:cqlParser.SetAggregateExpressionTermContext):
|
|
845
|
+
pass
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
# Enter a parse tree produced by cqlParser#timeUnitExpressionTerm.
|
|
849
|
+
def enterTimeUnitExpressionTerm(self, ctx:cqlParser.TimeUnitExpressionTermContext):
|
|
850
|
+
pass
|
|
851
|
+
|
|
852
|
+
# Exit a parse tree produced by cqlParser#timeUnitExpressionTerm.
|
|
853
|
+
def exitTimeUnitExpressionTerm(self, ctx:cqlParser.TimeUnitExpressionTermContext):
|
|
854
|
+
pass
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
# Enter a parse tree produced by cqlParser#ifThenElseExpressionTerm.
|
|
858
|
+
def enterIfThenElseExpressionTerm(self, ctx:cqlParser.IfThenElseExpressionTermContext):
|
|
859
|
+
pass
|
|
860
|
+
|
|
861
|
+
# Exit a parse tree produced by cqlParser#ifThenElseExpressionTerm.
|
|
862
|
+
def exitIfThenElseExpressionTerm(self, ctx:cqlParser.IfThenElseExpressionTermContext):
|
|
863
|
+
pass
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
# Enter a parse tree produced by cqlParser#timeBoundaryExpressionTerm.
|
|
867
|
+
def enterTimeBoundaryExpressionTerm(self, ctx:cqlParser.TimeBoundaryExpressionTermContext):
|
|
868
|
+
pass
|
|
869
|
+
|
|
870
|
+
# Exit a parse tree produced by cqlParser#timeBoundaryExpressionTerm.
|
|
871
|
+
def exitTimeBoundaryExpressionTerm(self, ctx:cqlParser.TimeBoundaryExpressionTermContext):
|
|
872
|
+
pass
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
# Enter a parse tree produced by cqlParser#elementExtractorExpressionTerm.
|
|
876
|
+
def enterElementExtractorExpressionTerm(self, ctx:cqlParser.ElementExtractorExpressionTermContext):
|
|
877
|
+
pass
|
|
878
|
+
|
|
879
|
+
# Exit a parse tree produced by cqlParser#elementExtractorExpressionTerm.
|
|
880
|
+
def exitElementExtractorExpressionTerm(self, ctx:cqlParser.ElementExtractorExpressionTermContext):
|
|
881
|
+
pass
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
# Enter a parse tree produced by cqlParser#conversionExpressionTerm.
|
|
885
|
+
def enterConversionExpressionTerm(self, ctx:cqlParser.ConversionExpressionTermContext):
|
|
886
|
+
pass
|
|
887
|
+
|
|
888
|
+
# Exit a parse tree produced by cqlParser#conversionExpressionTerm.
|
|
889
|
+
def exitConversionExpressionTerm(self, ctx:cqlParser.ConversionExpressionTermContext):
|
|
890
|
+
pass
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
# Enter a parse tree produced by cqlParser#typeExtentExpressionTerm.
|
|
894
|
+
def enterTypeExtentExpressionTerm(self, ctx:cqlParser.TypeExtentExpressionTermContext):
|
|
895
|
+
pass
|
|
896
|
+
|
|
897
|
+
# Exit a parse tree produced by cqlParser#typeExtentExpressionTerm.
|
|
898
|
+
def exitTypeExtentExpressionTerm(self, ctx:cqlParser.TypeExtentExpressionTermContext):
|
|
899
|
+
pass
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
# Enter a parse tree produced by cqlParser#predecessorExpressionTerm.
|
|
903
|
+
def enterPredecessorExpressionTerm(self, ctx:cqlParser.PredecessorExpressionTermContext):
|
|
904
|
+
pass
|
|
905
|
+
|
|
906
|
+
# Exit a parse tree produced by cqlParser#predecessorExpressionTerm.
|
|
907
|
+
def exitPredecessorExpressionTerm(self, ctx:cqlParser.PredecessorExpressionTermContext):
|
|
908
|
+
pass
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
# Enter a parse tree produced by cqlParser#pointExtractorExpressionTerm.
|
|
912
|
+
def enterPointExtractorExpressionTerm(self, ctx:cqlParser.PointExtractorExpressionTermContext):
|
|
913
|
+
pass
|
|
914
|
+
|
|
915
|
+
# Exit a parse tree produced by cqlParser#pointExtractorExpressionTerm.
|
|
916
|
+
def exitPointExtractorExpressionTerm(self, ctx:cqlParser.PointExtractorExpressionTermContext):
|
|
917
|
+
pass
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
# Enter a parse tree produced by cqlParser#multiplicationExpressionTerm.
|
|
921
|
+
def enterMultiplicationExpressionTerm(self, ctx:cqlParser.MultiplicationExpressionTermContext):
|
|
922
|
+
pass
|
|
923
|
+
|
|
924
|
+
# Exit a parse tree produced by cqlParser#multiplicationExpressionTerm.
|
|
925
|
+
def exitMultiplicationExpressionTerm(self, ctx:cqlParser.MultiplicationExpressionTermContext):
|
|
926
|
+
pass
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
# Enter a parse tree produced by cqlParser#aggregateExpressionTerm.
|
|
930
|
+
def enterAggregateExpressionTerm(self, ctx:cqlParser.AggregateExpressionTermContext):
|
|
931
|
+
pass
|
|
932
|
+
|
|
933
|
+
# Exit a parse tree produced by cqlParser#aggregateExpressionTerm.
|
|
934
|
+
def exitAggregateExpressionTerm(self, ctx:cqlParser.AggregateExpressionTermContext):
|
|
935
|
+
pass
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
# Enter a parse tree produced by cqlParser#durationExpressionTerm.
|
|
939
|
+
def enterDurationExpressionTerm(self, ctx:cqlParser.DurationExpressionTermContext):
|
|
940
|
+
pass
|
|
941
|
+
|
|
942
|
+
# Exit a parse tree produced by cqlParser#durationExpressionTerm.
|
|
943
|
+
def exitDurationExpressionTerm(self, ctx:cqlParser.DurationExpressionTermContext):
|
|
944
|
+
pass
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
# Enter a parse tree produced by cqlParser#differenceExpressionTerm.
|
|
948
|
+
def enterDifferenceExpressionTerm(self, ctx:cqlParser.DifferenceExpressionTermContext):
|
|
949
|
+
pass
|
|
950
|
+
|
|
951
|
+
# Exit a parse tree produced by cqlParser#differenceExpressionTerm.
|
|
952
|
+
def exitDifferenceExpressionTerm(self, ctx:cqlParser.DifferenceExpressionTermContext):
|
|
953
|
+
pass
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
# Enter a parse tree produced by cqlParser#caseExpressionTerm.
|
|
957
|
+
def enterCaseExpressionTerm(self, ctx:cqlParser.CaseExpressionTermContext):
|
|
958
|
+
pass
|
|
959
|
+
|
|
960
|
+
# Exit a parse tree produced by cqlParser#caseExpressionTerm.
|
|
961
|
+
def exitCaseExpressionTerm(self, ctx:cqlParser.CaseExpressionTermContext):
|
|
962
|
+
pass
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
# Enter a parse tree produced by cqlParser#powerExpressionTerm.
|
|
966
|
+
def enterPowerExpressionTerm(self, ctx:cqlParser.PowerExpressionTermContext):
|
|
967
|
+
pass
|
|
968
|
+
|
|
969
|
+
# Exit a parse tree produced by cqlParser#powerExpressionTerm.
|
|
970
|
+
def exitPowerExpressionTerm(self, ctx:cqlParser.PowerExpressionTermContext):
|
|
971
|
+
pass
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
# Enter a parse tree produced by cqlParser#successorExpressionTerm.
|
|
975
|
+
def enterSuccessorExpressionTerm(self, ctx:cqlParser.SuccessorExpressionTermContext):
|
|
976
|
+
pass
|
|
977
|
+
|
|
978
|
+
# Exit a parse tree produced by cqlParser#successorExpressionTerm.
|
|
979
|
+
def exitSuccessorExpressionTerm(self, ctx:cqlParser.SuccessorExpressionTermContext):
|
|
980
|
+
pass
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
# Enter a parse tree produced by cqlParser#polarityExpressionTerm.
|
|
984
|
+
def enterPolarityExpressionTerm(self, ctx:cqlParser.PolarityExpressionTermContext):
|
|
985
|
+
pass
|
|
986
|
+
|
|
987
|
+
# Exit a parse tree produced by cqlParser#polarityExpressionTerm.
|
|
988
|
+
def exitPolarityExpressionTerm(self, ctx:cqlParser.PolarityExpressionTermContext):
|
|
989
|
+
pass
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
# Enter a parse tree produced by cqlParser#termExpressionTerm.
|
|
993
|
+
def enterTermExpressionTerm(self, ctx:cqlParser.TermExpressionTermContext):
|
|
994
|
+
pass
|
|
995
|
+
|
|
996
|
+
# Exit a parse tree produced by cqlParser#termExpressionTerm.
|
|
997
|
+
def exitTermExpressionTerm(self, ctx:cqlParser.TermExpressionTermContext):
|
|
998
|
+
pass
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
# Enter a parse tree produced by cqlParser#invocationExpressionTerm.
|
|
1002
|
+
def enterInvocationExpressionTerm(self, ctx:cqlParser.InvocationExpressionTermContext):
|
|
1003
|
+
pass
|
|
1004
|
+
|
|
1005
|
+
# Exit a parse tree produced by cqlParser#invocationExpressionTerm.
|
|
1006
|
+
def exitInvocationExpressionTerm(self, ctx:cqlParser.InvocationExpressionTermContext):
|
|
1007
|
+
pass
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
# Enter a parse tree produced by cqlParser#caseExpressionItem.
|
|
1011
|
+
def enterCaseExpressionItem(self, ctx:cqlParser.CaseExpressionItemContext):
|
|
1012
|
+
pass
|
|
1013
|
+
|
|
1014
|
+
# Exit a parse tree produced by cqlParser#caseExpressionItem.
|
|
1015
|
+
def exitCaseExpressionItem(self, ctx:cqlParser.CaseExpressionItemContext):
|
|
1016
|
+
pass
|
|
1017
|
+
|
|
1018
|
+
|
|
1019
|
+
# Enter a parse tree produced by cqlParser#dateTimePrecisionSpecifier.
|
|
1020
|
+
def enterDateTimePrecisionSpecifier(self, ctx:cqlParser.DateTimePrecisionSpecifierContext):
|
|
1021
|
+
pass
|
|
1022
|
+
|
|
1023
|
+
# Exit a parse tree produced by cqlParser#dateTimePrecisionSpecifier.
|
|
1024
|
+
def exitDateTimePrecisionSpecifier(self, ctx:cqlParser.DateTimePrecisionSpecifierContext):
|
|
1025
|
+
pass
|
|
1026
|
+
|
|
1027
|
+
|
|
1028
|
+
# Enter a parse tree produced by cqlParser#relativeQualifier.
|
|
1029
|
+
def enterRelativeQualifier(self, ctx:cqlParser.RelativeQualifierContext):
|
|
1030
|
+
pass
|
|
1031
|
+
|
|
1032
|
+
# Exit a parse tree produced by cqlParser#relativeQualifier.
|
|
1033
|
+
def exitRelativeQualifier(self, ctx:cqlParser.RelativeQualifierContext):
|
|
1034
|
+
pass
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
# Enter a parse tree produced by cqlParser#offsetRelativeQualifier.
|
|
1038
|
+
def enterOffsetRelativeQualifier(self, ctx:cqlParser.OffsetRelativeQualifierContext):
|
|
1039
|
+
pass
|
|
1040
|
+
|
|
1041
|
+
# Exit a parse tree produced by cqlParser#offsetRelativeQualifier.
|
|
1042
|
+
def exitOffsetRelativeQualifier(self, ctx:cqlParser.OffsetRelativeQualifierContext):
|
|
1043
|
+
pass
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
# Enter a parse tree produced by cqlParser#exclusiveRelativeQualifier.
|
|
1047
|
+
def enterExclusiveRelativeQualifier(self, ctx:cqlParser.ExclusiveRelativeQualifierContext):
|
|
1048
|
+
pass
|
|
1049
|
+
|
|
1050
|
+
# Exit a parse tree produced by cqlParser#exclusiveRelativeQualifier.
|
|
1051
|
+
def exitExclusiveRelativeQualifier(self, ctx:cqlParser.ExclusiveRelativeQualifierContext):
|
|
1052
|
+
pass
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
# Enter a parse tree produced by cqlParser#quantityOffset.
|
|
1056
|
+
def enterQuantityOffset(self, ctx:cqlParser.QuantityOffsetContext):
|
|
1057
|
+
pass
|
|
1058
|
+
|
|
1059
|
+
# Exit a parse tree produced by cqlParser#quantityOffset.
|
|
1060
|
+
def exitQuantityOffset(self, ctx:cqlParser.QuantityOffsetContext):
|
|
1061
|
+
pass
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
# Enter a parse tree produced by cqlParser#temporalRelationship.
|
|
1065
|
+
def enterTemporalRelationship(self, ctx:cqlParser.TemporalRelationshipContext):
|
|
1066
|
+
pass
|
|
1067
|
+
|
|
1068
|
+
# Exit a parse tree produced by cqlParser#temporalRelationship.
|
|
1069
|
+
def exitTemporalRelationship(self, ctx:cqlParser.TemporalRelationshipContext):
|
|
1070
|
+
pass
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
# Enter a parse tree produced by cqlParser#concurrentWithIntervalOperatorPhrase.
|
|
1074
|
+
def enterConcurrentWithIntervalOperatorPhrase(self, ctx:cqlParser.ConcurrentWithIntervalOperatorPhraseContext):
|
|
1075
|
+
pass
|
|
1076
|
+
|
|
1077
|
+
# Exit a parse tree produced by cqlParser#concurrentWithIntervalOperatorPhrase.
|
|
1078
|
+
def exitConcurrentWithIntervalOperatorPhrase(self, ctx:cqlParser.ConcurrentWithIntervalOperatorPhraseContext):
|
|
1079
|
+
pass
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
|
+
# Enter a parse tree produced by cqlParser#includesIntervalOperatorPhrase.
|
|
1083
|
+
def enterIncludesIntervalOperatorPhrase(self, ctx:cqlParser.IncludesIntervalOperatorPhraseContext):
|
|
1084
|
+
pass
|
|
1085
|
+
|
|
1086
|
+
# Exit a parse tree produced by cqlParser#includesIntervalOperatorPhrase.
|
|
1087
|
+
def exitIncludesIntervalOperatorPhrase(self, ctx:cqlParser.IncludesIntervalOperatorPhraseContext):
|
|
1088
|
+
pass
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
# Enter a parse tree produced by cqlParser#includedInIntervalOperatorPhrase.
|
|
1092
|
+
def enterIncludedInIntervalOperatorPhrase(self, ctx:cqlParser.IncludedInIntervalOperatorPhraseContext):
|
|
1093
|
+
pass
|
|
1094
|
+
|
|
1095
|
+
# Exit a parse tree produced by cqlParser#includedInIntervalOperatorPhrase.
|
|
1096
|
+
def exitIncludedInIntervalOperatorPhrase(self, ctx:cqlParser.IncludedInIntervalOperatorPhraseContext):
|
|
1097
|
+
pass
|
|
1098
|
+
|
|
1099
|
+
|
|
1100
|
+
# Enter a parse tree produced by cqlParser#beforeOrAfterIntervalOperatorPhrase.
|
|
1101
|
+
def enterBeforeOrAfterIntervalOperatorPhrase(self, ctx:cqlParser.BeforeOrAfterIntervalOperatorPhraseContext):
|
|
1102
|
+
pass
|
|
1103
|
+
|
|
1104
|
+
# Exit a parse tree produced by cqlParser#beforeOrAfterIntervalOperatorPhrase.
|
|
1105
|
+
def exitBeforeOrAfterIntervalOperatorPhrase(self, ctx:cqlParser.BeforeOrAfterIntervalOperatorPhraseContext):
|
|
1106
|
+
pass
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
# Enter a parse tree produced by cqlParser#withinIntervalOperatorPhrase.
|
|
1110
|
+
def enterWithinIntervalOperatorPhrase(self, ctx:cqlParser.WithinIntervalOperatorPhraseContext):
|
|
1111
|
+
pass
|
|
1112
|
+
|
|
1113
|
+
# Exit a parse tree produced by cqlParser#withinIntervalOperatorPhrase.
|
|
1114
|
+
def exitWithinIntervalOperatorPhrase(self, ctx:cqlParser.WithinIntervalOperatorPhraseContext):
|
|
1115
|
+
pass
|
|
1116
|
+
|
|
1117
|
+
|
|
1118
|
+
# Enter a parse tree produced by cqlParser#meetsIntervalOperatorPhrase.
|
|
1119
|
+
def enterMeetsIntervalOperatorPhrase(self, ctx:cqlParser.MeetsIntervalOperatorPhraseContext):
|
|
1120
|
+
pass
|
|
1121
|
+
|
|
1122
|
+
# Exit a parse tree produced by cqlParser#meetsIntervalOperatorPhrase.
|
|
1123
|
+
def exitMeetsIntervalOperatorPhrase(self, ctx:cqlParser.MeetsIntervalOperatorPhraseContext):
|
|
1124
|
+
pass
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
# Enter a parse tree produced by cqlParser#overlapsIntervalOperatorPhrase.
|
|
1128
|
+
def enterOverlapsIntervalOperatorPhrase(self, ctx:cqlParser.OverlapsIntervalOperatorPhraseContext):
|
|
1129
|
+
pass
|
|
1130
|
+
|
|
1131
|
+
# Exit a parse tree produced by cqlParser#overlapsIntervalOperatorPhrase.
|
|
1132
|
+
def exitOverlapsIntervalOperatorPhrase(self, ctx:cqlParser.OverlapsIntervalOperatorPhraseContext):
|
|
1133
|
+
pass
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
# Enter a parse tree produced by cqlParser#startsIntervalOperatorPhrase.
|
|
1137
|
+
def enterStartsIntervalOperatorPhrase(self, ctx:cqlParser.StartsIntervalOperatorPhraseContext):
|
|
1138
|
+
pass
|
|
1139
|
+
|
|
1140
|
+
# Exit a parse tree produced by cqlParser#startsIntervalOperatorPhrase.
|
|
1141
|
+
def exitStartsIntervalOperatorPhrase(self, ctx:cqlParser.StartsIntervalOperatorPhraseContext):
|
|
1142
|
+
pass
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
# Enter a parse tree produced by cqlParser#endsIntervalOperatorPhrase.
|
|
1146
|
+
def enterEndsIntervalOperatorPhrase(self, ctx:cqlParser.EndsIntervalOperatorPhraseContext):
|
|
1147
|
+
pass
|
|
1148
|
+
|
|
1149
|
+
# Exit a parse tree produced by cqlParser#endsIntervalOperatorPhrase.
|
|
1150
|
+
def exitEndsIntervalOperatorPhrase(self, ctx:cqlParser.EndsIntervalOperatorPhraseContext):
|
|
1151
|
+
pass
|
|
1152
|
+
|
|
1153
|
+
|
|
1154
|
+
# Enter a parse tree produced by cqlParser#invocationTerm.
|
|
1155
|
+
def enterInvocationTerm(self, ctx:cqlParser.InvocationTermContext):
|
|
1156
|
+
pass
|
|
1157
|
+
|
|
1158
|
+
# Exit a parse tree produced by cqlParser#invocationTerm.
|
|
1159
|
+
def exitInvocationTerm(self, ctx:cqlParser.InvocationTermContext):
|
|
1160
|
+
pass
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
# Enter a parse tree produced by cqlParser#literalTerm.
|
|
1164
|
+
def enterLiteralTerm(self, ctx:cqlParser.LiteralTermContext):
|
|
1165
|
+
pass
|
|
1166
|
+
|
|
1167
|
+
# Exit a parse tree produced by cqlParser#literalTerm.
|
|
1168
|
+
def exitLiteralTerm(self, ctx:cqlParser.LiteralTermContext):
|
|
1169
|
+
pass
|
|
1170
|
+
|
|
1171
|
+
|
|
1172
|
+
# Enter a parse tree produced by cqlParser#externalConstantTerm.
|
|
1173
|
+
def enterExternalConstantTerm(self, ctx:cqlParser.ExternalConstantTermContext):
|
|
1174
|
+
pass
|
|
1175
|
+
|
|
1176
|
+
# Exit a parse tree produced by cqlParser#externalConstantTerm.
|
|
1177
|
+
def exitExternalConstantTerm(self, ctx:cqlParser.ExternalConstantTermContext):
|
|
1178
|
+
pass
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
# Enter a parse tree produced by cqlParser#intervalSelectorTerm.
|
|
1182
|
+
def enterIntervalSelectorTerm(self, ctx:cqlParser.IntervalSelectorTermContext):
|
|
1183
|
+
pass
|
|
1184
|
+
|
|
1185
|
+
# Exit a parse tree produced by cqlParser#intervalSelectorTerm.
|
|
1186
|
+
def exitIntervalSelectorTerm(self, ctx:cqlParser.IntervalSelectorTermContext):
|
|
1187
|
+
pass
|
|
1188
|
+
|
|
1189
|
+
|
|
1190
|
+
# Enter a parse tree produced by cqlParser#tupleSelectorTerm.
|
|
1191
|
+
def enterTupleSelectorTerm(self, ctx:cqlParser.TupleSelectorTermContext):
|
|
1192
|
+
pass
|
|
1193
|
+
|
|
1194
|
+
# Exit a parse tree produced by cqlParser#tupleSelectorTerm.
|
|
1195
|
+
def exitTupleSelectorTerm(self, ctx:cqlParser.TupleSelectorTermContext):
|
|
1196
|
+
pass
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
# Enter a parse tree produced by cqlParser#instanceSelectorTerm.
|
|
1200
|
+
def enterInstanceSelectorTerm(self, ctx:cqlParser.InstanceSelectorTermContext):
|
|
1201
|
+
pass
|
|
1202
|
+
|
|
1203
|
+
# Exit a parse tree produced by cqlParser#instanceSelectorTerm.
|
|
1204
|
+
def exitInstanceSelectorTerm(self, ctx:cqlParser.InstanceSelectorTermContext):
|
|
1205
|
+
pass
|
|
1206
|
+
|
|
1207
|
+
|
|
1208
|
+
# Enter a parse tree produced by cqlParser#listSelectorTerm.
|
|
1209
|
+
def enterListSelectorTerm(self, ctx:cqlParser.ListSelectorTermContext):
|
|
1210
|
+
pass
|
|
1211
|
+
|
|
1212
|
+
# Exit a parse tree produced by cqlParser#listSelectorTerm.
|
|
1213
|
+
def exitListSelectorTerm(self, ctx:cqlParser.ListSelectorTermContext):
|
|
1214
|
+
pass
|
|
1215
|
+
|
|
1216
|
+
|
|
1217
|
+
# Enter a parse tree produced by cqlParser#codeSelectorTerm.
|
|
1218
|
+
def enterCodeSelectorTerm(self, ctx:cqlParser.CodeSelectorTermContext):
|
|
1219
|
+
pass
|
|
1220
|
+
|
|
1221
|
+
# Exit a parse tree produced by cqlParser#codeSelectorTerm.
|
|
1222
|
+
def exitCodeSelectorTerm(self, ctx:cqlParser.CodeSelectorTermContext):
|
|
1223
|
+
pass
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
# Enter a parse tree produced by cqlParser#conceptSelectorTerm.
|
|
1227
|
+
def enterConceptSelectorTerm(self, ctx:cqlParser.ConceptSelectorTermContext):
|
|
1228
|
+
pass
|
|
1229
|
+
|
|
1230
|
+
# Exit a parse tree produced by cqlParser#conceptSelectorTerm.
|
|
1231
|
+
def exitConceptSelectorTerm(self, ctx:cqlParser.ConceptSelectorTermContext):
|
|
1232
|
+
pass
|
|
1233
|
+
|
|
1234
|
+
|
|
1235
|
+
# Enter a parse tree produced by cqlParser#parenthesizedTerm.
|
|
1236
|
+
def enterParenthesizedTerm(self, ctx:cqlParser.ParenthesizedTermContext):
|
|
1237
|
+
pass
|
|
1238
|
+
|
|
1239
|
+
# Exit a parse tree produced by cqlParser#parenthesizedTerm.
|
|
1240
|
+
def exitParenthesizedTerm(self, ctx:cqlParser.ParenthesizedTermContext):
|
|
1241
|
+
pass
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
# Enter a parse tree produced by cqlParser#qualifiedMemberInvocation.
|
|
1245
|
+
def enterQualifiedMemberInvocation(self, ctx:cqlParser.QualifiedMemberInvocationContext):
|
|
1246
|
+
pass
|
|
1247
|
+
|
|
1248
|
+
# Exit a parse tree produced by cqlParser#qualifiedMemberInvocation.
|
|
1249
|
+
def exitQualifiedMemberInvocation(self, ctx:cqlParser.QualifiedMemberInvocationContext):
|
|
1250
|
+
pass
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
# Enter a parse tree produced by cqlParser#qualifiedFunctionInvocation.
|
|
1254
|
+
def enterQualifiedFunctionInvocation(self, ctx:cqlParser.QualifiedFunctionInvocationContext):
|
|
1255
|
+
pass
|
|
1256
|
+
|
|
1257
|
+
# Exit a parse tree produced by cqlParser#qualifiedFunctionInvocation.
|
|
1258
|
+
def exitQualifiedFunctionInvocation(self, ctx:cqlParser.QualifiedFunctionInvocationContext):
|
|
1259
|
+
pass
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
# Enter a parse tree produced by cqlParser#qualifiedFunction.
|
|
1263
|
+
def enterQualifiedFunction(self, ctx:cqlParser.QualifiedFunctionContext):
|
|
1264
|
+
pass
|
|
1265
|
+
|
|
1266
|
+
# Exit a parse tree produced by cqlParser#qualifiedFunction.
|
|
1267
|
+
def exitQualifiedFunction(self, ctx:cqlParser.QualifiedFunctionContext):
|
|
1268
|
+
pass
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
# Enter a parse tree produced by cqlParser#memberInvocation.
|
|
1272
|
+
def enterMemberInvocation(self, ctx:cqlParser.MemberInvocationContext):
|
|
1273
|
+
pass
|
|
1274
|
+
|
|
1275
|
+
# Exit a parse tree produced by cqlParser#memberInvocation.
|
|
1276
|
+
def exitMemberInvocation(self, ctx:cqlParser.MemberInvocationContext):
|
|
1277
|
+
pass
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
# Enter a parse tree produced by cqlParser#functionInvocation.
|
|
1281
|
+
def enterFunctionInvocation(self, ctx:cqlParser.FunctionInvocationContext):
|
|
1282
|
+
pass
|
|
1283
|
+
|
|
1284
|
+
# Exit a parse tree produced by cqlParser#functionInvocation.
|
|
1285
|
+
def exitFunctionInvocation(self, ctx:cqlParser.FunctionInvocationContext):
|
|
1286
|
+
pass
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
# Enter a parse tree produced by cqlParser#thisInvocation.
|
|
1290
|
+
def enterThisInvocation(self, ctx:cqlParser.ThisInvocationContext):
|
|
1291
|
+
pass
|
|
1292
|
+
|
|
1293
|
+
# Exit a parse tree produced by cqlParser#thisInvocation.
|
|
1294
|
+
def exitThisInvocation(self, ctx:cqlParser.ThisInvocationContext):
|
|
1295
|
+
pass
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
# Enter a parse tree produced by cqlParser#indexInvocation.
|
|
1299
|
+
def enterIndexInvocation(self, ctx:cqlParser.IndexInvocationContext):
|
|
1300
|
+
pass
|
|
1301
|
+
|
|
1302
|
+
# Exit a parse tree produced by cqlParser#indexInvocation.
|
|
1303
|
+
def exitIndexInvocation(self, ctx:cqlParser.IndexInvocationContext):
|
|
1304
|
+
pass
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
# Enter a parse tree produced by cqlParser#totalInvocation.
|
|
1308
|
+
def enterTotalInvocation(self, ctx:cqlParser.TotalInvocationContext):
|
|
1309
|
+
pass
|
|
1310
|
+
|
|
1311
|
+
# Exit a parse tree produced by cqlParser#totalInvocation.
|
|
1312
|
+
def exitTotalInvocation(self, ctx:cqlParser.TotalInvocationContext):
|
|
1313
|
+
pass
|
|
1314
|
+
|
|
1315
|
+
|
|
1316
|
+
# Enter a parse tree produced by cqlParser#function.
|
|
1317
|
+
def enterFunction(self, ctx:cqlParser.FunctionContext):
|
|
1318
|
+
pass
|
|
1319
|
+
|
|
1320
|
+
# Exit a parse tree produced by cqlParser#function.
|
|
1321
|
+
def exitFunction(self, ctx:cqlParser.FunctionContext):
|
|
1322
|
+
pass
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
# Enter a parse tree produced by cqlParser#ratio.
|
|
1326
|
+
def enterRatio(self, ctx:cqlParser.RatioContext):
|
|
1327
|
+
pass
|
|
1328
|
+
|
|
1329
|
+
# Exit a parse tree produced by cqlParser#ratio.
|
|
1330
|
+
def exitRatio(self, ctx:cqlParser.RatioContext):
|
|
1331
|
+
pass
|
|
1332
|
+
|
|
1333
|
+
|
|
1334
|
+
# Enter a parse tree produced by cqlParser#booleanLiteral.
|
|
1335
|
+
def enterBooleanLiteral(self, ctx:cqlParser.BooleanLiteralContext):
|
|
1336
|
+
pass
|
|
1337
|
+
|
|
1338
|
+
# Exit a parse tree produced by cqlParser#booleanLiteral.
|
|
1339
|
+
def exitBooleanLiteral(self, ctx:cqlParser.BooleanLiteralContext):
|
|
1340
|
+
pass
|
|
1341
|
+
|
|
1342
|
+
|
|
1343
|
+
# Enter a parse tree produced by cqlParser#nullLiteral.
|
|
1344
|
+
def enterNullLiteral(self, ctx:cqlParser.NullLiteralContext):
|
|
1345
|
+
pass
|
|
1346
|
+
|
|
1347
|
+
# Exit a parse tree produced by cqlParser#nullLiteral.
|
|
1348
|
+
def exitNullLiteral(self, ctx:cqlParser.NullLiteralContext):
|
|
1349
|
+
pass
|
|
1350
|
+
|
|
1351
|
+
|
|
1352
|
+
# Enter a parse tree produced by cqlParser#stringLiteral.
|
|
1353
|
+
def enterStringLiteral(self, ctx:cqlParser.StringLiteralContext):
|
|
1354
|
+
pass
|
|
1355
|
+
|
|
1356
|
+
# Exit a parse tree produced by cqlParser#stringLiteral.
|
|
1357
|
+
def exitStringLiteral(self, ctx:cqlParser.StringLiteralContext):
|
|
1358
|
+
pass
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
# Enter a parse tree produced by cqlParser#numberLiteral.
|
|
1362
|
+
def enterNumberLiteral(self, ctx:cqlParser.NumberLiteralContext):
|
|
1363
|
+
pass
|
|
1364
|
+
|
|
1365
|
+
# Exit a parse tree produced by cqlParser#numberLiteral.
|
|
1366
|
+
def exitNumberLiteral(self, ctx:cqlParser.NumberLiteralContext):
|
|
1367
|
+
pass
|
|
1368
|
+
|
|
1369
|
+
|
|
1370
|
+
# Enter a parse tree produced by cqlParser#longNumberLiteral.
|
|
1371
|
+
def enterLongNumberLiteral(self, ctx:cqlParser.LongNumberLiteralContext):
|
|
1372
|
+
pass
|
|
1373
|
+
|
|
1374
|
+
# Exit a parse tree produced by cqlParser#longNumberLiteral.
|
|
1375
|
+
def exitLongNumberLiteral(self, ctx:cqlParser.LongNumberLiteralContext):
|
|
1376
|
+
pass
|
|
1377
|
+
|
|
1378
|
+
|
|
1379
|
+
# Enter a parse tree produced by cqlParser#dateTimeLiteral.
|
|
1380
|
+
def enterDateTimeLiteral(self, ctx:cqlParser.DateTimeLiteralContext):
|
|
1381
|
+
pass
|
|
1382
|
+
|
|
1383
|
+
# Exit a parse tree produced by cqlParser#dateTimeLiteral.
|
|
1384
|
+
def exitDateTimeLiteral(self, ctx:cqlParser.DateTimeLiteralContext):
|
|
1385
|
+
pass
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
# Enter a parse tree produced by cqlParser#dateLiteral.
|
|
1389
|
+
def enterDateLiteral(self, ctx:cqlParser.DateLiteralContext):
|
|
1390
|
+
pass
|
|
1391
|
+
|
|
1392
|
+
# Exit a parse tree produced by cqlParser#dateLiteral.
|
|
1393
|
+
def exitDateLiteral(self, ctx:cqlParser.DateLiteralContext):
|
|
1394
|
+
pass
|
|
1395
|
+
|
|
1396
|
+
|
|
1397
|
+
# Enter a parse tree produced by cqlParser#timeLiteral.
|
|
1398
|
+
def enterTimeLiteral(self, ctx:cqlParser.TimeLiteralContext):
|
|
1399
|
+
pass
|
|
1400
|
+
|
|
1401
|
+
# Exit a parse tree produced by cqlParser#timeLiteral.
|
|
1402
|
+
def exitTimeLiteral(self, ctx:cqlParser.TimeLiteralContext):
|
|
1403
|
+
pass
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
# Enter a parse tree produced by cqlParser#quantityLiteral.
|
|
1407
|
+
def enterQuantityLiteral(self, ctx:cqlParser.QuantityLiteralContext):
|
|
1408
|
+
pass
|
|
1409
|
+
|
|
1410
|
+
# Exit a parse tree produced by cqlParser#quantityLiteral.
|
|
1411
|
+
def exitQuantityLiteral(self, ctx:cqlParser.QuantityLiteralContext):
|
|
1412
|
+
pass
|
|
1413
|
+
|
|
1414
|
+
|
|
1415
|
+
# Enter a parse tree produced by cqlParser#ratioLiteral.
|
|
1416
|
+
def enterRatioLiteral(self, ctx:cqlParser.RatioLiteralContext):
|
|
1417
|
+
pass
|
|
1418
|
+
|
|
1419
|
+
# Exit a parse tree produced by cqlParser#ratioLiteral.
|
|
1420
|
+
def exitRatioLiteral(self, ctx:cqlParser.RatioLiteralContext):
|
|
1421
|
+
pass
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
# Enter a parse tree produced by cqlParser#intervalSelector.
|
|
1425
|
+
def enterIntervalSelector(self, ctx:cqlParser.IntervalSelectorContext):
|
|
1426
|
+
pass
|
|
1427
|
+
|
|
1428
|
+
# Exit a parse tree produced by cqlParser#intervalSelector.
|
|
1429
|
+
def exitIntervalSelector(self, ctx:cqlParser.IntervalSelectorContext):
|
|
1430
|
+
pass
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
# Enter a parse tree produced by cqlParser#tupleSelector.
|
|
1434
|
+
def enterTupleSelector(self, ctx:cqlParser.TupleSelectorContext):
|
|
1435
|
+
pass
|
|
1436
|
+
|
|
1437
|
+
# Exit a parse tree produced by cqlParser#tupleSelector.
|
|
1438
|
+
def exitTupleSelector(self, ctx:cqlParser.TupleSelectorContext):
|
|
1439
|
+
pass
|
|
1440
|
+
|
|
1441
|
+
|
|
1442
|
+
# Enter a parse tree produced by cqlParser#tupleElementSelector.
|
|
1443
|
+
def enterTupleElementSelector(self, ctx:cqlParser.TupleElementSelectorContext):
|
|
1444
|
+
pass
|
|
1445
|
+
|
|
1446
|
+
# Exit a parse tree produced by cqlParser#tupleElementSelector.
|
|
1447
|
+
def exitTupleElementSelector(self, ctx:cqlParser.TupleElementSelectorContext):
|
|
1448
|
+
pass
|
|
1449
|
+
|
|
1450
|
+
|
|
1451
|
+
# Enter a parse tree produced by cqlParser#instanceSelector.
|
|
1452
|
+
def enterInstanceSelector(self, ctx:cqlParser.InstanceSelectorContext):
|
|
1453
|
+
pass
|
|
1454
|
+
|
|
1455
|
+
# Exit a parse tree produced by cqlParser#instanceSelector.
|
|
1456
|
+
def exitInstanceSelector(self, ctx:cqlParser.InstanceSelectorContext):
|
|
1457
|
+
pass
|
|
1458
|
+
|
|
1459
|
+
|
|
1460
|
+
# Enter a parse tree produced by cqlParser#instanceElementSelector.
|
|
1461
|
+
def enterInstanceElementSelector(self, ctx:cqlParser.InstanceElementSelectorContext):
|
|
1462
|
+
pass
|
|
1463
|
+
|
|
1464
|
+
# Exit a parse tree produced by cqlParser#instanceElementSelector.
|
|
1465
|
+
def exitInstanceElementSelector(self, ctx:cqlParser.InstanceElementSelectorContext):
|
|
1466
|
+
pass
|
|
1467
|
+
|
|
1468
|
+
|
|
1469
|
+
# Enter a parse tree produced by cqlParser#listSelector.
|
|
1470
|
+
def enterListSelector(self, ctx:cqlParser.ListSelectorContext):
|
|
1471
|
+
pass
|
|
1472
|
+
|
|
1473
|
+
# Exit a parse tree produced by cqlParser#listSelector.
|
|
1474
|
+
def exitListSelector(self, ctx:cqlParser.ListSelectorContext):
|
|
1475
|
+
pass
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
# Enter a parse tree produced by cqlParser#displayClause.
|
|
1479
|
+
def enterDisplayClause(self, ctx:cqlParser.DisplayClauseContext):
|
|
1480
|
+
pass
|
|
1481
|
+
|
|
1482
|
+
# Exit a parse tree produced by cqlParser#displayClause.
|
|
1483
|
+
def exitDisplayClause(self, ctx:cqlParser.DisplayClauseContext):
|
|
1484
|
+
pass
|
|
1485
|
+
|
|
1486
|
+
|
|
1487
|
+
# Enter a parse tree produced by cqlParser#codeSelector.
|
|
1488
|
+
def enterCodeSelector(self, ctx:cqlParser.CodeSelectorContext):
|
|
1489
|
+
pass
|
|
1490
|
+
|
|
1491
|
+
# Exit a parse tree produced by cqlParser#codeSelector.
|
|
1492
|
+
def exitCodeSelector(self, ctx:cqlParser.CodeSelectorContext):
|
|
1493
|
+
pass
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
# Enter a parse tree produced by cqlParser#conceptSelector.
|
|
1497
|
+
def enterConceptSelector(self, ctx:cqlParser.ConceptSelectorContext):
|
|
1498
|
+
pass
|
|
1499
|
+
|
|
1500
|
+
# Exit a parse tree produced by cqlParser#conceptSelector.
|
|
1501
|
+
def exitConceptSelector(self, ctx:cqlParser.ConceptSelectorContext):
|
|
1502
|
+
pass
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
|
+
# Enter a parse tree produced by cqlParser#keyword.
|
|
1506
|
+
def enterKeyword(self, ctx:cqlParser.KeywordContext):
|
|
1507
|
+
pass
|
|
1508
|
+
|
|
1509
|
+
# Exit a parse tree produced by cqlParser#keyword.
|
|
1510
|
+
def exitKeyword(self, ctx:cqlParser.KeywordContext):
|
|
1511
|
+
pass
|
|
1512
|
+
|
|
1513
|
+
|
|
1514
|
+
# Enter a parse tree produced by cqlParser#reservedWord.
|
|
1515
|
+
def enterReservedWord(self, ctx:cqlParser.ReservedWordContext):
|
|
1516
|
+
pass
|
|
1517
|
+
|
|
1518
|
+
# Exit a parse tree produced by cqlParser#reservedWord.
|
|
1519
|
+
def exitReservedWord(self, ctx:cqlParser.ReservedWordContext):
|
|
1520
|
+
pass
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
# Enter a parse tree produced by cqlParser#keywordIdentifier.
|
|
1524
|
+
def enterKeywordIdentifier(self, ctx:cqlParser.KeywordIdentifierContext):
|
|
1525
|
+
pass
|
|
1526
|
+
|
|
1527
|
+
# Exit a parse tree produced by cqlParser#keywordIdentifier.
|
|
1528
|
+
def exitKeywordIdentifier(self, ctx:cqlParser.KeywordIdentifierContext):
|
|
1529
|
+
pass
|
|
1530
|
+
|
|
1531
|
+
|
|
1532
|
+
# Enter a parse tree produced by cqlParser#obsoleteIdentifier.
|
|
1533
|
+
def enterObsoleteIdentifier(self, ctx:cqlParser.ObsoleteIdentifierContext):
|
|
1534
|
+
pass
|
|
1535
|
+
|
|
1536
|
+
# Exit a parse tree produced by cqlParser#obsoleteIdentifier.
|
|
1537
|
+
def exitObsoleteIdentifier(self, ctx:cqlParser.ObsoleteIdentifierContext):
|
|
1538
|
+
pass
|
|
1539
|
+
|
|
1540
|
+
|
|
1541
|
+
# Enter a parse tree produced by cqlParser#functionIdentifier.
|
|
1542
|
+
def enterFunctionIdentifier(self, ctx:cqlParser.FunctionIdentifierContext):
|
|
1543
|
+
pass
|
|
1544
|
+
|
|
1545
|
+
# Exit a parse tree produced by cqlParser#functionIdentifier.
|
|
1546
|
+
def exitFunctionIdentifier(self, ctx:cqlParser.FunctionIdentifierContext):
|
|
1547
|
+
pass
|
|
1548
|
+
|
|
1549
|
+
|
|
1550
|
+
# Enter a parse tree produced by cqlParser#typeNameIdentifier.
|
|
1551
|
+
def enterTypeNameIdentifier(self, ctx:cqlParser.TypeNameIdentifierContext):
|
|
1552
|
+
pass
|
|
1553
|
+
|
|
1554
|
+
# Exit a parse tree produced by cqlParser#typeNameIdentifier.
|
|
1555
|
+
def exitTypeNameIdentifier(self, ctx:cqlParser.TypeNameIdentifierContext):
|
|
1556
|
+
pass
|
|
1557
|
+
|
|
1558
|
+
|
|
1559
|
+
# Enter a parse tree produced by cqlParser#referentialIdentifier.
|
|
1560
|
+
def enterReferentialIdentifier(self, ctx:cqlParser.ReferentialIdentifierContext):
|
|
1561
|
+
pass
|
|
1562
|
+
|
|
1563
|
+
# Exit a parse tree produced by cqlParser#referentialIdentifier.
|
|
1564
|
+
def exitReferentialIdentifier(self, ctx:cqlParser.ReferentialIdentifierContext):
|
|
1565
|
+
pass
|
|
1566
|
+
|
|
1567
|
+
|
|
1568
|
+
# Enter a parse tree produced by cqlParser#referentialOrTypeNameIdentifier.
|
|
1569
|
+
def enterReferentialOrTypeNameIdentifier(self, ctx:cqlParser.ReferentialOrTypeNameIdentifierContext):
|
|
1570
|
+
pass
|
|
1571
|
+
|
|
1572
|
+
# Exit a parse tree produced by cqlParser#referentialOrTypeNameIdentifier.
|
|
1573
|
+
def exitReferentialOrTypeNameIdentifier(self, ctx:cqlParser.ReferentialOrTypeNameIdentifierContext):
|
|
1574
|
+
pass
|
|
1575
|
+
|
|
1576
|
+
|
|
1577
|
+
# Enter a parse tree produced by cqlParser#identifierOrFunctionIdentifier.
|
|
1578
|
+
def enterIdentifierOrFunctionIdentifier(self, ctx:cqlParser.IdentifierOrFunctionIdentifierContext):
|
|
1579
|
+
pass
|
|
1580
|
+
|
|
1581
|
+
# Exit a parse tree produced by cqlParser#identifierOrFunctionIdentifier.
|
|
1582
|
+
def exitIdentifierOrFunctionIdentifier(self, ctx:cqlParser.IdentifierOrFunctionIdentifierContext):
|
|
1583
|
+
pass
|
|
1584
|
+
|
|
1585
|
+
|
|
1586
|
+
# Enter a parse tree produced by cqlParser#identifier.
|
|
1587
|
+
def enterIdentifier(self, ctx:cqlParser.IdentifierContext):
|
|
1588
|
+
pass
|
|
1589
|
+
|
|
1590
|
+
# Exit a parse tree produced by cqlParser#identifier.
|
|
1591
|
+
def exitIdentifier(self, ctx:cqlParser.IdentifierContext):
|
|
1592
|
+
pass
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
# Enter a parse tree produced by cqlParser#externalConstant.
|
|
1596
|
+
def enterExternalConstant(self, ctx:cqlParser.ExternalConstantContext):
|
|
1597
|
+
pass
|
|
1598
|
+
|
|
1599
|
+
# Exit a parse tree produced by cqlParser#externalConstant.
|
|
1600
|
+
def exitExternalConstant(self, ctx:cqlParser.ExternalConstantContext):
|
|
1601
|
+
pass
|
|
1602
|
+
|
|
1603
|
+
|
|
1604
|
+
# Enter a parse tree produced by cqlParser#paramList.
|
|
1605
|
+
def enterParamList(self, ctx:cqlParser.ParamListContext):
|
|
1606
|
+
pass
|
|
1607
|
+
|
|
1608
|
+
# Exit a parse tree produced by cqlParser#paramList.
|
|
1609
|
+
def exitParamList(self, ctx:cqlParser.ParamListContext):
|
|
1610
|
+
pass
|
|
1611
|
+
|
|
1612
|
+
|
|
1613
|
+
# Enter a parse tree produced by cqlParser#quantity.
|
|
1614
|
+
def enterQuantity(self, ctx:cqlParser.QuantityContext):
|
|
1615
|
+
pass
|
|
1616
|
+
|
|
1617
|
+
# Exit a parse tree produced by cqlParser#quantity.
|
|
1618
|
+
def exitQuantity(self, ctx:cqlParser.QuantityContext):
|
|
1619
|
+
pass
|
|
1620
|
+
|
|
1621
|
+
|
|
1622
|
+
# Enter a parse tree produced by cqlParser#unit.
|
|
1623
|
+
def enterUnit(self, ctx:cqlParser.UnitContext):
|
|
1624
|
+
pass
|
|
1625
|
+
|
|
1626
|
+
# Exit a parse tree produced by cqlParser#unit.
|
|
1627
|
+
def exitUnit(self, ctx:cqlParser.UnitContext):
|
|
1628
|
+
pass
|
|
1629
|
+
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
del cqlParser
|