pydpm_xl 0.1.10__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.
- py_dpm/AST/ASTConstructor.py +503 -0
- py_dpm/AST/ASTObjects.py +827 -0
- py_dpm/AST/ASTTemplate.py +101 -0
- py_dpm/AST/ASTVisitor.py +13 -0
- py_dpm/AST/MLGeneration.py +588 -0
- py_dpm/AST/ModuleAnalyzer.py +79 -0
- py_dpm/AST/ModuleDependencies.py +203 -0
- py_dpm/AST/WhereClauseChecker.py +12 -0
- py_dpm/AST/__init__.py +0 -0
- py_dpm/AST/check_operands.py +302 -0
- py_dpm/DataTypes/ScalarTypes.py +324 -0
- py_dpm/DataTypes/TimeClasses.py +370 -0
- py_dpm/DataTypes/TypePromotion.py +195 -0
- py_dpm/DataTypes/__init__.py +0 -0
- py_dpm/Exceptions/__init__.py +0 -0
- py_dpm/Exceptions/exceptions.py +84 -0
- py_dpm/Exceptions/messages.py +114 -0
- py_dpm/OperationScopes/OperationScopeService.py +247 -0
- py_dpm/OperationScopes/__init__.py +0 -0
- py_dpm/Operators/AggregateOperators.py +138 -0
- py_dpm/Operators/BooleanOperators.py +30 -0
- py_dpm/Operators/ClauseOperators.py +159 -0
- py_dpm/Operators/ComparisonOperators.py +69 -0
- py_dpm/Operators/ConditionalOperators.py +362 -0
- py_dpm/Operators/NumericOperators.py +101 -0
- py_dpm/Operators/Operator.py +388 -0
- py_dpm/Operators/StringOperators.py +27 -0
- py_dpm/Operators/TimeOperators.py +53 -0
- py_dpm/Operators/__init__.py +0 -0
- py_dpm/Utils/ValidationsGenerationUtils.py +429 -0
- py_dpm/Utils/__init__.py +0 -0
- py_dpm/Utils/operands_mapping.py +73 -0
- py_dpm/Utils/operator_mapping.py +89 -0
- py_dpm/Utils/tokens.py +172 -0
- py_dpm/Utils/utils.py +2 -0
- py_dpm/ValidationsGeneration/PropertiesConstraintsProcessor.py +190 -0
- py_dpm/ValidationsGeneration/Utils.py +364 -0
- py_dpm/ValidationsGeneration/VariantsProcessor.py +265 -0
- py_dpm/ValidationsGeneration/__init__.py +0 -0
- py_dpm/ValidationsGeneration/auxiliary_functions.py +98 -0
- py_dpm/__init__.py +61 -0
- py_dpm/api/__init__.py +140 -0
- py_dpm/api/ast_generator.py +438 -0
- py_dpm/api/complete_ast.py +241 -0
- py_dpm/api/data_dictionary_validation.py +577 -0
- py_dpm/api/migration.py +77 -0
- py_dpm/api/semantic.py +224 -0
- py_dpm/api/syntax.py +182 -0
- py_dpm/client.py +106 -0
- py_dpm/data_handlers.py +99 -0
- py_dpm/db_utils.py +117 -0
- py_dpm/grammar/__init__.py +0 -0
- py_dpm/grammar/dist/__init__.py +0 -0
- py_dpm/grammar/dist/dpm_xlLexer.interp +428 -0
- py_dpm/grammar/dist/dpm_xlLexer.py +804 -0
- py_dpm/grammar/dist/dpm_xlLexer.tokens +106 -0
- py_dpm/grammar/dist/dpm_xlParser.interp +249 -0
- py_dpm/grammar/dist/dpm_xlParser.py +5224 -0
- py_dpm/grammar/dist/dpm_xlParser.tokens +106 -0
- py_dpm/grammar/dist/dpm_xlParserListener.py +742 -0
- py_dpm/grammar/dist/dpm_xlParserVisitor.py +419 -0
- py_dpm/grammar/dist/listeners.py +10 -0
- py_dpm/grammar/dpm_xlLexer.g4 +435 -0
- py_dpm/grammar/dpm_xlParser.g4 +260 -0
- py_dpm/migration.py +282 -0
- py_dpm/models.py +2139 -0
- py_dpm/semantics/DAG/DAGAnalyzer.py +158 -0
- py_dpm/semantics/DAG/__init__.py +0 -0
- py_dpm/semantics/SemanticAnalyzer.py +320 -0
- py_dpm/semantics/Symbols.py +223 -0
- py_dpm/semantics/__init__.py +0 -0
- py_dpm/utils/__init__.py +0 -0
- py_dpm/utils/ast_serialization.py +481 -0
- py_dpm/views/data_types.sql +12 -0
- py_dpm/views/datapoints.sql +65 -0
- py_dpm/views/hierarchy_operand_reference.sql +11 -0
- py_dpm/views/hierarchy_preconditions.sql +13 -0
- py_dpm/views/hierarchy_variables.sql +26 -0
- py_dpm/views/hierarchy_variables_context.sql +14 -0
- py_dpm/views/key_components.sql +18 -0
- py_dpm/views/module_from_table.sql +11 -0
- py_dpm/views/open_keys.sql +13 -0
- py_dpm/views/operation_info.sql +27 -0
- py_dpm/views/operation_list.sql +18 -0
- py_dpm/views/operations_versions_from_module_version.sql +30 -0
- py_dpm/views/precondition_info.sql +17 -0
- py_dpm/views/report_type_operand_reference_info.sql +18 -0
- py_dpm/views/subcategory_info.sql +17 -0
- py_dpm/views/table_info.sql +19 -0
- pydpm_xl-0.1.10.dist-info/LICENSE +674 -0
- pydpm_xl-0.1.10.dist-info/METADATA +50 -0
- pydpm_xl-0.1.10.dist-info/RECORD +94 -0
- pydpm_xl-0.1.10.dist-info/WHEEL +4 -0
- pydpm_xl-0.1.10.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,742 @@
|
|
|
1
|
+
# Generated from C:/Users/Javier/Documents/MeaningfulData/Programacion/operations/py_dpm/grammar/dpm_xlParser.g4 by ANTLR 4.13.1
|
|
2
|
+
from antlr4 import *
|
|
3
|
+
|
|
4
|
+
if "." in __name__:
|
|
5
|
+
from .dpm_xlParser import dpm_xlParser
|
|
6
|
+
else:
|
|
7
|
+
from dpm_xlParser import dpm_xlParser
|
|
8
|
+
|
|
9
|
+
# This class defines a complete listener for a parse tree produced by dpm_xlParser.
|
|
10
|
+
class dpm_xlParserListener(ParseTreeListener):
|
|
11
|
+
|
|
12
|
+
# Enter a parse tree produced by dpm_xlParser#start.
|
|
13
|
+
def enterStart(self, ctx:dpm_xlParser.StartContext):
|
|
14
|
+
pass
|
|
15
|
+
|
|
16
|
+
# Exit a parse tree produced by dpm_xlParser#start.
|
|
17
|
+
def exitStart(self, ctx:dpm_xlParser.StartContext):
|
|
18
|
+
pass
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# Enter a parse tree produced by dpm_xlParser#statements.
|
|
22
|
+
def enterStatements(self, ctx:dpm_xlParser.StatementsContext):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
# Exit a parse tree produced by dpm_xlParser#statements.
|
|
26
|
+
def exitStatements(self, ctx:dpm_xlParser.StatementsContext):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# Enter a parse tree produced by dpm_xlParser#exprWithoutAssignment.
|
|
31
|
+
def enterExprWithoutAssignment(self, ctx:dpm_xlParser.ExprWithoutAssignmentContext):
|
|
32
|
+
pass
|
|
33
|
+
|
|
34
|
+
# Exit a parse tree produced by dpm_xlParser#exprWithoutAssignment.
|
|
35
|
+
def exitExprWithoutAssignment(self, ctx:dpm_xlParser.ExprWithoutAssignmentContext):
|
|
36
|
+
pass
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
# Enter a parse tree produced by dpm_xlParser#assignmentExpr.
|
|
40
|
+
def enterAssignmentExpr(self, ctx:dpm_xlParser.AssignmentExprContext):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
# Exit a parse tree produced by dpm_xlParser#assignmentExpr.
|
|
44
|
+
def exitAssignmentExpr(self, ctx:dpm_xlParser.AssignmentExprContext):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
# Enter a parse tree produced by dpm_xlParser#persistentExpression.
|
|
49
|
+
def enterPersistentExpression(self, ctx:dpm_xlParser.PersistentExpressionContext):
|
|
50
|
+
pass
|
|
51
|
+
|
|
52
|
+
# Exit a parse tree produced by dpm_xlParser#persistentExpression.
|
|
53
|
+
def exitPersistentExpression(self, ctx:dpm_xlParser.PersistentExpressionContext):
|
|
54
|
+
pass
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
# Enter a parse tree produced by dpm_xlParser#exprWithoutPartialSelection.
|
|
58
|
+
def enterExprWithoutPartialSelection(self, ctx:dpm_xlParser.ExprWithoutPartialSelectionContext):
|
|
59
|
+
pass
|
|
60
|
+
|
|
61
|
+
# Exit a parse tree produced by dpm_xlParser#exprWithoutPartialSelection.
|
|
62
|
+
def exitExprWithoutPartialSelection(self, ctx:dpm_xlParser.ExprWithoutPartialSelectionContext):
|
|
63
|
+
pass
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
# Enter a parse tree produced by dpm_xlParser#exprWithSelection.
|
|
67
|
+
def enterExprWithSelection(self, ctx:dpm_xlParser.ExprWithSelectionContext):
|
|
68
|
+
pass
|
|
69
|
+
|
|
70
|
+
# Exit a parse tree produced by dpm_xlParser#exprWithSelection.
|
|
71
|
+
def exitExprWithSelection(self, ctx:dpm_xlParser.ExprWithSelectionContext):
|
|
72
|
+
pass
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
# Enter a parse tree produced by dpm_xlParser#partialSelect.
|
|
76
|
+
def enterPartialSelect(self, ctx:dpm_xlParser.PartialSelectContext):
|
|
77
|
+
pass
|
|
78
|
+
|
|
79
|
+
# Exit a parse tree produced by dpm_xlParser#partialSelect.
|
|
80
|
+
def exitPartialSelect(self, ctx:dpm_xlParser.PartialSelectContext):
|
|
81
|
+
pass
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
# Enter a parse tree produced by dpm_xlParser#temporaryAssignmentExpression.
|
|
85
|
+
def enterTemporaryAssignmentExpression(self, ctx:dpm_xlParser.TemporaryAssignmentExpressionContext):
|
|
86
|
+
pass
|
|
87
|
+
|
|
88
|
+
# Exit a parse tree produced by dpm_xlParser#temporaryAssignmentExpression.
|
|
89
|
+
def exitTemporaryAssignmentExpression(self, ctx:dpm_xlParser.TemporaryAssignmentExpressionContext):
|
|
90
|
+
pass
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
# Enter a parse tree produced by dpm_xlParser#persistentAssignmentExpression.
|
|
94
|
+
def enterPersistentAssignmentExpression(self, ctx:dpm_xlParser.PersistentAssignmentExpressionContext):
|
|
95
|
+
pass
|
|
96
|
+
|
|
97
|
+
# Exit a parse tree produced by dpm_xlParser#persistentAssignmentExpression.
|
|
98
|
+
def exitPersistentAssignmentExpression(self, ctx:dpm_xlParser.PersistentAssignmentExpressionContext):
|
|
99
|
+
pass
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
# Enter a parse tree produced by dpm_xlParser#funcExpr.
|
|
103
|
+
def enterFuncExpr(self, ctx:dpm_xlParser.FuncExprContext):
|
|
104
|
+
pass
|
|
105
|
+
|
|
106
|
+
# Exit a parse tree produced by dpm_xlParser#funcExpr.
|
|
107
|
+
def exitFuncExpr(self, ctx:dpm_xlParser.FuncExprContext):
|
|
108
|
+
pass
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
# Enter a parse tree produced by dpm_xlParser#itemReferenceExpr.
|
|
112
|
+
def enterItemReferenceExpr(self, ctx:dpm_xlParser.ItemReferenceExprContext):
|
|
113
|
+
pass
|
|
114
|
+
|
|
115
|
+
# Exit a parse tree produced by dpm_xlParser#itemReferenceExpr.
|
|
116
|
+
def exitItemReferenceExpr(self, ctx:dpm_xlParser.ItemReferenceExprContext):
|
|
117
|
+
pass
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
# Enter a parse tree produced by dpm_xlParser#propertyReferenceExpr.
|
|
121
|
+
def enterPropertyReferenceExpr(self, ctx:dpm_xlParser.PropertyReferenceExprContext):
|
|
122
|
+
pass
|
|
123
|
+
|
|
124
|
+
# Exit a parse tree produced by dpm_xlParser#propertyReferenceExpr.
|
|
125
|
+
def exitPropertyReferenceExpr(self, ctx:dpm_xlParser.PropertyReferenceExprContext):
|
|
126
|
+
pass
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
# Enter a parse tree produced by dpm_xlParser#inExpr.
|
|
130
|
+
def enterInExpr(self, ctx:dpm_xlParser.InExprContext):
|
|
131
|
+
pass
|
|
132
|
+
|
|
133
|
+
# Exit a parse tree produced by dpm_xlParser#inExpr.
|
|
134
|
+
def exitInExpr(self, ctx:dpm_xlParser.InExprContext):
|
|
135
|
+
pass
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
# Enter a parse tree produced by dpm_xlParser#keyNamesExpr.
|
|
139
|
+
def enterKeyNamesExpr(self, ctx:dpm_xlParser.KeyNamesExprContext):
|
|
140
|
+
pass
|
|
141
|
+
|
|
142
|
+
# Exit a parse tree produced by dpm_xlParser#keyNamesExpr.
|
|
143
|
+
def exitKeyNamesExpr(self, ctx:dpm_xlParser.KeyNamesExprContext):
|
|
144
|
+
pass
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
# Enter a parse tree produced by dpm_xlParser#concatExpr.
|
|
148
|
+
def enterConcatExpr(self, ctx:dpm_xlParser.ConcatExprContext):
|
|
149
|
+
pass
|
|
150
|
+
|
|
151
|
+
# Exit a parse tree produced by dpm_xlParser#concatExpr.
|
|
152
|
+
def exitConcatExpr(self, ctx:dpm_xlParser.ConcatExprContext):
|
|
153
|
+
pass
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
# Enter a parse tree produced by dpm_xlParser#parExpr.
|
|
157
|
+
def enterParExpr(self, ctx:dpm_xlParser.ParExprContext):
|
|
158
|
+
pass
|
|
159
|
+
|
|
160
|
+
# Exit a parse tree produced by dpm_xlParser#parExpr.
|
|
161
|
+
def exitParExpr(self, ctx:dpm_xlParser.ParExprContext):
|
|
162
|
+
pass
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
# Enter a parse tree produced by dpm_xlParser#unaryExpr.
|
|
166
|
+
def enterUnaryExpr(self, ctx:dpm_xlParser.UnaryExprContext):
|
|
167
|
+
pass
|
|
168
|
+
|
|
169
|
+
# Exit a parse tree produced by dpm_xlParser#unaryExpr.
|
|
170
|
+
def exitUnaryExpr(self, ctx:dpm_xlParser.UnaryExprContext):
|
|
171
|
+
pass
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
# Enter a parse tree produced by dpm_xlParser#notExpr.
|
|
175
|
+
def enterNotExpr(self, ctx:dpm_xlParser.NotExprContext):
|
|
176
|
+
pass
|
|
177
|
+
|
|
178
|
+
# Exit a parse tree produced by dpm_xlParser#notExpr.
|
|
179
|
+
def exitNotExpr(self, ctx:dpm_xlParser.NotExprContext):
|
|
180
|
+
pass
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
# Enter a parse tree produced by dpm_xlParser#selectExpr.
|
|
184
|
+
def enterSelectExpr(self, ctx:dpm_xlParser.SelectExprContext):
|
|
185
|
+
pass
|
|
186
|
+
|
|
187
|
+
# Exit a parse tree produced by dpm_xlParser#selectExpr.
|
|
188
|
+
def exitSelectExpr(self, ctx:dpm_xlParser.SelectExprContext):
|
|
189
|
+
pass
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
# Enter a parse tree produced by dpm_xlParser#numericExpr.
|
|
193
|
+
def enterNumericExpr(self, ctx:dpm_xlParser.NumericExprContext):
|
|
194
|
+
pass
|
|
195
|
+
|
|
196
|
+
# Exit a parse tree produced by dpm_xlParser#numericExpr.
|
|
197
|
+
def exitNumericExpr(self, ctx:dpm_xlParser.NumericExprContext):
|
|
198
|
+
pass
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
# Enter a parse tree produced by dpm_xlParser#literalExpr.
|
|
202
|
+
def enterLiteralExpr(self, ctx:dpm_xlParser.LiteralExprContext):
|
|
203
|
+
pass
|
|
204
|
+
|
|
205
|
+
# Exit a parse tree produced by dpm_xlParser#literalExpr.
|
|
206
|
+
def exitLiteralExpr(self, ctx:dpm_xlParser.LiteralExprContext):
|
|
207
|
+
pass
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
# Enter a parse tree produced by dpm_xlParser#compExpr.
|
|
211
|
+
def enterCompExpr(self, ctx:dpm_xlParser.CompExprContext):
|
|
212
|
+
pass
|
|
213
|
+
|
|
214
|
+
# Exit a parse tree produced by dpm_xlParser#compExpr.
|
|
215
|
+
def exitCompExpr(self, ctx:dpm_xlParser.CompExprContext):
|
|
216
|
+
pass
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
# Enter a parse tree produced by dpm_xlParser#ifExpr.
|
|
220
|
+
def enterIfExpr(self, ctx:dpm_xlParser.IfExprContext):
|
|
221
|
+
pass
|
|
222
|
+
|
|
223
|
+
# Exit a parse tree produced by dpm_xlParser#ifExpr.
|
|
224
|
+
def exitIfExpr(self, ctx:dpm_xlParser.IfExprContext):
|
|
225
|
+
pass
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
# Enter a parse tree produced by dpm_xlParser#clauseExpr.
|
|
229
|
+
def enterClauseExpr(self, ctx:dpm_xlParser.ClauseExprContext):
|
|
230
|
+
pass
|
|
231
|
+
|
|
232
|
+
# Exit a parse tree produced by dpm_xlParser#clauseExpr.
|
|
233
|
+
def exitClauseExpr(self, ctx:dpm_xlParser.ClauseExprContext):
|
|
234
|
+
pass
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
# Enter a parse tree produced by dpm_xlParser#boolExpr.
|
|
238
|
+
def enterBoolExpr(self, ctx:dpm_xlParser.BoolExprContext):
|
|
239
|
+
pass
|
|
240
|
+
|
|
241
|
+
# Exit a parse tree produced by dpm_xlParser#boolExpr.
|
|
242
|
+
def exitBoolExpr(self, ctx:dpm_xlParser.BoolExprContext):
|
|
243
|
+
pass
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
# Enter a parse tree produced by dpm_xlParser#setOperand.
|
|
247
|
+
def enterSetOperand(self, ctx:dpm_xlParser.SetOperandContext):
|
|
248
|
+
pass
|
|
249
|
+
|
|
250
|
+
# Exit a parse tree produced by dpm_xlParser#setOperand.
|
|
251
|
+
def exitSetOperand(self, ctx:dpm_xlParser.SetOperandContext):
|
|
252
|
+
pass
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
# Enter a parse tree produced by dpm_xlParser#setElements.
|
|
256
|
+
def enterSetElements(self, ctx:dpm_xlParser.SetElementsContext):
|
|
257
|
+
pass
|
|
258
|
+
|
|
259
|
+
# Exit a parse tree produced by dpm_xlParser#setElements.
|
|
260
|
+
def exitSetElements(self, ctx:dpm_xlParser.SetElementsContext):
|
|
261
|
+
pass
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
# Enter a parse tree produced by dpm_xlParser#aggregateFunctions.
|
|
265
|
+
def enterAggregateFunctions(self, ctx:dpm_xlParser.AggregateFunctionsContext):
|
|
266
|
+
pass
|
|
267
|
+
|
|
268
|
+
# Exit a parse tree produced by dpm_xlParser#aggregateFunctions.
|
|
269
|
+
def exitAggregateFunctions(self, ctx:dpm_xlParser.AggregateFunctionsContext):
|
|
270
|
+
pass
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
# Enter a parse tree produced by dpm_xlParser#numericFunctions.
|
|
274
|
+
def enterNumericFunctions(self, ctx:dpm_xlParser.NumericFunctionsContext):
|
|
275
|
+
pass
|
|
276
|
+
|
|
277
|
+
# Exit a parse tree produced by dpm_xlParser#numericFunctions.
|
|
278
|
+
def exitNumericFunctions(self, ctx:dpm_xlParser.NumericFunctionsContext):
|
|
279
|
+
pass
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
# Enter a parse tree produced by dpm_xlParser#comparisonFunctions.
|
|
283
|
+
def enterComparisonFunctions(self, ctx:dpm_xlParser.ComparisonFunctionsContext):
|
|
284
|
+
pass
|
|
285
|
+
|
|
286
|
+
# Exit a parse tree produced by dpm_xlParser#comparisonFunctions.
|
|
287
|
+
def exitComparisonFunctions(self, ctx:dpm_xlParser.ComparisonFunctionsContext):
|
|
288
|
+
pass
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
# Enter a parse tree produced by dpm_xlParser#filterFunctions.
|
|
292
|
+
def enterFilterFunctions(self, ctx:dpm_xlParser.FilterFunctionsContext):
|
|
293
|
+
pass
|
|
294
|
+
|
|
295
|
+
# Exit a parse tree produced by dpm_xlParser#filterFunctions.
|
|
296
|
+
def exitFilterFunctions(self, ctx:dpm_xlParser.FilterFunctionsContext):
|
|
297
|
+
pass
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
# Enter a parse tree produced by dpm_xlParser#conditionalFunctions.
|
|
301
|
+
def enterConditionalFunctions(self, ctx:dpm_xlParser.ConditionalFunctionsContext):
|
|
302
|
+
pass
|
|
303
|
+
|
|
304
|
+
# Exit a parse tree produced by dpm_xlParser#conditionalFunctions.
|
|
305
|
+
def exitConditionalFunctions(self, ctx:dpm_xlParser.ConditionalFunctionsContext):
|
|
306
|
+
pass
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
# Enter a parse tree produced by dpm_xlParser#timeFunctions.
|
|
310
|
+
def enterTimeFunctions(self, ctx:dpm_xlParser.TimeFunctionsContext):
|
|
311
|
+
pass
|
|
312
|
+
|
|
313
|
+
# Exit a parse tree produced by dpm_xlParser#timeFunctions.
|
|
314
|
+
def exitTimeFunctions(self, ctx:dpm_xlParser.TimeFunctionsContext):
|
|
315
|
+
pass
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
# Enter a parse tree produced by dpm_xlParser#stringFunctions.
|
|
319
|
+
def enterStringFunctions(self, ctx:dpm_xlParser.StringFunctionsContext):
|
|
320
|
+
pass
|
|
321
|
+
|
|
322
|
+
# Exit a parse tree produced by dpm_xlParser#stringFunctions.
|
|
323
|
+
def exitStringFunctions(self, ctx:dpm_xlParser.StringFunctionsContext):
|
|
324
|
+
pass
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
# Enter a parse tree produced by dpm_xlParser#unaryNumericFunctions.
|
|
328
|
+
def enterUnaryNumericFunctions(self, ctx:dpm_xlParser.UnaryNumericFunctionsContext):
|
|
329
|
+
pass
|
|
330
|
+
|
|
331
|
+
# Exit a parse tree produced by dpm_xlParser#unaryNumericFunctions.
|
|
332
|
+
def exitUnaryNumericFunctions(self, ctx:dpm_xlParser.UnaryNumericFunctionsContext):
|
|
333
|
+
pass
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
# Enter a parse tree produced by dpm_xlParser#binaryNumericFunctions.
|
|
337
|
+
def enterBinaryNumericFunctions(self, ctx:dpm_xlParser.BinaryNumericFunctionsContext):
|
|
338
|
+
pass
|
|
339
|
+
|
|
340
|
+
# Exit a parse tree produced by dpm_xlParser#binaryNumericFunctions.
|
|
341
|
+
def exitBinaryNumericFunctions(self, ctx:dpm_xlParser.BinaryNumericFunctionsContext):
|
|
342
|
+
pass
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
# Enter a parse tree produced by dpm_xlParser#complexNumericFunctions.
|
|
346
|
+
def enterComplexNumericFunctions(self, ctx:dpm_xlParser.ComplexNumericFunctionsContext):
|
|
347
|
+
pass
|
|
348
|
+
|
|
349
|
+
# Exit a parse tree produced by dpm_xlParser#complexNumericFunctions.
|
|
350
|
+
def exitComplexNumericFunctions(self, ctx:dpm_xlParser.ComplexNumericFunctionsContext):
|
|
351
|
+
pass
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
# Enter a parse tree produced by dpm_xlParser#matchExpr.
|
|
355
|
+
def enterMatchExpr(self, ctx:dpm_xlParser.MatchExprContext):
|
|
356
|
+
pass
|
|
357
|
+
|
|
358
|
+
# Exit a parse tree produced by dpm_xlParser#matchExpr.
|
|
359
|
+
def exitMatchExpr(self, ctx:dpm_xlParser.MatchExprContext):
|
|
360
|
+
pass
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
# Enter a parse tree produced by dpm_xlParser#isnullExpr.
|
|
364
|
+
def enterIsnullExpr(self, ctx:dpm_xlParser.IsnullExprContext):
|
|
365
|
+
pass
|
|
366
|
+
|
|
367
|
+
# Exit a parse tree produced by dpm_xlParser#isnullExpr.
|
|
368
|
+
def exitIsnullExpr(self, ctx:dpm_xlParser.IsnullExprContext):
|
|
369
|
+
pass
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
# Enter a parse tree produced by dpm_xlParser#filterOperators.
|
|
373
|
+
def enterFilterOperators(self, ctx:dpm_xlParser.FilterOperatorsContext):
|
|
374
|
+
pass
|
|
375
|
+
|
|
376
|
+
# Exit a parse tree produced by dpm_xlParser#filterOperators.
|
|
377
|
+
def exitFilterOperators(self, ctx:dpm_xlParser.FilterOperatorsContext):
|
|
378
|
+
pass
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
# Enter a parse tree produced by dpm_xlParser#timeShiftFunction.
|
|
382
|
+
def enterTimeShiftFunction(self, ctx:dpm_xlParser.TimeShiftFunctionContext):
|
|
383
|
+
pass
|
|
384
|
+
|
|
385
|
+
# Exit a parse tree produced by dpm_xlParser#timeShiftFunction.
|
|
386
|
+
def exitTimeShiftFunction(self, ctx:dpm_xlParser.TimeShiftFunctionContext):
|
|
387
|
+
pass
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
# Enter a parse tree produced by dpm_xlParser#nvlFunction.
|
|
391
|
+
def enterNvlFunction(self, ctx:dpm_xlParser.NvlFunctionContext):
|
|
392
|
+
pass
|
|
393
|
+
|
|
394
|
+
# Exit a parse tree produced by dpm_xlParser#nvlFunction.
|
|
395
|
+
def exitNvlFunction(self, ctx:dpm_xlParser.NvlFunctionContext):
|
|
396
|
+
pass
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
# Enter a parse tree produced by dpm_xlParser#unaryStringFunction.
|
|
400
|
+
def enterUnaryStringFunction(self, ctx:dpm_xlParser.UnaryStringFunctionContext):
|
|
401
|
+
pass
|
|
402
|
+
|
|
403
|
+
# Exit a parse tree produced by dpm_xlParser#unaryStringFunction.
|
|
404
|
+
def exitUnaryStringFunction(self, ctx:dpm_xlParser.UnaryStringFunctionContext):
|
|
405
|
+
pass
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
# Enter a parse tree produced by dpm_xlParser#commonAggrOp.
|
|
409
|
+
def enterCommonAggrOp(self, ctx:dpm_xlParser.CommonAggrOpContext):
|
|
410
|
+
pass
|
|
411
|
+
|
|
412
|
+
# Exit a parse tree produced by dpm_xlParser#commonAggrOp.
|
|
413
|
+
def exitCommonAggrOp(self, ctx:dpm_xlParser.CommonAggrOpContext):
|
|
414
|
+
pass
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
# Enter a parse tree produced by dpm_xlParser#groupingClause.
|
|
418
|
+
def enterGroupingClause(self, ctx:dpm_xlParser.GroupingClauseContext):
|
|
419
|
+
pass
|
|
420
|
+
|
|
421
|
+
# Exit a parse tree produced by dpm_xlParser#groupingClause.
|
|
422
|
+
def exitGroupingClause(self, ctx:dpm_xlParser.GroupingClauseContext):
|
|
423
|
+
pass
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
# Enter a parse tree produced by dpm_xlParser#itemSignature.
|
|
427
|
+
def enterItemSignature(self, ctx:dpm_xlParser.ItemSignatureContext):
|
|
428
|
+
pass
|
|
429
|
+
|
|
430
|
+
# Exit a parse tree produced by dpm_xlParser#itemSignature.
|
|
431
|
+
def exitItemSignature(self, ctx:dpm_xlParser.ItemSignatureContext):
|
|
432
|
+
pass
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
# Enter a parse tree produced by dpm_xlParser#itemReference.
|
|
436
|
+
def enterItemReference(self, ctx:dpm_xlParser.ItemReferenceContext):
|
|
437
|
+
pass
|
|
438
|
+
|
|
439
|
+
# Exit a parse tree produced by dpm_xlParser#itemReference.
|
|
440
|
+
def exitItemReference(self, ctx:dpm_xlParser.ItemReferenceContext):
|
|
441
|
+
pass
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
# Enter a parse tree produced by dpm_xlParser#rowElem.
|
|
445
|
+
def enterRowElem(self, ctx:dpm_xlParser.RowElemContext):
|
|
446
|
+
pass
|
|
447
|
+
|
|
448
|
+
# Exit a parse tree produced by dpm_xlParser#rowElem.
|
|
449
|
+
def exitRowElem(self, ctx:dpm_xlParser.RowElemContext):
|
|
450
|
+
pass
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
# Enter a parse tree produced by dpm_xlParser#colElem.
|
|
454
|
+
def enterColElem(self, ctx:dpm_xlParser.ColElemContext):
|
|
455
|
+
pass
|
|
456
|
+
|
|
457
|
+
# Exit a parse tree produced by dpm_xlParser#colElem.
|
|
458
|
+
def exitColElem(self, ctx:dpm_xlParser.ColElemContext):
|
|
459
|
+
pass
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
# Enter a parse tree produced by dpm_xlParser#sheetElem.
|
|
463
|
+
def enterSheetElem(self, ctx:dpm_xlParser.SheetElemContext):
|
|
464
|
+
pass
|
|
465
|
+
|
|
466
|
+
# Exit a parse tree produced by dpm_xlParser#sheetElem.
|
|
467
|
+
def exitSheetElem(self, ctx:dpm_xlParser.SheetElemContext):
|
|
468
|
+
pass
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
# Enter a parse tree produced by dpm_xlParser#rowHandler.
|
|
472
|
+
def enterRowHandler(self, ctx:dpm_xlParser.RowHandlerContext):
|
|
473
|
+
pass
|
|
474
|
+
|
|
475
|
+
# Exit a parse tree produced by dpm_xlParser#rowHandler.
|
|
476
|
+
def exitRowHandler(self, ctx:dpm_xlParser.RowHandlerContext):
|
|
477
|
+
pass
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
# Enter a parse tree produced by dpm_xlParser#colHandler.
|
|
481
|
+
def enterColHandler(self, ctx:dpm_xlParser.ColHandlerContext):
|
|
482
|
+
pass
|
|
483
|
+
|
|
484
|
+
# Exit a parse tree produced by dpm_xlParser#colHandler.
|
|
485
|
+
def exitColHandler(self, ctx:dpm_xlParser.ColHandlerContext):
|
|
486
|
+
pass
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
# Enter a parse tree produced by dpm_xlParser#sheetHandler.
|
|
490
|
+
def enterSheetHandler(self, ctx:dpm_xlParser.SheetHandlerContext):
|
|
491
|
+
pass
|
|
492
|
+
|
|
493
|
+
# Exit a parse tree produced by dpm_xlParser#sheetHandler.
|
|
494
|
+
def exitSheetHandler(self, ctx:dpm_xlParser.SheetHandlerContext):
|
|
495
|
+
pass
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
# Enter a parse tree produced by dpm_xlParser#interval.
|
|
499
|
+
def enterInterval(self, ctx:dpm_xlParser.IntervalContext):
|
|
500
|
+
pass
|
|
501
|
+
|
|
502
|
+
# Exit a parse tree produced by dpm_xlParser#interval.
|
|
503
|
+
def exitInterval(self, ctx:dpm_xlParser.IntervalContext):
|
|
504
|
+
pass
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
# Enter a parse tree produced by dpm_xlParser#default.
|
|
508
|
+
def enterDefault(self, ctx:dpm_xlParser.DefaultContext):
|
|
509
|
+
pass
|
|
510
|
+
|
|
511
|
+
# Exit a parse tree produced by dpm_xlParser#default.
|
|
512
|
+
def exitDefault(self, ctx:dpm_xlParser.DefaultContext):
|
|
513
|
+
pass
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
# Enter a parse tree produced by dpm_xlParser#rowArg.
|
|
517
|
+
def enterRowArg(self, ctx:dpm_xlParser.RowArgContext):
|
|
518
|
+
pass
|
|
519
|
+
|
|
520
|
+
# Exit a parse tree produced by dpm_xlParser#rowArg.
|
|
521
|
+
def exitRowArg(self, ctx:dpm_xlParser.RowArgContext):
|
|
522
|
+
pass
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
# Enter a parse tree produced by dpm_xlParser#colArg.
|
|
526
|
+
def enterColArg(self, ctx:dpm_xlParser.ColArgContext):
|
|
527
|
+
pass
|
|
528
|
+
|
|
529
|
+
# Exit a parse tree produced by dpm_xlParser#colArg.
|
|
530
|
+
def exitColArg(self, ctx:dpm_xlParser.ColArgContext):
|
|
531
|
+
pass
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
# Enter a parse tree produced by dpm_xlParser#sheetArg.
|
|
535
|
+
def enterSheetArg(self, ctx:dpm_xlParser.SheetArgContext):
|
|
536
|
+
pass
|
|
537
|
+
|
|
538
|
+
# Exit a parse tree produced by dpm_xlParser#sheetArg.
|
|
539
|
+
def exitSheetArg(self, ctx:dpm_xlParser.SheetArgContext):
|
|
540
|
+
pass
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
# Enter a parse tree produced by dpm_xlParser#intervalArg.
|
|
544
|
+
def enterIntervalArg(self, ctx:dpm_xlParser.IntervalArgContext):
|
|
545
|
+
pass
|
|
546
|
+
|
|
547
|
+
# Exit a parse tree produced by dpm_xlParser#intervalArg.
|
|
548
|
+
def exitIntervalArg(self, ctx:dpm_xlParser.IntervalArgContext):
|
|
549
|
+
pass
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
# Enter a parse tree produced by dpm_xlParser#defaultArg.
|
|
553
|
+
def enterDefaultArg(self, ctx:dpm_xlParser.DefaultArgContext):
|
|
554
|
+
pass
|
|
555
|
+
|
|
556
|
+
# Exit a parse tree produced by dpm_xlParser#defaultArg.
|
|
557
|
+
def exitDefaultArg(self, ctx:dpm_xlParser.DefaultArgContext):
|
|
558
|
+
pass
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
# Enter a parse tree produced by dpm_xlParser#select.
|
|
562
|
+
def enterSelect(self, ctx:dpm_xlParser.SelectContext):
|
|
563
|
+
pass
|
|
564
|
+
|
|
565
|
+
# Exit a parse tree produced by dpm_xlParser#select.
|
|
566
|
+
def exitSelect(self, ctx:dpm_xlParser.SelectContext):
|
|
567
|
+
pass
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
# Enter a parse tree produced by dpm_xlParser#selectOperand.
|
|
571
|
+
def enterSelectOperand(self, ctx:dpm_xlParser.SelectOperandContext):
|
|
572
|
+
pass
|
|
573
|
+
|
|
574
|
+
# Exit a parse tree produced by dpm_xlParser#selectOperand.
|
|
575
|
+
def exitSelectOperand(self, ctx:dpm_xlParser.SelectOperandContext):
|
|
576
|
+
pass
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
# Enter a parse tree produced by dpm_xlParser#varID.
|
|
580
|
+
def enterVarID(self, ctx:dpm_xlParser.VarIDContext):
|
|
581
|
+
pass
|
|
582
|
+
|
|
583
|
+
# Exit a parse tree produced by dpm_xlParser#varID.
|
|
584
|
+
def exitVarID(self, ctx:dpm_xlParser.VarIDContext):
|
|
585
|
+
pass
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
# Enter a parse tree produced by dpm_xlParser#cellRef.
|
|
589
|
+
def enterCellRef(self, ctx:dpm_xlParser.CellRefContext):
|
|
590
|
+
pass
|
|
591
|
+
|
|
592
|
+
# Exit a parse tree produced by dpm_xlParser#cellRef.
|
|
593
|
+
def exitCellRef(self, ctx:dpm_xlParser.CellRefContext):
|
|
594
|
+
pass
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
# Enter a parse tree produced by dpm_xlParser#preconditionElem.
|
|
598
|
+
def enterPreconditionElem(self, ctx:dpm_xlParser.PreconditionElemContext):
|
|
599
|
+
pass
|
|
600
|
+
|
|
601
|
+
# Exit a parse tree produced by dpm_xlParser#preconditionElem.
|
|
602
|
+
def exitPreconditionElem(self, ctx:dpm_xlParser.PreconditionElemContext):
|
|
603
|
+
pass
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
# Enter a parse tree produced by dpm_xlParser#varRef.
|
|
607
|
+
def enterVarRef(self, ctx:dpm_xlParser.VarRefContext):
|
|
608
|
+
pass
|
|
609
|
+
|
|
610
|
+
# Exit a parse tree produced by dpm_xlParser#varRef.
|
|
611
|
+
def exitVarRef(self, ctx:dpm_xlParser.VarRefContext):
|
|
612
|
+
pass
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
# Enter a parse tree produced by dpm_xlParser#operationRef.
|
|
616
|
+
def enterOperationRef(self, ctx:dpm_xlParser.OperationRefContext):
|
|
617
|
+
pass
|
|
618
|
+
|
|
619
|
+
# Exit a parse tree produced by dpm_xlParser#operationRef.
|
|
620
|
+
def exitOperationRef(self, ctx:dpm_xlParser.OperationRefContext):
|
|
621
|
+
pass
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
# Enter a parse tree produced by dpm_xlParser#tableRef.
|
|
625
|
+
def enterTableRef(self, ctx:dpm_xlParser.TableRefContext):
|
|
626
|
+
pass
|
|
627
|
+
|
|
628
|
+
# Exit a parse tree produced by dpm_xlParser#tableRef.
|
|
629
|
+
def exitTableRef(self, ctx:dpm_xlParser.TableRefContext):
|
|
630
|
+
pass
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
# Enter a parse tree produced by dpm_xlParser#compRef.
|
|
634
|
+
def enterCompRef(self, ctx:dpm_xlParser.CompRefContext):
|
|
635
|
+
pass
|
|
636
|
+
|
|
637
|
+
# Exit a parse tree produced by dpm_xlParser#compRef.
|
|
638
|
+
def exitCompRef(self, ctx:dpm_xlParser.CompRefContext):
|
|
639
|
+
pass
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
# Enter a parse tree produced by dpm_xlParser#tableReference.
|
|
643
|
+
def enterTableReference(self, ctx:dpm_xlParser.TableReferenceContext):
|
|
644
|
+
pass
|
|
645
|
+
|
|
646
|
+
# Exit a parse tree produced by dpm_xlParser#tableReference.
|
|
647
|
+
def exitTableReference(self, ctx:dpm_xlParser.TableReferenceContext):
|
|
648
|
+
pass
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
# Enter a parse tree produced by dpm_xlParser#whereExpr.
|
|
652
|
+
def enterWhereExpr(self, ctx:dpm_xlParser.WhereExprContext):
|
|
653
|
+
pass
|
|
654
|
+
|
|
655
|
+
# Exit a parse tree produced by dpm_xlParser#whereExpr.
|
|
656
|
+
def exitWhereExpr(self, ctx:dpm_xlParser.WhereExprContext):
|
|
657
|
+
pass
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
# Enter a parse tree produced by dpm_xlParser#getExpr.
|
|
661
|
+
def enterGetExpr(self, ctx:dpm_xlParser.GetExprContext):
|
|
662
|
+
pass
|
|
663
|
+
|
|
664
|
+
# Exit a parse tree produced by dpm_xlParser#getExpr.
|
|
665
|
+
def exitGetExpr(self, ctx:dpm_xlParser.GetExprContext):
|
|
666
|
+
pass
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
# Enter a parse tree produced by dpm_xlParser#renameExpr.
|
|
670
|
+
def enterRenameExpr(self, ctx:dpm_xlParser.RenameExprContext):
|
|
671
|
+
pass
|
|
672
|
+
|
|
673
|
+
# Exit a parse tree produced by dpm_xlParser#renameExpr.
|
|
674
|
+
def exitRenameExpr(self, ctx:dpm_xlParser.RenameExprContext):
|
|
675
|
+
pass
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
# Enter a parse tree produced by dpm_xlParser#renameClause.
|
|
679
|
+
def enterRenameClause(self, ctx:dpm_xlParser.RenameClauseContext):
|
|
680
|
+
pass
|
|
681
|
+
|
|
682
|
+
# Exit a parse tree produced by dpm_xlParser#renameClause.
|
|
683
|
+
def exitRenameClause(self, ctx:dpm_xlParser.RenameClauseContext):
|
|
684
|
+
pass
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
# Enter a parse tree produced by dpm_xlParser#comparisonOperators.
|
|
688
|
+
def enterComparisonOperators(self, ctx:dpm_xlParser.ComparisonOperatorsContext):
|
|
689
|
+
pass
|
|
690
|
+
|
|
691
|
+
# Exit a parse tree produced by dpm_xlParser#comparisonOperators.
|
|
692
|
+
def exitComparisonOperators(self, ctx:dpm_xlParser.ComparisonOperatorsContext):
|
|
693
|
+
pass
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
# Enter a parse tree produced by dpm_xlParser#literal.
|
|
697
|
+
def enterLiteral(self, ctx:dpm_xlParser.LiteralContext):
|
|
698
|
+
pass
|
|
699
|
+
|
|
700
|
+
# Exit a parse tree produced by dpm_xlParser#literal.
|
|
701
|
+
def exitLiteral(self, ctx:dpm_xlParser.LiteralContext):
|
|
702
|
+
pass
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
# Enter a parse tree produced by dpm_xlParser#keyNames.
|
|
706
|
+
def enterKeyNames(self, ctx:dpm_xlParser.KeyNamesContext):
|
|
707
|
+
pass
|
|
708
|
+
|
|
709
|
+
# Exit a parse tree produced by dpm_xlParser#keyNames.
|
|
710
|
+
def exitKeyNames(self, ctx:dpm_xlParser.KeyNamesContext):
|
|
711
|
+
pass
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
# Enter a parse tree produced by dpm_xlParser#propertyReference.
|
|
715
|
+
def enterPropertyReference(self, ctx:dpm_xlParser.PropertyReferenceContext):
|
|
716
|
+
pass
|
|
717
|
+
|
|
718
|
+
# Exit a parse tree produced by dpm_xlParser#propertyReference.
|
|
719
|
+
def exitPropertyReference(self, ctx:dpm_xlParser.PropertyReferenceContext):
|
|
720
|
+
pass
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
# Enter a parse tree produced by dpm_xlParser#propertyCode.
|
|
724
|
+
def enterPropertyCode(self, ctx:dpm_xlParser.PropertyCodeContext):
|
|
725
|
+
pass
|
|
726
|
+
|
|
727
|
+
# Exit a parse tree produced by dpm_xlParser#propertyCode.
|
|
728
|
+
def exitPropertyCode(self, ctx:dpm_xlParser.PropertyCodeContext):
|
|
729
|
+
pass
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
# Enter a parse tree produced by dpm_xlParser#temporaryIdentifier.
|
|
733
|
+
def enterTemporaryIdentifier(self, ctx:dpm_xlParser.TemporaryIdentifierContext):
|
|
734
|
+
pass
|
|
735
|
+
|
|
736
|
+
# Exit a parse tree produced by dpm_xlParser#temporaryIdentifier.
|
|
737
|
+
def exitTemporaryIdentifier(self, ctx:dpm_xlParser.TemporaryIdentifierContext):
|
|
738
|
+
pass
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
del dpm_xlParser
|