vtlengine 1.4.0rc2__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.
- vtlengine/API/_InternalApi.py +791 -0
- vtlengine/API/__init__.py +612 -0
- vtlengine/API/data/schema/external_routines_schema.json +34 -0
- vtlengine/API/data/schema/json_schema_2.1.json +116 -0
- vtlengine/API/data/schema/value_domain_schema.json +97 -0
- vtlengine/AST/ASTComment.py +57 -0
- vtlengine/AST/ASTConstructor.py +598 -0
- vtlengine/AST/ASTConstructorModules/Expr.py +1928 -0
- vtlengine/AST/ASTConstructorModules/ExprComponents.py +995 -0
- vtlengine/AST/ASTConstructorModules/Terminals.py +790 -0
- vtlengine/AST/ASTConstructorModules/__init__.py +50 -0
- vtlengine/AST/ASTDataExchange.py +10 -0
- vtlengine/AST/ASTEncoders.py +32 -0
- vtlengine/AST/ASTString.py +675 -0
- vtlengine/AST/ASTTemplate.py +558 -0
- vtlengine/AST/ASTVisitor.py +25 -0
- vtlengine/AST/DAG/__init__.py +479 -0
- vtlengine/AST/DAG/_words.py +10 -0
- vtlengine/AST/Grammar/Vtl.g4 +705 -0
- vtlengine/AST/Grammar/VtlTokens.g4 +409 -0
- vtlengine/AST/Grammar/__init__.py +0 -0
- vtlengine/AST/Grammar/lexer.py +2139 -0
- vtlengine/AST/Grammar/parser.py +16597 -0
- vtlengine/AST/Grammar/tokens.py +169 -0
- vtlengine/AST/VtlVisitor.py +824 -0
- vtlengine/AST/__init__.py +674 -0
- vtlengine/DataTypes/TimeHandling.py +562 -0
- vtlengine/DataTypes/__init__.py +863 -0
- vtlengine/DataTypes/_time_checking.py +135 -0
- vtlengine/Exceptions/__exception_file_generator.py +96 -0
- vtlengine/Exceptions/__init__.py +159 -0
- vtlengine/Exceptions/messages.py +1004 -0
- vtlengine/Interpreter/__init__.py +2048 -0
- vtlengine/Model/__init__.py +501 -0
- vtlengine/Operators/Aggregation.py +357 -0
- vtlengine/Operators/Analytic.py +455 -0
- vtlengine/Operators/Assignment.py +23 -0
- vtlengine/Operators/Boolean.py +106 -0
- vtlengine/Operators/CastOperator.py +451 -0
- vtlengine/Operators/Clause.py +366 -0
- vtlengine/Operators/Comparison.py +488 -0
- vtlengine/Operators/Conditional.py +495 -0
- vtlengine/Operators/General.py +191 -0
- vtlengine/Operators/HROperators.py +254 -0
- vtlengine/Operators/Join.py +447 -0
- vtlengine/Operators/Numeric.py +422 -0
- vtlengine/Operators/RoleSetter.py +77 -0
- vtlengine/Operators/Set.py +176 -0
- vtlengine/Operators/String.py +578 -0
- vtlengine/Operators/Time.py +1144 -0
- vtlengine/Operators/Validation.py +275 -0
- vtlengine/Operators/__init__.py +900 -0
- vtlengine/Utils/__Virtual_Assets.py +34 -0
- vtlengine/Utils/__init__.py +479 -0
- vtlengine/__extras_check.py +17 -0
- vtlengine/__init__.py +27 -0
- vtlengine/files/__init__.py +0 -0
- vtlengine/files/output/__init__.py +35 -0
- vtlengine/files/output/_time_period_representation.py +55 -0
- vtlengine/files/parser/__init__.py +240 -0
- vtlengine/files/parser/_rfc_dialect.py +22 -0
- vtlengine/py.typed +0 -0
- vtlengine-1.4.0rc2.dist-info/METADATA +89 -0
- vtlengine-1.4.0rc2.dist-info/RECORD +66 -0
- vtlengine-1.4.0rc2.dist-info/WHEEL +4 -0
- vtlengine-1.4.0rc2.dist-info/licenses/LICENSE.md +661 -0
|
@@ -0,0 +1,824 @@
|
|
|
1
|
+
from antlr4 import ParseTreeVisitor
|
|
2
|
+
|
|
3
|
+
from vtlengine.AST.Grammar.parser import Parser
|
|
4
|
+
|
|
5
|
+
# This class defines a complete generic visitor for a parse tree produced by Parser.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class VtlVisitor(ParseTreeVisitor):
|
|
9
|
+
# Visit a parse tree produced by Parser#start.
|
|
10
|
+
def visitStart(self, ctx: Parser.StartContext):
|
|
11
|
+
return self.visitChildren(ctx)
|
|
12
|
+
|
|
13
|
+
# Visit a parse tree produced by Parser#temporaryAssignment.
|
|
14
|
+
def visitTemporaryAssignment(self, ctx: Parser.TemporaryAssignmentContext):
|
|
15
|
+
return self.visitChildren(ctx)
|
|
16
|
+
|
|
17
|
+
# Visit a parse tree produced by Parser#persistAssignment.
|
|
18
|
+
def visitPersistAssignment(self, ctx: Parser.PersistAssignmentContext):
|
|
19
|
+
return self.visitChildren(ctx)
|
|
20
|
+
|
|
21
|
+
def visitStatement(self, ctx: Parser.StatementContext):
|
|
22
|
+
return self.visitChildren(ctx)
|
|
23
|
+
|
|
24
|
+
# Visit a parse tree produced by Parser#defineExpression.
|
|
25
|
+
def visitDefineExpression(self, ctx: Parser.DefineExpressionContext):
|
|
26
|
+
return self.visitChildren(ctx)
|
|
27
|
+
|
|
28
|
+
def visitExpr(self, ctx: Parser.ExprContext):
|
|
29
|
+
return self.visitChildren(ctx)
|
|
30
|
+
|
|
31
|
+
# Visit a parse tree produced by Parser#varIdExpr.
|
|
32
|
+
def visitVarIdExpr(self, ctx: Parser.VarIdExprContext):
|
|
33
|
+
return self.visitChildren(ctx)
|
|
34
|
+
|
|
35
|
+
# Visit a parse tree produced by Parser#membershipExpr.
|
|
36
|
+
def visitMembershipExpr(self, ctx: Parser.MembershipExprContext):
|
|
37
|
+
return self.visitChildren(ctx)
|
|
38
|
+
|
|
39
|
+
# Visit a parse tree produced by Parser#inNotInExpr.
|
|
40
|
+
def visitInNotInExpr(self, ctx: Parser.InNotInExprContext):
|
|
41
|
+
return self.visitChildren(ctx)
|
|
42
|
+
|
|
43
|
+
# Visit a parse tree produced by Parser#booleanExpr.
|
|
44
|
+
def visitBooleanExpr(self, ctx: Parser.BooleanExprContext):
|
|
45
|
+
return self.visitChildren(ctx)
|
|
46
|
+
|
|
47
|
+
# Visit a parse tree produced by Parser#comparisonExpr.
|
|
48
|
+
def visitComparisonExpr(self, ctx: Parser.ComparisonExprContext):
|
|
49
|
+
return self.visitChildren(ctx)
|
|
50
|
+
|
|
51
|
+
# Visit a parse tree produced by Parser#unaryExpr.
|
|
52
|
+
def visitUnaryExpr(self, ctx: Parser.UnaryExprContext):
|
|
53
|
+
return self.visitChildren(ctx)
|
|
54
|
+
|
|
55
|
+
# Visit a parse tree produced by Parser#functionsExpression.
|
|
56
|
+
def visitFunctionsExpression(self, ctx: Parser.FunctionsExpressionContext):
|
|
57
|
+
return self.visitChildren(ctx)
|
|
58
|
+
|
|
59
|
+
# Visit a parse tree produced by Parser#ifExpr.
|
|
60
|
+
def visitIfExpr(self, ctx: Parser.IfExprContext):
|
|
61
|
+
return self.visitChildren(ctx)
|
|
62
|
+
|
|
63
|
+
# Visit a parse tree produced by Parser#caseExpr.
|
|
64
|
+
def visitCaseExpr(self, ctx: Parser.CaseExprContext):
|
|
65
|
+
return self.visitChildren(ctx)
|
|
66
|
+
|
|
67
|
+
# Visit a parse tree produced by Parser#clauseExpr.
|
|
68
|
+
def visitClauseExpr(self, ctx: Parser.ClauseExprContext):
|
|
69
|
+
return self.visitChildren(ctx)
|
|
70
|
+
|
|
71
|
+
# Visit a parse tree produced by Parser#arithmeticExpr.
|
|
72
|
+
def visitArithmeticExpr(self, ctx: Parser.ArithmeticExprContext):
|
|
73
|
+
return self.visitChildren(ctx)
|
|
74
|
+
|
|
75
|
+
# Visit a parse tree produced by Parser#parenthesisExpr.
|
|
76
|
+
def visitParenthesisExpr(self, ctx: Parser.ParenthesisExprContext):
|
|
77
|
+
return self.visitChildren(ctx)
|
|
78
|
+
|
|
79
|
+
# Visit a parse tree produced by Parser#constantExpr.
|
|
80
|
+
def visitConstantExpr(self, ctx: Parser.ConstantExprContext):
|
|
81
|
+
return self.visitChildren(ctx)
|
|
82
|
+
|
|
83
|
+
# Visit a parse tree produced by Parser#arithmeticExprOrConcat.
|
|
84
|
+
def visitArithmeticExprOrConcat(self, ctx: Parser.ArithmeticExprOrConcatContext):
|
|
85
|
+
return self.visitChildren(ctx)
|
|
86
|
+
|
|
87
|
+
# Visit a parse tree produced by Parser#arithmeticExprComp.
|
|
88
|
+
def visitArithmeticExprComp(self, ctx: Parser.ArithmeticExprCompContext):
|
|
89
|
+
return self.visitChildren(ctx)
|
|
90
|
+
|
|
91
|
+
# Visit a parse tree produced by Parser#ifExprComp.
|
|
92
|
+
def visitIfExprComp(self, ctx: Parser.IfExprCompContext):
|
|
93
|
+
return self.visitChildren(ctx)
|
|
94
|
+
|
|
95
|
+
# Visit a parse tree produced by Parser#caseExprComp.
|
|
96
|
+
def visitCaseExprComp(self, ctx: Parser.CaseExprCompContext):
|
|
97
|
+
return self.visitChildren(ctx)
|
|
98
|
+
|
|
99
|
+
# Visit a parse tree produced by Parser#comparisonExprComp.
|
|
100
|
+
def visitComparisonExprComp(self, ctx: Parser.ComparisonExprCompContext):
|
|
101
|
+
return self.visitChildren(ctx)
|
|
102
|
+
|
|
103
|
+
# Visit a parse tree produced by Parser#functionsExpressionComp.
|
|
104
|
+
def visitFunctionsExpressionComp(self, ctx: Parser.FunctionsExpressionCompContext):
|
|
105
|
+
return self.visitChildren(ctx)
|
|
106
|
+
|
|
107
|
+
# Visit a parse tree produced by Parser#compId.
|
|
108
|
+
def visitCompId(self, ctx: Parser.CompIdContext):
|
|
109
|
+
return self.visitChildren(ctx)
|
|
110
|
+
|
|
111
|
+
# Visit a parse tree produced by Parser#constantExprComp.
|
|
112
|
+
def visitConstantExprComp(self, ctx: Parser.ConstantExprCompContext):
|
|
113
|
+
return self.visitChildren(ctx)
|
|
114
|
+
|
|
115
|
+
# Visit a parse tree produced by Parser#arithmeticExprOrConcatComp.
|
|
116
|
+
def visitArithmeticExprOrConcatComp(self, ctx: Parser.ArithmeticExprOrConcatCompContext):
|
|
117
|
+
return self.visitChildren(ctx)
|
|
118
|
+
|
|
119
|
+
# Visit a parse tree produced by Parser#parenthesisExprComp.
|
|
120
|
+
def visitParenthesisExprComp(self, ctx: Parser.ParenthesisExprCompContext):
|
|
121
|
+
return self.visitChildren(ctx)
|
|
122
|
+
|
|
123
|
+
# Visit a parse tree produced by Parser#inNotInExprComp.
|
|
124
|
+
def visitInNotInExprComp(self, ctx: Parser.InNotInExprCompContext):
|
|
125
|
+
return self.visitChildren(ctx)
|
|
126
|
+
|
|
127
|
+
# Visit a parse tree produced by Parser#unaryExprComp.
|
|
128
|
+
def visitUnaryExprComp(self, ctx: Parser.UnaryExprCompContext):
|
|
129
|
+
return self.visitChildren(ctx)
|
|
130
|
+
|
|
131
|
+
# Visit a parse tree produced by Parser#booleanExprComp.
|
|
132
|
+
def visitBooleanExprComp(self, ctx: Parser.BooleanExprCompContext):
|
|
133
|
+
return self.visitChildren(ctx)
|
|
134
|
+
|
|
135
|
+
# Visit a parse tree produced by Parser#genericFunctionsComponents.
|
|
136
|
+
def visitGenericFunctionsComponents(self, ctx: Parser.GenericFunctionsComponentsContext):
|
|
137
|
+
return self.visitChildren(ctx)
|
|
138
|
+
|
|
139
|
+
# Visit a parse tree produced by Parser#stringFunctionsComponents.
|
|
140
|
+
def visitStringFunctionsComponents(self, ctx: Parser.StringFunctionsComponentsContext):
|
|
141
|
+
return self.visitChildren(ctx)
|
|
142
|
+
|
|
143
|
+
# Visit a parse tree produced by Parser#numericFunctionsComponents.
|
|
144
|
+
def visitNumericFunctionsComponents(self, ctx: Parser.NumericFunctionsComponentsContext):
|
|
145
|
+
return self.visitChildren(ctx)
|
|
146
|
+
|
|
147
|
+
# Visit a parse tree produced by Parser#comparisonFunctionsComponents.
|
|
148
|
+
def visitComparisonFunctionsComponents(self, ctx: Parser.ComparisonFunctionsComponentsContext):
|
|
149
|
+
return self.visitChildren(ctx)
|
|
150
|
+
|
|
151
|
+
# Visit a parse tree produced by Parser#timeFunctionsComponents.
|
|
152
|
+
def visitTimeFunctionsComponents(self, ctx: Parser.TimeFunctionsComponentsContext):
|
|
153
|
+
return self.visitChildren(ctx)
|
|
154
|
+
|
|
155
|
+
# Visit a parse tree produced by Parser#conditionalFunctionsComponents.
|
|
156
|
+
def visitConditionalFunctionsComponents(
|
|
157
|
+
self, ctx: Parser.ConditionalFunctionsComponentsContext
|
|
158
|
+
):
|
|
159
|
+
return self.visitChildren(ctx)
|
|
160
|
+
|
|
161
|
+
# Visit a parse tree produced by Parser#aggregateFunctionsComponents.
|
|
162
|
+
def visitAggregateFunctionsComponents(self, ctx: Parser.AggregateFunctionsComponentsContext):
|
|
163
|
+
return self.visitChildren(ctx)
|
|
164
|
+
|
|
165
|
+
# Visit a parse tree produced by Parser#analyticFunctionsComponents.
|
|
166
|
+
def visitAnalyticFunctionsComponents(self, ctx: Parser.AnalyticFunctionsComponentsContext):
|
|
167
|
+
return self.visitChildren(ctx)
|
|
168
|
+
|
|
169
|
+
# Visit a parse tree produced by Parser#joinFunctions.
|
|
170
|
+
def visitJoinFunctions(self, ctx: Parser.JoinFunctionsContext):
|
|
171
|
+
return self.visitChildren(ctx)
|
|
172
|
+
|
|
173
|
+
# Visit a parse tree produced by Parser#genericFunctions.
|
|
174
|
+
def visitGenericFunctions(self, ctx: Parser.GenericFunctionsContext):
|
|
175
|
+
return self.visitChildren(ctx)
|
|
176
|
+
|
|
177
|
+
# Visit a parse tree produced by Parser#stringFunctions.
|
|
178
|
+
def visitStringFunctions(self, ctx: Parser.StringFunctionsContext):
|
|
179
|
+
return self.visitChildren(ctx)
|
|
180
|
+
|
|
181
|
+
# Visit a parse tree produced by Parser#numericFunctions.
|
|
182
|
+
def visitNumericFunctions(self, ctx: Parser.NumericFunctionsContext):
|
|
183
|
+
return self.visitChildren(ctx)
|
|
184
|
+
|
|
185
|
+
# Visit a parse tree produced by Parser#comparisonFunctions.
|
|
186
|
+
def visitComparisonFunctions(self, ctx: Parser.ComparisonFunctionsContext):
|
|
187
|
+
return self.visitChildren(ctx)
|
|
188
|
+
|
|
189
|
+
# Visit a parse tree produced by Parser#timeFunctions.
|
|
190
|
+
def visitTimeFunctions(self, ctx: Parser.TimeFunctionsContext):
|
|
191
|
+
return self.visitChildren(ctx)
|
|
192
|
+
|
|
193
|
+
# Visit a parse tree produced by Parser#setFunctions.
|
|
194
|
+
def visitSetFunctions(self, ctx: Parser.SetFunctionsContext):
|
|
195
|
+
return self.visitChildren(ctx)
|
|
196
|
+
|
|
197
|
+
# Visit a parse tree produced by Parser#hierarchyFunctions.
|
|
198
|
+
def visitHierarchyFunctions(self, ctx: Parser.HierarchyFunctionsContext):
|
|
199
|
+
return self.visitChildren(ctx)
|
|
200
|
+
|
|
201
|
+
# Visit a parse tree produced by Parser#validationFunctions.
|
|
202
|
+
def visitValidationFunctions(self, ctx: Parser.ValidationFunctionsContext):
|
|
203
|
+
return self.visitChildren(ctx)
|
|
204
|
+
|
|
205
|
+
# Visit a parse tree produced by Parser#conditionalFunctions.
|
|
206
|
+
def visitConditionalFunctions(self, ctx: Parser.ConditionalFunctionsContext):
|
|
207
|
+
return self.visitChildren(ctx)
|
|
208
|
+
|
|
209
|
+
# Visit a parse tree produced by Parser#aggregateFunctions.
|
|
210
|
+
def visitAggregateFunctions(self, ctx: Parser.AggregateFunctionsContext):
|
|
211
|
+
return self.visitChildren(ctx)
|
|
212
|
+
|
|
213
|
+
# Visit a parse tree produced by Parser#analyticFunctions.
|
|
214
|
+
def visitAnalyticFunctions(self, ctx: Parser.AnalyticFunctionsContext):
|
|
215
|
+
return self.visitChildren(ctx)
|
|
216
|
+
|
|
217
|
+
# Visit a parse tree produced by Parser#datasetClause.
|
|
218
|
+
def visitDatasetClause(self, ctx: Parser.DatasetClauseContext):
|
|
219
|
+
return self.visitChildren(ctx)
|
|
220
|
+
|
|
221
|
+
# Visit a parse tree produced by Parser#renameClause.
|
|
222
|
+
def visitRenameClause(self, ctx: Parser.RenameClauseContext):
|
|
223
|
+
return self.visitChildren(ctx)
|
|
224
|
+
|
|
225
|
+
# Visit a parse tree produced by Parser#aggrClause.
|
|
226
|
+
def visitAggrClause(self, ctx: Parser.AggrClauseContext):
|
|
227
|
+
return self.visitChildren(ctx)
|
|
228
|
+
|
|
229
|
+
# Visit a parse tree produced by Parser#filterClause.
|
|
230
|
+
def visitFilterClause(self, ctx: Parser.FilterClauseContext):
|
|
231
|
+
return self.visitChildren(ctx)
|
|
232
|
+
|
|
233
|
+
# Visit a parse tree produced by Parser#calcClause.
|
|
234
|
+
def visitCalcClause(self, ctx: Parser.CalcClauseContext):
|
|
235
|
+
return self.visitChildren(ctx)
|
|
236
|
+
|
|
237
|
+
# Visit a parse tree produced by Parser#keepOrDropClause.
|
|
238
|
+
def visitKeepOrDropClause(self, ctx: Parser.KeepOrDropClauseContext):
|
|
239
|
+
return self.visitChildren(ctx)
|
|
240
|
+
|
|
241
|
+
# Visit a parse tree produced by Parser#pivotOrUnpivotClause.
|
|
242
|
+
def visitPivotOrUnpivotClause(self, ctx: Parser.PivotOrUnpivotClauseContext):
|
|
243
|
+
return self.visitChildren(ctx)
|
|
244
|
+
|
|
245
|
+
# Visit a parse tree produced by Parser#subspaceClause.
|
|
246
|
+
def visitSubspaceClause(self, ctx: Parser.SubspaceClauseContext):
|
|
247
|
+
return self.visitChildren(ctx)
|
|
248
|
+
|
|
249
|
+
# Visit a parse tree produced by Parser#joinExpr.
|
|
250
|
+
def visitJoinExpr(self, ctx: Parser.JoinExprContext):
|
|
251
|
+
return self.visitChildren(ctx)
|
|
252
|
+
|
|
253
|
+
# Visit a parse tree produced by Parser#defOperator.
|
|
254
|
+
def visitDefOperator(self, ctx: Parser.DefOperatorContext):
|
|
255
|
+
return self.visitChildren(ctx)
|
|
256
|
+
|
|
257
|
+
# Visit a parse tree produced by Parser#defDatapointRuleset.
|
|
258
|
+
def visitDefDatapointRuleset(self, ctx: Parser.DefDatapointRulesetContext):
|
|
259
|
+
return self.visitChildren(ctx)
|
|
260
|
+
|
|
261
|
+
# Visit a parse tree produced by Parser#defHierarchical.
|
|
262
|
+
def visitDefHierarchical(self, ctx: Parser.DefHierarchicalContext):
|
|
263
|
+
return self.visitChildren(ctx)
|
|
264
|
+
|
|
265
|
+
# Visit a parse tree produced by Parser#callDataset.
|
|
266
|
+
def visitCallDataset(self, ctx: Parser.CallDatasetContext):
|
|
267
|
+
return self.visitChildren(ctx)
|
|
268
|
+
|
|
269
|
+
# Visit a parse tree produced by Parser#evalAtom.
|
|
270
|
+
def visitEvalAtom(self, ctx: Parser.EvalAtomContext):
|
|
271
|
+
return self.visitChildren(ctx)
|
|
272
|
+
|
|
273
|
+
# Visit a parse tree produced by Parser#castExprDataset.
|
|
274
|
+
def visitCastExprDataset(self, ctx: Parser.CastExprDatasetContext):
|
|
275
|
+
return self.visitChildren(ctx)
|
|
276
|
+
|
|
277
|
+
# Visit a parse tree produced by Parser#callComponent.
|
|
278
|
+
def visitCallComponent(self, ctx: Parser.CallComponentContext):
|
|
279
|
+
return self.visitChildren(ctx)
|
|
280
|
+
|
|
281
|
+
# Visit a parse tree produced by Parser#castExprComponent.
|
|
282
|
+
def visitCastExprComponent(self, ctx: Parser.CastExprComponentContext):
|
|
283
|
+
return self.visitChildren(ctx)
|
|
284
|
+
|
|
285
|
+
# Visit a parse tree produced by Parser#evalAtomComponent.
|
|
286
|
+
def visitEvalAtomComponent(self, ctx: Parser.EvalAtomComponentContext):
|
|
287
|
+
return self.visitChildren(ctx)
|
|
288
|
+
|
|
289
|
+
# Visit a parse tree produced by Parser#parameterComponent.
|
|
290
|
+
def visitParameterComponent(self, ctx: Parser.ParameterComponentContext):
|
|
291
|
+
return self.visitChildren(ctx)
|
|
292
|
+
|
|
293
|
+
# Visit a parse tree produced by Parser#parameter.
|
|
294
|
+
def visitParameter(self, ctx: Parser.ParameterContext):
|
|
295
|
+
return self.visitChildren(ctx)
|
|
296
|
+
|
|
297
|
+
# Visit a parse tree produced by Parser#unaryStringFunction.
|
|
298
|
+
def visitUnaryStringFunction(self, ctx: Parser.UnaryStringFunctionContext):
|
|
299
|
+
return self.visitChildren(ctx)
|
|
300
|
+
|
|
301
|
+
# Visit a parse tree produced by Parser#substrAtom.
|
|
302
|
+
def visitSubstrAtom(self, ctx: Parser.SubstrAtomContext):
|
|
303
|
+
return self.visitChildren(ctx)
|
|
304
|
+
|
|
305
|
+
# Visit a parse tree produced by Parser#replaceAtom.
|
|
306
|
+
def visitReplaceAtom(self, ctx: Parser.ReplaceAtomContext):
|
|
307
|
+
return self.visitChildren(ctx)
|
|
308
|
+
|
|
309
|
+
# Visit a parse tree produced by Parser#instrAtom.
|
|
310
|
+
def visitInstrAtom(self, ctx: Parser.InstrAtomContext):
|
|
311
|
+
return self.visitChildren(ctx)
|
|
312
|
+
|
|
313
|
+
# Visit a parse tree produced by Parser#unaryStringFunctionComponent.
|
|
314
|
+
def visitUnaryStringFunctionComponent(self, ctx: Parser.UnaryStringFunctionComponentContext):
|
|
315
|
+
return self.visitChildren(ctx)
|
|
316
|
+
|
|
317
|
+
# Visit a parse tree produced by Parser#substrAtomComponent.
|
|
318
|
+
def visitSubstrAtomComponent(self, ctx: Parser.SubstrAtomComponentContext):
|
|
319
|
+
return self.visitChildren(ctx)
|
|
320
|
+
|
|
321
|
+
# Visit a parse tree produced by Parser#replaceAtomComponent.
|
|
322
|
+
def visitReplaceAtomComponent(self, ctx: Parser.ReplaceAtomComponentContext):
|
|
323
|
+
return self.visitChildren(ctx)
|
|
324
|
+
|
|
325
|
+
# Visit a parse tree produced by Parser#instrAtomComponent.
|
|
326
|
+
def visitInstrAtomComponent(self, ctx: Parser.InstrAtomComponentContext):
|
|
327
|
+
return self.visitChildren(ctx)
|
|
328
|
+
|
|
329
|
+
# Visit a parse tree produced by Parser#unaryNumeric.
|
|
330
|
+
def visitUnaryNumeric(self, ctx: Parser.UnaryNumericContext):
|
|
331
|
+
return self.visitChildren(ctx)
|
|
332
|
+
|
|
333
|
+
# Visit a parse tree produced by Parser#unaryWithOptionalNumeric.
|
|
334
|
+
def visitUnaryWithOptionalNumeric(self, ctx: Parser.UnaryWithOptionalNumericContext):
|
|
335
|
+
return self.visitChildren(ctx)
|
|
336
|
+
|
|
337
|
+
# Visit a parse tree produced by Parser#binaryNumeric.
|
|
338
|
+
def visitBinaryNumeric(self, ctx: Parser.BinaryNumericContext):
|
|
339
|
+
return self.visitChildren(ctx)
|
|
340
|
+
|
|
341
|
+
# Visit a parse tree produced by Parser#unaryNumericComponent.
|
|
342
|
+
def visitUnaryNumericComponent(self, ctx: Parser.UnaryNumericComponentContext):
|
|
343
|
+
return self.visitChildren(ctx)
|
|
344
|
+
|
|
345
|
+
# Visit a parse tree produced by Parser#unaryWithOptionalNumericComponent.
|
|
346
|
+
def visitUnaryWithOptionalNumericComponent(
|
|
347
|
+
self, ctx: Parser.UnaryWithOptionalNumericComponentContext
|
|
348
|
+
):
|
|
349
|
+
return self.visitChildren(ctx)
|
|
350
|
+
|
|
351
|
+
# Visit a parse tree produced by Parser#binaryNumericComponent.
|
|
352
|
+
def visitBinaryNumericComponent(self, ctx: Parser.BinaryNumericComponentContext):
|
|
353
|
+
return self.visitChildren(ctx)
|
|
354
|
+
|
|
355
|
+
# Visit a parse tree produced by Parser#betweenAtom.
|
|
356
|
+
def visitBetweenAtom(self, ctx: Parser.BetweenAtomContext):
|
|
357
|
+
return self.visitChildren(ctx)
|
|
358
|
+
|
|
359
|
+
# Visit a parse tree produced by Parser#charsetMatchAtom.
|
|
360
|
+
def visitCharsetMatchAtom(self, ctx: Parser.CharsetMatchAtomContext):
|
|
361
|
+
return self.visitChildren(ctx)
|
|
362
|
+
|
|
363
|
+
# Visit a parse tree produced by Parser#isNullAtom.
|
|
364
|
+
def visitIsNullAtom(self, ctx: Parser.IsNullAtomContext):
|
|
365
|
+
return self.visitChildren(ctx)
|
|
366
|
+
|
|
367
|
+
# Visit a parse tree produced by Parser#existInAtom.
|
|
368
|
+
def visitExistInAtom(self, ctx: Parser.ExistInAtomContext):
|
|
369
|
+
return self.visitChildren(ctx)
|
|
370
|
+
|
|
371
|
+
# Visit a parse tree produced by Parser#betweenAtomComponent.
|
|
372
|
+
def visitBetweenAtomComponent(self, ctx: Parser.BetweenAtomComponentContext):
|
|
373
|
+
return self.visitChildren(ctx)
|
|
374
|
+
|
|
375
|
+
# Visit a parse tree produced by Parser#charsetMatchAtomComponent.
|
|
376
|
+
def visitCharsetMatchAtomComponent(self, ctx: Parser.CharsetMatchAtomComponentContext):
|
|
377
|
+
return self.visitChildren(ctx)
|
|
378
|
+
|
|
379
|
+
# Visit a parse tree produced by Parser#isNullAtomComponent.
|
|
380
|
+
def visitIsNullAtomComponent(self, ctx: Parser.IsNullAtomComponentContext):
|
|
381
|
+
return self.visitChildren(ctx)
|
|
382
|
+
|
|
383
|
+
# Visit a parse tree produced by Parser#periodAtom.
|
|
384
|
+
def visitPeriodAtom(self, ctx: Parser.PeriodAtomContext):
|
|
385
|
+
return self.visitChildren(ctx)
|
|
386
|
+
|
|
387
|
+
# Visit a parse tree produced by Parser#fillTimeAtom.
|
|
388
|
+
def visitFillTimeAtom(self, ctx: Parser.FillTimeAtomContext):
|
|
389
|
+
return self.visitChildren(ctx)
|
|
390
|
+
|
|
391
|
+
# Visit a parse tree produced by Parser#flowAtom.
|
|
392
|
+
def visitFlowAtom(self, ctx: Parser.FlowAtomContext):
|
|
393
|
+
return self.visitChildren(ctx)
|
|
394
|
+
|
|
395
|
+
# Visit a parse tree produced by Parser#timeShiftAtom.
|
|
396
|
+
def visitTimeShiftAtom(self, ctx: Parser.TimeShiftAtomContext):
|
|
397
|
+
return self.visitChildren(ctx)
|
|
398
|
+
|
|
399
|
+
# Visit a parse tree produced by Parser#timeAggAtom.
|
|
400
|
+
def visitTimeAggAtom(self, ctx: Parser.TimeAggAtomContext):
|
|
401
|
+
return self.visitChildren(ctx)
|
|
402
|
+
|
|
403
|
+
# Visit a parse tree produced by Parser#currentDateAtom.
|
|
404
|
+
def visitCurrentDateAtom(self, ctx: Parser.CurrentDateAtomContext):
|
|
405
|
+
return self.visitChildren(ctx)
|
|
406
|
+
|
|
407
|
+
# Visit a parse tree produced by Parser#periodAtomComponent.
|
|
408
|
+
def visitTimeUnaryAtomComponent(self, ctx: Parser.PeriodAtomComponentContext):
|
|
409
|
+
return self.visitChildren(ctx)
|
|
410
|
+
|
|
411
|
+
# Visit a parse tree produced by Parser#fillTimeAtomComponent.
|
|
412
|
+
def visitFillTimeAtomComponent(self, ctx: Parser.FillTimeAtomComponentContext):
|
|
413
|
+
return self.visitChildren(ctx)
|
|
414
|
+
|
|
415
|
+
# Visit a parse tree produced by Parser#flowAtomComponent.
|
|
416
|
+
def visitFlowAtomComponent(self, ctx: Parser.FlowAtomComponentContext):
|
|
417
|
+
return self.visitChildren(ctx)
|
|
418
|
+
|
|
419
|
+
# Visit a parse tree produced by Parser#timeShiftAtomComponent.
|
|
420
|
+
def visitTimeShiftAtomComponent(self, ctx: Parser.TimeShiftAtomComponentContext):
|
|
421
|
+
return self.visitChildren(ctx)
|
|
422
|
+
|
|
423
|
+
# Visit a parse tree produced by Parser#timeAggAtomComponent.
|
|
424
|
+
def visitTimeAggAtomComponent(self, ctx: Parser.TimeAggAtomComponentContext):
|
|
425
|
+
return self.visitChildren(ctx)
|
|
426
|
+
|
|
427
|
+
# Visit a parse tree produced by Parser#currentDateAtomComponent.
|
|
428
|
+
def visitCurrentDateAtomComponent(self, ctx: Parser.CurrentDateAtomComponentContext):
|
|
429
|
+
return self.visitChildren(ctx)
|
|
430
|
+
|
|
431
|
+
# Visit a parse tree produced by Parser#unionAtom.
|
|
432
|
+
def visitUnionAtom(self, ctx: Parser.UnionAtomContext):
|
|
433
|
+
return self.visitChildren(ctx)
|
|
434
|
+
|
|
435
|
+
# Visit a parse tree produced by Parser#intersectAtom.
|
|
436
|
+
def visitIntersectAtom(self, ctx: Parser.IntersectAtomContext):
|
|
437
|
+
return self.visitChildren(ctx)
|
|
438
|
+
|
|
439
|
+
# Visit a parse tree produced by Parser#setOrSYmDiffAtom.
|
|
440
|
+
def visitSetOrSYmDiffAtom(self, ctx: Parser.SetOrSYmDiffAtomContext):
|
|
441
|
+
return self.visitChildren(ctx)
|
|
442
|
+
|
|
443
|
+
# Visit a parse tree produced by Parser#hierarchyOperators.
|
|
444
|
+
def visitHierarchyOperators(self, ctx: Parser.HierarchyOperatorsContext):
|
|
445
|
+
return self.visitChildren(ctx)
|
|
446
|
+
|
|
447
|
+
# Visit a parse tree produced by Parser#validateDPruleset.
|
|
448
|
+
def visitValidateDPruleset(self, ctx: Parser.ValidateDPrulesetContext):
|
|
449
|
+
return self.visitChildren(ctx)
|
|
450
|
+
|
|
451
|
+
# Visit a parse tree produced by Parser#validateHRruleset.
|
|
452
|
+
def visitValidateHRruleset(self, ctx: Parser.ValidateHRrulesetContext):
|
|
453
|
+
return self.visitChildren(ctx)
|
|
454
|
+
|
|
455
|
+
# Visit a parse tree produced by Parser#validationSimple.
|
|
456
|
+
def visitValidationSimple(self, ctx: Parser.ValidationSimpleContext):
|
|
457
|
+
return self.visitChildren(ctx)
|
|
458
|
+
|
|
459
|
+
# Visit a parse tree produced by Parser#nvlAtom.
|
|
460
|
+
def visitNvlAtom(self, ctx: Parser.NvlAtomContext):
|
|
461
|
+
return self.visitChildren(ctx)
|
|
462
|
+
|
|
463
|
+
# Visit a parse tree produced by Parser#nvlAtomComponent.
|
|
464
|
+
def visitNvlAtomComponent(self, ctx: Parser.NvlAtomComponentContext):
|
|
465
|
+
return self.visitChildren(ctx)
|
|
466
|
+
|
|
467
|
+
# Visit a parse tree produced by Parser#aggrComp.
|
|
468
|
+
def visitAggrComp(self, ctx: Parser.AggrCompContext):
|
|
469
|
+
return self.visitChildren(ctx)
|
|
470
|
+
|
|
471
|
+
# Visit a parse tree produced by Parser#countAggrComp.
|
|
472
|
+
def visitCountAggrComp(self, ctx: Parser.CountAggrCompContext):
|
|
473
|
+
return self.visitChildren(ctx)
|
|
474
|
+
|
|
475
|
+
# Visit a parse tree produced by Parser#aggrDataset.
|
|
476
|
+
def visitAggrDataset(self, ctx: Parser.AggrDatasetContext):
|
|
477
|
+
return self.visitChildren(ctx)
|
|
478
|
+
|
|
479
|
+
# Visit a parse tree produced by Parser#anSimpleFunction.
|
|
480
|
+
def visitAnSimpleFunction(self, ctx: Parser.AnSimpleFunctionContext):
|
|
481
|
+
return self.visitChildren(ctx)
|
|
482
|
+
|
|
483
|
+
# Visit a parse tree produced by Parser#lagOrLeadAn.
|
|
484
|
+
def visitLagOrLeadAn(self, ctx: Parser.LagOrLeadAnContext):
|
|
485
|
+
return self.visitChildren(ctx)
|
|
486
|
+
|
|
487
|
+
# Visit a parse tree produced by Parser#ratioToReportAn.
|
|
488
|
+
def visitRatioToReportAn(self, ctx: Parser.RatioToReportAnContext):
|
|
489
|
+
return self.visitChildren(ctx)
|
|
490
|
+
|
|
491
|
+
# Visit a parse tree produced by Parser#anSimpleFunctionComponent.
|
|
492
|
+
def visitAnSimpleFunctionComponent(self, ctx: Parser.AnSimpleFunctionComponentContext):
|
|
493
|
+
return self.visitChildren(ctx)
|
|
494
|
+
|
|
495
|
+
# Visit a parse tree produced by Parser#lagOrLeadAnComponent.
|
|
496
|
+
def visitLagOrLeadAnComponent(self, ctx: Parser.LagOrLeadAnComponentContext):
|
|
497
|
+
return self.visitChildren(ctx)
|
|
498
|
+
|
|
499
|
+
# Visit a parse tree produced by Parser#rankAnComponent.
|
|
500
|
+
def visitRankAnComponent(self, ctx: Parser.RankAnComponentContext):
|
|
501
|
+
return self.visitChildren(ctx)
|
|
502
|
+
|
|
503
|
+
# Visit a parse tree produced by Parser#ratioToReportAnComponent.
|
|
504
|
+
def visitRatioToReportAnComponent(self, ctx: Parser.RatioToReportAnComponentContext):
|
|
505
|
+
return self.visitChildren(ctx)
|
|
506
|
+
|
|
507
|
+
# Visit a parse tree produced by Parser#renameClauseItem.
|
|
508
|
+
def visitRenameClauseItem(self, ctx: Parser.RenameClauseItemContext):
|
|
509
|
+
return self.visitChildren(ctx)
|
|
510
|
+
|
|
511
|
+
# Visit a parse tree produced by Parser#aggregateClause.
|
|
512
|
+
def visitAggregateClause(self, ctx: Parser.AggregateClauseContext):
|
|
513
|
+
return self.visitChildren(ctx)
|
|
514
|
+
|
|
515
|
+
# Visit a parse tree produced by Parser#aggrFunctionClause.
|
|
516
|
+
def visitAggrFunctionClause(self, ctx: Parser.AggrFunctionClauseContext):
|
|
517
|
+
return self.visitChildren(ctx)
|
|
518
|
+
|
|
519
|
+
# Visit a parse tree produced by Parser#calcClauseItem.
|
|
520
|
+
def visitCalcClauseItem(self, ctx: Parser.CalcClauseItemContext):
|
|
521
|
+
return self.visitChildren(ctx)
|
|
522
|
+
|
|
523
|
+
# Visit a parse tree produced by Parser#subspaceClauseItem.
|
|
524
|
+
def visitSubspaceClauseItem(self, ctx: Parser.SubspaceClauseItemContext):
|
|
525
|
+
return self.visitChildren(ctx)
|
|
526
|
+
|
|
527
|
+
# Visit a parse tree produced by Parser#simpleScalar.
|
|
528
|
+
def visitSimpleScalar(self, ctx: Parser.SimpleScalarContext):
|
|
529
|
+
return self.visitChildren(ctx)
|
|
530
|
+
|
|
531
|
+
# Visit a parse tree produced by Parser#scalarWithCast.
|
|
532
|
+
def visitScalarWithCast(self, ctx: Parser.ScalarWithCastContext):
|
|
533
|
+
return self.visitChildren(ctx)
|
|
534
|
+
|
|
535
|
+
# Visit a parse tree produced by Parser#joinClauseWithoutUsing.
|
|
536
|
+
def visitJoinClauseWithoutUsing(self, ctx: Parser.JoinClauseWithoutUsingContext):
|
|
537
|
+
return self.visitChildren(ctx)
|
|
538
|
+
|
|
539
|
+
# Visit a parse tree produced by Parser#joinClause.
|
|
540
|
+
def visitJoinClause(self, ctx: Parser.JoinClauseContext):
|
|
541
|
+
return self.visitChildren(ctx)
|
|
542
|
+
|
|
543
|
+
# Visit a parse tree produced by Parser#joinClauseItem.
|
|
544
|
+
def visitJoinClauseItem(self, ctx: Parser.JoinClauseItemContext):
|
|
545
|
+
return self.visitChildren(ctx)
|
|
546
|
+
|
|
547
|
+
# Visit a parse tree produced by Parser#joinBody.
|
|
548
|
+
def visitJoinBody(self, ctx: Parser.JoinBodyContext):
|
|
549
|
+
return self.visitChildren(ctx)
|
|
550
|
+
|
|
551
|
+
# Visit a parse tree produced by Parser#joinApplyClause.
|
|
552
|
+
def visitJoinApplyClause(self, ctx: Parser.JoinApplyClauseContext):
|
|
553
|
+
return self.visitChildren(ctx)
|
|
554
|
+
|
|
555
|
+
# Visit a parse tree produced by Parser#partitionByClause.
|
|
556
|
+
def visitPartitionByClause(self, ctx: Parser.PartitionByClauseContext):
|
|
557
|
+
return self.visitChildren(ctx)
|
|
558
|
+
|
|
559
|
+
# Visit a parse tree produced by Parser#orderByClause.
|
|
560
|
+
def visitOrderByClause(self, ctx: Parser.OrderByClauseContext):
|
|
561
|
+
return self.visitChildren(ctx)
|
|
562
|
+
|
|
563
|
+
# Visit a parse tree produced by Parser#orderByItem.
|
|
564
|
+
def visitOrderByItem(self, ctx: Parser.OrderByItemContext):
|
|
565
|
+
return self.visitChildren(ctx)
|
|
566
|
+
|
|
567
|
+
# Visit a parse tree produced by Parser#windowingClause.
|
|
568
|
+
def visitWindowingClause(self, ctx: Parser.WindowingClauseContext):
|
|
569
|
+
return self.visitChildren(ctx)
|
|
570
|
+
|
|
571
|
+
# Visit a parse tree produced by Parser#signedInteger.
|
|
572
|
+
def visitSignedInteger(self, ctx: Parser.SignedIntegerContext):
|
|
573
|
+
return self.visitChildren(ctx)
|
|
574
|
+
|
|
575
|
+
# Visit a parse tree produced by Parser#limitClauseItem.
|
|
576
|
+
def visitLimitClauseItem(self, ctx: Parser.LimitClauseItemContext):
|
|
577
|
+
return self.visitChildren(ctx)
|
|
578
|
+
|
|
579
|
+
# Visit a parse tree produced by Parser#groupByOrExcept.
|
|
580
|
+
def visitGroupByOrExcept(self, ctx: Parser.GroupByOrExceptContext):
|
|
581
|
+
return self.visitChildren(ctx)
|
|
582
|
+
|
|
583
|
+
# Visit a parse tree produced by Parser#groupAll.
|
|
584
|
+
def visitGroupAll(self, ctx: Parser.GroupAllContext):
|
|
585
|
+
return self.visitChildren(ctx)
|
|
586
|
+
|
|
587
|
+
# Visit a parse tree produced by Parser#havingClause.
|
|
588
|
+
def visitHavingClause(self, ctx: Parser.HavingClauseContext):
|
|
589
|
+
return self.visitChildren(ctx)
|
|
590
|
+
|
|
591
|
+
# Visit a parse tree produced by Parser#parameterItem.
|
|
592
|
+
def visitParameterItem(self, ctx: Parser.ParameterItemContext):
|
|
593
|
+
return self.visitChildren(ctx)
|
|
594
|
+
|
|
595
|
+
# Visit a parse tree produced by Parser#outputParameterType.
|
|
596
|
+
def visitOutputParameterType(self, ctx: Parser.OutputParameterTypeContext):
|
|
597
|
+
return self.visitChildren(ctx)
|
|
598
|
+
|
|
599
|
+
# Visit a parse tree produced by Parser#outputParameterTypeComponent.
|
|
600
|
+
def visitOutputParameterTypeComponent(self, ctx: Parser.OutputParameterTypeComponentContext):
|
|
601
|
+
return self.visitChildren(ctx)
|
|
602
|
+
|
|
603
|
+
# Visit a parse tree produced by Parser#inputParameterType.
|
|
604
|
+
def visitInputParameterType(self, ctx: Parser.InputParameterTypeContext):
|
|
605
|
+
return self.visitChildren(ctx)
|
|
606
|
+
|
|
607
|
+
# Visit a parse tree produced by Parser#rulesetType.
|
|
608
|
+
def visitRulesetType(self, ctx: Parser.RulesetTypeContext):
|
|
609
|
+
return self.visitChildren(ctx)
|
|
610
|
+
|
|
611
|
+
# Visit a parse tree produced by Parser#scalarType.
|
|
612
|
+
def visitScalarType(self, ctx: Parser.ScalarTypeContext):
|
|
613
|
+
return self.visitChildren(ctx)
|
|
614
|
+
|
|
615
|
+
# Visit a parse tree produced by Parser#componentType.
|
|
616
|
+
def visitComponentType(self, ctx: Parser.ComponentTypeContext):
|
|
617
|
+
return self.visitChildren(ctx)
|
|
618
|
+
|
|
619
|
+
# Visit a parse tree produced by Parser#datasetType.
|
|
620
|
+
def visitDatasetType(self, ctx: Parser.DatasetTypeContext):
|
|
621
|
+
return self.visitChildren(ctx)
|
|
622
|
+
|
|
623
|
+
# Visit a parse tree produced by Parser#evalDatasetType.
|
|
624
|
+
def visitEvalDatasetType(self, ctx: Parser.EvalDatasetTypeContext):
|
|
625
|
+
return self.visitChildren(ctx)
|
|
626
|
+
|
|
627
|
+
# Visit a parse tree produced by Parser#scalarSetType.
|
|
628
|
+
def visitScalarSetType(self, ctx: Parser.ScalarSetTypeContext):
|
|
629
|
+
return self.visitChildren(ctx)
|
|
630
|
+
|
|
631
|
+
# Visit a parse tree produced by Parser#dataPoint.
|
|
632
|
+
def visitDataPoint(self, ctx: Parser.DataPointContext):
|
|
633
|
+
return self.visitChildren(ctx)
|
|
634
|
+
|
|
635
|
+
# Visit a parse tree produced by Parser#dataPointVd.
|
|
636
|
+
def visitDataPointVd(self, ctx: Parser.DataPointVdContext):
|
|
637
|
+
return self.visitChildren(ctx)
|
|
638
|
+
|
|
639
|
+
# Visit a parse tree produced by Parser#dataPointVar.
|
|
640
|
+
def visitDataPointVar(self, ctx: Parser.DataPointVarContext):
|
|
641
|
+
return self.visitChildren(ctx)
|
|
642
|
+
|
|
643
|
+
# Visit a parse tree produced by Parser#hrRulesetType.
|
|
644
|
+
def visitHrRulesetType(self, ctx: Parser.HrRulesetTypeContext):
|
|
645
|
+
return self.visitChildren(ctx)
|
|
646
|
+
|
|
647
|
+
# Visit a parse tree produced by Parser#hrRulesetVdType.
|
|
648
|
+
def visitHrRulesetVdType(self, ctx: Parser.HrRulesetVdTypeContext):
|
|
649
|
+
return self.visitChildren(ctx)
|
|
650
|
+
|
|
651
|
+
# Visit a parse tree produced by Parser#hrRulesetVarType.
|
|
652
|
+
def visitHrRulesetVarType(self, ctx: Parser.HrRulesetVarTypeContext):
|
|
653
|
+
return self.visitChildren(ctx)
|
|
654
|
+
|
|
655
|
+
# Visit a parse tree produced by Parser#valueDomainName.
|
|
656
|
+
def visitValueDomainName(self, ctx: Parser.ValueDomainNameContext):
|
|
657
|
+
return self.visitChildren(ctx)
|
|
658
|
+
|
|
659
|
+
# Visit a parse tree produced by Parser#rulesetID.
|
|
660
|
+
def visitRulesetID(self, ctx: Parser.RulesetIDContext):
|
|
661
|
+
return self.visitChildren(ctx)
|
|
662
|
+
|
|
663
|
+
# Visit a parse tree produced by Parser#rulesetSignature.
|
|
664
|
+
def visitRulesetSignature(self, ctx: Parser.RulesetSignatureContext):
|
|
665
|
+
return self.visitChildren(ctx)
|
|
666
|
+
|
|
667
|
+
# Visit a parse tree produced by Parser#signature.
|
|
668
|
+
def visitSignature(self, ctx: Parser.SignatureContext):
|
|
669
|
+
return self.visitChildren(ctx)
|
|
670
|
+
|
|
671
|
+
# Visit a parse tree produced by Parser#ruleClauseDatapoint.
|
|
672
|
+
def visitRuleClauseDatapoint(self, ctx: Parser.RuleClauseDatapointContext):
|
|
673
|
+
return self.visitChildren(ctx)
|
|
674
|
+
|
|
675
|
+
# Visit a parse tree produced by Parser#ruleItemDatapoint.
|
|
676
|
+
def visitRuleItemDatapoint(self, ctx: Parser.RuleItemDatapointContext):
|
|
677
|
+
return self.visitChildren(ctx)
|
|
678
|
+
|
|
679
|
+
# Visit a parse tree produced by Parser#ruleClauseHierarchical.
|
|
680
|
+
def visitRuleClauseHierarchical(self, ctx: Parser.RuleClauseHierarchicalContext):
|
|
681
|
+
return self.visitChildren(ctx)
|
|
682
|
+
|
|
683
|
+
# Visit a parse tree produced by Parser#ruleItemHierarchical.
|
|
684
|
+
def visitRuleItemHierarchical(self, ctx: Parser.RuleItemHierarchicalContext):
|
|
685
|
+
return self.visitChildren(ctx)
|
|
686
|
+
|
|
687
|
+
# Visit a parse tree produced by Parser#hierRuleSignature.
|
|
688
|
+
def visitHierRuleSignature(self, ctx: Parser.HierRuleSignatureContext):
|
|
689
|
+
return self.visitChildren(ctx)
|
|
690
|
+
|
|
691
|
+
# Visit a parse tree produced by Parser#valueDomainSignature.
|
|
692
|
+
def visitValueDomainSignature(self, ctx: Parser.ValueDomainSignatureContext):
|
|
693
|
+
return self.visitChildren(ctx)
|
|
694
|
+
|
|
695
|
+
# Visit a parse tree produced by Parser#codeItemRelation.
|
|
696
|
+
def visitCodeItemRelation(self, ctx: Parser.CodeItemRelationContext):
|
|
697
|
+
return self.visitChildren(ctx)
|
|
698
|
+
|
|
699
|
+
# Visit a parse tree produced by Parser#codeItemRelationClause.
|
|
700
|
+
def visitCodeItemRelationClause(self, ctx: Parser.CodeItemRelationClauseContext):
|
|
701
|
+
return self.visitChildren(ctx)
|
|
702
|
+
|
|
703
|
+
# Visit a parse tree produced by Parser#valueDomainValue.
|
|
704
|
+
def visitValueDomainValue(self, ctx: Parser.ValueDomainValueContext):
|
|
705
|
+
return self.visitChildren(ctx)
|
|
706
|
+
|
|
707
|
+
# Visit a parse tree produced by Parser#conditionConstraint.
|
|
708
|
+
def visitConditionConstraint(self, ctx: Parser.ConditionConstraintContext):
|
|
709
|
+
return self.visitChildren(ctx)
|
|
710
|
+
|
|
711
|
+
# Visit a parse tree produced by Parser#rangeConstraint.
|
|
712
|
+
def visitRangeConstraint(self, ctx: Parser.RangeConstraintContext):
|
|
713
|
+
return self.visitChildren(ctx)
|
|
714
|
+
|
|
715
|
+
# Visit a parse tree produced by Parser#compConstraint.
|
|
716
|
+
def visitCompConstraint(self, ctx: Parser.CompConstraintContext):
|
|
717
|
+
return self.visitChildren(ctx)
|
|
718
|
+
|
|
719
|
+
# Visit a parse tree produced by Parser#multModifier.
|
|
720
|
+
def visitMultModifier(self, ctx: Parser.MultModifierContext):
|
|
721
|
+
return self.visitChildren(ctx)
|
|
722
|
+
|
|
723
|
+
# Visit a parse tree produced by Parser#validationOutput.
|
|
724
|
+
def visitValidationOutput(self, ctx: Parser.ValidationOutputContext):
|
|
725
|
+
return self.visitChildren(ctx)
|
|
726
|
+
|
|
727
|
+
# Visit a parse tree produced by Parser#validationMode.
|
|
728
|
+
def visitValidationMode(self, ctx: Parser.ValidationModeContext):
|
|
729
|
+
return self.visitChildren(ctx)
|
|
730
|
+
|
|
731
|
+
# Visit a parse tree produced by Parser#conditionClause.
|
|
732
|
+
def visitConditionClause(self, ctx: Parser.ConditionClauseContext):
|
|
733
|
+
return self.visitChildren(ctx)
|
|
734
|
+
|
|
735
|
+
# Visit a parse tree produced by Parser#inputMode.
|
|
736
|
+
def visitInputMode(self, ctx: Parser.InputModeContext):
|
|
737
|
+
return self.visitChildren(ctx)
|
|
738
|
+
|
|
739
|
+
# Visit a parse tree produced by Parser#imbalanceExpr.
|
|
740
|
+
def visitImbalanceExpr(self, ctx: Parser.ImbalanceExprContext):
|
|
741
|
+
return self.visitChildren(ctx)
|
|
742
|
+
|
|
743
|
+
# Visit a parse tree produced by Parser#inputModeHierarchy.
|
|
744
|
+
def visitInputModeHierarchy(self, ctx: Parser.InputModeHierarchyContext):
|
|
745
|
+
return self.visitChildren(ctx)
|
|
746
|
+
|
|
747
|
+
# Visit a parse tree produced by Parser#outputModeHierarchy.
|
|
748
|
+
def visitOutputModeHierarchy(self, ctx: Parser.OutputModeHierarchyContext):
|
|
749
|
+
return self.visitChildren(ctx)
|
|
750
|
+
|
|
751
|
+
# Visit a parse tree produced by Parser#alias.
|
|
752
|
+
def visitAlias(self, ctx: Parser.AliasContext):
|
|
753
|
+
return self.visitChildren(ctx)
|
|
754
|
+
|
|
755
|
+
# Visit a parse tree produced by Parser#varID.
|
|
756
|
+
def visitVarID(self, ctx: Parser.VarIDContext):
|
|
757
|
+
return self.visitChildren(ctx)
|
|
758
|
+
|
|
759
|
+
# Visit a parse tree produced by Parser#simpleComponentId.
|
|
760
|
+
def visitSimpleComponentId(self, ctx: Parser.SimpleComponentIdContext):
|
|
761
|
+
return self.visitChildren(ctx)
|
|
762
|
+
|
|
763
|
+
# Visit a parse tree produced by Parser#componentID.
|
|
764
|
+
def visitComponentID(self, ctx: Parser.ComponentIDContext):
|
|
765
|
+
return self.visitChildren(ctx)
|
|
766
|
+
|
|
767
|
+
# Visit a parse tree produced by Parser#lists.
|
|
768
|
+
def visitLists(self, ctx: Parser.ListsContext):
|
|
769
|
+
return self.visitChildren(ctx)
|
|
770
|
+
|
|
771
|
+
# Visit a parse tree produced by Parser#erCode.
|
|
772
|
+
def visitErCode(self, ctx: Parser.ErCodeContext):
|
|
773
|
+
return self.visitChildren(ctx)
|
|
774
|
+
|
|
775
|
+
# Visit a parse tree produced by Parser#erLevel.
|
|
776
|
+
def visitErLevel(self, ctx: Parser.ErLevelContext):
|
|
777
|
+
return self.visitChildren(ctx)
|
|
778
|
+
|
|
779
|
+
# Visit a parse tree produced by Parser#comparisonOperand.
|
|
780
|
+
def visitComparisonOperand(self, ctx: Parser.ComparisonOperandContext):
|
|
781
|
+
return self.visitChildren(ctx)
|
|
782
|
+
|
|
783
|
+
# Visit a parse tree produced by Parser#optionalExpr.
|
|
784
|
+
def visitOptionalExpr(self, ctx: Parser.OptionalExprContext):
|
|
785
|
+
return self.visitChildren(ctx)
|
|
786
|
+
|
|
787
|
+
# Visit a parse tree produced by Parser#optionalExprComponent.
|
|
788
|
+
def visitOptionalExprComponent(self, ctx: Parser.OptionalExprComponentContext):
|
|
789
|
+
return self.visitChildren(ctx)
|
|
790
|
+
|
|
791
|
+
# Visit a parse tree produced by Parser#componentRole.
|
|
792
|
+
def visitComponentRole(self, ctx: Parser.ComponentRoleContext):
|
|
793
|
+
return self.visitChildren(ctx)
|
|
794
|
+
|
|
795
|
+
# Visit a parse tree produced by Parser#viralAttribute.
|
|
796
|
+
def visitViralAttribute(self, ctx: Parser.ViralAttributeContext):
|
|
797
|
+
return self.visitChildren(ctx)
|
|
798
|
+
|
|
799
|
+
# Visit a parse tree produced by Parser#valueDomainID.
|
|
800
|
+
def visitValueDomainID(self, ctx: Parser.ValueDomainIDContext):
|
|
801
|
+
return self.visitChildren(ctx)
|
|
802
|
+
|
|
803
|
+
# Visit a parse tree produced by Parser#operatorID.
|
|
804
|
+
def visitOperatorID(self, ctx: Parser.OperatorIDContext):
|
|
805
|
+
return self.visitChildren(ctx)
|
|
806
|
+
|
|
807
|
+
# Visit a parse tree produced by Parser#routineName.
|
|
808
|
+
def visitRoutineName(self, ctx: Parser.RoutineNameContext):
|
|
809
|
+
return self.visitChildren(ctx)
|
|
810
|
+
|
|
811
|
+
# Visit a parse tree produced by Parser#constant.
|
|
812
|
+
def visitConstant(self, ctx: Parser.ConstantContext):
|
|
813
|
+
return self.visitChildren(ctx)
|
|
814
|
+
|
|
815
|
+
# Visit a parse tree produced by Parser#basicScalarType.
|
|
816
|
+
def visitBasicScalarType(self, ctx: Parser.BasicScalarTypeContext):
|
|
817
|
+
return self.visitChildren(ctx)
|
|
818
|
+
|
|
819
|
+
# Visit a parse tree produced by Parser#retainType.
|
|
820
|
+
def visitRetainType(self, ctx: Parser.RetainTypeContext):
|
|
821
|
+
return self.visitChildren(ctx)
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
del Parser
|