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,913 @@
|
|
|
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 generic visitor for a parse tree produced by cqlParser.
|
|
9
|
+
|
|
10
|
+
class cqlVisitor(ParseTreeVisitor):
|
|
11
|
+
|
|
12
|
+
# Visit a parse tree produced by cqlParser#definition.
|
|
13
|
+
def visitDefinition(self, ctx:cqlParser.DefinitionContext):
|
|
14
|
+
return self.visitChildren(ctx)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# Visit a parse tree produced by cqlParser#library.
|
|
18
|
+
def visitLibrary(self, ctx:cqlParser.LibraryContext):
|
|
19
|
+
return self.visitChildren(ctx)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# Visit a parse tree produced by cqlParser#libraryDefinition.
|
|
23
|
+
def visitLibraryDefinition(self, ctx:cqlParser.LibraryDefinitionContext):
|
|
24
|
+
return self.visitChildren(ctx)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# Visit a parse tree produced by cqlParser#usingDefinition.
|
|
28
|
+
def visitUsingDefinition(self, ctx:cqlParser.UsingDefinitionContext):
|
|
29
|
+
return self.visitChildren(ctx)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# Visit a parse tree produced by cqlParser#includeDefinition.
|
|
33
|
+
def visitIncludeDefinition(self, ctx:cqlParser.IncludeDefinitionContext):
|
|
34
|
+
return self.visitChildren(ctx)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# Visit a parse tree produced by cqlParser#localIdentifier.
|
|
38
|
+
def visitLocalIdentifier(self, ctx:cqlParser.LocalIdentifierContext):
|
|
39
|
+
return self.visitChildren(ctx)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
# Visit a parse tree produced by cqlParser#accessModifier.
|
|
43
|
+
def visitAccessModifier(self, ctx:cqlParser.AccessModifierContext):
|
|
44
|
+
return self.visitChildren(ctx)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# Visit a parse tree produced by cqlParser#parameterDefinition.
|
|
48
|
+
def visitParameterDefinition(self, ctx:cqlParser.ParameterDefinitionContext):
|
|
49
|
+
return self.visitChildren(ctx)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
# Visit a parse tree produced by cqlParser#codesystemDefinition.
|
|
53
|
+
def visitCodesystemDefinition(self, ctx:cqlParser.CodesystemDefinitionContext):
|
|
54
|
+
return self.visitChildren(ctx)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
# Visit a parse tree produced by cqlParser#valuesetDefinition.
|
|
58
|
+
def visitValuesetDefinition(self, ctx:cqlParser.ValuesetDefinitionContext):
|
|
59
|
+
return self.visitChildren(ctx)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
# Visit a parse tree produced by cqlParser#codesystems.
|
|
63
|
+
def visitCodesystems(self, ctx:cqlParser.CodesystemsContext):
|
|
64
|
+
return self.visitChildren(ctx)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
# Visit a parse tree produced by cqlParser#codesystemIdentifier.
|
|
68
|
+
def visitCodesystemIdentifier(self, ctx:cqlParser.CodesystemIdentifierContext):
|
|
69
|
+
return self.visitChildren(ctx)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
# Visit a parse tree produced by cqlParser#libraryIdentifier.
|
|
73
|
+
def visitLibraryIdentifier(self, ctx:cqlParser.LibraryIdentifierContext):
|
|
74
|
+
return self.visitChildren(ctx)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
# Visit a parse tree produced by cqlParser#codeDefinition.
|
|
78
|
+
def visitCodeDefinition(self, ctx:cqlParser.CodeDefinitionContext):
|
|
79
|
+
return self.visitChildren(ctx)
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
# Visit a parse tree produced by cqlParser#conceptDefinition.
|
|
83
|
+
def visitConceptDefinition(self, ctx:cqlParser.ConceptDefinitionContext):
|
|
84
|
+
return self.visitChildren(ctx)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
# Visit a parse tree produced by cqlParser#codeIdentifier.
|
|
88
|
+
def visitCodeIdentifier(self, ctx:cqlParser.CodeIdentifierContext):
|
|
89
|
+
return self.visitChildren(ctx)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
# Visit a parse tree produced by cqlParser#codesystemId.
|
|
93
|
+
def visitCodesystemId(self, ctx:cqlParser.CodesystemIdContext):
|
|
94
|
+
return self.visitChildren(ctx)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
# Visit a parse tree produced by cqlParser#valuesetId.
|
|
98
|
+
def visitValuesetId(self, ctx:cqlParser.ValuesetIdContext):
|
|
99
|
+
return self.visitChildren(ctx)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
# Visit a parse tree produced by cqlParser#versionSpecifier.
|
|
103
|
+
def visitVersionSpecifier(self, ctx:cqlParser.VersionSpecifierContext):
|
|
104
|
+
return self.visitChildren(ctx)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
# Visit a parse tree produced by cqlParser#codeId.
|
|
108
|
+
def visitCodeId(self, ctx:cqlParser.CodeIdContext):
|
|
109
|
+
return self.visitChildren(ctx)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
# Visit a parse tree produced by cqlParser#typeSpecifier.
|
|
113
|
+
def visitTypeSpecifier(self, ctx:cqlParser.TypeSpecifierContext):
|
|
114
|
+
return self.visitChildren(ctx)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
# Visit a parse tree produced by cqlParser#namedTypeSpecifier.
|
|
118
|
+
def visitNamedTypeSpecifier(self, ctx:cqlParser.NamedTypeSpecifierContext):
|
|
119
|
+
return self.visitChildren(ctx)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
# Visit a parse tree produced by cqlParser#modelIdentifier.
|
|
123
|
+
def visitModelIdentifier(self, ctx:cqlParser.ModelIdentifierContext):
|
|
124
|
+
return self.visitChildren(ctx)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
# Visit a parse tree produced by cqlParser#listTypeSpecifier.
|
|
128
|
+
def visitListTypeSpecifier(self, ctx:cqlParser.ListTypeSpecifierContext):
|
|
129
|
+
return self.visitChildren(ctx)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
# Visit a parse tree produced by cqlParser#intervalTypeSpecifier.
|
|
133
|
+
def visitIntervalTypeSpecifier(self, ctx:cqlParser.IntervalTypeSpecifierContext):
|
|
134
|
+
return self.visitChildren(ctx)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
# Visit a parse tree produced by cqlParser#tupleTypeSpecifier.
|
|
138
|
+
def visitTupleTypeSpecifier(self, ctx:cqlParser.TupleTypeSpecifierContext):
|
|
139
|
+
return self.visitChildren(ctx)
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
# Visit a parse tree produced by cqlParser#tupleElementDefinition.
|
|
143
|
+
def visitTupleElementDefinition(self, ctx:cqlParser.TupleElementDefinitionContext):
|
|
144
|
+
return self.visitChildren(ctx)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
# Visit a parse tree produced by cqlParser#choiceTypeSpecifier.
|
|
148
|
+
def visitChoiceTypeSpecifier(self, ctx:cqlParser.ChoiceTypeSpecifierContext):
|
|
149
|
+
return self.visitChildren(ctx)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
# Visit a parse tree produced by cqlParser#statement.
|
|
153
|
+
def visitStatement(self, ctx:cqlParser.StatementContext):
|
|
154
|
+
return self.visitChildren(ctx)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
# Visit a parse tree produced by cqlParser#expressionDefinition.
|
|
158
|
+
def visitExpressionDefinition(self, ctx:cqlParser.ExpressionDefinitionContext):
|
|
159
|
+
return self.visitChildren(ctx)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
# Visit a parse tree produced by cqlParser#contextDefinition.
|
|
163
|
+
def visitContextDefinition(self, ctx:cqlParser.ContextDefinitionContext):
|
|
164
|
+
return self.visitChildren(ctx)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
# Visit a parse tree produced by cqlParser#fluentModifier.
|
|
168
|
+
def visitFluentModifier(self, ctx:cqlParser.FluentModifierContext):
|
|
169
|
+
return self.visitChildren(ctx)
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
# Visit a parse tree produced by cqlParser#functionDefinition.
|
|
173
|
+
def visitFunctionDefinition(self, ctx:cqlParser.FunctionDefinitionContext):
|
|
174
|
+
return self.visitChildren(ctx)
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
# Visit a parse tree produced by cqlParser#operandDefinition.
|
|
178
|
+
def visitOperandDefinition(self, ctx:cqlParser.OperandDefinitionContext):
|
|
179
|
+
return self.visitChildren(ctx)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
# Visit a parse tree produced by cqlParser#functionBody.
|
|
183
|
+
def visitFunctionBody(self, ctx:cqlParser.FunctionBodyContext):
|
|
184
|
+
return self.visitChildren(ctx)
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
# Visit a parse tree produced by cqlParser#querySource.
|
|
188
|
+
def visitQuerySource(self, ctx:cqlParser.QuerySourceContext):
|
|
189
|
+
return self.visitChildren(ctx)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
# Visit a parse tree produced by cqlParser#aliasedQuerySource.
|
|
193
|
+
def visitAliasedQuerySource(self, ctx:cqlParser.AliasedQuerySourceContext):
|
|
194
|
+
return self.visitChildren(ctx)
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
# Visit a parse tree produced by cqlParser#alias.
|
|
198
|
+
def visitAlias(self, ctx:cqlParser.AliasContext):
|
|
199
|
+
return self.visitChildren(ctx)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
# Visit a parse tree produced by cqlParser#queryInclusionClause.
|
|
203
|
+
def visitQueryInclusionClause(self, ctx:cqlParser.QueryInclusionClauseContext):
|
|
204
|
+
return self.visitChildren(ctx)
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
# Visit a parse tree produced by cqlParser#withClause.
|
|
208
|
+
def visitWithClause(self, ctx:cqlParser.WithClauseContext):
|
|
209
|
+
return self.visitChildren(ctx)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
# Visit a parse tree produced by cqlParser#withoutClause.
|
|
213
|
+
def visitWithoutClause(self, ctx:cqlParser.WithoutClauseContext):
|
|
214
|
+
return self.visitChildren(ctx)
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
# Visit a parse tree produced by cqlParser#retrieve.
|
|
218
|
+
def visitRetrieve(self, ctx:cqlParser.RetrieveContext):
|
|
219
|
+
return self.visitChildren(ctx)
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
# Visit a parse tree produced by cqlParser#contextIdentifier.
|
|
223
|
+
def visitContextIdentifier(self, ctx:cqlParser.ContextIdentifierContext):
|
|
224
|
+
return self.visitChildren(ctx)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
# Visit a parse tree produced by cqlParser#codePath.
|
|
228
|
+
def visitCodePath(self, ctx:cqlParser.CodePathContext):
|
|
229
|
+
return self.visitChildren(ctx)
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
# Visit a parse tree produced by cqlParser#codeComparator.
|
|
233
|
+
def visitCodeComparator(self, ctx:cqlParser.CodeComparatorContext):
|
|
234
|
+
return self.visitChildren(ctx)
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
# Visit a parse tree produced by cqlParser#terminology.
|
|
238
|
+
def visitTerminology(self, ctx:cqlParser.TerminologyContext):
|
|
239
|
+
return self.visitChildren(ctx)
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
# Visit a parse tree produced by cqlParser#qualifier.
|
|
243
|
+
def visitQualifier(self, ctx:cqlParser.QualifierContext):
|
|
244
|
+
return self.visitChildren(ctx)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
# Visit a parse tree produced by cqlParser#query.
|
|
248
|
+
def visitQuery(self, ctx:cqlParser.QueryContext):
|
|
249
|
+
return self.visitChildren(ctx)
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
# Visit a parse tree produced by cqlParser#sourceClause.
|
|
253
|
+
def visitSourceClause(self, ctx:cqlParser.SourceClauseContext):
|
|
254
|
+
return self.visitChildren(ctx)
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
# Visit a parse tree produced by cqlParser#letClause.
|
|
258
|
+
def visitLetClause(self, ctx:cqlParser.LetClauseContext):
|
|
259
|
+
return self.visitChildren(ctx)
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
# Visit a parse tree produced by cqlParser#letClauseItem.
|
|
263
|
+
def visitLetClauseItem(self, ctx:cqlParser.LetClauseItemContext):
|
|
264
|
+
return self.visitChildren(ctx)
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
# Visit a parse tree produced by cqlParser#whereClause.
|
|
268
|
+
def visitWhereClause(self, ctx:cqlParser.WhereClauseContext):
|
|
269
|
+
return self.visitChildren(ctx)
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
# Visit a parse tree produced by cqlParser#returnClause.
|
|
273
|
+
def visitReturnClause(self, ctx:cqlParser.ReturnClauseContext):
|
|
274
|
+
return self.visitChildren(ctx)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
# Visit a parse tree produced by cqlParser#aggregateClause.
|
|
278
|
+
def visitAggregateClause(self, ctx:cqlParser.AggregateClauseContext):
|
|
279
|
+
return self.visitChildren(ctx)
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
# Visit a parse tree produced by cqlParser#startingClause.
|
|
283
|
+
def visitStartingClause(self, ctx:cqlParser.StartingClauseContext):
|
|
284
|
+
return self.visitChildren(ctx)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
# Visit a parse tree produced by cqlParser#sortClause.
|
|
288
|
+
def visitSortClause(self, ctx:cqlParser.SortClauseContext):
|
|
289
|
+
return self.visitChildren(ctx)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
# Visit a parse tree produced by cqlParser#sortDirection.
|
|
293
|
+
def visitSortDirection(self, ctx:cqlParser.SortDirectionContext):
|
|
294
|
+
return self.visitChildren(ctx)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
# Visit a parse tree produced by cqlParser#sortByItem.
|
|
298
|
+
def visitSortByItem(self, ctx:cqlParser.SortByItemContext):
|
|
299
|
+
return self.visitChildren(ctx)
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
# Visit a parse tree produced by cqlParser#qualifiedIdentifier.
|
|
303
|
+
def visitQualifiedIdentifier(self, ctx:cqlParser.QualifiedIdentifierContext):
|
|
304
|
+
return self.visitChildren(ctx)
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
# Visit a parse tree produced by cqlParser#qualifiedIdentifierExpression.
|
|
308
|
+
def visitQualifiedIdentifierExpression(self, ctx:cqlParser.QualifiedIdentifierExpressionContext):
|
|
309
|
+
return self.visitChildren(ctx)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
# Visit a parse tree produced by cqlParser#qualifierExpression.
|
|
313
|
+
def visitQualifierExpression(self, ctx:cqlParser.QualifierExpressionContext):
|
|
314
|
+
return self.visitChildren(ctx)
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
# Visit a parse tree produced by cqlParser#simplePathIndexer.
|
|
318
|
+
def visitSimplePathIndexer(self, ctx:cqlParser.SimplePathIndexerContext):
|
|
319
|
+
return self.visitChildren(ctx)
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
# Visit a parse tree produced by cqlParser#simplePathQualifiedIdentifier.
|
|
323
|
+
def visitSimplePathQualifiedIdentifier(self, ctx:cqlParser.SimplePathQualifiedIdentifierContext):
|
|
324
|
+
return self.visitChildren(ctx)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
# Visit a parse tree produced by cqlParser#simplePathReferentialIdentifier.
|
|
328
|
+
def visitSimplePathReferentialIdentifier(self, ctx:cqlParser.SimplePathReferentialIdentifierContext):
|
|
329
|
+
return self.visitChildren(ctx)
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
# Visit a parse tree produced by cqlParser#simpleStringLiteral.
|
|
333
|
+
def visitSimpleStringLiteral(self, ctx:cqlParser.SimpleStringLiteralContext):
|
|
334
|
+
return self.visitChildren(ctx)
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
# Visit a parse tree produced by cqlParser#simpleNumberLiteral.
|
|
338
|
+
def visitSimpleNumberLiteral(self, ctx:cqlParser.SimpleNumberLiteralContext):
|
|
339
|
+
return self.visitChildren(ctx)
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
# Visit a parse tree produced by cqlParser#durationBetweenExpression.
|
|
343
|
+
def visitDurationBetweenExpression(self, ctx:cqlParser.DurationBetweenExpressionContext):
|
|
344
|
+
return self.visitChildren(ctx)
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
# Visit a parse tree produced by cqlParser#inFixSetExpression.
|
|
348
|
+
def visitInFixSetExpression(self, ctx:cqlParser.InFixSetExpressionContext):
|
|
349
|
+
return self.visitChildren(ctx)
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
# Visit a parse tree produced by cqlParser#retrieveExpression.
|
|
353
|
+
def visitRetrieveExpression(self, ctx:cqlParser.RetrieveExpressionContext):
|
|
354
|
+
return self.visitChildren(ctx)
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
# Visit a parse tree produced by cqlParser#timingExpression.
|
|
358
|
+
def visitTimingExpression(self, ctx:cqlParser.TimingExpressionContext):
|
|
359
|
+
return self.visitChildren(ctx)
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
# Visit a parse tree produced by cqlParser#queryExpression.
|
|
363
|
+
def visitQueryExpression(self, ctx:cqlParser.QueryExpressionContext):
|
|
364
|
+
return self.visitChildren(ctx)
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
# Visit a parse tree produced by cqlParser#notExpression.
|
|
368
|
+
def visitNotExpression(self, ctx:cqlParser.NotExpressionContext):
|
|
369
|
+
return self.visitChildren(ctx)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
# Visit a parse tree produced by cqlParser#booleanExpression.
|
|
373
|
+
def visitBooleanExpression(self, ctx:cqlParser.BooleanExpressionContext):
|
|
374
|
+
return self.visitChildren(ctx)
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
# Visit a parse tree produced by cqlParser#orExpression.
|
|
378
|
+
def visitOrExpression(self, ctx:cqlParser.OrExpressionContext):
|
|
379
|
+
return self.visitChildren(ctx)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
# Visit a parse tree produced by cqlParser#castExpression.
|
|
383
|
+
def visitCastExpression(self, ctx:cqlParser.CastExpressionContext):
|
|
384
|
+
return self.visitChildren(ctx)
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
# Visit a parse tree produced by cqlParser#andExpression.
|
|
388
|
+
def visitAndExpression(self, ctx:cqlParser.AndExpressionContext):
|
|
389
|
+
return self.visitChildren(ctx)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
# Visit a parse tree produced by cqlParser#betweenExpression.
|
|
393
|
+
def visitBetweenExpression(self, ctx:cqlParser.BetweenExpressionContext):
|
|
394
|
+
return self.visitChildren(ctx)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
# Visit a parse tree produced by cqlParser#membershipExpression.
|
|
398
|
+
def visitMembershipExpression(self, ctx:cqlParser.MembershipExpressionContext):
|
|
399
|
+
return self.visitChildren(ctx)
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
# Visit a parse tree produced by cqlParser#differenceBetweenExpression.
|
|
403
|
+
def visitDifferenceBetweenExpression(self, ctx:cqlParser.DifferenceBetweenExpressionContext):
|
|
404
|
+
return self.visitChildren(ctx)
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
# Visit a parse tree produced by cqlParser#inequalityExpression.
|
|
408
|
+
def visitInequalityExpression(self, ctx:cqlParser.InequalityExpressionContext):
|
|
409
|
+
return self.visitChildren(ctx)
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
# Visit a parse tree produced by cqlParser#equalityExpression.
|
|
413
|
+
def visitEqualityExpression(self, ctx:cqlParser.EqualityExpressionContext):
|
|
414
|
+
return self.visitChildren(ctx)
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
# Visit a parse tree produced by cqlParser#existenceExpression.
|
|
418
|
+
def visitExistenceExpression(self, ctx:cqlParser.ExistenceExpressionContext):
|
|
419
|
+
return self.visitChildren(ctx)
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
# Visit a parse tree produced by cqlParser#impliesExpression.
|
|
423
|
+
def visitImpliesExpression(self, ctx:cqlParser.ImpliesExpressionContext):
|
|
424
|
+
return self.visitChildren(ctx)
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
# Visit a parse tree produced by cqlParser#negateMembershipExpression.
|
|
428
|
+
def visitNegateMembershipExpression(self, ctx:cqlParser.NegateMembershipExpressionContext):
|
|
429
|
+
return self.visitChildren(ctx)
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
# Visit a parse tree produced by cqlParser#termExpression.
|
|
433
|
+
def visitTermExpression(self, ctx:cqlParser.TermExpressionContext):
|
|
434
|
+
return self.visitChildren(ctx)
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
# Visit a parse tree produced by cqlParser#typeExpression.
|
|
438
|
+
def visitTypeExpression(self, ctx:cqlParser.TypeExpressionContext):
|
|
439
|
+
return self.visitChildren(ctx)
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
# Visit a parse tree produced by cqlParser#dateTimePrecision.
|
|
443
|
+
def visitDateTimePrecision(self, ctx:cqlParser.DateTimePrecisionContext):
|
|
444
|
+
return self.visitChildren(ctx)
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
# Visit a parse tree produced by cqlParser#dateTimeComponent.
|
|
448
|
+
def visitDateTimeComponent(self, ctx:cqlParser.DateTimeComponentContext):
|
|
449
|
+
return self.visitChildren(ctx)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
# Visit a parse tree produced by cqlParser#pluralDateTimePrecision.
|
|
453
|
+
def visitPluralDateTimePrecision(self, ctx:cqlParser.PluralDateTimePrecisionContext):
|
|
454
|
+
return self.visitChildren(ctx)
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
# Visit a parse tree produced by cqlParser#additionExpressionTerm.
|
|
458
|
+
def visitAdditionExpressionTerm(self, ctx:cqlParser.AdditionExpressionTermContext):
|
|
459
|
+
return self.visitChildren(ctx)
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
# Visit a parse tree produced by cqlParser#indexedExpressionTerm.
|
|
463
|
+
def visitIndexedExpressionTerm(self, ctx:cqlParser.IndexedExpressionTermContext):
|
|
464
|
+
return self.visitChildren(ctx)
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
# Visit a parse tree produced by cqlParser#widthExpressionTerm.
|
|
468
|
+
def visitWidthExpressionTerm(self, ctx:cqlParser.WidthExpressionTermContext):
|
|
469
|
+
return self.visitChildren(ctx)
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
# Visit a parse tree produced by cqlParser#setAggregateExpressionTerm.
|
|
473
|
+
def visitSetAggregateExpressionTerm(self, ctx:cqlParser.SetAggregateExpressionTermContext):
|
|
474
|
+
return self.visitChildren(ctx)
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
# Visit a parse tree produced by cqlParser#timeUnitExpressionTerm.
|
|
478
|
+
def visitTimeUnitExpressionTerm(self, ctx:cqlParser.TimeUnitExpressionTermContext):
|
|
479
|
+
return self.visitChildren(ctx)
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
# Visit a parse tree produced by cqlParser#ifThenElseExpressionTerm.
|
|
483
|
+
def visitIfThenElseExpressionTerm(self, ctx:cqlParser.IfThenElseExpressionTermContext):
|
|
484
|
+
return self.visitChildren(ctx)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
# Visit a parse tree produced by cqlParser#timeBoundaryExpressionTerm.
|
|
488
|
+
def visitTimeBoundaryExpressionTerm(self, ctx:cqlParser.TimeBoundaryExpressionTermContext):
|
|
489
|
+
return self.visitChildren(ctx)
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
# Visit a parse tree produced by cqlParser#elementExtractorExpressionTerm.
|
|
493
|
+
def visitElementExtractorExpressionTerm(self, ctx:cqlParser.ElementExtractorExpressionTermContext):
|
|
494
|
+
return self.visitChildren(ctx)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
# Visit a parse tree produced by cqlParser#conversionExpressionTerm.
|
|
498
|
+
def visitConversionExpressionTerm(self, ctx:cqlParser.ConversionExpressionTermContext):
|
|
499
|
+
return self.visitChildren(ctx)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
# Visit a parse tree produced by cqlParser#typeExtentExpressionTerm.
|
|
503
|
+
def visitTypeExtentExpressionTerm(self, ctx:cqlParser.TypeExtentExpressionTermContext):
|
|
504
|
+
return self.visitChildren(ctx)
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
# Visit a parse tree produced by cqlParser#predecessorExpressionTerm.
|
|
508
|
+
def visitPredecessorExpressionTerm(self, ctx:cqlParser.PredecessorExpressionTermContext):
|
|
509
|
+
return self.visitChildren(ctx)
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
# Visit a parse tree produced by cqlParser#pointExtractorExpressionTerm.
|
|
513
|
+
def visitPointExtractorExpressionTerm(self, ctx:cqlParser.PointExtractorExpressionTermContext):
|
|
514
|
+
return self.visitChildren(ctx)
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
# Visit a parse tree produced by cqlParser#multiplicationExpressionTerm.
|
|
518
|
+
def visitMultiplicationExpressionTerm(self, ctx:cqlParser.MultiplicationExpressionTermContext):
|
|
519
|
+
return self.visitChildren(ctx)
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
# Visit a parse tree produced by cqlParser#aggregateExpressionTerm.
|
|
523
|
+
def visitAggregateExpressionTerm(self, ctx:cqlParser.AggregateExpressionTermContext):
|
|
524
|
+
return self.visitChildren(ctx)
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
# Visit a parse tree produced by cqlParser#durationExpressionTerm.
|
|
528
|
+
def visitDurationExpressionTerm(self, ctx:cqlParser.DurationExpressionTermContext):
|
|
529
|
+
return self.visitChildren(ctx)
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
# Visit a parse tree produced by cqlParser#differenceExpressionTerm.
|
|
533
|
+
def visitDifferenceExpressionTerm(self, ctx:cqlParser.DifferenceExpressionTermContext):
|
|
534
|
+
return self.visitChildren(ctx)
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
# Visit a parse tree produced by cqlParser#caseExpressionTerm.
|
|
538
|
+
def visitCaseExpressionTerm(self, ctx:cqlParser.CaseExpressionTermContext):
|
|
539
|
+
return self.visitChildren(ctx)
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
# Visit a parse tree produced by cqlParser#powerExpressionTerm.
|
|
543
|
+
def visitPowerExpressionTerm(self, ctx:cqlParser.PowerExpressionTermContext):
|
|
544
|
+
return self.visitChildren(ctx)
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
# Visit a parse tree produced by cqlParser#successorExpressionTerm.
|
|
548
|
+
def visitSuccessorExpressionTerm(self, ctx:cqlParser.SuccessorExpressionTermContext):
|
|
549
|
+
return self.visitChildren(ctx)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
# Visit a parse tree produced by cqlParser#polarityExpressionTerm.
|
|
553
|
+
def visitPolarityExpressionTerm(self, ctx:cqlParser.PolarityExpressionTermContext):
|
|
554
|
+
return self.visitChildren(ctx)
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
# Visit a parse tree produced by cqlParser#termExpressionTerm.
|
|
558
|
+
def visitTermExpressionTerm(self, ctx:cqlParser.TermExpressionTermContext):
|
|
559
|
+
return self.visitChildren(ctx)
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
# Visit a parse tree produced by cqlParser#invocationExpressionTerm.
|
|
563
|
+
def visitInvocationExpressionTerm(self, ctx:cqlParser.InvocationExpressionTermContext):
|
|
564
|
+
return self.visitChildren(ctx)
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
# Visit a parse tree produced by cqlParser#caseExpressionItem.
|
|
568
|
+
def visitCaseExpressionItem(self, ctx:cqlParser.CaseExpressionItemContext):
|
|
569
|
+
return self.visitChildren(ctx)
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
# Visit a parse tree produced by cqlParser#dateTimePrecisionSpecifier.
|
|
573
|
+
def visitDateTimePrecisionSpecifier(self, ctx:cqlParser.DateTimePrecisionSpecifierContext):
|
|
574
|
+
return self.visitChildren(ctx)
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
# Visit a parse tree produced by cqlParser#relativeQualifier.
|
|
578
|
+
def visitRelativeQualifier(self, ctx:cqlParser.RelativeQualifierContext):
|
|
579
|
+
return self.visitChildren(ctx)
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
# Visit a parse tree produced by cqlParser#offsetRelativeQualifier.
|
|
583
|
+
def visitOffsetRelativeQualifier(self, ctx:cqlParser.OffsetRelativeQualifierContext):
|
|
584
|
+
return self.visitChildren(ctx)
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
# Visit a parse tree produced by cqlParser#exclusiveRelativeQualifier.
|
|
588
|
+
def visitExclusiveRelativeQualifier(self, ctx:cqlParser.ExclusiveRelativeQualifierContext):
|
|
589
|
+
return self.visitChildren(ctx)
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
# Visit a parse tree produced by cqlParser#quantityOffset.
|
|
593
|
+
def visitQuantityOffset(self, ctx:cqlParser.QuantityOffsetContext):
|
|
594
|
+
return self.visitChildren(ctx)
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
# Visit a parse tree produced by cqlParser#temporalRelationship.
|
|
598
|
+
def visitTemporalRelationship(self, ctx:cqlParser.TemporalRelationshipContext):
|
|
599
|
+
return self.visitChildren(ctx)
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
# Visit a parse tree produced by cqlParser#concurrentWithIntervalOperatorPhrase.
|
|
603
|
+
def visitConcurrentWithIntervalOperatorPhrase(self, ctx:cqlParser.ConcurrentWithIntervalOperatorPhraseContext):
|
|
604
|
+
return self.visitChildren(ctx)
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
# Visit a parse tree produced by cqlParser#includesIntervalOperatorPhrase.
|
|
608
|
+
def visitIncludesIntervalOperatorPhrase(self, ctx:cqlParser.IncludesIntervalOperatorPhraseContext):
|
|
609
|
+
return self.visitChildren(ctx)
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
# Visit a parse tree produced by cqlParser#includedInIntervalOperatorPhrase.
|
|
613
|
+
def visitIncludedInIntervalOperatorPhrase(self, ctx:cqlParser.IncludedInIntervalOperatorPhraseContext):
|
|
614
|
+
return self.visitChildren(ctx)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
# Visit a parse tree produced by cqlParser#beforeOrAfterIntervalOperatorPhrase.
|
|
618
|
+
def visitBeforeOrAfterIntervalOperatorPhrase(self, ctx:cqlParser.BeforeOrAfterIntervalOperatorPhraseContext):
|
|
619
|
+
return self.visitChildren(ctx)
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
# Visit a parse tree produced by cqlParser#withinIntervalOperatorPhrase.
|
|
623
|
+
def visitWithinIntervalOperatorPhrase(self, ctx:cqlParser.WithinIntervalOperatorPhraseContext):
|
|
624
|
+
return self.visitChildren(ctx)
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
# Visit a parse tree produced by cqlParser#meetsIntervalOperatorPhrase.
|
|
628
|
+
def visitMeetsIntervalOperatorPhrase(self, ctx:cqlParser.MeetsIntervalOperatorPhraseContext):
|
|
629
|
+
return self.visitChildren(ctx)
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
# Visit a parse tree produced by cqlParser#overlapsIntervalOperatorPhrase.
|
|
633
|
+
def visitOverlapsIntervalOperatorPhrase(self, ctx:cqlParser.OverlapsIntervalOperatorPhraseContext):
|
|
634
|
+
return self.visitChildren(ctx)
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
# Visit a parse tree produced by cqlParser#startsIntervalOperatorPhrase.
|
|
638
|
+
def visitStartsIntervalOperatorPhrase(self, ctx:cqlParser.StartsIntervalOperatorPhraseContext):
|
|
639
|
+
return self.visitChildren(ctx)
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
# Visit a parse tree produced by cqlParser#endsIntervalOperatorPhrase.
|
|
643
|
+
def visitEndsIntervalOperatorPhrase(self, ctx:cqlParser.EndsIntervalOperatorPhraseContext):
|
|
644
|
+
return self.visitChildren(ctx)
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
# Visit a parse tree produced by cqlParser#invocationTerm.
|
|
648
|
+
def visitInvocationTerm(self, ctx:cqlParser.InvocationTermContext):
|
|
649
|
+
return self.visitChildren(ctx)
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
# Visit a parse tree produced by cqlParser#literalTerm.
|
|
653
|
+
def visitLiteralTerm(self, ctx:cqlParser.LiteralTermContext):
|
|
654
|
+
return self.visitChildren(ctx)
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
# Visit a parse tree produced by cqlParser#externalConstantTerm.
|
|
658
|
+
def visitExternalConstantTerm(self, ctx:cqlParser.ExternalConstantTermContext):
|
|
659
|
+
return self.visitChildren(ctx)
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
# Visit a parse tree produced by cqlParser#intervalSelectorTerm.
|
|
663
|
+
def visitIntervalSelectorTerm(self, ctx:cqlParser.IntervalSelectorTermContext):
|
|
664
|
+
return self.visitChildren(ctx)
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
# Visit a parse tree produced by cqlParser#tupleSelectorTerm.
|
|
668
|
+
def visitTupleSelectorTerm(self, ctx:cqlParser.TupleSelectorTermContext):
|
|
669
|
+
return self.visitChildren(ctx)
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
# Visit a parse tree produced by cqlParser#instanceSelectorTerm.
|
|
673
|
+
def visitInstanceSelectorTerm(self, ctx:cqlParser.InstanceSelectorTermContext):
|
|
674
|
+
return self.visitChildren(ctx)
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
# Visit a parse tree produced by cqlParser#listSelectorTerm.
|
|
678
|
+
def visitListSelectorTerm(self, ctx:cqlParser.ListSelectorTermContext):
|
|
679
|
+
return self.visitChildren(ctx)
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
# Visit a parse tree produced by cqlParser#codeSelectorTerm.
|
|
683
|
+
def visitCodeSelectorTerm(self, ctx:cqlParser.CodeSelectorTermContext):
|
|
684
|
+
return self.visitChildren(ctx)
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
# Visit a parse tree produced by cqlParser#conceptSelectorTerm.
|
|
688
|
+
def visitConceptSelectorTerm(self, ctx:cqlParser.ConceptSelectorTermContext):
|
|
689
|
+
return self.visitChildren(ctx)
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
# Visit a parse tree produced by cqlParser#parenthesizedTerm.
|
|
693
|
+
def visitParenthesizedTerm(self, ctx:cqlParser.ParenthesizedTermContext):
|
|
694
|
+
return self.visitChildren(ctx)
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
# Visit a parse tree produced by cqlParser#qualifiedMemberInvocation.
|
|
698
|
+
def visitQualifiedMemberInvocation(self, ctx:cqlParser.QualifiedMemberInvocationContext):
|
|
699
|
+
return self.visitChildren(ctx)
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
# Visit a parse tree produced by cqlParser#qualifiedFunctionInvocation.
|
|
703
|
+
def visitQualifiedFunctionInvocation(self, ctx:cqlParser.QualifiedFunctionInvocationContext):
|
|
704
|
+
return self.visitChildren(ctx)
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
# Visit a parse tree produced by cqlParser#qualifiedFunction.
|
|
708
|
+
def visitQualifiedFunction(self, ctx:cqlParser.QualifiedFunctionContext):
|
|
709
|
+
return self.visitChildren(ctx)
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
# Visit a parse tree produced by cqlParser#memberInvocation.
|
|
713
|
+
def visitMemberInvocation(self, ctx:cqlParser.MemberInvocationContext):
|
|
714
|
+
return self.visitChildren(ctx)
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
# Visit a parse tree produced by cqlParser#functionInvocation.
|
|
718
|
+
def visitFunctionInvocation(self, ctx:cqlParser.FunctionInvocationContext):
|
|
719
|
+
return self.visitChildren(ctx)
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
# Visit a parse tree produced by cqlParser#thisInvocation.
|
|
723
|
+
def visitThisInvocation(self, ctx:cqlParser.ThisInvocationContext):
|
|
724
|
+
return self.visitChildren(ctx)
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
# Visit a parse tree produced by cqlParser#indexInvocation.
|
|
728
|
+
def visitIndexInvocation(self, ctx:cqlParser.IndexInvocationContext):
|
|
729
|
+
return self.visitChildren(ctx)
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
# Visit a parse tree produced by cqlParser#totalInvocation.
|
|
733
|
+
def visitTotalInvocation(self, ctx:cqlParser.TotalInvocationContext):
|
|
734
|
+
return self.visitChildren(ctx)
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
# Visit a parse tree produced by cqlParser#function.
|
|
738
|
+
def visitFunction(self, ctx:cqlParser.FunctionContext):
|
|
739
|
+
return self.visitChildren(ctx)
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
# Visit a parse tree produced by cqlParser#ratio.
|
|
743
|
+
def visitRatio(self, ctx:cqlParser.RatioContext):
|
|
744
|
+
return self.visitChildren(ctx)
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
# Visit a parse tree produced by cqlParser#booleanLiteral.
|
|
748
|
+
def visitBooleanLiteral(self, ctx:cqlParser.BooleanLiteralContext):
|
|
749
|
+
return self.visitChildren(ctx)
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
# Visit a parse tree produced by cqlParser#nullLiteral.
|
|
753
|
+
def visitNullLiteral(self, ctx:cqlParser.NullLiteralContext):
|
|
754
|
+
return self.visitChildren(ctx)
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
# Visit a parse tree produced by cqlParser#stringLiteral.
|
|
758
|
+
def visitStringLiteral(self, ctx:cqlParser.StringLiteralContext):
|
|
759
|
+
return self.visitChildren(ctx)
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
# Visit a parse tree produced by cqlParser#numberLiteral.
|
|
763
|
+
def visitNumberLiteral(self, ctx:cqlParser.NumberLiteralContext):
|
|
764
|
+
return self.visitChildren(ctx)
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
# Visit a parse tree produced by cqlParser#longNumberLiteral.
|
|
768
|
+
def visitLongNumberLiteral(self, ctx:cqlParser.LongNumberLiteralContext):
|
|
769
|
+
return self.visitChildren(ctx)
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
# Visit a parse tree produced by cqlParser#dateTimeLiteral.
|
|
773
|
+
def visitDateTimeLiteral(self, ctx:cqlParser.DateTimeLiteralContext):
|
|
774
|
+
return self.visitChildren(ctx)
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
# Visit a parse tree produced by cqlParser#dateLiteral.
|
|
778
|
+
def visitDateLiteral(self, ctx:cqlParser.DateLiteralContext):
|
|
779
|
+
return self.visitChildren(ctx)
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
# Visit a parse tree produced by cqlParser#timeLiteral.
|
|
783
|
+
def visitTimeLiteral(self, ctx:cqlParser.TimeLiteralContext):
|
|
784
|
+
return self.visitChildren(ctx)
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
# Visit a parse tree produced by cqlParser#quantityLiteral.
|
|
788
|
+
def visitQuantityLiteral(self, ctx:cqlParser.QuantityLiteralContext):
|
|
789
|
+
return self.visitChildren(ctx)
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
# Visit a parse tree produced by cqlParser#ratioLiteral.
|
|
793
|
+
def visitRatioLiteral(self, ctx:cqlParser.RatioLiteralContext):
|
|
794
|
+
return self.visitChildren(ctx)
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
# Visit a parse tree produced by cqlParser#intervalSelector.
|
|
798
|
+
def visitIntervalSelector(self, ctx:cqlParser.IntervalSelectorContext):
|
|
799
|
+
return self.visitChildren(ctx)
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
# Visit a parse tree produced by cqlParser#tupleSelector.
|
|
803
|
+
def visitTupleSelector(self, ctx:cqlParser.TupleSelectorContext):
|
|
804
|
+
return self.visitChildren(ctx)
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
# Visit a parse tree produced by cqlParser#tupleElementSelector.
|
|
808
|
+
def visitTupleElementSelector(self, ctx:cqlParser.TupleElementSelectorContext):
|
|
809
|
+
return self.visitChildren(ctx)
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
# Visit a parse tree produced by cqlParser#instanceSelector.
|
|
813
|
+
def visitInstanceSelector(self, ctx:cqlParser.InstanceSelectorContext):
|
|
814
|
+
return self.visitChildren(ctx)
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
# Visit a parse tree produced by cqlParser#instanceElementSelector.
|
|
818
|
+
def visitInstanceElementSelector(self, ctx:cqlParser.InstanceElementSelectorContext):
|
|
819
|
+
return self.visitChildren(ctx)
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
# Visit a parse tree produced by cqlParser#listSelector.
|
|
823
|
+
def visitListSelector(self, ctx:cqlParser.ListSelectorContext):
|
|
824
|
+
return self.visitChildren(ctx)
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
# Visit a parse tree produced by cqlParser#displayClause.
|
|
828
|
+
def visitDisplayClause(self, ctx:cqlParser.DisplayClauseContext):
|
|
829
|
+
return self.visitChildren(ctx)
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
# Visit a parse tree produced by cqlParser#codeSelector.
|
|
833
|
+
def visitCodeSelector(self, ctx:cqlParser.CodeSelectorContext):
|
|
834
|
+
return self.visitChildren(ctx)
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
# Visit a parse tree produced by cqlParser#conceptSelector.
|
|
838
|
+
def visitConceptSelector(self, ctx:cqlParser.ConceptSelectorContext):
|
|
839
|
+
return self.visitChildren(ctx)
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
# Visit a parse tree produced by cqlParser#keyword.
|
|
843
|
+
def visitKeyword(self, ctx:cqlParser.KeywordContext):
|
|
844
|
+
return self.visitChildren(ctx)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
# Visit a parse tree produced by cqlParser#reservedWord.
|
|
848
|
+
def visitReservedWord(self, ctx:cqlParser.ReservedWordContext):
|
|
849
|
+
return self.visitChildren(ctx)
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
# Visit a parse tree produced by cqlParser#keywordIdentifier.
|
|
853
|
+
def visitKeywordIdentifier(self, ctx:cqlParser.KeywordIdentifierContext):
|
|
854
|
+
return self.visitChildren(ctx)
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
# Visit a parse tree produced by cqlParser#obsoleteIdentifier.
|
|
858
|
+
def visitObsoleteIdentifier(self, ctx:cqlParser.ObsoleteIdentifierContext):
|
|
859
|
+
return self.visitChildren(ctx)
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
# Visit a parse tree produced by cqlParser#functionIdentifier.
|
|
863
|
+
def visitFunctionIdentifier(self, ctx:cqlParser.FunctionIdentifierContext):
|
|
864
|
+
return self.visitChildren(ctx)
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
# Visit a parse tree produced by cqlParser#typeNameIdentifier.
|
|
868
|
+
def visitTypeNameIdentifier(self, ctx:cqlParser.TypeNameIdentifierContext):
|
|
869
|
+
return self.visitChildren(ctx)
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
# Visit a parse tree produced by cqlParser#referentialIdentifier.
|
|
873
|
+
def visitReferentialIdentifier(self, ctx:cqlParser.ReferentialIdentifierContext):
|
|
874
|
+
return self.visitChildren(ctx)
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
# Visit a parse tree produced by cqlParser#referentialOrTypeNameIdentifier.
|
|
878
|
+
def visitReferentialOrTypeNameIdentifier(self, ctx:cqlParser.ReferentialOrTypeNameIdentifierContext):
|
|
879
|
+
return self.visitChildren(ctx)
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
# Visit a parse tree produced by cqlParser#identifierOrFunctionIdentifier.
|
|
883
|
+
def visitIdentifierOrFunctionIdentifier(self, ctx:cqlParser.IdentifierOrFunctionIdentifierContext):
|
|
884
|
+
return self.visitChildren(ctx)
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
# Visit a parse tree produced by cqlParser#identifier.
|
|
888
|
+
def visitIdentifier(self, ctx:cqlParser.IdentifierContext):
|
|
889
|
+
return self.visitChildren(ctx)
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
# Visit a parse tree produced by cqlParser#externalConstant.
|
|
893
|
+
def visitExternalConstant(self, ctx:cqlParser.ExternalConstantContext):
|
|
894
|
+
return self.visitChildren(ctx)
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
# Visit a parse tree produced by cqlParser#paramList.
|
|
898
|
+
def visitParamList(self, ctx:cqlParser.ParamListContext):
|
|
899
|
+
return self.visitChildren(ctx)
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
# Visit a parse tree produced by cqlParser#quantity.
|
|
903
|
+
def visitQuantity(self, ctx:cqlParser.QuantityContext):
|
|
904
|
+
return self.visitChildren(ctx)
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
# Visit a parse tree produced by cqlParser#unit.
|
|
908
|
+
def visitUnit(self, ctx:cqlParser.UnitContext):
|
|
909
|
+
return self.visitChildren(ctx)
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
del cqlParser
|