kodexa 7.4.414781565138__py3-none-any.whl → 8.0.14958192442__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.
Files changed (37) hide show
  1. kodexa/dataclasses/__init__.py +1 -1
  2. kodexa/model/__init__.py +2 -2
  3. kodexa/model/utils.py +1 -1
  4. kodexa/pipeline/pipeline.py +1 -1
  5. kodexa/platform/client.py +1 -2
  6. kodexa/selectors/__init__.py +1 -1
  7. kodexa/selectors/ast.py +371 -98
  8. kodexa/selectors/error.py +29 -0
  9. kodexa/selectors/kodexa-ast-visitor.py +268 -0
  10. kodexa/selectors/parser.py +91 -0
  11. kodexa/selectors/resources/KodexaSelector.interp +99 -0
  12. kodexa/selectors/resources/KodexaSelector.tokens +56 -0
  13. kodexa/selectors/resources/KodexaSelectorLexer.interp +119 -0
  14. kodexa/selectors/resources/KodexaSelectorLexer.py +204 -0
  15. kodexa/selectors/resources/KodexaSelectorLexer.tokens +56 -0
  16. kodexa/selectors/resources/KodexaSelectorListener.py +570 -0
  17. kodexa/selectors/resources/KodexaSelectorParser.py +3246 -0
  18. kodexa/selectors/resources/KodexaSelectorVisitor.py +323 -0
  19. kodexa/selectors/visitor.py +265 -0
  20. kodexa/steps/__init__.py +4 -2
  21. kodexa/steps/common.py +0 -68
  22. kodexa/testing/test_utils.py +1 -1
  23. {kodexa-7.4.414781565138.dist-info → kodexa-8.0.14958192442.dist-info}/METADATA +3 -1
  24. kodexa-8.0.14958192442.dist-info/RECORD +53 -0
  25. {kodexa-7.4.414781565138.dist-info → kodexa-8.0.14958192442.dist-info}/WHEEL +1 -1
  26. kodexa/model/model.py +0 -3259
  27. kodexa/model/persistence.py +0 -2017
  28. kodexa/selectors/core.py +0 -124
  29. kodexa/selectors/lexrules.py +0 -137
  30. kodexa/selectors/lextab.py +0 -83
  31. kodexa/selectors/lextab.pyi +0 -1
  32. kodexa/selectors/parserules.py +0 -414
  33. kodexa/selectors/parserules.pyi +0 -1
  34. kodexa/selectors/parsetab.py +0 -90
  35. kodexa/selectors/parsetab.pyi +0 -1
  36. kodexa-7.4.414781565138.dist-info/RECORD +0 -51
  37. {kodexa-7.4.414781565138.dist-info → kodexa-8.0.14958192442.dist-info}/LICENSE +0 -0
@@ -0,0 +1,570 @@
1
+ # Generated from resources/KodexaSelector.g4 by ANTLR 4.13.1
2
+ from antlr4 import *
3
+ if "." in __name__:
4
+ from .KodexaSelectorParser import KodexaSelectorParser
5
+ else:
6
+ from KodexaSelectorParser import KodexaSelectorParser
7
+
8
+ # This class defines a complete listener for a parse tree produced by KodexaSelectorParser.
9
+ class KodexaSelectorListener(ParseTreeListener):
10
+
11
+ # Enter a parse tree produced by KodexaSelectorParser#xpath.
12
+ def enterXpath(self, ctx:KodexaSelectorParser.XpathContext):
13
+ pass
14
+
15
+ # Exit a parse tree produced by KodexaSelectorParser#xpath.
16
+ def exitXpath(self, ctx:KodexaSelectorParser.XpathContext):
17
+ pass
18
+
19
+
20
+ # Enter a parse tree produced by KodexaSelectorParser#equalsExpr.
21
+ def enterEqualsExpr(self, ctx:KodexaSelectorParser.EqualsExprContext):
22
+ pass
23
+
24
+ # Exit a parse tree produced by KodexaSelectorParser#equalsExpr.
25
+ def exitEqualsExpr(self, ctx:KodexaSelectorParser.EqualsExprContext):
26
+ pass
27
+
28
+
29
+ # Enter a parse tree produced by KodexaSelectorParser#subtractExpr.
30
+ def enterSubtractExpr(self, ctx:KodexaSelectorParser.SubtractExprContext):
31
+ pass
32
+
33
+ # Exit a parse tree produced by KodexaSelectorParser#subtractExpr.
34
+ def exitSubtractExpr(self, ctx:KodexaSelectorParser.SubtractExprContext):
35
+ pass
36
+
37
+
38
+ # Enter a parse tree produced by KodexaSelectorParser#intersectExpr.
39
+ def enterIntersectExpr(self, ctx:KodexaSelectorParser.IntersectExprContext):
40
+ pass
41
+
42
+ # Exit a parse tree produced by KodexaSelectorParser#intersectExpr.
43
+ def exitIntersectExpr(self, ctx:KodexaSelectorParser.IntersectExprContext):
44
+ pass
45
+
46
+
47
+ # Enter a parse tree produced by KodexaSelectorParser#directNameTest.
48
+ def enterDirectNameTest(self, ctx:KodexaSelectorParser.DirectNameTestContext):
49
+ pass
50
+
51
+ # Exit a parse tree produced by KodexaSelectorParser#directNameTest.
52
+ def exitDirectNameTest(self, ctx:KodexaSelectorParser.DirectNameTestContext):
53
+ pass
54
+
55
+
56
+ # Enter a parse tree produced by KodexaSelectorParser#orExpr.
57
+ def enterOrExpr(self, ctx:KodexaSelectorParser.OrExprContext):
58
+ pass
59
+
60
+ # Exit a parse tree produced by KodexaSelectorParser#orExpr.
61
+ def exitOrExpr(self, ctx:KodexaSelectorParser.OrExprContext):
62
+ pass
63
+
64
+
65
+ # Enter a parse tree produced by KodexaSelectorParser#absolutePathExpr.
66
+ def enterAbsolutePathExpr(self, ctx:KodexaSelectorParser.AbsolutePathExprContext):
67
+ pass
68
+
69
+ # Exit a parse tree produced by KodexaSelectorParser#absolutePathExpr.
70
+ def exitAbsolutePathExpr(self, ctx:KodexaSelectorParser.AbsolutePathExprContext):
71
+ pass
72
+
73
+
74
+ # Enter a parse tree produced by KodexaSelectorParser#funcCallExpr.
75
+ def enterFuncCallExpr(self, ctx:KodexaSelectorParser.FuncCallExprContext):
76
+ pass
77
+
78
+ # Exit a parse tree produced by KodexaSelectorParser#funcCallExpr.
79
+ def exitFuncCallExpr(self, ctx:KodexaSelectorParser.FuncCallExprContext):
80
+ pass
81
+
82
+
83
+ # Enter a parse tree produced by KodexaSelectorParser#unionExpr.
84
+ def enterUnionExpr(self, ctx:KodexaSelectorParser.UnionExprContext):
85
+ pass
86
+
87
+ # Exit a parse tree produced by KodexaSelectorParser#unionExpr.
88
+ def exitUnionExpr(self, ctx:KodexaSelectorParser.UnionExprContext):
89
+ pass
90
+
91
+
92
+ # Enter a parse tree produced by KodexaSelectorParser#relationalExpr.
93
+ def enterRelationalExpr(self, ctx:KodexaSelectorParser.RelationalExprContext):
94
+ pass
95
+
96
+ # Exit a parse tree produced by KodexaSelectorParser#relationalExpr.
97
+ def exitRelationalExpr(self, ctx:KodexaSelectorParser.RelationalExprContext):
98
+ pass
99
+
100
+
101
+ # Enter a parse tree produced by KodexaSelectorParser#pipelineExpr.
102
+ def enterPipelineExpr(self, ctx:KodexaSelectorParser.PipelineExprContext):
103
+ pass
104
+
105
+ # Exit a parse tree produced by KodexaSelectorParser#pipelineExpr.
106
+ def exitPipelineExpr(self, ctx:KodexaSelectorParser.PipelineExprContext):
107
+ pass
108
+
109
+
110
+ # Enter a parse tree produced by KodexaSelectorParser#relativePathExpr.
111
+ def enterRelativePathExpr(self, ctx:KodexaSelectorParser.RelativePathExprContext):
112
+ pass
113
+
114
+ # Exit a parse tree produced by KodexaSelectorParser#relativePathExpr.
115
+ def exitRelativePathExpr(self, ctx:KodexaSelectorParser.RelativePathExprContext):
116
+ pass
117
+
118
+
119
+ # Enter a parse tree produced by KodexaSelectorParser#rootNameTest.
120
+ def enterRootNameTest(self, ctx:KodexaSelectorParser.RootNameTestContext):
121
+ pass
122
+
123
+ # Exit a parse tree produced by KodexaSelectorParser#rootNameTest.
124
+ def exitRootNameTest(self, ctx:KodexaSelectorParser.RootNameTestContext):
125
+ pass
126
+
127
+
128
+ # Enter a parse tree produced by KodexaSelectorParser#unaryMinusExpr.
129
+ def enterUnaryMinusExpr(self, ctx:KodexaSelectorParser.UnaryMinusExprContext):
130
+ pass
131
+
132
+ # Exit a parse tree produced by KodexaSelectorParser#unaryMinusExpr.
133
+ def exitUnaryMinusExpr(self, ctx:KodexaSelectorParser.UnaryMinusExprContext):
134
+ pass
135
+
136
+
137
+ # Enter a parse tree produced by KodexaSelectorParser#abbrevAbsPathExpr.
138
+ def enterAbbrevAbsPathExpr(self, ctx:KodexaSelectorParser.AbbrevAbsPathExprContext):
139
+ pass
140
+
141
+ # Exit a parse tree produced by KodexaSelectorParser#abbrevAbsPathExpr.
142
+ def exitAbbrevAbsPathExpr(self, ctx:KodexaSelectorParser.AbbrevAbsPathExprContext):
143
+ pass
144
+
145
+
146
+ # Enter a parse tree produced by KodexaSelectorParser#addExpr.
147
+ def enterAddExpr(self, ctx:KodexaSelectorParser.AddExprContext):
148
+ pass
149
+
150
+ # Exit a parse tree produced by KodexaSelectorParser#addExpr.
151
+ def exitAddExpr(self, ctx:KodexaSelectorParser.AddExprContext):
152
+ pass
153
+
154
+
155
+ # Enter a parse tree produced by KodexaSelectorParser#filterExpression.
156
+ def enterFilterExpression(self, ctx:KodexaSelectorParser.FilterExpressionContext):
157
+ pass
158
+
159
+ # Exit a parse tree produced by KodexaSelectorParser#filterExpression.
160
+ def exitFilterExpression(self, ctx:KodexaSelectorParser.FilterExpressionContext):
161
+ pass
162
+
163
+
164
+ # Enter a parse tree produced by KodexaSelectorParser#booleanLiteralExpr.
165
+ def enterBooleanLiteralExpr(self, ctx:KodexaSelectorParser.BooleanLiteralExprContext):
166
+ pass
167
+
168
+ # Exit a parse tree produced by KodexaSelectorParser#booleanLiteralExpr.
169
+ def exitBooleanLiteralExpr(self, ctx:KodexaSelectorParser.BooleanLiteralExprContext):
170
+ pass
171
+
172
+
173
+ # Enter a parse tree produced by KodexaSelectorParser#pathBinaryExpr.
174
+ def enterPathBinaryExpr(self, ctx:KodexaSelectorParser.PathBinaryExprContext):
175
+ pass
176
+
177
+ # Exit a parse tree produced by KodexaSelectorParser#pathBinaryExpr.
178
+ def exitPathBinaryExpr(self, ctx:KodexaSelectorParser.PathBinaryExprContext):
179
+ pass
180
+
181
+
182
+ # Enter a parse tree produced by KodexaSelectorParser#andExpr.
183
+ def enterAndExpr(self, ctx:KodexaSelectorParser.AndExprContext):
184
+ pass
185
+
186
+ # Exit a parse tree produced by KodexaSelectorParser#andExpr.
187
+ def exitAndExpr(self, ctx:KodexaSelectorParser.AndExprContext):
188
+ pass
189
+
190
+
191
+ # Enter a parse tree produced by KodexaSelectorParser#rootOnly.
192
+ def enterRootOnly(self, ctx:KodexaSelectorParser.RootOnlyContext):
193
+ pass
194
+
195
+ # Exit a parse tree produced by KodexaSelectorParser#rootOnly.
196
+ def exitRootOnly(self, ctx:KodexaSelectorParser.RootOnlyContext):
197
+ pass
198
+
199
+
200
+ # Enter a parse tree produced by KodexaSelectorParser#rootPath.
201
+ def enterRootPath(self, ctx:KodexaSelectorParser.RootPathContext):
202
+ pass
203
+
204
+ # Exit a parse tree produced by KodexaSelectorParser#rootPath.
205
+ def exitRootPath(self, ctx:KodexaSelectorParser.RootPathContext):
206
+ pass
207
+
208
+
209
+ # Enter a parse tree produced by KodexaSelectorParser#abbreviatedAbsoluteLocationPath.
210
+ def enterAbbreviatedAbsoluteLocationPath(self, ctx:KodexaSelectorParser.AbbreviatedAbsoluteLocationPathContext):
211
+ pass
212
+
213
+ # Exit a parse tree produced by KodexaSelectorParser#abbreviatedAbsoluteLocationPath.
214
+ def exitAbbreviatedAbsoluteLocationPath(self, ctx:KodexaSelectorParser.AbbreviatedAbsoluteLocationPathContext):
215
+ pass
216
+
217
+
218
+ # Enter a parse tree produced by KodexaSelectorParser#singleStep.
219
+ def enterSingleStep(self, ctx:KodexaSelectorParser.SingleStepContext):
220
+ pass
221
+
222
+ # Exit a parse tree produced by KodexaSelectorParser#singleStep.
223
+ def exitSingleStep(self, ctx:KodexaSelectorParser.SingleStepContext):
224
+ pass
225
+
226
+
227
+ # Enter a parse tree produced by KodexaSelectorParser#pathStep.
228
+ def enterPathStep(self, ctx:KodexaSelectorParser.PathStepContext):
229
+ pass
230
+
231
+ # Exit a parse tree produced by KodexaSelectorParser#pathStep.
232
+ def exitPathStep(self, ctx:KodexaSelectorParser.PathStepContext):
233
+ pass
234
+
235
+
236
+ # Enter a parse tree produced by KodexaSelectorParser#abbrevPathStep.
237
+ def enterAbbrevPathStep(self, ctx:KodexaSelectorParser.AbbrevPathStepContext):
238
+ pass
239
+
240
+ # Exit a parse tree produced by KodexaSelectorParser#abbrevPathStep.
241
+ def exitAbbrevPathStep(self, ctx:KodexaSelectorParser.AbbrevPathStepContext):
242
+ pass
243
+
244
+
245
+ # Enter a parse tree produced by KodexaSelectorParser#nodeTestStep.
246
+ def enterNodeTestStep(self, ctx:KodexaSelectorParser.NodeTestStepContext):
247
+ pass
248
+
249
+ # Exit a parse tree produced by KodexaSelectorParser#nodeTestStep.
250
+ def exitNodeTestStep(self, ctx:KodexaSelectorParser.NodeTestStepContext):
251
+ pass
252
+
253
+
254
+ # Enter a parse tree produced by KodexaSelectorParser#nodeTestPredStep.
255
+ def enterNodeTestPredStep(self, ctx:KodexaSelectorParser.NodeTestPredStepContext):
256
+ pass
257
+
258
+ # Exit a parse tree produced by KodexaSelectorParser#nodeTestPredStep.
259
+ def exitNodeTestPredStep(self, ctx:KodexaSelectorParser.NodeTestPredStepContext):
260
+ pass
261
+
262
+
263
+ # Enter a parse tree produced by KodexaSelectorParser#axisNodeTestStep.
264
+ def enterAxisNodeTestStep(self, ctx:KodexaSelectorParser.AxisNodeTestStepContext):
265
+ pass
266
+
267
+ # Exit a parse tree produced by KodexaSelectorParser#axisNodeTestStep.
268
+ def exitAxisNodeTestStep(self, ctx:KodexaSelectorParser.AxisNodeTestStepContext):
269
+ pass
270
+
271
+
272
+ # Enter a parse tree produced by KodexaSelectorParser#axisNodeTestPredStep.
273
+ def enterAxisNodeTestPredStep(self, ctx:KodexaSelectorParser.AxisNodeTestPredStepContext):
274
+ pass
275
+
276
+ # Exit a parse tree produced by KodexaSelectorParser#axisNodeTestPredStep.
277
+ def exitAxisNodeTestPredStep(self, ctx:KodexaSelectorParser.AxisNodeTestPredStepContext):
278
+ pass
279
+
280
+
281
+ # Enter a parse tree produced by KodexaSelectorParser#selfStep.
282
+ def enterSelfStep(self, ctx:KodexaSelectorParser.SelfStepContext):
283
+ pass
284
+
285
+ # Exit a parse tree produced by KodexaSelectorParser#selfStep.
286
+ def exitSelfStep(self, ctx:KodexaSelectorParser.SelfStepContext):
287
+ pass
288
+
289
+
290
+ # Enter a parse tree produced by KodexaSelectorParser#parentStep.
291
+ def enterParentStep(self, ctx:KodexaSelectorParser.ParentStepContext):
292
+ pass
293
+
294
+ # Exit a parse tree produced by KodexaSelectorParser#parentStep.
295
+ def exitParentStep(self, ctx:KodexaSelectorParser.ParentStepContext):
296
+ pass
297
+
298
+
299
+ # Enter a parse tree produced by KodexaSelectorParser#fullAxis.
300
+ def enterFullAxis(self, ctx:KodexaSelectorParser.FullAxisContext):
301
+ pass
302
+
303
+ # Exit a parse tree produced by KodexaSelectorParser#fullAxis.
304
+ def exitFullAxis(self, ctx:KodexaSelectorParser.FullAxisContext):
305
+ pass
306
+
307
+
308
+ # Enter a parse tree produced by KodexaSelectorParser#attrAxis.
309
+ def enterAttrAxis(self, ctx:KodexaSelectorParser.AttrAxisContext):
310
+ pass
311
+
312
+ # Exit a parse tree produced by KodexaSelectorParser#attrAxis.
313
+ def exitAttrAxis(self, ctx:KodexaSelectorParser.AttrAxisContext):
314
+ pass
315
+
316
+
317
+ # Enter a parse tree produced by KodexaSelectorParser#nameTestNode.
318
+ def enterNameTestNode(self, ctx:KodexaSelectorParser.NameTestNodeContext):
319
+ pass
320
+
321
+ # Exit a parse tree produced by KodexaSelectorParser#nameTestNode.
322
+ def exitNameTestNode(self, ctx:KodexaSelectorParser.NameTestNodeContext):
323
+ pass
324
+
325
+
326
+ # Enter a parse tree produced by KodexaSelectorParser#anyNameTest.
327
+ def enterAnyNameTest(self, ctx:KodexaSelectorParser.AnyNameTestContext):
328
+ pass
329
+
330
+ # Exit a parse tree produced by KodexaSelectorParser#anyNameTest.
331
+ def exitAnyNameTest(self, ctx:KodexaSelectorParser.AnyNameTestContext):
332
+ pass
333
+
334
+
335
+ # Enter a parse tree produced by KodexaSelectorParser#prefixedAnyNameTest.
336
+ def enterPrefixedAnyNameTest(self, ctx:KodexaSelectorParser.PrefixedAnyNameTestContext):
337
+ pass
338
+
339
+ # Exit a parse tree produced by KodexaSelectorParser#prefixedAnyNameTest.
340
+ def exitPrefixedAnyNameTest(self, ctx:KodexaSelectorParser.PrefixedAnyNameTestContext):
341
+ pass
342
+
343
+
344
+ # Enter a parse tree produced by KodexaSelectorParser#qNameTest.
345
+ def enterQNameTest(self, ctx:KodexaSelectorParser.QNameTestContext):
346
+ pass
347
+
348
+ # Exit a parse tree produced by KodexaSelectorParser#qNameTest.
349
+ def exitQNameTest(self, ctx:KodexaSelectorParser.QNameTestContext):
350
+ pass
351
+
352
+
353
+ # Enter a parse tree produced by KodexaSelectorParser#prefixedName.
354
+ def enterPrefixedName(self, ctx:KodexaSelectorParser.PrefixedNameContext):
355
+ pass
356
+
357
+ # Exit a parse tree produced by KodexaSelectorParser#prefixedName.
358
+ def exitPrefixedName(self, ctx:KodexaSelectorParser.PrefixedNameContext):
359
+ pass
360
+
361
+
362
+ # Enter a parse tree produced by KodexaSelectorParser#simpleName.
363
+ def enterSimpleName(self, ctx:KodexaSelectorParser.SimpleNameContext):
364
+ pass
365
+
366
+ # Exit a parse tree produced by KodexaSelectorParser#simpleName.
367
+ def exitSimpleName(self, ctx:KodexaSelectorParser.SimpleNameContext):
368
+ pass
369
+
370
+
371
+ # Enter a parse tree produced by KodexaSelectorParser#funcCallFilter.
372
+ def enterFuncCallFilter(self, ctx:KodexaSelectorParser.FuncCallFilterContext):
373
+ pass
374
+
375
+ # Exit a parse tree produced by KodexaSelectorParser#funcCallFilter.
376
+ def exitFuncCallFilter(self, ctx:KodexaSelectorParser.FuncCallFilterContext):
377
+ pass
378
+
379
+
380
+ # Enter a parse tree produced by KodexaSelectorParser#booleanFilter.
381
+ def enterBooleanFilter(self, ctx:KodexaSelectorParser.BooleanFilterContext):
382
+ pass
383
+
384
+ # Exit a parse tree produced by KodexaSelectorParser#booleanFilter.
385
+ def exitBooleanFilter(self, ctx:KodexaSelectorParser.BooleanFilterContext):
386
+ pass
387
+
388
+
389
+ # Enter a parse tree produced by KodexaSelectorParser#groupedFilter.
390
+ def enterGroupedFilter(self, ctx:KodexaSelectorParser.GroupedFilterContext):
391
+ pass
392
+
393
+ # Exit a parse tree produced by KodexaSelectorParser#groupedFilter.
394
+ def exitGroupedFilter(self, ctx:KodexaSelectorParser.GroupedFilterContext):
395
+ pass
396
+
397
+
398
+ # Enter a parse tree produced by KodexaSelectorParser#predicatedFilter.
399
+ def enterPredicatedFilter(self, ctx:KodexaSelectorParser.PredicatedFilterContext):
400
+ pass
401
+
402
+ # Exit a parse tree produced by KodexaSelectorParser#predicatedFilter.
403
+ def exitPredicatedFilter(self, ctx:KodexaSelectorParser.PredicatedFilterContext):
404
+ pass
405
+
406
+
407
+ # Enter a parse tree produced by KodexaSelectorParser#numberFilter.
408
+ def enterNumberFilter(self, ctx:KodexaSelectorParser.NumberFilterContext):
409
+ pass
410
+
411
+ # Exit a parse tree produced by KodexaSelectorParser#numberFilter.
412
+ def exitNumberFilter(self, ctx:KodexaSelectorParser.NumberFilterContext):
413
+ pass
414
+
415
+
416
+ # Enter a parse tree produced by KodexaSelectorParser#varRefFilter.
417
+ def enterVarRefFilter(self, ctx:KodexaSelectorParser.VarRefFilterContext):
418
+ pass
419
+
420
+ # Exit a parse tree produced by KodexaSelectorParser#varRefFilter.
421
+ def exitVarRefFilter(self, ctx:KodexaSelectorParser.VarRefFilterContext):
422
+ pass
423
+
424
+
425
+ # Enter a parse tree produced by KodexaSelectorParser#literalFilter.
426
+ def enterLiteralFilter(self, ctx:KodexaSelectorParser.LiteralFilterContext):
427
+ pass
428
+
429
+ # Exit a parse tree produced by KodexaSelectorParser#literalFilter.
430
+ def exitLiteralFilter(self, ctx:KodexaSelectorParser.LiteralFilterContext):
431
+ pass
432
+
433
+
434
+ # Enter a parse tree produced by KodexaSelectorParser#singlePredicate.
435
+ def enterSinglePredicate(self, ctx:KodexaSelectorParser.SinglePredicateContext):
436
+ pass
437
+
438
+ # Exit a parse tree produced by KodexaSelectorParser#singlePredicate.
439
+ def exitSinglePredicate(self, ctx:KodexaSelectorParser.SinglePredicateContext):
440
+ pass
441
+
442
+
443
+ # Enter a parse tree produced by KodexaSelectorParser#multiplePredicate.
444
+ def enterMultiplePredicate(self, ctx:KodexaSelectorParser.MultiplePredicateContext):
445
+ pass
446
+
447
+ # Exit a parse tree produced by KodexaSelectorParser#multiplePredicate.
448
+ def exitMultiplePredicate(self, ctx:KodexaSelectorParser.MultiplePredicateContext):
449
+ pass
450
+
451
+
452
+ # Enter a parse tree produced by KodexaSelectorParser#exprPredicate.
453
+ def enterExprPredicate(self, ctx:KodexaSelectorParser.ExprPredicateContext):
454
+ pass
455
+
456
+ # Exit a parse tree produced by KodexaSelectorParser#exprPredicate.
457
+ def exitExprPredicate(self, ctx:KodexaSelectorParser.ExprPredicateContext):
458
+ pass
459
+
460
+
461
+ # Enter a parse tree produced by KodexaSelectorParser#variableReference.
462
+ def enterVariableReference(self, ctx:KodexaSelectorParser.VariableReferenceContext):
463
+ pass
464
+
465
+ # Exit a parse tree produced by KodexaSelectorParser#variableReference.
466
+ def exitVariableReference(self, ctx:KodexaSelectorParser.VariableReferenceContext):
467
+ pass
468
+
469
+
470
+ # Enter a parse tree produced by KodexaSelectorParser#number.
471
+ def enterNumber(self, ctx:KodexaSelectorParser.NumberContext):
472
+ pass
473
+
474
+ # Exit a parse tree produced by KodexaSelectorParser#number.
475
+ def exitNumber(self, ctx:KodexaSelectorParser.NumberContext):
476
+ pass
477
+
478
+
479
+ # Enter a parse tree produced by KodexaSelectorParser#booleanLiteral.
480
+ def enterBooleanLiteral(self, ctx:KodexaSelectorParser.BooleanLiteralContext):
481
+ pass
482
+
483
+ # Exit a parse tree produced by KodexaSelectorParser#booleanLiteral.
484
+ def exitBooleanLiteral(self, ctx:KodexaSelectorParser.BooleanLiteralContext):
485
+ pass
486
+
487
+
488
+ # Enter a parse tree produced by KodexaSelectorParser#functionCall.
489
+ def enterFunctionCall(self, ctx:KodexaSelectorParser.FunctionCallContext):
490
+ pass
491
+
492
+ # Exit a parse tree produced by KodexaSelectorParser#functionCall.
493
+ def exitFunctionCall(self, ctx:KodexaSelectorParser.FunctionCallContext):
494
+ pass
495
+
496
+
497
+ # Enter a parse tree produced by KodexaSelectorParser#trueFunction.
498
+ def enterTrueFunction(self, ctx:KodexaSelectorParser.TrueFunctionContext):
499
+ pass
500
+
501
+ # Exit a parse tree produced by KodexaSelectorParser#trueFunction.
502
+ def exitTrueFunction(self, ctx:KodexaSelectorParser.TrueFunctionContext):
503
+ pass
504
+
505
+
506
+ # Enter a parse tree produced by KodexaSelectorParser#falseFunction.
507
+ def enterFalseFunction(self, ctx:KodexaSelectorParser.FalseFunctionContext):
508
+ pass
509
+
510
+ # Exit a parse tree produced by KodexaSelectorParser#falseFunction.
511
+ def exitFalseFunction(self, ctx:KodexaSelectorParser.FalseFunctionContext):
512
+ pass
513
+
514
+
515
+ # Enter a parse tree produced by KodexaSelectorParser#funcQName.
516
+ def enterFuncQName(self, ctx:KodexaSelectorParser.FuncQNameContext):
517
+ pass
518
+
519
+ # Exit a parse tree produced by KodexaSelectorParser#funcQName.
520
+ def exitFuncQName(self, ctx:KodexaSelectorParser.FuncQNameContext):
521
+ pass
522
+
523
+
524
+ # Enter a parse tree produced by KodexaSelectorParser#emptyArgs.
525
+ def enterEmptyArgs(self, ctx:KodexaSelectorParser.EmptyArgsContext):
526
+ pass
527
+
528
+ # Exit a parse tree produced by KodexaSelectorParser#emptyArgs.
529
+ def exitEmptyArgs(self, ctx:KodexaSelectorParser.EmptyArgsContext):
530
+ pass
531
+
532
+
533
+ # Enter a parse tree produced by KodexaSelectorParser#argsList.
534
+ def enterArgsList(self, ctx:KodexaSelectorParser.ArgsListContext):
535
+ pass
536
+
537
+ # Exit a parse tree produced by KodexaSelectorParser#argsList.
538
+ def exitArgsList(self, ctx:KodexaSelectorParser.ArgsListContext):
539
+ pass
540
+
541
+
542
+ # Enter a parse tree produced by KodexaSelectorParser#singleArg.
543
+ def enterSingleArg(self, ctx:KodexaSelectorParser.SingleArgContext):
544
+ pass
545
+
546
+ # Exit a parse tree produced by KodexaSelectorParser#singleArg.
547
+ def exitSingleArg(self, ctx:KodexaSelectorParser.SingleArgContext):
548
+ pass
549
+
550
+
551
+ # Enter a parse tree produced by KodexaSelectorParser#multipleArgs.
552
+ def enterMultipleArgs(self, ctx:KodexaSelectorParser.MultipleArgsContext):
553
+ pass
554
+
555
+ # Exit a parse tree produced by KodexaSelectorParser#multipleArgs.
556
+ def exitMultipleArgs(self, ctx:KodexaSelectorParser.MultipleArgsContext):
557
+ pass
558
+
559
+
560
+ # Enter a parse tree produced by KodexaSelectorParser#pathSep.
561
+ def enterPathSep(self, ctx:KodexaSelectorParser.PathSepContext):
562
+ pass
563
+
564
+ # Exit a parse tree produced by KodexaSelectorParser#pathSep.
565
+ def exitPathSep(self, ctx:KodexaSelectorParser.PathSepContext):
566
+ pass
567
+
568
+
569
+
570
+ del KodexaSelectorParser