@ruleflow-ts/dsl-core 0.1.0

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 (199) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +290 -0
  3. package/dist/debug.d.ts +11 -0
  4. package/dist/debug.d.ts.map +1 -0
  5. package/dist/debug.js +30 -0
  6. package/dist/debug.js.map +1 -0
  7. package/dist/errors/PropertyNotFoundError.d.ts +5 -0
  8. package/dist/errors/PropertyNotFoundError.d.ts.map +1 -0
  9. package/dist/errors/PropertyNotFoundError.js +17 -0
  10. package/dist/errors/PropertyNotFoundError.js.map +1 -0
  11. package/dist/evaluator/AggregationEvaluator.d.ts +9 -0
  12. package/dist/evaluator/AggregationEvaluator.d.ts.map +1 -0
  13. package/dist/evaluator/AggregationEvaluator.js +74 -0
  14. package/dist/evaluator/AggregationEvaluator.js.map +1 -0
  15. package/dist/evaluator/BinaryAndEvaluator.d.ts +6 -0
  16. package/dist/evaluator/BinaryAndEvaluator.d.ts.map +1 -0
  17. package/dist/evaluator/BinaryAndEvaluator.js +14 -0
  18. package/dist/evaluator/BinaryAndEvaluator.js.map +1 -0
  19. package/dist/evaluator/BinaryOrEvaluator.d.ts +6 -0
  20. package/dist/evaluator/BinaryOrEvaluator.d.ts.map +1 -0
  21. package/dist/evaluator/BinaryOrEvaluator.js +14 -0
  22. package/dist/evaluator/BinaryOrEvaluator.js.map +1 -0
  23. package/dist/evaluator/ComparatorEvaluator.d.ts +9 -0
  24. package/dist/evaluator/ComparatorEvaluator.d.ts.map +1 -0
  25. package/dist/evaluator/ComparatorEvaluator.js +95 -0
  26. package/dist/evaluator/ComparatorEvaluator.js.map +1 -0
  27. package/dist/evaluator/ListEvaluator.d.ts +10 -0
  28. package/dist/evaluator/ListEvaluator.d.ts.map +1 -0
  29. package/dist/evaluator/ListEvaluator.js +71 -0
  30. package/dist/evaluator/ListEvaluator.js.map +1 -0
  31. package/dist/evaluator/MathAddEvaluator.d.ts +5 -0
  32. package/dist/evaluator/MathAddEvaluator.d.ts.map +1 -0
  33. package/dist/evaluator/MathAddEvaluator.js +20 -0
  34. package/dist/evaluator/MathAddEvaluator.js.map +1 -0
  35. package/dist/evaluator/MathMulEvaluator.d.ts +5 -0
  36. package/dist/evaluator/MathMulEvaluator.d.ts.map +1 -0
  37. package/dist/evaluator/MathMulEvaluator.js +23 -0
  38. package/dist/evaluator/MathMulEvaluator.js.map +1 -0
  39. package/dist/evaluator/ParenthesisEvaluator.d.ts +5 -0
  40. package/dist/evaluator/ParenthesisEvaluator.d.ts.map +1 -0
  41. package/dist/evaluator/ParenthesisEvaluator.js +10 -0
  42. package/dist/evaluator/ParenthesisEvaluator.js.map +1 -0
  43. package/dist/evaluator/RegexlikeEvaluator.d.ts +6 -0
  44. package/dist/evaluator/RegexlikeEvaluator.d.ts.map +1 -0
  45. package/dist/evaluator/RegexlikeEvaluator.js +23 -0
  46. package/dist/evaluator/RegexlikeEvaluator.js.map +1 -0
  47. package/dist/evaluator/TupleListEvaluator.d.ts +11 -0
  48. package/dist/evaluator/TupleListEvaluator.d.ts.map +1 -0
  49. package/dist/evaluator/TupleListEvaluator.js +121 -0
  50. package/dist/evaluator/TupleListEvaluator.js.map +1 -0
  51. package/dist/evaluator/UnaryEvaluator.d.ts +6 -0
  52. package/dist/evaluator/UnaryEvaluator.d.ts.map +1 -0
  53. package/dist/evaluator/UnaryEvaluator.js +12 -0
  54. package/dist/evaluator/UnaryEvaluator.js.map +1 -0
  55. package/dist/evaluator/ValidPropertyEvaluator.d.ts +6 -0
  56. package/dist/evaluator/ValidPropertyEvaluator.d.ts.map +1 -0
  57. package/dist/evaluator/ValidPropertyEvaluator.js +32 -0
  58. package/dist/evaluator/ValidPropertyEvaluator.js.map +1 -0
  59. package/dist/evaluator/ValueEvaluator.d.ts +8 -0
  60. package/dist/evaluator/ValueEvaluator.d.ts.map +1 -0
  61. package/dist/evaluator/ValueEvaluator.js +43 -0
  62. package/dist/evaluator/ValueEvaluator.js.map +1 -0
  63. package/dist/evaluator/date/DateAddEvaluator.d.ts +7 -0
  64. package/dist/evaluator/date/DateAddEvaluator.d.ts.map +1 -0
  65. package/dist/evaluator/date/DateAddEvaluator.js +36 -0
  66. package/dist/evaluator/date/DateAddEvaluator.js.map +1 -0
  67. package/dist/evaluator/date/DateDiffEvaluator.d.ts +7 -0
  68. package/dist/evaluator/date/DateDiffEvaluator.d.ts.map +1 -0
  69. package/dist/evaluator/date/DateDiffEvaluator.js +31 -0
  70. package/dist/evaluator/date/DateDiffEvaluator.js.map +1 -0
  71. package/dist/evaluator/date/DateOperationEvaluator.d.ts +6 -0
  72. package/dist/evaluator/date/DateOperationEvaluator.d.ts.map +1 -0
  73. package/dist/evaluator/date/DateOperationEvaluator.js +13 -0
  74. package/dist/evaluator/date/DateOperationEvaluator.js.map +1 -0
  75. package/dist/evaluator/date/DateParseExprEvaluator.d.ts +7 -0
  76. package/dist/evaluator/date/DateParseExprEvaluator.d.ts.map +1 -0
  77. package/dist/evaluator/date/DateParseExprEvaluator.js +44 -0
  78. package/dist/evaluator/date/DateParseExprEvaluator.js.map +1 -0
  79. package/dist/evaluator/date/DateSubtractEvaluator.d.ts +7 -0
  80. package/dist/evaluator/date/DateSubtractEvaluator.d.ts.map +1 -0
  81. package/dist/evaluator/date/DateSubtractEvaluator.js +36 -0
  82. package/dist/evaluator/date/DateSubtractEvaluator.js.map +1 -0
  83. package/dist/evaluator/date/DateValueEvaluator.d.ts +7 -0
  84. package/dist/evaluator/date/DateValueEvaluator.d.ts.map +1 -0
  85. package/dist/evaluator/date/DateValueEvaluator.js +44 -0
  86. package/dist/evaluator/date/DateValueEvaluator.js.map +1 -0
  87. package/dist/evaluator/date/DayOfWeekEvaluator.d.ts +7 -0
  88. package/dist/evaluator/date/DayOfWeekEvaluator.d.ts.map +1 -0
  89. package/dist/evaluator/date/DayOfWeekEvaluator.js +21 -0
  90. package/dist/evaluator/date/DayOfWeekEvaluator.js.map +1 -0
  91. package/dist/evaluator/date/NowEvaluator.d.ts +6 -0
  92. package/dist/evaluator/date/NowEvaluator.d.ts.map +1 -0
  93. package/dist/evaluator/date/NowEvaluator.js +10 -0
  94. package/dist/evaluator/date/NowEvaluator.js.map +1 -0
  95. package/dist/evaluator/geo/DistanceEvaluator.d.ts +6 -0
  96. package/dist/evaluator/geo/DistanceEvaluator.d.ts.map +1 -0
  97. package/dist/evaluator/geo/DistanceEvaluator.js +15 -0
  98. package/dist/evaluator/geo/DistanceEvaluator.js.map +1 -0
  99. package/dist/evaluator/geo/DistanceGeohashEvaluator.d.ts +6 -0
  100. package/dist/evaluator/geo/DistanceGeohashEvaluator.d.ts.map +1 -0
  101. package/dist/evaluator/geo/DistanceGeohashEvaluator.js +15 -0
  102. package/dist/evaluator/geo/DistanceGeohashEvaluator.js.map +1 -0
  103. package/dist/evaluator/geo/GeoOperationEvaluator.d.ts +6 -0
  104. package/dist/evaluator/geo/GeoOperationEvaluator.d.ts.map +1 -0
  105. package/dist/evaluator/geo/GeoOperationEvaluator.js +11 -0
  106. package/dist/evaluator/geo/GeoOperationEvaluator.js.map +1 -0
  107. package/dist/evaluator/geo/GeohashDecodeEvaluator.d.ts +6 -0
  108. package/dist/evaluator/geo/GeohashDecodeEvaluator.d.ts.map +1 -0
  109. package/dist/evaluator/geo/GeohashDecodeEvaluator.js +12 -0
  110. package/dist/evaluator/geo/GeohashDecodeEvaluator.js.map +1 -0
  111. package/dist/evaluator/geo/GeohashEncodeEvaluator.d.ts +6 -0
  112. package/dist/evaluator/geo/GeohashEncodeEvaluator.d.ts.map +1 -0
  113. package/dist/evaluator/geo/GeohashEncodeEvaluator.js +15 -0
  114. package/dist/evaluator/geo/GeohashEncodeEvaluator.js.map +1 -0
  115. package/dist/evaluator/geo/WithinRadiusEvaluator.d.ts +6 -0
  116. package/dist/evaluator/geo/WithinRadiusEvaluator.d.ts.map +1 -0
  117. package/dist/evaluator/geo/WithinRadiusEvaluator.js +17 -0
  118. package/dist/evaluator/geo/WithinRadiusEvaluator.js.map +1 -0
  119. package/dist/evaluator/geo/geohash.d.ts +4 -0
  120. package/dist/evaluator/geo/geohash.d.ts.map +1 -0
  121. package/dist/evaluator/geo/geohash.js +91 -0
  122. package/dist/evaluator/geo/geohash.js.map +1 -0
  123. package/dist/evaluator/string/PartialRatioEvaluator.d.ts +6 -0
  124. package/dist/evaluator/string/PartialRatioEvaluator.d.ts.map +1 -0
  125. package/dist/evaluator/string/PartialRatioEvaluator.js +13 -0
  126. package/dist/evaluator/string/PartialRatioEvaluator.js.map +1 -0
  127. package/dist/evaluator/string/StringDistanceEvaluator.d.ts +6 -0
  128. package/dist/evaluator/string/StringDistanceEvaluator.d.ts.map +1 -0
  129. package/dist/evaluator/string/StringDistanceEvaluator.js +13 -0
  130. package/dist/evaluator/string/StringDistanceEvaluator.js.map +1 -0
  131. package/dist/evaluator/string/StringSimilarityScoreEvaluator.d.ts +6 -0
  132. package/dist/evaluator/string/StringSimilarityScoreEvaluator.d.ts.map +1 -0
  133. package/dist/evaluator/string/StringSimilarityScoreEvaluator.js +13 -0
  134. package/dist/evaluator/string/StringSimilarityScoreEvaluator.js.map +1 -0
  135. package/dist/evaluator/string/TokenSetRatioEvaluator.d.ts +6 -0
  136. package/dist/evaluator/string/TokenSetRatioEvaluator.d.ts.map +1 -0
  137. package/dist/evaluator/string/TokenSetRatioEvaluator.js +15 -0
  138. package/dist/evaluator/string/TokenSetRatioEvaluator.js.map +1 -0
  139. package/dist/evaluator/string/TokenSortRatioEvaluator.d.ts +6 -0
  140. package/dist/evaluator/string/TokenSortRatioEvaluator.d.ts.map +1 -0
  141. package/dist/evaluator/string/TokenSortRatioEvaluator.js +15 -0
  142. package/dist/evaluator/string/TokenSortRatioEvaluator.js.map +1 -0
  143. package/dist/evaluator/string/levenshtein.d.ts +7 -0
  144. package/dist/evaluator/string/levenshtein.d.ts.map +1 -0
  145. package/dist/evaluator/string/levenshtein.js +81 -0
  146. package/dist/evaluator/string/levenshtein.js.map +1 -0
  147. package/dist/generated/RuleFlowLanguageLexer.d.ts +4 -0
  148. package/dist/generated/RuleFlowLanguageLexer.d.ts.map +1 -0
  149. package/dist/generated/RuleFlowLanguageLexer.js +9 -0
  150. package/dist/generated/RuleFlowLanguageLexer.js.map +1 -0
  151. package/dist/generated/RuleFlowLanguageParser.d.ts +8 -0
  152. package/dist/generated/RuleFlowLanguageParser.d.ts.map +1 -0
  153. package/dist/generated/RuleFlowLanguageParser.js +13 -0
  154. package/dist/generated/RuleFlowLanguageParser.js.map +1 -0
  155. package/dist/generated/src/grammar/RuleFlowLanguageLexer.d.ts +106 -0
  156. package/dist/generated/src/grammar/RuleFlowLanguageLexer.d.ts.map +1 -0
  157. package/dist/generated/src/grammar/RuleFlowLanguageLexer.js +1128 -0
  158. package/dist/generated/src/grammar/RuleFlowLanguageLexer.js.map +1 -0
  159. package/dist/generated/src/grammar/RuleFlowLanguageListener.d.ts +752 -0
  160. package/dist/generated/src/grammar/RuleFlowLanguageListener.d.ts.map +1 -0
  161. package/dist/generated/src/grammar/RuleFlowLanguageListener.js +4 -0
  162. package/dist/generated/src/grammar/RuleFlowLanguageListener.js.map +1 -0
  163. package/dist/generated/src/grammar/RuleFlowLanguageParser.d.ts +936 -0
  164. package/dist/generated/src/grammar/RuleFlowLanguageParser.d.ts.map +1 -0
  165. package/dist/generated/src/grammar/RuleFlowLanguageParser.js +6080 -0
  166. package/dist/generated/src/grammar/RuleFlowLanguageParser.js.map +1 -0
  167. package/dist/generated/src/grammar/RuleFlowLanguageVisitor.d.ts +476 -0
  168. package/dist/generated/src/grammar/RuleFlowLanguageVisitor.d.ts.map +1 -0
  169. package/dist/generated/src/grammar/RuleFlowLanguageVisitor.js +4 -0
  170. package/dist/generated/src/grammar/RuleFlowLanguageVisitor.js.map +1 -0
  171. package/dist/index.d.ts +4 -0
  172. package/dist/index.d.ts.map +1 -0
  173. package/dist/index.js +9 -0
  174. package/dist/index.js.map +1 -0
  175. package/dist/listeners/ErrorListener.d.ts +5 -0
  176. package/dist/listeners/ErrorListener.d.ts.map +1 -0
  177. package/dist/listeners/ErrorListener.js +10 -0
  178. package/dist/listeners/ErrorListener.js.map +1 -0
  179. package/dist/types.d.ts +23 -0
  180. package/dist/types.d.ts.map +1 -0
  181. package/dist/types.js +3 -0
  182. package/dist/types.js.map +1 -0
  183. package/dist/visitors/ActionsVisitor.d.ts +12 -0
  184. package/dist/visitors/ActionsVisitor.d.ts.map +1 -0
  185. package/dist/visitors/ActionsVisitor.js +82 -0
  186. package/dist/visitors/ActionsVisitor.js.map +1 -0
  187. package/dist/visitors/RulesetVisitor.d.ts +18 -0
  188. package/dist/visitors/RulesetVisitor.d.ts.map +1 -0
  189. package/dist/visitors/RulesetVisitor.js +190 -0
  190. package/dist/visitors/RulesetVisitor.js.map +1 -0
  191. package/dist/visitors/Visitor.d.ts +13 -0
  192. package/dist/visitors/Visitor.d.ts.map +1 -0
  193. package/dist/visitors/Visitor.js +169 -0
  194. package/dist/visitors/Visitor.js.map +1 -0
  195. package/dist/workflow.d.ts +9 -0
  196. package/dist/workflow.d.ts.map +1 -0
  197. package/dist/workflow.js +56 -0
  198. package/dist/workflow.js.map +1 -0
  199. package/package.json +69 -0
@@ -0,0 +1,752 @@
1
+ import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener";
2
+ import { DateDiffContext } from "./RuleFlowLanguageParser";
3
+ import { DayOfWeekContext } from "./RuleFlowLanguageParser";
4
+ import { NowContext } from "./RuleFlowLanguageParser";
5
+ import { DateAddContext } from "./RuleFlowLanguageParser";
6
+ import { DateSubtractContext } from "./RuleFlowLanguageParser";
7
+ import { ParenthesisContext } from "./RuleFlowLanguageParser";
8
+ import { MathMulContext } from "./RuleFlowLanguageParser";
9
+ import { MathAddContext } from "./RuleFlowLanguageParser";
10
+ import { ComparatorContext } from "./RuleFlowLanguageParser";
11
+ import { ListContext } from "./RuleFlowLanguageParser";
12
+ import { TupleListContext } from "./RuleFlowLanguageParser";
13
+ import { AggregationContext } from "./RuleFlowLanguageParser";
14
+ import { DateOperationContext } from "./RuleFlowLanguageParser";
15
+ import { RegexlikeContext } from "./RuleFlowLanguageParser";
16
+ import { UnaryContext } from "./RuleFlowLanguageParser";
17
+ import { BinaryAndContext } from "./RuleFlowLanguageParser";
18
+ import { BinaryOrContext } from "./RuleFlowLanguageParser";
19
+ import { DateParseExprContext } from "./RuleFlowLanguageParser";
20
+ import { ValueContext } from "./RuleFlowLanguageParser";
21
+ import { PropertyContext } from "./RuleFlowLanguageParser";
22
+ import { StringDistanceContext } from "./RuleFlowLanguageParser";
23
+ import { PartialRatioContext } from "./RuleFlowLanguageParser";
24
+ import { TokenSortRatioContext } from "./RuleFlowLanguageParser";
25
+ import { TokenSetRatioContext } from "./RuleFlowLanguageParser";
26
+ import { StringSimilarityScoreContext } from "./RuleFlowLanguageParser";
27
+ import { GeoOperationContext } from "./RuleFlowLanguageParser";
28
+ import { GeohashEncodeContext } from "./RuleFlowLanguageParser";
29
+ import { GeohashDecodeContext } from "./RuleFlowLanguageParser";
30
+ import { DistanceContext } from "./RuleFlowLanguageParser";
31
+ import { DistanceGeohashContext } from "./RuleFlowLanguageParser";
32
+ import { WithinRadiusContext } from "./RuleFlowLanguageParser";
33
+ import { ParseContext } from "./RuleFlowLanguageParser";
34
+ import { ErrorContext } from "./RuleFlowLanguageParser";
35
+ import { WorkflowContext } from "./RuleFlowLanguageParser";
36
+ import { Workflow_nameContext } from "./RuleFlowLanguageParser";
37
+ import { String_literalContext } from "./RuleFlowLanguageParser";
38
+ import { RulesetsContext } from "./RuleFlowLanguageParser";
39
+ import { Ruleset_conditionContext } from "./RuleFlowLanguageParser";
40
+ import { RulesContext } from "./RuleFlowLanguageParser";
41
+ import { Rule_bodyContext } from "./RuleFlowLanguageParser";
42
+ import { NameContext } from "./RuleFlowLanguageParser";
43
+ import { Default_clauseContext } from "./RuleFlowLanguageParser";
44
+ import { ConfigurationContext } from "./RuleFlowLanguageParser";
45
+ import { Evaluation_modeContext } from "./RuleFlowLanguageParser";
46
+ import { Return_resultContext } from "./RuleFlowLanguageParser";
47
+ import { State_ruleContext } from "./RuleFlowLanguageParser";
48
+ import { ActionsContext } from "./RuleFlowLanguageParser";
49
+ import { ActionContext } from "./RuleFlowLanguageParser";
50
+ import { Action_paramsContext } from "./RuleFlowLanguageParser";
51
+ import { Param_pairsContext } from "./RuleFlowLanguageParser";
52
+ import { Param_pairContext } from "./RuleFlowLanguageParser";
53
+ import { ExprContext } from "./RuleFlowLanguageParser";
54
+ import { GeoExprContext } from "./RuleFlowLanguageParser";
55
+ import { DateExprContext } from "./RuleFlowLanguageParser";
56
+ import { PropertyTupleContext } from "./RuleFlowLanguageParser";
57
+ import { ListElemsContext } from "./RuleFlowLanguageParser";
58
+ import { ValidValueContext } from "./RuleFlowLanguageParser";
59
+ import { ActionParamValueContext } from "./RuleFlowLanguageParser";
60
+ import { DateParseContext } from "./RuleFlowLanguageParser";
61
+ import { DateValueContext } from "./RuleFlowLanguageParser";
62
+ import { TimeUnitContext } from "./RuleFlowLanguageParser";
63
+ import { ValidPropertyContext } from "./RuleFlowLanguageParser";
64
+ /**
65
+ * This interface defines a complete listener for a parse tree produced by
66
+ * `RuleFlowLanguageParser`.
67
+ */
68
+ export interface RuleFlowLanguageListener extends ParseTreeListener {
69
+ /**
70
+ * Enter a parse tree produced by the `dateDiff`
71
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
72
+ * @param ctx the parse tree
73
+ */
74
+ enterDateDiff?: (ctx: DateDiffContext) => void;
75
+ /**
76
+ * Exit a parse tree produced by the `dateDiff`
77
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
78
+ * @param ctx the parse tree
79
+ */
80
+ exitDateDiff?: (ctx: DateDiffContext) => void;
81
+ /**
82
+ * Enter a parse tree produced by the `dayOfWeek`
83
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
84
+ * @param ctx the parse tree
85
+ */
86
+ enterDayOfWeek?: (ctx: DayOfWeekContext) => void;
87
+ /**
88
+ * Exit a parse tree produced by the `dayOfWeek`
89
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
90
+ * @param ctx the parse tree
91
+ */
92
+ exitDayOfWeek?: (ctx: DayOfWeekContext) => void;
93
+ /**
94
+ * Enter a parse tree produced by the `now`
95
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
96
+ * @param ctx the parse tree
97
+ */
98
+ enterNow?: (ctx: NowContext) => void;
99
+ /**
100
+ * Exit a parse tree produced by the `now`
101
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
102
+ * @param ctx the parse tree
103
+ */
104
+ exitNow?: (ctx: NowContext) => void;
105
+ /**
106
+ * Enter a parse tree produced by the `dateAdd`
107
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
108
+ * @param ctx the parse tree
109
+ */
110
+ enterDateAdd?: (ctx: DateAddContext) => void;
111
+ /**
112
+ * Exit a parse tree produced by the `dateAdd`
113
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
114
+ * @param ctx the parse tree
115
+ */
116
+ exitDateAdd?: (ctx: DateAddContext) => void;
117
+ /**
118
+ * Enter a parse tree produced by the `dateSubtract`
119
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
120
+ * @param ctx the parse tree
121
+ */
122
+ enterDateSubtract?: (ctx: DateSubtractContext) => void;
123
+ /**
124
+ * Exit a parse tree produced by the `dateSubtract`
125
+ * labeled alternative in `RuleFlowLanguageParser.dateExpr`.
126
+ * @param ctx the parse tree
127
+ */
128
+ exitDateSubtract?: (ctx: DateSubtractContext) => void;
129
+ /**
130
+ * Enter a parse tree produced by the `parenthesis`
131
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
132
+ * @param ctx the parse tree
133
+ */
134
+ enterParenthesis?: (ctx: ParenthesisContext) => void;
135
+ /**
136
+ * Exit a parse tree produced by the `parenthesis`
137
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
138
+ * @param ctx the parse tree
139
+ */
140
+ exitParenthesis?: (ctx: ParenthesisContext) => void;
141
+ /**
142
+ * Enter a parse tree produced by the `mathMul`
143
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
144
+ * @param ctx the parse tree
145
+ */
146
+ enterMathMul?: (ctx: MathMulContext) => void;
147
+ /**
148
+ * Exit a parse tree produced by the `mathMul`
149
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
150
+ * @param ctx the parse tree
151
+ */
152
+ exitMathMul?: (ctx: MathMulContext) => void;
153
+ /**
154
+ * Enter a parse tree produced by the `mathAdd`
155
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
156
+ * @param ctx the parse tree
157
+ */
158
+ enterMathAdd?: (ctx: MathAddContext) => void;
159
+ /**
160
+ * Exit a parse tree produced by the `mathAdd`
161
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
162
+ * @param ctx the parse tree
163
+ */
164
+ exitMathAdd?: (ctx: MathAddContext) => void;
165
+ /**
166
+ * Enter a parse tree produced by the `comparator`
167
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
168
+ * @param ctx the parse tree
169
+ */
170
+ enterComparator?: (ctx: ComparatorContext) => void;
171
+ /**
172
+ * Exit a parse tree produced by the `comparator`
173
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
174
+ * @param ctx the parse tree
175
+ */
176
+ exitComparator?: (ctx: ComparatorContext) => void;
177
+ /**
178
+ * Enter a parse tree produced by the `list`
179
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
180
+ * @param ctx the parse tree
181
+ */
182
+ enterList?: (ctx: ListContext) => void;
183
+ /**
184
+ * Exit a parse tree produced by the `list`
185
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
186
+ * @param ctx the parse tree
187
+ */
188
+ exitList?: (ctx: ListContext) => void;
189
+ /**
190
+ * Enter a parse tree produced by the `tupleList`
191
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
192
+ * @param ctx the parse tree
193
+ */
194
+ enterTupleList?: (ctx: TupleListContext) => void;
195
+ /**
196
+ * Exit a parse tree produced by the `tupleList`
197
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
198
+ * @param ctx the parse tree
199
+ */
200
+ exitTupleList?: (ctx: TupleListContext) => void;
201
+ /**
202
+ * Enter a parse tree produced by the `aggregation`
203
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
204
+ * @param ctx the parse tree
205
+ */
206
+ enterAggregation?: (ctx: AggregationContext) => void;
207
+ /**
208
+ * Exit a parse tree produced by the `aggregation`
209
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
210
+ * @param ctx the parse tree
211
+ */
212
+ exitAggregation?: (ctx: AggregationContext) => void;
213
+ /**
214
+ * Enter a parse tree produced by the `dateOperation`
215
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
216
+ * @param ctx the parse tree
217
+ */
218
+ enterDateOperation?: (ctx: DateOperationContext) => void;
219
+ /**
220
+ * Exit a parse tree produced by the `dateOperation`
221
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
222
+ * @param ctx the parse tree
223
+ */
224
+ exitDateOperation?: (ctx: DateOperationContext) => void;
225
+ /**
226
+ * Enter a parse tree produced by the `regexlike`
227
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
228
+ * @param ctx the parse tree
229
+ */
230
+ enterRegexlike?: (ctx: RegexlikeContext) => void;
231
+ /**
232
+ * Exit a parse tree produced by the `regexlike`
233
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
234
+ * @param ctx the parse tree
235
+ */
236
+ exitRegexlike?: (ctx: RegexlikeContext) => void;
237
+ /**
238
+ * Enter a parse tree produced by the `unary`
239
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
240
+ * @param ctx the parse tree
241
+ */
242
+ enterUnary?: (ctx: UnaryContext) => void;
243
+ /**
244
+ * Exit a parse tree produced by the `unary`
245
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
246
+ * @param ctx the parse tree
247
+ */
248
+ exitUnary?: (ctx: UnaryContext) => void;
249
+ /**
250
+ * Enter a parse tree produced by the `binaryAnd`
251
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
252
+ * @param ctx the parse tree
253
+ */
254
+ enterBinaryAnd?: (ctx: BinaryAndContext) => void;
255
+ /**
256
+ * Exit a parse tree produced by the `binaryAnd`
257
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
258
+ * @param ctx the parse tree
259
+ */
260
+ exitBinaryAnd?: (ctx: BinaryAndContext) => void;
261
+ /**
262
+ * Enter a parse tree produced by the `binaryOr`
263
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
264
+ * @param ctx the parse tree
265
+ */
266
+ enterBinaryOr?: (ctx: BinaryOrContext) => void;
267
+ /**
268
+ * Exit a parse tree produced by the `binaryOr`
269
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
270
+ * @param ctx the parse tree
271
+ */
272
+ exitBinaryOr?: (ctx: BinaryOrContext) => void;
273
+ /**
274
+ * Enter a parse tree produced by the `dateParseExpr`
275
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
276
+ * @param ctx the parse tree
277
+ */
278
+ enterDateParseExpr?: (ctx: DateParseExprContext) => void;
279
+ /**
280
+ * Exit a parse tree produced by the `dateParseExpr`
281
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
282
+ * @param ctx the parse tree
283
+ */
284
+ exitDateParseExpr?: (ctx: DateParseExprContext) => void;
285
+ /**
286
+ * Enter a parse tree produced by the `value`
287
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
288
+ * @param ctx the parse tree
289
+ */
290
+ enterValue?: (ctx: ValueContext) => void;
291
+ /**
292
+ * Exit a parse tree produced by the `value`
293
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
294
+ * @param ctx the parse tree
295
+ */
296
+ exitValue?: (ctx: ValueContext) => void;
297
+ /**
298
+ * Enter a parse tree produced by the `property`
299
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
300
+ * @param ctx the parse tree
301
+ */
302
+ enterProperty?: (ctx: PropertyContext) => void;
303
+ /**
304
+ * Exit a parse tree produced by the `property`
305
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
306
+ * @param ctx the parse tree
307
+ */
308
+ exitProperty?: (ctx: PropertyContext) => void;
309
+ /**
310
+ * Enter a parse tree produced by the `stringDistance`
311
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
312
+ * @param ctx the parse tree
313
+ */
314
+ enterStringDistance?: (ctx: StringDistanceContext) => void;
315
+ /**
316
+ * Exit a parse tree produced by the `stringDistance`
317
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
318
+ * @param ctx the parse tree
319
+ */
320
+ exitStringDistance?: (ctx: StringDistanceContext) => void;
321
+ /**
322
+ * Enter a parse tree produced by the `partialRatio`
323
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
324
+ * @param ctx the parse tree
325
+ */
326
+ enterPartialRatio?: (ctx: PartialRatioContext) => void;
327
+ /**
328
+ * Exit a parse tree produced by the `partialRatio`
329
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
330
+ * @param ctx the parse tree
331
+ */
332
+ exitPartialRatio?: (ctx: PartialRatioContext) => void;
333
+ /**
334
+ * Enter a parse tree produced by the `tokenSortRatio`
335
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
336
+ * @param ctx the parse tree
337
+ */
338
+ enterTokenSortRatio?: (ctx: TokenSortRatioContext) => void;
339
+ /**
340
+ * Exit a parse tree produced by the `tokenSortRatio`
341
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
342
+ * @param ctx the parse tree
343
+ */
344
+ exitTokenSortRatio?: (ctx: TokenSortRatioContext) => void;
345
+ /**
346
+ * Enter a parse tree produced by the `tokenSetRatio`
347
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
348
+ * @param ctx the parse tree
349
+ */
350
+ enterTokenSetRatio?: (ctx: TokenSetRatioContext) => void;
351
+ /**
352
+ * Exit a parse tree produced by the `tokenSetRatio`
353
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
354
+ * @param ctx the parse tree
355
+ */
356
+ exitTokenSetRatio?: (ctx: TokenSetRatioContext) => void;
357
+ /**
358
+ * Enter a parse tree produced by the `stringSimilarityScore`
359
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
360
+ * @param ctx the parse tree
361
+ */
362
+ enterStringSimilarityScore?: (ctx: StringSimilarityScoreContext) => void;
363
+ /**
364
+ * Exit a parse tree produced by the `stringSimilarityScore`
365
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
366
+ * @param ctx the parse tree
367
+ */
368
+ exitStringSimilarityScore?: (ctx: StringSimilarityScoreContext) => void;
369
+ /**
370
+ * Enter a parse tree produced by the `geoOperation`
371
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
372
+ * @param ctx the parse tree
373
+ */
374
+ enterGeoOperation?: (ctx: GeoOperationContext) => void;
375
+ /**
376
+ * Exit a parse tree produced by the `geoOperation`
377
+ * labeled alternative in `RuleFlowLanguageParser.expr`.
378
+ * @param ctx the parse tree
379
+ */
380
+ exitGeoOperation?: (ctx: GeoOperationContext) => void;
381
+ /**
382
+ * Enter a parse tree produced by the `geohashEncode`
383
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
384
+ * @param ctx the parse tree
385
+ */
386
+ enterGeohashEncode?: (ctx: GeohashEncodeContext) => void;
387
+ /**
388
+ * Exit a parse tree produced by the `geohashEncode`
389
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
390
+ * @param ctx the parse tree
391
+ */
392
+ exitGeohashEncode?: (ctx: GeohashEncodeContext) => void;
393
+ /**
394
+ * Enter a parse tree produced by the `geohashDecode`
395
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
396
+ * @param ctx the parse tree
397
+ */
398
+ enterGeohashDecode?: (ctx: GeohashDecodeContext) => void;
399
+ /**
400
+ * Exit a parse tree produced by the `geohashDecode`
401
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
402
+ * @param ctx the parse tree
403
+ */
404
+ exitGeohashDecode?: (ctx: GeohashDecodeContext) => void;
405
+ /**
406
+ * Enter a parse tree produced by the `distance`
407
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
408
+ * @param ctx the parse tree
409
+ */
410
+ enterDistance?: (ctx: DistanceContext) => void;
411
+ /**
412
+ * Exit a parse tree produced by the `distance`
413
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
414
+ * @param ctx the parse tree
415
+ */
416
+ exitDistance?: (ctx: DistanceContext) => void;
417
+ /**
418
+ * Enter a parse tree produced by the `distanceGeohash`
419
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
420
+ * @param ctx the parse tree
421
+ */
422
+ enterDistanceGeohash?: (ctx: DistanceGeohashContext) => void;
423
+ /**
424
+ * Exit a parse tree produced by the `distanceGeohash`
425
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
426
+ * @param ctx the parse tree
427
+ */
428
+ exitDistanceGeohash?: (ctx: DistanceGeohashContext) => void;
429
+ /**
430
+ * Enter a parse tree produced by the `withinRadius`
431
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
432
+ * @param ctx the parse tree
433
+ */
434
+ enterWithinRadius?: (ctx: WithinRadiusContext) => void;
435
+ /**
436
+ * Exit a parse tree produced by the `withinRadius`
437
+ * labeled alternative in `RuleFlowLanguageParser.geoExpr`.
438
+ * @param ctx the parse tree
439
+ */
440
+ exitWithinRadius?: (ctx: WithinRadiusContext) => void;
441
+ /**
442
+ * Enter a parse tree produced by `RuleFlowLanguageParser.parse`.
443
+ * @param ctx the parse tree
444
+ */
445
+ enterParse?: (ctx: ParseContext) => void;
446
+ /**
447
+ * Exit a parse tree produced by `RuleFlowLanguageParser.parse`.
448
+ * @param ctx the parse tree
449
+ */
450
+ exitParse?: (ctx: ParseContext) => void;
451
+ /**
452
+ * Enter a parse tree produced by `RuleFlowLanguageParser.error`.
453
+ * @param ctx the parse tree
454
+ */
455
+ enterError?: (ctx: ErrorContext) => void;
456
+ /**
457
+ * Exit a parse tree produced by `RuleFlowLanguageParser.error`.
458
+ * @param ctx the parse tree
459
+ */
460
+ exitError?: (ctx: ErrorContext) => void;
461
+ /**
462
+ * Enter a parse tree produced by `RuleFlowLanguageParser.workflow`.
463
+ * @param ctx the parse tree
464
+ */
465
+ enterWorkflow?: (ctx: WorkflowContext) => void;
466
+ /**
467
+ * Exit a parse tree produced by `RuleFlowLanguageParser.workflow`.
468
+ * @param ctx the parse tree
469
+ */
470
+ exitWorkflow?: (ctx: WorkflowContext) => void;
471
+ /**
472
+ * Enter a parse tree produced by `RuleFlowLanguageParser.workflow_name`.
473
+ * @param ctx the parse tree
474
+ */
475
+ enterWorkflow_name?: (ctx: Workflow_nameContext) => void;
476
+ /**
477
+ * Exit a parse tree produced by `RuleFlowLanguageParser.workflow_name`.
478
+ * @param ctx the parse tree
479
+ */
480
+ exitWorkflow_name?: (ctx: Workflow_nameContext) => void;
481
+ /**
482
+ * Enter a parse tree produced by `RuleFlowLanguageParser.string_literal`.
483
+ * @param ctx the parse tree
484
+ */
485
+ enterString_literal?: (ctx: String_literalContext) => void;
486
+ /**
487
+ * Exit a parse tree produced by `RuleFlowLanguageParser.string_literal`.
488
+ * @param ctx the parse tree
489
+ */
490
+ exitString_literal?: (ctx: String_literalContext) => void;
491
+ /**
492
+ * Enter a parse tree produced by `RuleFlowLanguageParser.rulesets`.
493
+ * @param ctx the parse tree
494
+ */
495
+ enterRulesets?: (ctx: RulesetsContext) => void;
496
+ /**
497
+ * Exit a parse tree produced by `RuleFlowLanguageParser.rulesets`.
498
+ * @param ctx the parse tree
499
+ */
500
+ exitRulesets?: (ctx: RulesetsContext) => void;
501
+ /**
502
+ * Enter a parse tree produced by `RuleFlowLanguageParser.ruleset_condition`.
503
+ * @param ctx the parse tree
504
+ */
505
+ enterRuleset_condition?: (ctx: Ruleset_conditionContext) => void;
506
+ /**
507
+ * Exit a parse tree produced by `RuleFlowLanguageParser.ruleset_condition`.
508
+ * @param ctx the parse tree
509
+ */
510
+ exitRuleset_condition?: (ctx: Ruleset_conditionContext) => void;
511
+ /**
512
+ * Enter a parse tree produced by `RuleFlowLanguageParser.rules`.
513
+ * @param ctx the parse tree
514
+ */
515
+ enterRules?: (ctx: RulesContext) => void;
516
+ /**
517
+ * Exit a parse tree produced by `RuleFlowLanguageParser.rules`.
518
+ * @param ctx the parse tree
519
+ */
520
+ exitRules?: (ctx: RulesContext) => void;
521
+ /**
522
+ * Enter a parse tree produced by `RuleFlowLanguageParser.rule_body`.
523
+ * @param ctx the parse tree
524
+ */
525
+ enterRule_body?: (ctx: Rule_bodyContext) => void;
526
+ /**
527
+ * Exit a parse tree produced by `RuleFlowLanguageParser.rule_body`.
528
+ * @param ctx the parse tree
529
+ */
530
+ exitRule_body?: (ctx: Rule_bodyContext) => void;
531
+ /**
532
+ * Enter a parse tree produced by `RuleFlowLanguageParser.name`.
533
+ * @param ctx the parse tree
534
+ */
535
+ enterName?: (ctx: NameContext) => void;
536
+ /**
537
+ * Exit a parse tree produced by `RuleFlowLanguageParser.name`.
538
+ * @param ctx the parse tree
539
+ */
540
+ exitName?: (ctx: NameContext) => void;
541
+ /**
542
+ * Enter a parse tree produced by `RuleFlowLanguageParser.default_clause`.
543
+ * @param ctx the parse tree
544
+ */
545
+ enterDefault_clause?: (ctx: Default_clauseContext) => void;
546
+ /**
547
+ * Exit a parse tree produced by `RuleFlowLanguageParser.default_clause`.
548
+ * @param ctx the parse tree
549
+ */
550
+ exitDefault_clause?: (ctx: Default_clauseContext) => void;
551
+ /**
552
+ * Enter a parse tree produced by `RuleFlowLanguageParser.configuration`.
553
+ * @param ctx the parse tree
554
+ */
555
+ enterConfiguration?: (ctx: ConfigurationContext) => void;
556
+ /**
557
+ * Exit a parse tree produced by `RuleFlowLanguageParser.configuration`.
558
+ * @param ctx the parse tree
559
+ */
560
+ exitConfiguration?: (ctx: ConfigurationContext) => void;
561
+ /**
562
+ * Enter a parse tree produced by `RuleFlowLanguageParser.evaluation_mode`.
563
+ * @param ctx the parse tree
564
+ */
565
+ enterEvaluation_mode?: (ctx: Evaluation_modeContext) => void;
566
+ /**
567
+ * Exit a parse tree produced by `RuleFlowLanguageParser.evaluation_mode`.
568
+ * @param ctx the parse tree
569
+ */
570
+ exitEvaluation_mode?: (ctx: Evaluation_modeContext) => void;
571
+ /**
572
+ * Enter a parse tree produced by `RuleFlowLanguageParser.return_result`.
573
+ * @param ctx the parse tree
574
+ */
575
+ enterReturn_result?: (ctx: Return_resultContext) => void;
576
+ /**
577
+ * Exit a parse tree produced by `RuleFlowLanguageParser.return_result`.
578
+ * @param ctx the parse tree
579
+ */
580
+ exitReturn_result?: (ctx: Return_resultContext) => void;
581
+ /**
582
+ * Enter a parse tree produced by `RuleFlowLanguageParser.state_rule`.
583
+ * @param ctx the parse tree
584
+ */
585
+ enterState_rule?: (ctx: State_ruleContext) => void;
586
+ /**
587
+ * Exit a parse tree produced by `RuleFlowLanguageParser.state_rule`.
588
+ * @param ctx the parse tree
589
+ */
590
+ exitState_rule?: (ctx: State_ruleContext) => void;
591
+ /**
592
+ * Enter a parse tree produced by `RuleFlowLanguageParser.actions`.
593
+ * @param ctx the parse tree
594
+ */
595
+ enterActions?: (ctx: ActionsContext) => void;
596
+ /**
597
+ * Exit a parse tree produced by `RuleFlowLanguageParser.actions`.
598
+ * @param ctx the parse tree
599
+ */
600
+ exitActions?: (ctx: ActionsContext) => void;
601
+ /**
602
+ * Enter a parse tree produced by `RuleFlowLanguageParser.action`.
603
+ * @param ctx the parse tree
604
+ */
605
+ enterAction?: (ctx: ActionContext) => void;
606
+ /**
607
+ * Exit a parse tree produced by `RuleFlowLanguageParser.action`.
608
+ * @param ctx the parse tree
609
+ */
610
+ exitAction?: (ctx: ActionContext) => void;
611
+ /**
612
+ * Enter a parse tree produced by `RuleFlowLanguageParser.action_params`.
613
+ * @param ctx the parse tree
614
+ */
615
+ enterAction_params?: (ctx: Action_paramsContext) => void;
616
+ /**
617
+ * Exit a parse tree produced by `RuleFlowLanguageParser.action_params`.
618
+ * @param ctx the parse tree
619
+ */
620
+ exitAction_params?: (ctx: Action_paramsContext) => void;
621
+ /**
622
+ * Enter a parse tree produced by `RuleFlowLanguageParser.param_pairs`.
623
+ * @param ctx the parse tree
624
+ */
625
+ enterParam_pairs?: (ctx: Param_pairsContext) => void;
626
+ /**
627
+ * Exit a parse tree produced by `RuleFlowLanguageParser.param_pairs`.
628
+ * @param ctx the parse tree
629
+ */
630
+ exitParam_pairs?: (ctx: Param_pairsContext) => void;
631
+ /**
632
+ * Enter a parse tree produced by `RuleFlowLanguageParser.param_pair`.
633
+ * @param ctx the parse tree
634
+ */
635
+ enterParam_pair?: (ctx: Param_pairContext) => void;
636
+ /**
637
+ * Exit a parse tree produced by `RuleFlowLanguageParser.param_pair`.
638
+ * @param ctx the parse tree
639
+ */
640
+ exitParam_pair?: (ctx: Param_pairContext) => void;
641
+ /**
642
+ * Enter a parse tree produced by `RuleFlowLanguageParser.expr`.
643
+ * @param ctx the parse tree
644
+ */
645
+ enterExpr?: (ctx: ExprContext) => void;
646
+ /**
647
+ * Exit a parse tree produced by `RuleFlowLanguageParser.expr`.
648
+ * @param ctx the parse tree
649
+ */
650
+ exitExpr?: (ctx: ExprContext) => void;
651
+ /**
652
+ * Enter a parse tree produced by `RuleFlowLanguageParser.geoExpr`.
653
+ * @param ctx the parse tree
654
+ */
655
+ enterGeoExpr?: (ctx: GeoExprContext) => void;
656
+ /**
657
+ * Exit a parse tree produced by `RuleFlowLanguageParser.geoExpr`.
658
+ * @param ctx the parse tree
659
+ */
660
+ exitGeoExpr?: (ctx: GeoExprContext) => void;
661
+ /**
662
+ * Enter a parse tree produced by `RuleFlowLanguageParser.dateExpr`.
663
+ * @param ctx the parse tree
664
+ */
665
+ enterDateExpr?: (ctx: DateExprContext) => void;
666
+ /**
667
+ * Exit a parse tree produced by `RuleFlowLanguageParser.dateExpr`.
668
+ * @param ctx the parse tree
669
+ */
670
+ exitDateExpr?: (ctx: DateExprContext) => void;
671
+ /**
672
+ * Enter a parse tree produced by `RuleFlowLanguageParser.propertyTuple`.
673
+ * @param ctx the parse tree
674
+ */
675
+ enterPropertyTuple?: (ctx: PropertyTupleContext) => void;
676
+ /**
677
+ * Exit a parse tree produced by `RuleFlowLanguageParser.propertyTuple`.
678
+ * @param ctx the parse tree
679
+ */
680
+ exitPropertyTuple?: (ctx: PropertyTupleContext) => void;
681
+ /**
682
+ * Enter a parse tree produced by `RuleFlowLanguageParser.listElems`.
683
+ * @param ctx the parse tree
684
+ */
685
+ enterListElems?: (ctx: ListElemsContext) => void;
686
+ /**
687
+ * Exit a parse tree produced by `RuleFlowLanguageParser.listElems`.
688
+ * @param ctx the parse tree
689
+ */
690
+ exitListElems?: (ctx: ListElemsContext) => void;
691
+ /**
692
+ * Enter a parse tree produced by `RuleFlowLanguageParser.validValue`.
693
+ * @param ctx the parse tree
694
+ */
695
+ enterValidValue?: (ctx: ValidValueContext) => void;
696
+ /**
697
+ * Exit a parse tree produced by `RuleFlowLanguageParser.validValue`.
698
+ * @param ctx the parse tree
699
+ */
700
+ exitValidValue?: (ctx: ValidValueContext) => void;
701
+ /**
702
+ * Enter a parse tree produced by `RuleFlowLanguageParser.actionParamValue`.
703
+ * @param ctx the parse tree
704
+ */
705
+ enterActionParamValue?: (ctx: ActionParamValueContext) => void;
706
+ /**
707
+ * Exit a parse tree produced by `RuleFlowLanguageParser.actionParamValue`.
708
+ * @param ctx the parse tree
709
+ */
710
+ exitActionParamValue?: (ctx: ActionParamValueContext) => void;
711
+ /**
712
+ * Enter a parse tree produced by `RuleFlowLanguageParser.dateParse`.
713
+ * @param ctx the parse tree
714
+ */
715
+ enterDateParse?: (ctx: DateParseContext) => void;
716
+ /**
717
+ * Exit a parse tree produced by `RuleFlowLanguageParser.dateParse`.
718
+ * @param ctx the parse tree
719
+ */
720
+ exitDateParse?: (ctx: DateParseContext) => void;
721
+ /**
722
+ * Enter a parse tree produced by `RuleFlowLanguageParser.dateValue`.
723
+ * @param ctx the parse tree
724
+ */
725
+ enterDateValue?: (ctx: DateValueContext) => void;
726
+ /**
727
+ * Exit a parse tree produced by `RuleFlowLanguageParser.dateValue`.
728
+ * @param ctx the parse tree
729
+ */
730
+ exitDateValue?: (ctx: DateValueContext) => void;
731
+ /**
732
+ * Enter a parse tree produced by `RuleFlowLanguageParser.timeUnit`.
733
+ * @param ctx the parse tree
734
+ */
735
+ enterTimeUnit?: (ctx: TimeUnitContext) => void;
736
+ /**
737
+ * Exit a parse tree produced by `RuleFlowLanguageParser.timeUnit`.
738
+ * @param ctx the parse tree
739
+ */
740
+ exitTimeUnit?: (ctx: TimeUnitContext) => void;
741
+ /**
742
+ * Enter a parse tree produced by `RuleFlowLanguageParser.validProperty`.
743
+ * @param ctx the parse tree
744
+ */
745
+ enterValidProperty?: (ctx: ValidPropertyContext) => void;
746
+ /**
747
+ * Exit a parse tree produced by `RuleFlowLanguageParser.validProperty`.
748
+ * @param ctx the parse tree
749
+ */
750
+ exitValidProperty?: (ctx: ValidPropertyContext) => void;
751
+ }
752
+ //# sourceMappingURL=RuleFlowLanguageListener.d.ts.map