@ruleflow-ts/dsl-core 0.3.2 → 0.5.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.
- package/README.md +0 -29
- package/dist/evaluator/AggregationEvaluator.d.ts.map +1 -1
- package/dist/evaluator/AggregationEvaluator.js +28 -4
- package/dist/evaluator/AggregationEvaluator.js.map +1 -1
- package/dist/evaluator/CustomFunctionCallEvaluator.d.ts +6 -0
- package/dist/evaluator/CustomFunctionCallEvaluator.d.ts.map +1 -0
- package/dist/evaluator/CustomFunctionCallEvaluator.js +23 -0
- package/dist/evaluator/CustomFunctionCallEvaluator.js.map +1 -0
- package/dist/evaluator/MemberAccessEvaluator.d.ts +6 -0
- package/dist/evaluator/MemberAccessEvaluator.d.ts.map +1 -0
- package/dist/evaluator/MemberAccessEvaluator.js +20 -0
- package/dist/evaluator/MemberAccessEvaluator.js.map +1 -0
- package/dist/evaluator/ValidPropertyEvaluator.d.ts.map +1 -1
- package/dist/evaluator/ValidPropertyEvaluator.js +6 -5
- package/dist/evaluator/ValidPropertyEvaluator.js.map +1 -1
- package/dist/evaluator/VariableRefEvaluator.d.ts +6 -0
- package/dist/evaluator/VariableRefEvaluator.d.ts.map +1 -0
- package/dist/evaluator/VariableRefEvaluator.js +17 -0
- package/dist/evaluator/VariableRefEvaluator.js.map +1 -0
- package/dist/generated/src/grammar/RuleFlowLanguageLexer.d.ts +75 -69
- package/dist/generated/src/grammar/RuleFlowLanguageLexer.d.ts.map +1 -1
- package/dist/generated/src/grammar/RuleFlowLanguageLexer.js +635 -592
- package/dist/generated/src/grammar/RuleFlowLanguageLexer.js.map +1 -1
- package/dist/generated/src/grammar/RuleFlowLanguageListener.d.ts +42 -5
- package/dist/generated/src/grammar/RuleFlowLanguageListener.d.ts.map +1 -1
- package/dist/generated/src/grammar/RuleFlowLanguageParser.d.ts +146 -101
- package/dist/generated/src/grammar/RuleFlowLanguageParser.d.ts.map +1 -1
- package/dist/generated/src/grammar/RuleFlowLanguageParser.js +1123 -832
- package/dist/generated/src/grammar/RuleFlowLanguageParser.js.map +1 -1
- package/dist/generated/src/grammar/RuleFlowLanguageVisitor.d.ts +26 -3
- package/dist/generated/src/grammar/RuleFlowLanguageVisitor.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/types.d.ts +3 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/visitors/RulesetVisitor.d.ts +5 -2
- package/dist/visitors/RulesetVisitor.d.ts.map +1 -1
- package/dist/visitors/RulesetVisitor.js +74 -4
- package/dist/visitors/RulesetVisitor.js.map +1 -1
- package/dist/visitors/Visitor.d.ts +8 -1
- package/dist/visitors/Visitor.d.ts.map +1 -1
- package/dist/visitors/Visitor.js +41 -6
- package/dist/visitors/Visitor.js.map +1 -1
- package/dist/workflow.d.ts +2 -2
- package/dist/workflow.d.ts.map +1 -1
- package/dist/workflow.js +2 -2
- package/dist/workflow.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Generated from src/grammar/RuleFlowLanguage.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.
|
|
5
|
-
exports.ValidPropertyContext = exports.TimeUnitContext = exports.DateValueContext = exports.DateParseContext = exports.ActionParamValueContext = exports.ValidValueContext = exports.ListElemsContext = exports.PropertyTupleContext = exports.DateSubtractContext = exports.DateAddContext = exports.NowContext = exports.DayOfWeekContext = exports.DateDiffContext = exports.DateExprContext = void 0;
|
|
4
|
+
exports.GeohashDecodeContext = exports.GeohashEncodeContext = exports.GeoExprContext = exports.GeoOperationContext = exports.StringSimilarityScoreContext = exports.TokenSetRatioContext = exports.TokenSortRatioContext = exports.PartialRatioContext = exports.StringDistanceContext = exports.PropertyContext = exports.ValueContext = exports.DateParseExprContext = exports.BinaryOrContext = exports.BinaryAndContext = exports.CustomFunctionCallContext = exports.UnaryContext = exports.RegexlikeContext = exports.DateOperationContext = exports.AggregationContext = exports.TupleListContext = exports.ListContext = exports.ComparatorContext = exports.MathAddContext = exports.MathMulContext = exports.MemberAccessContext = exports.VariableRefContext = exports.ParenthesisContext = exports.ExprContext = exports.Param_pairContext = exports.Param_pairsContext = exports.Action_paramsContext = exports.ActionContext = exports.ActionsContext = exports.State_ruleContext = exports.Return_resultContext = exports.Evaluation_modeContext = exports.ConfigurationContext = exports.Default_clauseContext = exports.NameContext = exports.Set_clauseContext = exports.Rule_bodyContext = exports.RulesContext = exports.Ruleset_conditionContext = exports.RulesetsContext = exports.String_literalContext = exports.Workflow_nameContext = exports.WorkflowContext = exports.ErrorContext = exports.ParseContext = exports.RuleFlowLanguageParser = void 0;
|
|
5
|
+
exports.ValidPropertyContext = exports.TimeUnitContext = exports.DateValueContext = exports.DateParseContext = exports.ActionParamValueContext = exports.ValidValueContext = exports.ListElemsContext = exports.PropertyTupleContext = exports.DateSubtractContext = exports.DateAddContext = exports.NowContext = exports.DayOfWeekContext = exports.DateDiffContext = exports.DateExprContext = exports.WithinRadiusContext = exports.DistanceGeohashContext = exports.DistanceContext = void 0;
|
|
6
6
|
const ATN_1 = require("antlr4ts/atn/ATN");
|
|
7
7
|
const ATNDeserializer_1 = require("antlr4ts/atn/ATNDeserializer");
|
|
8
8
|
const FailedPredicateException_1 = require("antlr4ts/FailedPredicateException");
|
|
@@ -41,25 +41,25 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
41
41
|
try {
|
|
42
42
|
this.enterOuterAlt(_localctx, 1);
|
|
43
43
|
{
|
|
44
|
-
this.state =
|
|
44
|
+
this.state = 66;
|
|
45
45
|
this._errHandler.sync(this);
|
|
46
46
|
switch (this._input.LA(1)) {
|
|
47
47
|
case RuleFlowLanguageParser.K_WORKFLOW:
|
|
48
48
|
{
|
|
49
|
-
this.state =
|
|
49
|
+
this.state = 64;
|
|
50
50
|
this.workflow();
|
|
51
51
|
}
|
|
52
52
|
break;
|
|
53
53
|
case RuleFlowLanguageParser.UNEXPECTED_CHAR:
|
|
54
54
|
{
|
|
55
|
-
this.state =
|
|
55
|
+
this.state = 65;
|
|
56
56
|
this.error();
|
|
57
57
|
}
|
|
58
58
|
break;
|
|
59
59
|
default:
|
|
60
60
|
throw new NoViableAltException_1.NoViableAltException(this);
|
|
61
61
|
}
|
|
62
|
-
this.state =
|
|
62
|
+
this.state = 68;
|
|
63
63
|
this.match(RuleFlowLanguageParser.EOF);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
@@ -85,7 +85,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
85
85
|
try {
|
|
86
86
|
this.enterOuterAlt(_localctx, 1);
|
|
87
87
|
{
|
|
88
|
-
this.state =
|
|
88
|
+
this.state = 70;
|
|
89
89
|
this.match(RuleFlowLanguageParser.UNEXPECTED_CHAR);
|
|
90
90
|
}
|
|
91
91
|
}
|
|
@@ -112,37 +112,37 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
112
112
|
try {
|
|
113
113
|
this.enterOuterAlt(_localctx, 1);
|
|
114
114
|
{
|
|
115
|
-
this.state =
|
|
115
|
+
this.state = 72;
|
|
116
116
|
this.match(RuleFlowLanguageParser.K_WORKFLOW);
|
|
117
|
-
this.state = 71;
|
|
118
|
-
this.workflow_name();
|
|
119
117
|
this.state = 73;
|
|
118
|
+
this.workflow_name();
|
|
119
|
+
this.state = 75;
|
|
120
120
|
this._errHandler.sync(this);
|
|
121
121
|
switch (this.interpreter.adaptivePredict(this._input, 1, this._ctx)) {
|
|
122
122
|
case 1:
|
|
123
123
|
{
|
|
124
|
-
this.state =
|
|
124
|
+
this.state = 74;
|
|
125
125
|
this.configuration();
|
|
126
126
|
}
|
|
127
127
|
break;
|
|
128
128
|
}
|
|
129
|
-
this.state =
|
|
129
|
+
this.state = 80;
|
|
130
130
|
this._errHandler.sync(this);
|
|
131
131
|
_la = this._input.LA(1);
|
|
132
132
|
while (_la === RuleFlowLanguageParser.K_RULESET) {
|
|
133
133
|
{
|
|
134
134
|
{
|
|
135
|
-
this.state =
|
|
135
|
+
this.state = 77;
|
|
136
136
|
this.rulesets();
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
|
-
this.state =
|
|
139
|
+
this.state = 82;
|
|
140
140
|
this._errHandler.sync(this);
|
|
141
141
|
_la = this._input.LA(1);
|
|
142
142
|
}
|
|
143
|
-
this.state =
|
|
143
|
+
this.state = 83;
|
|
144
144
|
this.default_clause();
|
|
145
|
-
this.state =
|
|
145
|
+
this.state = 84;
|
|
146
146
|
this.match(RuleFlowLanguageParser.K_END);
|
|
147
147
|
}
|
|
148
148
|
}
|
|
@@ -168,7 +168,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
168
168
|
try {
|
|
169
169
|
this.enterOuterAlt(_localctx, 1);
|
|
170
170
|
{
|
|
171
|
-
this.state =
|
|
171
|
+
this.state = 86;
|
|
172
172
|
this.match(RuleFlowLanguageParser.STRING_NOT_SPECIAL_CHARS);
|
|
173
173
|
}
|
|
174
174
|
}
|
|
@@ -195,7 +195,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
195
195
|
try {
|
|
196
196
|
this.enterOuterAlt(_localctx, 1);
|
|
197
197
|
{
|
|
198
|
-
this.state =
|
|
198
|
+
this.state = 88;
|
|
199
199
|
_la = this._input.LA(1);
|
|
200
200
|
if (!(_la === RuleFlowLanguageParser.STRING_NOT_SPECIAL_CHARS || _la === RuleFlowLanguageParser.SQUOTA_STRING)) {
|
|
201
201
|
this._errHandler.recoverInline(this);
|
|
@@ -232,31 +232,31 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
232
232
|
try {
|
|
233
233
|
this.enterOuterAlt(_localctx, 1);
|
|
234
234
|
{
|
|
235
|
-
this.state =
|
|
235
|
+
this.state = 90;
|
|
236
236
|
this.match(RuleFlowLanguageParser.K_RULESET);
|
|
237
|
-
this.state = 89;
|
|
238
|
-
this.name();
|
|
239
237
|
this.state = 91;
|
|
238
|
+
this.name();
|
|
239
|
+
this.state = 93;
|
|
240
240
|
this._errHandler.sync(this);
|
|
241
241
|
switch (this.interpreter.adaptivePredict(this._input, 3, this._ctx)) {
|
|
242
242
|
case 1:
|
|
243
243
|
{
|
|
244
|
-
this.state =
|
|
244
|
+
this.state = 92;
|
|
245
245
|
this.ruleset_condition();
|
|
246
246
|
}
|
|
247
247
|
break;
|
|
248
248
|
}
|
|
249
|
-
this.state =
|
|
249
|
+
this.state = 96;
|
|
250
250
|
this._errHandler.sync(this);
|
|
251
251
|
_la = this._input.LA(1);
|
|
252
252
|
do {
|
|
253
253
|
{
|
|
254
254
|
{
|
|
255
|
-
this.state =
|
|
255
|
+
this.state = 95;
|
|
256
256
|
this.rules();
|
|
257
257
|
}
|
|
258
258
|
}
|
|
259
|
-
this.state =
|
|
259
|
+
this.state = 98;
|
|
260
260
|
this._errHandler.sync(this);
|
|
261
261
|
_la = this._input.LA(1);
|
|
262
262
|
} while (_la === RuleFlowLanguageParser.STRING_NOT_SPECIAL_CHARS || _la === RuleFlowLanguageParser.SQUOTA_STRING);
|
|
@@ -282,28 +282,28 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
282
282
|
let _localctx = new Ruleset_conditionContext(this._ctx, this.state);
|
|
283
283
|
this.enterRule(_localctx, 12, RuleFlowLanguageParser.RULE_ruleset_condition);
|
|
284
284
|
try {
|
|
285
|
-
this.state =
|
|
285
|
+
this.state = 108;
|
|
286
286
|
this._errHandler.sync(this);
|
|
287
287
|
switch (this.interpreter.adaptivePredict(this._input, 5, this._ctx)) {
|
|
288
288
|
case 1:
|
|
289
289
|
this.enterOuterAlt(_localctx, 1);
|
|
290
290
|
{
|
|
291
|
-
this.state =
|
|
291
|
+
this.state = 100;
|
|
292
292
|
this.expr(0);
|
|
293
|
-
this.state =
|
|
293
|
+
this.state = 101;
|
|
294
294
|
this.match(RuleFlowLanguageParser.K_THEN);
|
|
295
295
|
}
|
|
296
296
|
break;
|
|
297
297
|
case 2:
|
|
298
298
|
this.enterOuterAlt(_localctx, 2);
|
|
299
299
|
{
|
|
300
|
-
this.state =
|
|
300
|
+
this.state = 103;
|
|
301
301
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
302
|
-
this.state =
|
|
302
|
+
this.state = 104;
|
|
303
303
|
this.expr(0);
|
|
304
|
-
this.state =
|
|
304
|
+
this.state = 105;
|
|
305
305
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
306
|
-
this.state =
|
|
306
|
+
this.state = 106;
|
|
307
307
|
this.match(RuleFlowLanguageParser.K_THEN);
|
|
308
308
|
}
|
|
309
309
|
break;
|
|
@@ -332,26 +332,26 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
332
332
|
try {
|
|
333
333
|
this.enterOuterAlt(_localctx, 1);
|
|
334
334
|
{
|
|
335
|
-
this.state = 108;
|
|
336
|
-
this.name();
|
|
337
335
|
this.state = 110;
|
|
336
|
+
this.name();
|
|
337
|
+
this.state = 112;
|
|
338
338
|
this._errHandler.sync(this);
|
|
339
339
|
switch (this.interpreter.adaptivePredict(this._input, 6, this._ctx)) {
|
|
340
340
|
case 1:
|
|
341
341
|
{
|
|
342
|
-
this.state =
|
|
342
|
+
this.state = 111;
|
|
343
343
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
344
344
|
}
|
|
345
345
|
break;
|
|
346
346
|
}
|
|
347
|
-
this.state = 112;
|
|
348
|
-
this.rule_body();
|
|
349
347
|
this.state = 114;
|
|
348
|
+
this.rule_body();
|
|
349
|
+
this.state = 116;
|
|
350
350
|
this._errHandler.sync(this);
|
|
351
351
|
_la = this._input.LA(1);
|
|
352
352
|
if (_la === RuleFlowLanguageParser.R_PAREN) {
|
|
353
353
|
{
|
|
354
|
-
this.state =
|
|
354
|
+
this.state = 115;
|
|
355
355
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
356
356
|
}
|
|
357
357
|
}
|
|
@@ -380,22 +380,36 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
380
380
|
try {
|
|
381
381
|
this.enterOuterAlt(_localctx, 1);
|
|
382
382
|
{
|
|
383
|
-
this.state =
|
|
383
|
+
this.state = 118;
|
|
384
384
|
this.expr(0);
|
|
385
|
-
this.state =
|
|
385
|
+
this.state = 122;
|
|
386
|
+
this._errHandler.sync(this);
|
|
387
|
+
_la = this._input.LA(1);
|
|
388
|
+
while (_la === RuleFlowLanguageParser.K_SET) {
|
|
389
|
+
{
|
|
390
|
+
{
|
|
391
|
+
this.state = 119;
|
|
392
|
+
this.set_clause();
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
this.state = 124;
|
|
396
|
+
this._errHandler.sync(this);
|
|
397
|
+
_la = this._input.LA(1);
|
|
398
|
+
}
|
|
399
|
+
this.state = 139;
|
|
386
400
|
this._errHandler.sync(this);
|
|
387
401
|
switch (this._input.LA(1)) {
|
|
388
402
|
case RuleFlowLanguageParser.K_THEN:
|
|
389
403
|
{
|
|
390
404
|
{
|
|
391
|
-
this.state =
|
|
405
|
+
this.state = 125;
|
|
392
406
|
this.match(RuleFlowLanguageParser.K_THEN);
|
|
393
|
-
this.state =
|
|
407
|
+
this.state = 127;
|
|
394
408
|
this._errHandler.sync(this);
|
|
395
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
409
|
+
switch (this.interpreter.adaptivePredict(this._input, 9, this._ctx)) {
|
|
396
410
|
case 1:
|
|
397
411
|
{
|
|
398
|
-
this.state =
|
|
412
|
+
this.state = 126;
|
|
399
413
|
_la = this._input.LA(1);
|
|
400
414
|
if (!(_la === RuleFlowLanguageParser.K_WITH || _la === RuleFlowLanguageParser.K_AND)) {
|
|
401
415
|
this._errHandler.recoverInline(this);
|
|
@@ -410,7 +424,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
410
424
|
}
|
|
411
425
|
break;
|
|
412
426
|
}
|
|
413
|
-
this.state =
|
|
427
|
+
this.state = 129;
|
|
414
428
|
_localctx._then_result = this.actions();
|
|
415
429
|
}
|
|
416
430
|
}
|
|
@@ -418,22 +432,41 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
418
432
|
case RuleFlowLanguageParser.K_RETURN:
|
|
419
433
|
{
|
|
420
434
|
{
|
|
421
|
-
this.state =
|
|
435
|
+
this.state = 130;
|
|
422
436
|
this.match(RuleFlowLanguageParser.K_RETURN);
|
|
423
|
-
this.state =
|
|
437
|
+
this.state = 131;
|
|
424
438
|
_localctx._result = this.return_result();
|
|
425
|
-
this.state =
|
|
439
|
+
this.state = 133;
|
|
426
440
|
this._errHandler.sync(this);
|
|
427
441
|
_la = this._input.LA(1);
|
|
428
|
-
if (((((_la -
|
|
442
|
+
if (((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & ((1 << (RuleFlowLanguageParser.K_ACTION - 35)) | (1 << (RuleFlowLanguageParser.K_WITH - 35)) | (1 << (RuleFlowLanguageParser.K_AND - 35)))) !== 0) || _la === RuleFlowLanguageParser.ID) {
|
|
429
443
|
{
|
|
430
|
-
this.state =
|
|
444
|
+
this.state = 132;
|
|
431
445
|
this.actions();
|
|
432
446
|
}
|
|
433
447
|
}
|
|
434
448
|
}
|
|
435
449
|
}
|
|
436
450
|
break;
|
|
451
|
+
case RuleFlowLanguageParser.K_ACTION:
|
|
452
|
+
case RuleFlowLanguageParser.K_WITH:
|
|
453
|
+
case RuleFlowLanguageParser.K_AND:
|
|
454
|
+
case RuleFlowLanguageParser.ID:
|
|
455
|
+
{
|
|
456
|
+
{
|
|
457
|
+
this.state = 135;
|
|
458
|
+
_localctx._inline_actions = this.actions();
|
|
459
|
+
this.state = 136;
|
|
460
|
+
this.match(RuleFlowLanguageParser.K_CONTINUE);
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
break;
|
|
464
|
+
case RuleFlowLanguageParser.K_CONTINUE:
|
|
465
|
+
{
|
|
466
|
+
this.state = 138;
|
|
467
|
+
this.match(RuleFlowLanguageParser.K_CONTINUE);
|
|
468
|
+
}
|
|
469
|
+
break;
|
|
437
470
|
default:
|
|
438
471
|
throw new NoViableAltException_1.NoViableAltException(this);
|
|
439
472
|
}
|
|
@@ -455,13 +488,76 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
455
488
|
return _localctx;
|
|
456
489
|
}
|
|
457
490
|
// @RuleVersion(0)
|
|
491
|
+
set_clause() {
|
|
492
|
+
let _localctx = new Set_clauseContext(this._ctx, this.state);
|
|
493
|
+
this.enterRule(_localctx, 18, RuleFlowLanguageParser.RULE_set_clause);
|
|
494
|
+
let _la;
|
|
495
|
+
try {
|
|
496
|
+
this.state = 149;
|
|
497
|
+
this._errHandler.sync(this);
|
|
498
|
+
switch (this.interpreter.adaptivePredict(this._input, 12, this._ctx)) {
|
|
499
|
+
case 1:
|
|
500
|
+
this.enterOuterAlt(_localctx, 1);
|
|
501
|
+
{
|
|
502
|
+
this.state = 141;
|
|
503
|
+
this.match(RuleFlowLanguageParser.K_SET);
|
|
504
|
+
this.state = 142;
|
|
505
|
+
_localctx._variable = this.match(RuleFlowLanguageParser.VARIABLE);
|
|
506
|
+
this.state = 143;
|
|
507
|
+
this.match(RuleFlowLanguageParser.EQ_IC);
|
|
508
|
+
this.state = 144;
|
|
509
|
+
this.expr(0);
|
|
510
|
+
}
|
|
511
|
+
break;
|
|
512
|
+
case 2:
|
|
513
|
+
this.enterOuterAlt(_localctx, 2);
|
|
514
|
+
{
|
|
515
|
+
this.state = 145;
|
|
516
|
+
this.match(RuleFlowLanguageParser.K_SET);
|
|
517
|
+
this.state = 146;
|
|
518
|
+
_localctx._variable = this.match(RuleFlowLanguageParser.VARIABLE);
|
|
519
|
+
this.state = 147;
|
|
520
|
+
_localctx._compound_op = this._input.LT(1);
|
|
521
|
+
_la = this._input.LA(1);
|
|
522
|
+
if (!((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << RuleFlowLanguageParser.PLUS_EQ) | (1 << RuleFlowLanguageParser.MINUS_EQ) | (1 << RuleFlowLanguageParser.MULTIPLY_EQ) | (1 << RuleFlowLanguageParser.DIVIDE_EQ) | (1 << RuleFlowLanguageParser.MODULO_EQ))) !== 0))) {
|
|
523
|
+
_localctx._compound_op = this._errHandler.recoverInline(this);
|
|
524
|
+
}
|
|
525
|
+
else {
|
|
526
|
+
if (this._input.LA(1) === Token_1.Token.EOF) {
|
|
527
|
+
this.matchedEOF = true;
|
|
528
|
+
}
|
|
529
|
+
this._errHandler.reportMatch(this);
|
|
530
|
+
this.consume();
|
|
531
|
+
}
|
|
532
|
+
this.state = 148;
|
|
533
|
+
this.expr(0);
|
|
534
|
+
}
|
|
535
|
+
break;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
catch (re) {
|
|
539
|
+
if (re instanceof RecognitionException_1.RecognitionException) {
|
|
540
|
+
_localctx.exception = re;
|
|
541
|
+
this._errHandler.reportError(this, re);
|
|
542
|
+
this._errHandler.recover(this, re);
|
|
543
|
+
}
|
|
544
|
+
else {
|
|
545
|
+
throw re;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
finally {
|
|
549
|
+
this.exitRule();
|
|
550
|
+
}
|
|
551
|
+
return _localctx;
|
|
552
|
+
}
|
|
553
|
+
// @RuleVersion(0)
|
|
458
554
|
name() {
|
|
459
555
|
let _localctx = new NameContext(this._ctx, this.state);
|
|
460
|
-
this.enterRule(_localctx,
|
|
556
|
+
this.enterRule(_localctx, 20, RuleFlowLanguageParser.RULE_name);
|
|
461
557
|
try {
|
|
462
558
|
this.enterOuterAlt(_localctx, 1);
|
|
463
559
|
{
|
|
464
|
-
this.state =
|
|
560
|
+
this.state = 151;
|
|
465
561
|
this.string_literal();
|
|
466
562
|
}
|
|
467
563
|
}
|
|
@@ -483,19 +579,19 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
483
579
|
// @RuleVersion(0)
|
|
484
580
|
default_clause() {
|
|
485
581
|
let _localctx = new Default_clauseContext(this._ctx, this.state);
|
|
486
|
-
this.enterRule(_localctx,
|
|
582
|
+
this.enterRule(_localctx, 22, RuleFlowLanguageParser.RULE_default_clause);
|
|
487
583
|
let _la;
|
|
488
584
|
try {
|
|
489
585
|
this.enterOuterAlt(_localctx, 1);
|
|
490
586
|
{
|
|
491
|
-
this.state =
|
|
587
|
+
this.state = 153;
|
|
492
588
|
this.match(RuleFlowLanguageParser.K_DEFAULT);
|
|
493
|
-
this.state =
|
|
589
|
+
this.state = 155;
|
|
494
590
|
this._errHandler.sync(this);
|
|
495
591
|
_la = this._input.LA(1);
|
|
496
592
|
if (_la === RuleFlowLanguageParser.K_RETURN || _la === RuleFlowLanguageParser.K_THEN) {
|
|
497
593
|
{
|
|
498
|
-
this.state =
|
|
594
|
+
this.state = 154;
|
|
499
595
|
_la = this._input.LA(1);
|
|
500
596
|
if (!(_la === RuleFlowLanguageParser.K_RETURN || _la === RuleFlowLanguageParser.K_THEN)) {
|
|
501
597
|
this._errHandler.recoverInline(this);
|
|
@@ -509,14 +605,14 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
509
605
|
}
|
|
510
606
|
}
|
|
511
607
|
}
|
|
512
|
-
this.state =
|
|
608
|
+
this.state = 157;
|
|
513
609
|
_localctx._default_result = this.return_result();
|
|
514
|
-
this.state =
|
|
610
|
+
this.state = 159;
|
|
515
611
|
this._errHandler.sync(this);
|
|
516
612
|
_la = this._input.LA(1);
|
|
517
|
-
if (((((_la -
|
|
613
|
+
if (((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & ((1 << (RuleFlowLanguageParser.K_ACTION - 35)) | (1 << (RuleFlowLanguageParser.K_WITH - 35)) | (1 << (RuleFlowLanguageParser.K_AND - 35)))) !== 0) || _la === RuleFlowLanguageParser.ID) {
|
|
518
614
|
{
|
|
519
|
-
this.state =
|
|
615
|
+
this.state = 158;
|
|
520
616
|
this.actions();
|
|
521
617
|
}
|
|
522
618
|
}
|
|
@@ -540,17 +636,17 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
540
636
|
// @RuleVersion(0)
|
|
541
637
|
configuration() {
|
|
542
638
|
let _localctx = new ConfigurationContext(this._ctx, this.state);
|
|
543
|
-
this.enterRule(_localctx,
|
|
639
|
+
this.enterRule(_localctx, 24, RuleFlowLanguageParser.RULE_configuration);
|
|
544
640
|
let _la;
|
|
545
641
|
try {
|
|
546
642
|
this.enterOuterAlt(_localctx, 1);
|
|
547
643
|
{
|
|
548
|
-
this.state =
|
|
644
|
+
this.state = 162;
|
|
549
645
|
this._errHandler.sync(this);
|
|
550
646
|
_la = this._input.LA(1);
|
|
551
647
|
if (_la === RuleFlowLanguageParser.K_EVALUATION_MODE) {
|
|
552
648
|
{
|
|
553
|
-
this.state =
|
|
649
|
+
this.state = 161;
|
|
554
650
|
this.evaluation_mode();
|
|
555
651
|
}
|
|
556
652
|
}
|
|
@@ -574,14 +670,14 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
574
670
|
// @RuleVersion(0)
|
|
575
671
|
evaluation_mode() {
|
|
576
672
|
let _localctx = new Evaluation_modeContext(this._ctx, this.state);
|
|
577
|
-
this.enterRule(_localctx,
|
|
673
|
+
this.enterRule(_localctx, 26, RuleFlowLanguageParser.RULE_evaluation_mode);
|
|
578
674
|
let _la;
|
|
579
675
|
try {
|
|
580
676
|
this.enterOuterAlt(_localctx, 1);
|
|
581
677
|
{
|
|
582
|
-
this.state =
|
|
678
|
+
this.state = 164;
|
|
583
679
|
this.match(RuleFlowLanguageParser.K_EVALUATION_MODE);
|
|
584
|
-
this.state =
|
|
680
|
+
this.state = 165;
|
|
585
681
|
_la = this._input.LA(1);
|
|
586
682
|
if (!(_la === RuleFlowLanguageParser.K_MULTI_MATCH || _la === RuleFlowLanguageParser.K_SINGLE_MATCH)) {
|
|
587
683
|
this._errHandler.recoverInline(this);
|
|
@@ -613,40 +709,40 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
613
709
|
// @RuleVersion(0)
|
|
614
710
|
return_result() {
|
|
615
711
|
let _localctx = new Return_resultContext(this._ctx, this.state);
|
|
616
|
-
this.enterRule(_localctx,
|
|
712
|
+
this.enterRule(_localctx, 28, RuleFlowLanguageParser.RULE_return_result);
|
|
617
713
|
try {
|
|
618
714
|
this.enterOuterAlt(_localctx, 1);
|
|
619
715
|
{
|
|
620
|
-
this.state =
|
|
716
|
+
this.state = 175;
|
|
621
717
|
this._errHandler.sync(this);
|
|
622
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
718
|
+
switch (this.interpreter.adaptivePredict(this._input, 16, this._ctx)) {
|
|
623
719
|
case 1:
|
|
624
720
|
{
|
|
625
|
-
this.state =
|
|
721
|
+
this.state = 167;
|
|
626
722
|
this.state_rule();
|
|
627
723
|
}
|
|
628
724
|
break;
|
|
629
725
|
case 2:
|
|
630
726
|
{
|
|
631
|
-
this.state =
|
|
727
|
+
this.state = 168;
|
|
632
728
|
this.validProperty();
|
|
633
729
|
}
|
|
634
730
|
break;
|
|
635
731
|
case 3:
|
|
636
732
|
{
|
|
637
|
-
this.state =
|
|
733
|
+
this.state = 169;
|
|
638
734
|
this.validValue();
|
|
639
735
|
}
|
|
640
736
|
break;
|
|
641
737
|
case 4:
|
|
642
738
|
{
|
|
643
|
-
this.state =
|
|
739
|
+
this.state = 170;
|
|
644
740
|
this.match(RuleFlowLanguageParser.K_EXPR);
|
|
645
|
-
this.state =
|
|
741
|
+
this.state = 171;
|
|
646
742
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
647
|
-
this.state =
|
|
743
|
+
this.state = 172;
|
|
648
744
|
this.expr(0);
|
|
649
|
-
this.state =
|
|
745
|
+
this.state = 173;
|
|
650
746
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
651
747
|
}
|
|
652
748
|
break;
|
|
@@ -671,11 +767,11 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
671
767
|
// @RuleVersion(0)
|
|
672
768
|
state_rule() {
|
|
673
769
|
let _localctx = new State_ruleContext(this._ctx, this.state);
|
|
674
|
-
this.enterRule(_localctx,
|
|
770
|
+
this.enterRule(_localctx, 30, RuleFlowLanguageParser.RULE_state_rule);
|
|
675
771
|
try {
|
|
676
772
|
this.enterOuterAlt(_localctx, 1);
|
|
677
773
|
{
|
|
678
|
-
this.state =
|
|
774
|
+
this.state = 177;
|
|
679
775
|
this.match(RuleFlowLanguageParser.ID);
|
|
680
776
|
}
|
|
681
777
|
}
|
|
@@ -697,18 +793,18 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
697
793
|
// @RuleVersion(0)
|
|
698
794
|
actions() {
|
|
699
795
|
let _localctx = new ActionsContext(this._ctx, this.state);
|
|
700
|
-
this.enterRule(_localctx,
|
|
796
|
+
this.enterRule(_localctx, 32, RuleFlowLanguageParser.RULE_actions);
|
|
701
797
|
let _la;
|
|
702
798
|
try {
|
|
703
799
|
let _alt;
|
|
704
800
|
this.enterOuterAlt(_localctx, 1);
|
|
705
801
|
{
|
|
706
|
-
this.state =
|
|
802
|
+
this.state = 180;
|
|
707
803
|
this._errHandler.sync(this);
|
|
708
804
|
_la = this._input.LA(1);
|
|
709
805
|
if (_la === RuleFlowLanguageParser.K_WITH || _la === RuleFlowLanguageParser.K_AND) {
|
|
710
806
|
{
|
|
711
|
-
this.state =
|
|
807
|
+
this.state = 179;
|
|
712
808
|
_la = this._input.LA(1);
|
|
713
809
|
if (!(_la === RuleFlowLanguageParser.K_WITH || _la === RuleFlowLanguageParser.K_AND)) {
|
|
714
810
|
this._errHandler.recoverInline(this);
|
|
@@ -722,25 +818,25 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
722
818
|
}
|
|
723
819
|
}
|
|
724
820
|
}
|
|
725
|
-
this.state =
|
|
821
|
+
this.state = 182;
|
|
726
822
|
this.action();
|
|
727
|
-
this.state =
|
|
823
|
+
this.state = 187;
|
|
728
824
|
this._errHandler.sync(this);
|
|
729
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
825
|
+
_alt = this.interpreter.adaptivePredict(this._input, 18, this._ctx);
|
|
730
826
|
while (_alt !== 1 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
731
827
|
if (_alt === 1 + 1) {
|
|
732
828
|
{
|
|
733
829
|
{
|
|
734
|
-
this.state =
|
|
830
|
+
this.state = 183;
|
|
735
831
|
this.match(RuleFlowLanguageParser.K_AND);
|
|
736
|
-
this.state =
|
|
832
|
+
this.state = 184;
|
|
737
833
|
this.action();
|
|
738
834
|
}
|
|
739
835
|
}
|
|
740
836
|
}
|
|
741
|
-
this.state =
|
|
837
|
+
this.state = 189;
|
|
742
838
|
this._errHandler.sync(this);
|
|
743
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
839
|
+
_alt = this.interpreter.adaptivePredict(this._input, 18, this._ctx);
|
|
744
840
|
}
|
|
745
841
|
}
|
|
746
842
|
}
|
|
@@ -762,51 +858,51 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
762
858
|
// @RuleVersion(0)
|
|
763
859
|
action() {
|
|
764
860
|
let _localctx = new ActionContext(this._ctx, this.state);
|
|
765
|
-
this.enterRule(_localctx,
|
|
861
|
+
this.enterRule(_localctx, 34, RuleFlowLanguageParser.RULE_action);
|
|
766
862
|
let _la;
|
|
767
863
|
try {
|
|
768
|
-
this.state =
|
|
864
|
+
this.state = 206;
|
|
769
865
|
this._errHandler.sync(this);
|
|
770
866
|
switch (this._input.LA(1)) {
|
|
771
867
|
case RuleFlowLanguageParser.K_ACTION:
|
|
772
868
|
this.enterOuterAlt(_localctx, 1);
|
|
773
869
|
{
|
|
774
|
-
this.state =
|
|
870
|
+
this.state = 190;
|
|
775
871
|
this.match(RuleFlowLanguageParser.K_ACTION);
|
|
776
|
-
this.state =
|
|
872
|
+
this.state = 191;
|
|
777
873
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
778
|
-
this.state =
|
|
874
|
+
this.state = 192;
|
|
779
875
|
_localctx._param_value = this.string_literal();
|
|
780
|
-
this.state =
|
|
876
|
+
this.state = 195;
|
|
781
877
|
this._errHandler.sync(this);
|
|
782
878
|
_la = this._input.LA(1);
|
|
783
879
|
if (_la === RuleFlowLanguageParser.COMMA) {
|
|
784
880
|
{
|
|
785
|
-
this.state =
|
|
881
|
+
this.state = 193;
|
|
786
882
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
787
|
-
this.state =
|
|
883
|
+
this.state = 194;
|
|
788
884
|
this.action_params();
|
|
789
885
|
}
|
|
790
886
|
}
|
|
791
|
-
this.state =
|
|
887
|
+
this.state = 197;
|
|
792
888
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
793
889
|
}
|
|
794
890
|
break;
|
|
795
891
|
case RuleFlowLanguageParser.ID:
|
|
796
892
|
this.enterOuterAlt(_localctx, 2);
|
|
797
893
|
{
|
|
798
|
-
this.state =
|
|
894
|
+
this.state = 199;
|
|
799
895
|
_localctx._action_id = this.match(RuleFlowLanguageParser.ID);
|
|
800
|
-
this.state =
|
|
896
|
+
this.state = 204;
|
|
801
897
|
this._errHandler.sync(this);
|
|
802
898
|
_la = this._input.LA(1);
|
|
803
899
|
if (_la === RuleFlowLanguageParser.L_PAREN) {
|
|
804
900
|
{
|
|
805
|
-
this.state =
|
|
901
|
+
this.state = 200;
|
|
806
902
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
807
|
-
this.state =
|
|
903
|
+
this.state = 201;
|
|
808
904
|
this.action_params();
|
|
809
|
-
this.state =
|
|
905
|
+
this.state = 202;
|
|
810
906
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
811
907
|
}
|
|
812
908
|
}
|
|
@@ -834,15 +930,15 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
834
930
|
// @RuleVersion(0)
|
|
835
931
|
action_params() {
|
|
836
932
|
let _localctx = new Action_paramsContext(this._ctx, this.state);
|
|
837
|
-
this.enterRule(_localctx,
|
|
933
|
+
this.enterRule(_localctx, 36, RuleFlowLanguageParser.RULE_action_params);
|
|
838
934
|
try {
|
|
839
935
|
this.enterOuterAlt(_localctx, 1);
|
|
840
936
|
{
|
|
841
|
-
this.state =
|
|
937
|
+
this.state = 208;
|
|
842
938
|
this.match(RuleFlowLanguageParser.L_BRACE);
|
|
843
|
-
this.state =
|
|
939
|
+
this.state = 209;
|
|
844
940
|
this.param_pairs();
|
|
845
|
-
this.state =
|
|
941
|
+
this.state = 210;
|
|
846
942
|
this.match(RuleFlowLanguageParser.R_BRACE);
|
|
847
943
|
}
|
|
848
944
|
}
|
|
@@ -864,26 +960,26 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
864
960
|
// @RuleVersion(0)
|
|
865
961
|
param_pairs() {
|
|
866
962
|
let _localctx = new Param_pairsContext(this._ctx, this.state);
|
|
867
|
-
this.enterRule(_localctx,
|
|
963
|
+
this.enterRule(_localctx, 38, RuleFlowLanguageParser.RULE_param_pairs);
|
|
868
964
|
let _la;
|
|
869
965
|
try {
|
|
870
966
|
this.enterOuterAlt(_localctx, 1);
|
|
871
967
|
{
|
|
872
|
-
this.state =
|
|
968
|
+
this.state = 212;
|
|
873
969
|
this.param_pair();
|
|
874
|
-
this.state =
|
|
970
|
+
this.state = 217;
|
|
875
971
|
this._errHandler.sync(this);
|
|
876
972
|
_la = this._input.LA(1);
|
|
877
973
|
while (_la === RuleFlowLanguageParser.COMMA) {
|
|
878
974
|
{
|
|
879
975
|
{
|
|
880
|
-
this.state =
|
|
976
|
+
this.state = 213;
|
|
881
977
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
882
|
-
this.state =
|
|
978
|
+
this.state = 214;
|
|
883
979
|
this.param_pair();
|
|
884
980
|
}
|
|
885
981
|
}
|
|
886
|
-
this.state =
|
|
982
|
+
this.state = 219;
|
|
887
983
|
this._errHandler.sync(this);
|
|
888
984
|
_la = this._input.LA(1);
|
|
889
985
|
}
|
|
@@ -907,15 +1003,15 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
907
1003
|
// @RuleVersion(0)
|
|
908
1004
|
param_pair() {
|
|
909
1005
|
let _localctx = new Param_pairContext(this._ctx, this.state);
|
|
910
|
-
this.enterRule(_localctx,
|
|
1006
|
+
this.enterRule(_localctx, 40, RuleFlowLanguageParser.RULE_param_pair);
|
|
911
1007
|
try {
|
|
912
1008
|
this.enterOuterAlt(_localctx, 1);
|
|
913
1009
|
{
|
|
914
|
-
this.state =
|
|
1010
|
+
this.state = 220;
|
|
915
1011
|
_localctx._field_name = this.string_literal();
|
|
916
|
-
this.state =
|
|
1012
|
+
this.state = 221;
|
|
917
1013
|
this.match(RuleFlowLanguageParser.K_COLON);
|
|
918
|
-
this.state =
|
|
1014
|
+
this.state = 222;
|
|
919
1015
|
_localctx._field_value = this.actionParamValue();
|
|
920
1016
|
}
|
|
921
1017
|
}
|
|
@@ -943,49 +1039,58 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
943
1039
|
let _parentState = this.state;
|
|
944
1040
|
let _localctx = new ExprContext(this._ctx, _parentState);
|
|
945
1041
|
let _prevctx = _localctx;
|
|
946
|
-
let _startState =
|
|
947
|
-
this.enterRecursionRule(_localctx,
|
|
1042
|
+
let _startState = 42;
|
|
1043
|
+
this.enterRecursionRule(_localctx, 42, RuleFlowLanguageParser.RULE_expr, _p);
|
|
948
1044
|
let _la;
|
|
949
1045
|
try {
|
|
950
1046
|
let _alt;
|
|
951
1047
|
this.enterOuterAlt(_localctx, 1);
|
|
952
1048
|
{
|
|
953
|
-
this.state =
|
|
1049
|
+
this.state = 302;
|
|
954
1050
|
this._errHandler.sync(this);
|
|
955
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
1051
|
+
switch (this.interpreter.adaptivePredict(this._input, 26, this._ctx)) {
|
|
956
1052
|
case 1:
|
|
957
1053
|
{
|
|
958
1054
|
_localctx = new ParenthesisContext(_localctx);
|
|
959
1055
|
this._ctx = _localctx;
|
|
960
1056
|
_prevctx = _localctx;
|
|
961
|
-
this.state =
|
|
1057
|
+
this.state = 225;
|
|
962
1058
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
963
|
-
this.state =
|
|
1059
|
+
this.state = 226;
|
|
964
1060
|
this.expr(0);
|
|
965
|
-
this.state =
|
|
1061
|
+
this.state = 227;
|
|
966
1062
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
967
1063
|
}
|
|
968
1064
|
break;
|
|
969
1065
|
case 2:
|
|
1066
|
+
{
|
|
1067
|
+
_localctx = new VariableRefContext(_localctx);
|
|
1068
|
+
this._ctx = _localctx;
|
|
1069
|
+
_prevctx = _localctx;
|
|
1070
|
+
this.state = 229;
|
|
1071
|
+
this.match(RuleFlowLanguageParser.VARIABLE);
|
|
1072
|
+
}
|
|
1073
|
+
break;
|
|
1074
|
+
case 3:
|
|
970
1075
|
{
|
|
971
1076
|
_localctx = new TupleListContext(_localctx);
|
|
972
1077
|
this._ctx = _localctx;
|
|
973
1078
|
_prevctx = _localctx;
|
|
974
|
-
this.state =
|
|
1079
|
+
this.state = 230;
|
|
975
1080
|
_localctx._value = this.propertyTuple();
|
|
976
|
-
this.state =
|
|
1081
|
+
this.state = 232;
|
|
977
1082
|
this._errHandler.sync(this);
|
|
978
1083
|
_la = this._input.LA(1);
|
|
979
1084
|
if (_la === RuleFlowLanguageParser.K_NOT) {
|
|
980
1085
|
{
|
|
981
|
-
this.state =
|
|
1086
|
+
this.state = 231;
|
|
982
1087
|
_localctx._not = this.match(RuleFlowLanguageParser.K_NOT);
|
|
983
1088
|
}
|
|
984
1089
|
}
|
|
985
|
-
this.state =
|
|
1090
|
+
this.state = 234;
|
|
986
1091
|
_localctx._op = this._input.LT(1);
|
|
987
1092
|
_la = this._input.LA(1);
|
|
988
|
-
if (!(((((_la -
|
|
1093
|
+
if (!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & ((1 << (RuleFlowLanguageParser.K_STARTS_WITH - 28)) | (1 << (RuleFlowLanguageParser.K_CONTAINS - 28)) | (1 << (RuleFlowLanguageParser.K_IN - 28)))) !== 0))) {
|
|
989
1094
|
_localctx._op = this._errHandler.recoverInline(this);
|
|
990
1095
|
}
|
|
991
1096
|
else {
|
|
@@ -995,208 +1100,227 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
995
1100
|
this._errHandler.reportMatch(this);
|
|
996
1101
|
this.consume();
|
|
997
1102
|
}
|
|
998
|
-
this.state =
|
|
1103
|
+
this.state = 235;
|
|
999
1104
|
_localctx._values = this.listElems();
|
|
1000
1105
|
}
|
|
1001
1106
|
break;
|
|
1002
|
-
case
|
|
1107
|
+
case 4:
|
|
1003
1108
|
{
|
|
1004
1109
|
_localctx = new DateOperationContext(_localctx);
|
|
1005
1110
|
this._ctx = _localctx;
|
|
1006
1111
|
_prevctx = _localctx;
|
|
1007
|
-
this.state =
|
|
1112
|
+
this.state = 237;
|
|
1008
1113
|
this.dateExpr();
|
|
1009
1114
|
}
|
|
1010
1115
|
break;
|
|
1011
|
-
case
|
|
1116
|
+
case 5:
|
|
1012
1117
|
{
|
|
1013
1118
|
_localctx = new RegexlikeContext(_localctx);
|
|
1014
1119
|
this._ctx = _localctx;
|
|
1015
1120
|
_prevctx = _localctx;
|
|
1016
|
-
this.state =
|
|
1121
|
+
this.state = 238;
|
|
1017
1122
|
_localctx._op = this.match(RuleFlowLanguageParser.REGEX_STRIP);
|
|
1018
|
-
this.state =
|
|
1123
|
+
this.state = 239;
|
|
1019
1124
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1020
|
-
this.state =
|
|
1125
|
+
this.state = 240;
|
|
1021
1126
|
_localctx._value = this.validProperty();
|
|
1022
|
-
this.state =
|
|
1127
|
+
this.state = 241;
|
|
1023
1128
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1024
|
-
this.state =
|
|
1129
|
+
this.state = 242;
|
|
1025
1130
|
_localctx._regex = this.match(RuleFlowLanguageParser.SQUOTA_STRING);
|
|
1026
|
-
this.state =
|
|
1131
|
+
this.state = 243;
|
|
1027
1132
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1028
1133
|
}
|
|
1029
1134
|
break;
|
|
1030
|
-
case
|
|
1135
|
+
case 6:
|
|
1031
1136
|
{
|
|
1032
1137
|
_localctx = new UnaryContext(_localctx);
|
|
1033
1138
|
this._ctx = _localctx;
|
|
1034
1139
|
_prevctx = _localctx;
|
|
1035
|
-
this.state =
|
|
1140
|
+
this.state = 245;
|
|
1036
1141
|
_localctx._op = this.match(RuleFlowLanguageParser.ABS);
|
|
1037
|
-
this.state =
|
|
1142
|
+
this.state = 246;
|
|
1038
1143
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1039
|
-
this.state =
|
|
1144
|
+
this.state = 247;
|
|
1040
1145
|
_localctx._left = this.expr(0);
|
|
1041
|
-
this.state =
|
|
1146
|
+
this.state = 248;
|
|
1042
1147
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1043
1148
|
}
|
|
1044
1149
|
break;
|
|
1045
|
-
case
|
|
1150
|
+
case 7:
|
|
1046
1151
|
{
|
|
1047
|
-
_localctx = new
|
|
1152
|
+
_localctx = new CustomFunctionCallContext(_localctx);
|
|
1048
1153
|
this._ctx = _localctx;
|
|
1049
1154
|
_prevctx = _localctx;
|
|
1050
|
-
this.state =
|
|
1051
|
-
|
|
1052
|
-
this.state =
|
|
1155
|
+
this.state = 250;
|
|
1156
|
+
this.match(RuleFlowLanguageParser.ID);
|
|
1157
|
+
this.state = 251;
|
|
1053
1158
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1054
|
-
this.state =
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1159
|
+
this.state = 260;
|
|
1160
|
+
this._errHandler.sync(this);
|
|
1161
|
+
_la = this._input.LA(1);
|
|
1162
|
+
if (((((_la - 1)) & ~0x1F) === 0 && ((1 << (_la - 1)) & ((1 << (RuleFlowLanguageParser.STRING_NOT_SPECIAL_CHARS - 1)) | (1 << (RuleFlowLanguageParser.DOT - 1)) | (1 << (RuleFlowLanguageParser.CURRENT_DATE - 1)) | (1 << (RuleFlowLanguageParser.DATE_DIFF - 1)) | (1 << (RuleFlowLanguageParser.ABS - 1)) | (1 << (RuleFlowLanguageParser.REGEX_STRIP - 1)) | (1 << (RuleFlowLanguageParser.L_PAREN - 1)))) !== 0) || ((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (RuleFlowLanguageParser.K_NULL - 57)) | (1 << (RuleFlowLanguageParser.DAY_OF_WEEK - 57)) | (1 << (RuleFlowLanguageParser.K_NOW - 57)) | (1 << (RuleFlowLanguageParser.K_DATE - 57)) | (1 << (RuleFlowLanguageParser.K_DATETIME - 57)) | (1 << (RuleFlowLanguageParser.K_DATE_ADD - 57)) | (1 << (RuleFlowLanguageParser.K_DATE_SUBTRACT - 57)) | (1 << (RuleFlowLanguageParser.STRING_DISTANCE - 57)) | (1 << (RuleFlowLanguageParser.PARTIAL_RATIO - 57)) | (1 << (RuleFlowLanguageParser.TOKEN_SORT_RATIO - 57)) | (1 << (RuleFlowLanguageParser.TOKEN_SET_RATIO - 57)) | (1 << (RuleFlowLanguageParser.STRING_SIMILARITY_SCORE - 57)) | (1 << (RuleFlowLanguageParser.GEOHASH_ENCODE - 57)) | (1 << (RuleFlowLanguageParser.GEOHASH_DECODE - 57)) | (1 << (RuleFlowLanguageParser.DISTANCE - 57)) | (1 << (RuleFlowLanguageParser.WITHIN_RADIUS - 57)) | (1 << (RuleFlowLanguageParser.NUMERIC_LITERAL - 57)) | (1 << (RuleFlowLanguageParser.BOOLEAN_LITERAL - 57)) | (1 << (RuleFlowLanguageParser.SQUOTA_STRING - 57)) | (1 << (RuleFlowLanguageParser.VARIABLE - 57)) | (1 << (RuleFlowLanguageParser.ID - 57)))) !== 0)) {
|
|
1163
|
+
{
|
|
1164
|
+
this.state = 252;
|
|
1165
|
+
this.expr(0);
|
|
1166
|
+
this.state = 257;
|
|
1167
|
+
this._errHandler.sync(this);
|
|
1168
|
+
_la = this._input.LA(1);
|
|
1169
|
+
while (_la === RuleFlowLanguageParser.COMMA) {
|
|
1170
|
+
{
|
|
1171
|
+
{
|
|
1172
|
+
this.state = 253;
|
|
1173
|
+
this.match(RuleFlowLanguageParser.COMMA);
|
|
1174
|
+
this.state = 254;
|
|
1175
|
+
this.expr(0);
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
this.state = 259;
|
|
1179
|
+
this._errHandler.sync(this);
|
|
1180
|
+
_la = this._input.LA(1);
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
this.state = 262;
|
|
1061
1185
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1062
1186
|
}
|
|
1063
1187
|
break;
|
|
1064
|
-
case
|
|
1188
|
+
case 8:
|
|
1065
1189
|
{
|
|
1066
1190
|
_localctx = new DateParseExprContext(_localctx);
|
|
1067
1191
|
this._ctx = _localctx;
|
|
1068
1192
|
_prevctx = _localctx;
|
|
1069
|
-
this.state =
|
|
1193
|
+
this.state = 263;
|
|
1070
1194
|
this.dateParse();
|
|
1071
1195
|
}
|
|
1072
1196
|
break;
|
|
1073
|
-
case
|
|
1197
|
+
case 9:
|
|
1074
1198
|
{
|
|
1075
1199
|
_localctx = new ValueContext(_localctx);
|
|
1076
1200
|
this._ctx = _localctx;
|
|
1077
1201
|
_prevctx = _localctx;
|
|
1078
|
-
this.state =
|
|
1202
|
+
this.state = 264;
|
|
1079
1203
|
this.validValue();
|
|
1080
1204
|
}
|
|
1081
1205
|
break;
|
|
1082
|
-
case
|
|
1206
|
+
case 10:
|
|
1083
1207
|
{
|
|
1084
1208
|
_localctx = new PropertyContext(_localctx);
|
|
1085
1209
|
this._ctx = _localctx;
|
|
1086
1210
|
_prevctx = _localctx;
|
|
1087
|
-
this.state =
|
|
1211
|
+
this.state = 265;
|
|
1088
1212
|
this.validProperty();
|
|
1089
1213
|
}
|
|
1090
1214
|
break;
|
|
1091
|
-
case
|
|
1215
|
+
case 11:
|
|
1092
1216
|
{
|
|
1093
1217
|
_localctx = new StringDistanceContext(_localctx);
|
|
1094
1218
|
this._ctx = _localctx;
|
|
1095
1219
|
_prevctx = _localctx;
|
|
1096
|
-
this.state =
|
|
1220
|
+
this.state = 266;
|
|
1097
1221
|
_localctx._op = this.match(RuleFlowLanguageParser.STRING_DISTANCE);
|
|
1098
|
-
this.state =
|
|
1222
|
+
this.state = 267;
|
|
1099
1223
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1100
|
-
this.state =
|
|
1224
|
+
this.state = 268;
|
|
1101
1225
|
_localctx._left = this.expr(0);
|
|
1102
|
-
this.state =
|
|
1226
|
+
this.state = 269;
|
|
1103
1227
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1104
|
-
this.state =
|
|
1228
|
+
this.state = 270;
|
|
1105
1229
|
_localctx._right = this.expr(0);
|
|
1106
|
-
this.state =
|
|
1230
|
+
this.state = 271;
|
|
1107
1231
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1108
1232
|
}
|
|
1109
1233
|
break;
|
|
1110
|
-
case
|
|
1234
|
+
case 12:
|
|
1111
1235
|
{
|
|
1112
1236
|
_localctx = new PartialRatioContext(_localctx);
|
|
1113
1237
|
this._ctx = _localctx;
|
|
1114
1238
|
_prevctx = _localctx;
|
|
1115
|
-
this.state =
|
|
1239
|
+
this.state = 273;
|
|
1116
1240
|
_localctx._op = this.match(RuleFlowLanguageParser.PARTIAL_RATIO);
|
|
1117
|
-
this.state =
|
|
1241
|
+
this.state = 274;
|
|
1118
1242
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1119
|
-
this.state =
|
|
1243
|
+
this.state = 275;
|
|
1120
1244
|
_localctx._left = this.expr(0);
|
|
1121
|
-
this.state =
|
|
1245
|
+
this.state = 276;
|
|
1122
1246
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1123
|
-
this.state =
|
|
1247
|
+
this.state = 277;
|
|
1124
1248
|
_localctx._right = this.expr(0);
|
|
1125
|
-
this.state =
|
|
1249
|
+
this.state = 278;
|
|
1126
1250
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1127
1251
|
}
|
|
1128
1252
|
break;
|
|
1129
|
-
case
|
|
1253
|
+
case 13:
|
|
1130
1254
|
{
|
|
1131
1255
|
_localctx = new TokenSortRatioContext(_localctx);
|
|
1132
1256
|
this._ctx = _localctx;
|
|
1133
1257
|
_prevctx = _localctx;
|
|
1134
|
-
this.state =
|
|
1258
|
+
this.state = 280;
|
|
1135
1259
|
_localctx._op = this.match(RuleFlowLanguageParser.TOKEN_SORT_RATIO);
|
|
1136
|
-
this.state =
|
|
1260
|
+
this.state = 281;
|
|
1137
1261
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1138
|
-
this.state =
|
|
1262
|
+
this.state = 282;
|
|
1139
1263
|
_localctx._left = this.expr(0);
|
|
1140
|
-
this.state =
|
|
1264
|
+
this.state = 283;
|
|
1141
1265
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1142
|
-
this.state =
|
|
1266
|
+
this.state = 284;
|
|
1143
1267
|
_localctx._right = this.expr(0);
|
|
1144
|
-
this.state =
|
|
1268
|
+
this.state = 285;
|
|
1145
1269
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1146
1270
|
}
|
|
1147
1271
|
break;
|
|
1148
|
-
case
|
|
1272
|
+
case 14:
|
|
1149
1273
|
{
|
|
1150
1274
|
_localctx = new TokenSetRatioContext(_localctx);
|
|
1151
1275
|
this._ctx = _localctx;
|
|
1152
1276
|
_prevctx = _localctx;
|
|
1153
|
-
this.state =
|
|
1277
|
+
this.state = 287;
|
|
1154
1278
|
_localctx._op = this.match(RuleFlowLanguageParser.TOKEN_SET_RATIO);
|
|
1155
|
-
this.state =
|
|
1279
|
+
this.state = 288;
|
|
1156
1280
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1157
|
-
this.state =
|
|
1281
|
+
this.state = 289;
|
|
1158
1282
|
_localctx._left = this.expr(0);
|
|
1159
|
-
this.state =
|
|
1283
|
+
this.state = 290;
|
|
1160
1284
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1161
|
-
this.state =
|
|
1285
|
+
this.state = 291;
|
|
1162
1286
|
_localctx._right = this.expr(0);
|
|
1163
|
-
this.state =
|
|
1287
|
+
this.state = 292;
|
|
1164
1288
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1165
1289
|
}
|
|
1166
1290
|
break;
|
|
1167
|
-
case
|
|
1291
|
+
case 15:
|
|
1168
1292
|
{
|
|
1169
1293
|
_localctx = new StringSimilarityScoreContext(_localctx);
|
|
1170
1294
|
this._ctx = _localctx;
|
|
1171
1295
|
_prevctx = _localctx;
|
|
1172
|
-
this.state =
|
|
1296
|
+
this.state = 294;
|
|
1173
1297
|
_localctx._op = this.match(RuleFlowLanguageParser.STRING_SIMILARITY_SCORE);
|
|
1174
|
-
this.state =
|
|
1298
|
+
this.state = 295;
|
|
1175
1299
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1176
|
-
this.state =
|
|
1300
|
+
this.state = 296;
|
|
1177
1301
|
_localctx._left = this.expr(0);
|
|
1178
|
-
this.state =
|
|
1302
|
+
this.state = 297;
|
|
1179
1303
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1180
|
-
this.state =
|
|
1304
|
+
this.state = 298;
|
|
1181
1305
|
_localctx._right = this.expr(0);
|
|
1182
|
-
this.state =
|
|
1306
|
+
this.state = 299;
|
|
1183
1307
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1184
1308
|
}
|
|
1185
1309
|
break;
|
|
1186
|
-
case
|
|
1310
|
+
case 16:
|
|
1187
1311
|
{
|
|
1188
1312
|
_localctx = new GeoOperationContext(_localctx);
|
|
1189
1313
|
this._ctx = _localctx;
|
|
1190
1314
|
_prevctx = _localctx;
|
|
1191
|
-
this.state =
|
|
1315
|
+
this.state = 301;
|
|
1192
1316
|
this.geoExpr();
|
|
1193
1317
|
}
|
|
1194
1318
|
break;
|
|
1195
1319
|
}
|
|
1196
1320
|
this._ctx._stop = this._input.tryLT(-1);
|
|
1197
|
-
this.state =
|
|
1321
|
+
this.state = 341;
|
|
1198
1322
|
this._errHandler.sync(this);
|
|
1199
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
1323
|
+
_alt = this.interpreter.adaptivePredict(this._input, 30, this._ctx);
|
|
1200
1324
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
1201
1325
|
if (_alt === 1) {
|
|
1202
1326
|
if (this._parseListeners != null) {
|
|
@@ -1204,19 +1328,19 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1204
1328
|
}
|
|
1205
1329
|
_prevctx = _localctx;
|
|
1206
1330
|
{
|
|
1207
|
-
this.state =
|
|
1331
|
+
this.state = 339;
|
|
1208
1332
|
this._errHandler.sync(this);
|
|
1209
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
1333
|
+
switch (this.interpreter.adaptivePredict(this._input, 29, this._ctx)) {
|
|
1210
1334
|
case 1:
|
|
1211
1335
|
{
|
|
1212
1336
|
_localctx = new MathMulContext(new ExprContext(_parentctx, _parentState));
|
|
1213
1337
|
_localctx._left = _prevctx;
|
|
1214
1338
|
this.pushNewRecursionContext(_localctx, _startState, RuleFlowLanguageParser.RULE_expr);
|
|
1215
|
-
this.state =
|
|
1339
|
+
this.state = 304;
|
|
1216
1340
|
if (!(this.precpred(this._ctx, 21))) {
|
|
1217
1341
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 21)");
|
|
1218
1342
|
}
|
|
1219
|
-
this.state =
|
|
1343
|
+
this.state = 305;
|
|
1220
1344
|
_localctx._op = this._input.LT(1);
|
|
1221
1345
|
_la = this._input.LA(1);
|
|
1222
1346
|
if (!((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << RuleFlowLanguageParser.MULTIPLY) | (1 << RuleFlowLanguageParser.DIVIDE) | (1 << RuleFlowLanguageParser.MODULO))) !== 0))) {
|
|
@@ -1229,7 +1353,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1229
1353
|
this._errHandler.reportMatch(this);
|
|
1230
1354
|
this.consume();
|
|
1231
1355
|
}
|
|
1232
|
-
this.state =
|
|
1356
|
+
this.state = 306;
|
|
1233
1357
|
_localctx._right = this.expr(22);
|
|
1234
1358
|
}
|
|
1235
1359
|
break;
|
|
@@ -1238,11 +1362,11 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1238
1362
|
_localctx = new MathAddContext(new ExprContext(_parentctx, _parentState));
|
|
1239
1363
|
_localctx._left = _prevctx;
|
|
1240
1364
|
this.pushNewRecursionContext(_localctx, _startState, RuleFlowLanguageParser.RULE_expr);
|
|
1241
|
-
this.state =
|
|
1365
|
+
this.state = 307;
|
|
1242
1366
|
if (!(this.precpred(this._ctx, 20))) {
|
|
1243
1367
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 20)");
|
|
1244
1368
|
}
|
|
1245
|
-
this.state =
|
|
1369
|
+
this.state = 308;
|
|
1246
1370
|
_localctx._op = this._input.LT(1);
|
|
1247
1371
|
_la = this._input.LA(1);
|
|
1248
1372
|
if (!(_la === RuleFlowLanguageParser.ADD || _la === RuleFlowLanguageParser.MINUS)) {
|
|
@@ -1255,7 +1379,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1255
1379
|
this._errHandler.reportMatch(this);
|
|
1256
1380
|
this.consume();
|
|
1257
1381
|
}
|
|
1258
|
-
this.state =
|
|
1382
|
+
this.state = 309;
|
|
1259
1383
|
_localctx._right = this.expr(21);
|
|
1260
1384
|
}
|
|
1261
1385
|
break;
|
|
@@ -1264,11 +1388,11 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1264
1388
|
_localctx = new ComparatorContext(new ExprContext(_parentctx, _parentState));
|
|
1265
1389
|
_localctx._left = _prevctx;
|
|
1266
1390
|
this.pushNewRecursionContext(_localctx, _startState, RuleFlowLanguageParser.RULE_expr);
|
|
1267
|
-
this.state =
|
|
1391
|
+
this.state = 310;
|
|
1268
1392
|
if (!(this.precpred(this._ctx, 19))) {
|
|
1269
1393
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 19)");
|
|
1270
1394
|
}
|
|
1271
|
-
this.state =
|
|
1395
|
+
this.state = 311;
|
|
1272
1396
|
_localctx._op = this._input.LT(1);
|
|
1273
1397
|
_la = this._input.LA(1);
|
|
1274
1398
|
if (!((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << RuleFlowLanguageParser.LT) | (1 << RuleFlowLanguageParser.LT_EQ) | (1 << RuleFlowLanguageParser.GT) | (1 << RuleFlowLanguageParser.GT_EQ) | (1 << RuleFlowLanguageParser.EQ_IC) | (1 << RuleFlowLanguageParser.EQ) | (1 << RuleFlowLanguageParser.NOT_EQ))) !== 0))) {
|
|
@@ -1281,7 +1405,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1281
1405
|
this._errHandler.reportMatch(this);
|
|
1282
1406
|
this.consume();
|
|
1283
1407
|
}
|
|
1284
|
-
this.state =
|
|
1408
|
+
this.state = 312;
|
|
1285
1409
|
_localctx._right = this.expr(20);
|
|
1286
1410
|
}
|
|
1287
1411
|
break;
|
|
@@ -1290,13 +1414,13 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1290
1414
|
_localctx = new BinaryAndContext(new ExprContext(_parentctx, _parentState));
|
|
1291
1415
|
_localctx._left = _prevctx;
|
|
1292
1416
|
this.pushNewRecursionContext(_localctx, _startState, RuleFlowLanguageParser.RULE_expr);
|
|
1293
|
-
this.state =
|
|
1417
|
+
this.state = 313;
|
|
1294
1418
|
if (!(this.precpred(this._ctx, 11))) {
|
|
1295
1419
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 11)");
|
|
1296
1420
|
}
|
|
1297
|
-
this.state =
|
|
1421
|
+
this.state = 314;
|
|
1298
1422
|
_localctx._op = this.match(RuleFlowLanguageParser.K_AND);
|
|
1299
|
-
this.state =
|
|
1423
|
+
this.state = 315;
|
|
1300
1424
|
_localctx._right = this.expr(12);
|
|
1301
1425
|
}
|
|
1302
1426
|
break;
|
|
@@ -1305,38 +1429,53 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1305
1429
|
_localctx = new BinaryOrContext(new ExprContext(_parentctx, _parentState));
|
|
1306
1430
|
_localctx._left = _prevctx;
|
|
1307
1431
|
this.pushNewRecursionContext(_localctx, _startState, RuleFlowLanguageParser.RULE_expr);
|
|
1308
|
-
this.state =
|
|
1432
|
+
this.state = 316;
|
|
1309
1433
|
if (!(this.precpred(this._ctx, 10))) {
|
|
1310
1434
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 10)");
|
|
1311
1435
|
}
|
|
1312
|
-
this.state =
|
|
1436
|
+
this.state = 317;
|
|
1313
1437
|
_localctx._op = this.match(RuleFlowLanguageParser.K_OR);
|
|
1314
|
-
this.state =
|
|
1438
|
+
this.state = 318;
|
|
1315
1439
|
_localctx._right = this.expr(11);
|
|
1316
1440
|
}
|
|
1317
1441
|
break;
|
|
1318
1442
|
case 6:
|
|
1443
|
+
{
|
|
1444
|
+
_localctx = new MemberAccessContext(new ExprContext(_parentctx, _parentState));
|
|
1445
|
+
_localctx._base = _prevctx;
|
|
1446
|
+
this.pushNewRecursionContext(_localctx, _startState, RuleFlowLanguageParser.RULE_expr);
|
|
1447
|
+
this.state = 319;
|
|
1448
|
+
if (!(this.precpred(this._ctx, 22))) {
|
|
1449
|
+
throw this.createFailedPredicateException("this.precpred(this._ctx, 22)");
|
|
1450
|
+
}
|
|
1451
|
+
this.state = 320;
|
|
1452
|
+
this.match(RuleFlowLanguageParser.DOT);
|
|
1453
|
+
this.state = 321;
|
|
1454
|
+
_localctx._field = this.match(RuleFlowLanguageParser.ID);
|
|
1455
|
+
}
|
|
1456
|
+
break;
|
|
1457
|
+
case 7:
|
|
1319
1458
|
{
|
|
1320
1459
|
_localctx = new ListContext(new ExprContext(_parentctx, _parentState));
|
|
1321
1460
|
_localctx._value = _prevctx;
|
|
1322
1461
|
this.pushNewRecursionContext(_localctx, _startState, RuleFlowLanguageParser.RULE_expr);
|
|
1323
|
-
this.state =
|
|
1462
|
+
this.state = 322;
|
|
1324
1463
|
if (!(this.precpred(this._ctx, 18))) {
|
|
1325
1464
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 18)");
|
|
1326
1465
|
}
|
|
1327
|
-
this.state =
|
|
1466
|
+
this.state = 324;
|
|
1328
1467
|
this._errHandler.sync(this);
|
|
1329
1468
|
_la = this._input.LA(1);
|
|
1330
1469
|
if (_la === RuleFlowLanguageParser.K_NOT) {
|
|
1331
1470
|
{
|
|
1332
|
-
this.state =
|
|
1471
|
+
this.state = 323;
|
|
1333
1472
|
_localctx._not = this.match(RuleFlowLanguageParser.K_NOT);
|
|
1334
1473
|
}
|
|
1335
1474
|
}
|
|
1336
|
-
this.state =
|
|
1475
|
+
this.state = 326;
|
|
1337
1476
|
_localctx._op = this._input.LT(1);
|
|
1338
1477
|
_la = this._input.LA(1);
|
|
1339
|
-
if (!(((((_la -
|
|
1478
|
+
if (!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & ((1 << (RuleFlowLanguageParser.K_STARTS_WITH - 28)) | (1 << (RuleFlowLanguageParser.K_CONTAINS - 28)) | (1 << (RuleFlowLanguageParser.K_IN - 28)))) !== 0))) {
|
|
1340
1479
|
_localctx._op = this._errHandler.recoverInline(this);
|
|
1341
1480
|
}
|
|
1342
1481
|
else {
|
|
@@ -1346,25 +1485,25 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1346
1485
|
this._errHandler.reportMatch(this);
|
|
1347
1486
|
this.consume();
|
|
1348
1487
|
}
|
|
1349
|
-
this.state =
|
|
1488
|
+
this.state = 327;
|
|
1350
1489
|
_localctx._values = this.listElems();
|
|
1351
1490
|
}
|
|
1352
1491
|
break;
|
|
1353
|
-
case
|
|
1492
|
+
case 8:
|
|
1354
1493
|
{
|
|
1355
1494
|
_localctx = new AggregationContext(new ExprContext(_parentctx, _parentState));
|
|
1356
1495
|
_localctx._value = _prevctx;
|
|
1357
1496
|
this.pushNewRecursionContext(_localctx, _startState, RuleFlowLanguageParser.RULE_expr);
|
|
1358
|
-
this.state =
|
|
1497
|
+
this.state = 328;
|
|
1359
1498
|
if (!(this.precpred(this._ctx, 16))) {
|
|
1360
1499
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 16)");
|
|
1361
1500
|
}
|
|
1362
|
-
this.state =
|
|
1501
|
+
this.state = 329;
|
|
1363
1502
|
this.match(RuleFlowLanguageParser.DOT);
|
|
1364
|
-
this.state =
|
|
1503
|
+
this.state = 330;
|
|
1365
1504
|
_localctx._op = this._input.LT(1);
|
|
1366
1505
|
_la = this._input.LA(1);
|
|
1367
|
-
if (!(((((_la -
|
|
1506
|
+
if (!(((((_la - 46)) & ~0x1F) === 0 && ((1 << (_la - 46)) & ((1 << (RuleFlowLanguageParser.K_CONTAINS - 46)) | (1 << (RuleFlowLanguageParser.K_ANY - 46)) | (1 << (RuleFlowLanguageParser.K_NONE - 46)) | (1 << (RuleFlowLanguageParser.K_ALL - 46)) | (1 << (RuleFlowLanguageParser.K_COUNT - 46)) | (1 << (RuleFlowLanguageParser.K_AVERAGE - 46)) | (1 << (RuleFlowLanguageParser.K_DISTINCT - 46)))) !== 0))) {
|
|
1368
1507
|
_localctx._op = this._errHandler.recoverInline(this);
|
|
1369
1508
|
}
|
|
1370
1509
|
else {
|
|
@@ -1374,24 +1513,24 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1374
1513
|
this._errHandler.reportMatch(this);
|
|
1375
1514
|
this.consume();
|
|
1376
1515
|
}
|
|
1377
|
-
this.state =
|
|
1516
|
+
this.state = 337;
|
|
1378
1517
|
this._errHandler.sync(this);
|
|
1379
1518
|
switch (this._input.LA(1)) {
|
|
1380
1519
|
case RuleFlowLanguageParser.L_BRACE:
|
|
1381
1520
|
{
|
|
1382
|
-
this.state =
|
|
1521
|
+
this.state = 331;
|
|
1383
1522
|
this.match(RuleFlowLanguageParser.L_BRACE);
|
|
1384
|
-
this.state =
|
|
1523
|
+
this.state = 332;
|
|
1385
1524
|
_localctx._predicate = this.expr(0);
|
|
1386
|
-
this.state =
|
|
1525
|
+
this.state = 333;
|
|
1387
1526
|
this.match(RuleFlowLanguageParser.R_BRACE);
|
|
1388
1527
|
}
|
|
1389
1528
|
break;
|
|
1390
1529
|
case RuleFlowLanguageParser.L_PAREN:
|
|
1391
1530
|
{
|
|
1392
|
-
this.state =
|
|
1531
|
+
this.state = 335;
|
|
1393
1532
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1394
|
-
this.state =
|
|
1533
|
+
this.state = 336;
|
|
1395
1534
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1396
1535
|
}
|
|
1397
1536
|
break;
|
|
@@ -1403,9 +1542,9 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1403
1542
|
}
|
|
1404
1543
|
}
|
|
1405
1544
|
}
|
|
1406
|
-
this.state =
|
|
1545
|
+
this.state = 343;
|
|
1407
1546
|
this._errHandler.sync(this);
|
|
1408
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
1547
|
+
_alt = this.interpreter.adaptivePredict(this._input, 30, this._ctx);
|
|
1409
1548
|
}
|
|
1410
1549
|
}
|
|
1411
1550
|
}
|
|
@@ -1427,38 +1566,38 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1427
1566
|
// @RuleVersion(0)
|
|
1428
1567
|
geoExpr() {
|
|
1429
1568
|
let _localctx = new GeoExprContext(this._ctx, this.state);
|
|
1430
|
-
this.enterRule(_localctx,
|
|
1569
|
+
this.enterRule(_localctx, 44, RuleFlowLanguageParser.RULE_geoExpr);
|
|
1431
1570
|
let _la;
|
|
1432
1571
|
try {
|
|
1433
|
-
this.state =
|
|
1572
|
+
this.state = 391;
|
|
1434
1573
|
this._errHandler.sync(this);
|
|
1435
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
1574
|
+
switch (this.interpreter.adaptivePredict(this._input, 32, this._ctx)) {
|
|
1436
1575
|
case 1:
|
|
1437
1576
|
_localctx = new GeohashEncodeContext(_localctx);
|
|
1438
1577
|
this.enterOuterAlt(_localctx, 1);
|
|
1439
1578
|
{
|
|
1440
|
-
this.state =
|
|
1579
|
+
this.state = 344;
|
|
1441
1580
|
this.match(RuleFlowLanguageParser.GEOHASH_ENCODE);
|
|
1442
|
-
this.state =
|
|
1581
|
+
this.state = 345;
|
|
1443
1582
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1444
|
-
this.state =
|
|
1583
|
+
this.state = 346;
|
|
1445
1584
|
_localctx._lat = this.expr(0);
|
|
1446
|
-
this.state =
|
|
1585
|
+
this.state = 347;
|
|
1447
1586
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1448
|
-
this.state =
|
|
1587
|
+
this.state = 348;
|
|
1449
1588
|
_localctx._lon = this.expr(0);
|
|
1450
|
-
this.state =
|
|
1589
|
+
this.state = 351;
|
|
1451
1590
|
this._errHandler.sync(this);
|
|
1452
1591
|
_la = this._input.LA(1);
|
|
1453
1592
|
if (_la === RuleFlowLanguageParser.COMMA) {
|
|
1454
1593
|
{
|
|
1455
|
-
this.state =
|
|
1594
|
+
this.state = 349;
|
|
1456
1595
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1457
|
-
this.state =
|
|
1596
|
+
this.state = 350;
|
|
1458
1597
|
_localctx._precision = this.expr(0);
|
|
1459
1598
|
}
|
|
1460
1599
|
}
|
|
1461
|
-
this.state =
|
|
1600
|
+
this.state = 353;
|
|
1462
1601
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1463
1602
|
}
|
|
1464
1603
|
break;
|
|
@@ -1466,13 +1605,13 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1466
1605
|
_localctx = new GeohashDecodeContext(_localctx);
|
|
1467
1606
|
this.enterOuterAlt(_localctx, 2);
|
|
1468
1607
|
{
|
|
1469
|
-
this.state =
|
|
1608
|
+
this.state = 355;
|
|
1470
1609
|
this.match(RuleFlowLanguageParser.GEOHASH_DECODE);
|
|
1471
|
-
this.state =
|
|
1610
|
+
this.state = 356;
|
|
1472
1611
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1473
|
-
this.state =
|
|
1612
|
+
this.state = 357;
|
|
1474
1613
|
_localctx._geohash = this.expr(0);
|
|
1475
|
-
this.state =
|
|
1614
|
+
this.state = 358;
|
|
1476
1615
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1477
1616
|
}
|
|
1478
1617
|
break;
|
|
@@ -1480,25 +1619,25 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1480
1619
|
_localctx = new DistanceContext(_localctx);
|
|
1481
1620
|
this.enterOuterAlt(_localctx, 3);
|
|
1482
1621
|
{
|
|
1483
|
-
this.state =
|
|
1622
|
+
this.state = 360;
|
|
1484
1623
|
this.match(RuleFlowLanguageParser.DISTANCE);
|
|
1485
|
-
this.state =
|
|
1624
|
+
this.state = 361;
|
|
1486
1625
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1487
|
-
this.state =
|
|
1626
|
+
this.state = 362;
|
|
1488
1627
|
_localctx._lat1 = this.expr(0);
|
|
1489
|
-
this.state =
|
|
1628
|
+
this.state = 363;
|
|
1490
1629
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1491
|
-
this.state =
|
|
1630
|
+
this.state = 364;
|
|
1492
1631
|
_localctx._lon1 = this.expr(0);
|
|
1493
|
-
this.state =
|
|
1632
|
+
this.state = 365;
|
|
1494
1633
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1495
|
-
this.state =
|
|
1634
|
+
this.state = 366;
|
|
1496
1635
|
_localctx._lat2 = this.expr(0);
|
|
1497
|
-
this.state =
|
|
1636
|
+
this.state = 367;
|
|
1498
1637
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1499
|
-
this.state =
|
|
1638
|
+
this.state = 368;
|
|
1500
1639
|
_localctx._lon2 = this.expr(0);
|
|
1501
|
-
this.state =
|
|
1640
|
+
this.state = 369;
|
|
1502
1641
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1503
1642
|
}
|
|
1504
1643
|
break;
|
|
@@ -1506,17 +1645,17 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1506
1645
|
_localctx = new DistanceGeohashContext(_localctx);
|
|
1507
1646
|
this.enterOuterAlt(_localctx, 4);
|
|
1508
1647
|
{
|
|
1509
|
-
this.state =
|
|
1648
|
+
this.state = 371;
|
|
1510
1649
|
this.match(RuleFlowLanguageParser.DISTANCE);
|
|
1511
|
-
this.state =
|
|
1650
|
+
this.state = 372;
|
|
1512
1651
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1513
|
-
this.state =
|
|
1652
|
+
this.state = 373;
|
|
1514
1653
|
_localctx._geohash1 = this.expr(0);
|
|
1515
|
-
this.state =
|
|
1654
|
+
this.state = 374;
|
|
1516
1655
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1517
|
-
this.state =
|
|
1656
|
+
this.state = 375;
|
|
1518
1657
|
_localctx._geohash2 = this.expr(0);
|
|
1519
|
-
this.state =
|
|
1658
|
+
this.state = 376;
|
|
1520
1659
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1521
1660
|
}
|
|
1522
1661
|
break;
|
|
@@ -1524,29 +1663,29 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1524
1663
|
_localctx = new WithinRadiusContext(_localctx);
|
|
1525
1664
|
this.enterOuterAlt(_localctx, 5);
|
|
1526
1665
|
{
|
|
1527
|
-
this.state =
|
|
1666
|
+
this.state = 378;
|
|
1528
1667
|
this.match(RuleFlowLanguageParser.WITHIN_RADIUS);
|
|
1529
|
-
this.state =
|
|
1668
|
+
this.state = 379;
|
|
1530
1669
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1531
|
-
this.state =
|
|
1670
|
+
this.state = 380;
|
|
1532
1671
|
_localctx._lat1 = this.expr(0);
|
|
1533
|
-
this.state =
|
|
1672
|
+
this.state = 381;
|
|
1534
1673
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1535
|
-
this.state =
|
|
1674
|
+
this.state = 382;
|
|
1536
1675
|
_localctx._lon1 = this.expr(0);
|
|
1537
|
-
this.state =
|
|
1676
|
+
this.state = 383;
|
|
1538
1677
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1539
|
-
this.state =
|
|
1678
|
+
this.state = 384;
|
|
1540
1679
|
_localctx._lat2 = this.expr(0);
|
|
1541
|
-
this.state =
|
|
1680
|
+
this.state = 385;
|
|
1542
1681
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1543
|
-
this.state =
|
|
1682
|
+
this.state = 386;
|
|
1544
1683
|
_localctx._lon2 = this.expr(0);
|
|
1545
|
-
this.state =
|
|
1684
|
+
this.state = 387;
|
|
1546
1685
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1547
|
-
this.state =
|
|
1686
|
+
this.state = 388;
|
|
1548
1687
|
_localctx._radius = this.expr(0);
|
|
1549
|
-
this.state =
|
|
1688
|
+
this.state = 389;
|
|
1550
1689
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1551
1690
|
}
|
|
1552
1691
|
break;
|
|
@@ -1570,29 +1709,29 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1570
1709
|
// @RuleVersion(0)
|
|
1571
1710
|
dateExpr() {
|
|
1572
1711
|
let _localctx = new DateExprContext(this._ctx, this.state);
|
|
1573
|
-
this.enterRule(_localctx,
|
|
1712
|
+
this.enterRule(_localctx, 46, RuleFlowLanguageParser.RULE_dateExpr);
|
|
1574
1713
|
let _la;
|
|
1575
1714
|
try {
|
|
1576
|
-
this.state =
|
|
1715
|
+
this.state = 428;
|
|
1577
1716
|
this._errHandler.sync(this);
|
|
1578
1717
|
switch (this._input.LA(1)) {
|
|
1579
1718
|
case RuleFlowLanguageParser.DATE_DIFF:
|
|
1580
1719
|
_localctx = new DateDiffContext(_localctx);
|
|
1581
1720
|
this.enterOuterAlt(_localctx, 1);
|
|
1582
1721
|
{
|
|
1583
|
-
this.state =
|
|
1722
|
+
this.state = 393;
|
|
1584
1723
|
this.match(RuleFlowLanguageParser.DATE_DIFF);
|
|
1585
|
-
this.state =
|
|
1724
|
+
this.state = 394;
|
|
1586
1725
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1587
|
-
this.state =
|
|
1726
|
+
this.state = 395;
|
|
1588
1727
|
_localctx._left = this.dateValue();
|
|
1589
|
-
this.state =
|
|
1728
|
+
this.state = 396;
|
|
1590
1729
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1591
|
-
this.state =
|
|
1730
|
+
this.state = 397;
|
|
1592
1731
|
_localctx._right = this.dateValue();
|
|
1593
|
-
this.state =
|
|
1732
|
+
this.state = 398;
|
|
1594
1733
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1595
|
-
this.state =
|
|
1734
|
+
this.state = 399;
|
|
1596
1735
|
_la = this._input.LA(1);
|
|
1597
1736
|
if (!((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << RuleFlowLanguageParser.MINUTE) | (1 << RuleFlowLanguageParser.HOUR) | (1 << RuleFlowLanguageParser.DAY))) !== 0))) {
|
|
1598
1737
|
this._errHandler.recoverInline(this);
|
|
@@ -1604,7 +1743,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1604
1743
|
this._errHandler.reportMatch(this);
|
|
1605
1744
|
this.consume();
|
|
1606
1745
|
}
|
|
1607
|
-
this.state =
|
|
1746
|
+
this.state = 400;
|
|
1608
1747
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1609
1748
|
}
|
|
1610
1749
|
break;
|
|
@@ -1612,13 +1751,13 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1612
1751
|
_localctx = new DayOfWeekContext(_localctx);
|
|
1613
1752
|
this.enterOuterAlt(_localctx, 2);
|
|
1614
1753
|
{
|
|
1615
|
-
this.state =
|
|
1754
|
+
this.state = 402;
|
|
1616
1755
|
_localctx._op = this.match(RuleFlowLanguageParser.DAY_OF_WEEK);
|
|
1617
|
-
this.state =
|
|
1756
|
+
this.state = 403;
|
|
1618
1757
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1619
|
-
this.state =
|
|
1758
|
+
this.state = 404;
|
|
1620
1759
|
_localctx._left = this.dateValue();
|
|
1621
|
-
this.state =
|
|
1760
|
+
this.state = 405;
|
|
1622
1761
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1623
1762
|
}
|
|
1624
1763
|
break;
|
|
@@ -1626,11 +1765,11 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1626
1765
|
_localctx = new NowContext(_localctx);
|
|
1627
1766
|
this.enterOuterAlt(_localctx, 3);
|
|
1628
1767
|
{
|
|
1629
|
-
this.state =
|
|
1768
|
+
this.state = 407;
|
|
1630
1769
|
_localctx._op = this.match(RuleFlowLanguageParser.K_NOW);
|
|
1631
|
-
this.state =
|
|
1770
|
+
this.state = 408;
|
|
1632
1771
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1633
|
-
this.state =
|
|
1772
|
+
this.state = 409;
|
|
1634
1773
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1635
1774
|
}
|
|
1636
1775
|
break;
|
|
@@ -1638,21 +1777,21 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1638
1777
|
_localctx = new DateAddContext(_localctx);
|
|
1639
1778
|
this.enterOuterAlt(_localctx, 4);
|
|
1640
1779
|
{
|
|
1641
|
-
this.state =
|
|
1780
|
+
this.state = 410;
|
|
1642
1781
|
_localctx._op = this.match(RuleFlowLanguageParser.K_DATE_ADD);
|
|
1643
|
-
this.state =
|
|
1782
|
+
this.state = 411;
|
|
1644
1783
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1645
|
-
this.state =
|
|
1784
|
+
this.state = 412;
|
|
1646
1785
|
_localctx._date = this.dateValue();
|
|
1647
|
-
this.state =
|
|
1786
|
+
this.state = 413;
|
|
1648
1787
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1649
|
-
this.state =
|
|
1788
|
+
this.state = 414;
|
|
1650
1789
|
_localctx._amount = this.expr(0);
|
|
1651
|
-
this.state =
|
|
1790
|
+
this.state = 415;
|
|
1652
1791
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1653
|
-
this.state =
|
|
1792
|
+
this.state = 416;
|
|
1654
1793
|
_localctx._unit = this.timeUnit();
|
|
1655
|
-
this.state =
|
|
1794
|
+
this.state = 417;
|
|
1656
1795
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1657
1796
|
}
|
|
1658
1797
|
break;
|
|
@@ -1660,21 +1799,21 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1660
1799
|
_localctx = new DateSubtractContext(_localctx);
|
|
1661
1800
|
this.enterOuterAlt(_localctx, 5);
|
|
1662
1801
|
{
|
|
1663
|
-
this.state =
|
|
1802
|
+
this.state = 419;
|
|
1664
1803
|
_localctx._op = this.match(RuleFlowLanguageParser.K_DATE_SUBTRACT);
|
|
1665
|
-
this.state =
|
|
1804
|
+
this.state = 420;
|
|
1666
1805
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1667
|
-
this.state =
|
|
1806
|
+
this.state = 421;
|
|
1668
1807
|
_localctx._date = this.dateValue();
|
|
1669
|
-
this.state =
|
|
1808
|
+
this.state = 422;
|
|
1670
1809
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1671
|
-
this.state =
|
|
1810
|
+
this.state = 423;
|
|
1672
1811
|
_localctx._amount = this.expr(0);
|
|
1673
|
-
this.state =
|
|
1812
|
+
this.state = 424;
|
|
1674
1813
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1675
|
-
this.state =
|
|
1814
|
+
this.state = 425;
|
|
1676
1815
|
_localctx._unit = this.timeUnit();
|
|
1677
|
-
this.state =
|
|
1816
|
+
this.state = 426;
|
|
1678
1817
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1679
1818
|
}
|
|
1680
1819
|
break;
|
|
@@ -1700,32 +1839,32 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1700
1839
|
// @RuleVersion(0)
|
|
1701
1840
|
propertyTuple() {
|
|
1702
1841
|
let _localctx = new PropertyTupleContext(this._ctx, this.state);
|
|
1703
|
-
this.enterRule(_localctx,
|
|
1842
|
+
this.enterRule(_localctx, 48, RuleFlowLanguageParser.RULE_propertyTuple);
|
|
1704
1843
|
let _la;
|
|
1705
1844
|
try {
|
|
1706
1845
|
this.enterOuterAlt(_localctx, 1);
|
|
1707
1846
|
{
|
|
1708
|
-
this.state =
|
|
1847
|
+
this.state = 430;
|
|
1709
1848
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1710
|
-
this.state =
|
|
1849
|
+
this.state = 431;
|
|
1711
1850
|
this.validProperty();
|
|
1712
|
-
this.state =
|
|
1851
|
+
this.state = 436;
|
|
1713
1852
|
this._errHandler.sync(this);
|
|
1714
1853
|
_la = this._input.LA(1);
|
|
1715
1854
|
while (_la === RuleFlowLanguageParser.COMMA) {
|
|
1716
1855
|
{
|
|
1717
1856
|
{
|
|
1718
|
-
this.state =
|
|
1857
|
+
this.state = 432;
|
|
1719
1858
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1720
|
-
this.state =
|
|
1859
|
+
this.state = 433;
|
|
1721
1860
|
this.validProperty();
|
|
1722
1861
|
}
|
|
1723
1862
|
}
|
|
1724
|
-
this.state =
|
|
1863
|
+
this.state = 438;
|
|
1725
1864
|
this._errHandler.sync(this);
|
|
1726
1865
|
_la = this._input.LA(1);
|
|
1727
1866
|
}
|
|
1728
|
-
this.state =
|
|
1867
|
+
this.state = 439;
|
|
1729
1868
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1730
1869
|
}
|
|
1731
1870
|
}
|
|
@@ -1747,23 +1886,23 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1747
1886
|
// @RuleVersion(0)
|
|
1748
1887
|
listElems() {
|
|
1749
1888
|
let _localctx = new ListElemsContext(this._ctx, this.state);
|
|
1750
|
-
this.enterRule(_localctx,
|
|
1889
|
+
this.enterRule(_localctx, 50, RuleFlowLanguageParser.RULE_listElems);
|
|
1751
1890
|
let _la;
|
|
1752
1891
|
try {
|
|
1753
1892
|
let _alt;
|
|
1754
|
-
this.state =
|
|
1893
|
+
this.state = 485;
|
|
1755
1894
|
this._errHandler.sync(this);
|
|
1756
1895
|
switch (this._input.LA(1)) {
|
|
1757
1896
|
case RuleFlowLanguageParser.K_LIST:
|
|
1758
1897
|
this.enterOuterAlt(_localctx, 1);
|
|
1759
1898
|
{
|
|
1760
|
-
this.state =
|
|
1899
|
+
this.state = 441;
|
|
1761
1900
|
_localctx._storedList = this.match(RuleFlowLanguageParser.K_LIST);
|
|
1762
|
-
this.state =
|
|
1901
|
+
this.state = 442;
|
|
1763
1902
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1764
|
-
this.state =
|
|
1903
|
+
this.state = 443;
|
|
1765
1904
|
this.string_literal();
|
|
1766
|
-
this.state =
|
|
1905
|
+
this.state = 444;
|
|
1767
1906
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1768
1907
|
}
|
|
1769
1908
|
break;
|
|
@@ -1771,101 +1910,100 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1771
1910
|
case RuleFlowLanguageParser.SQUOTA_STRING:
|
|
1772
1911
|
this.enterOuterAlt(_localctx, 2);
|
|
1773
1912
|
{
|
|
1774
|
-
this.state =
|
|
1913
|
+
this.state = 446;
|
|
1775
1914
|
_localctx._literalList = this.string_literal();
|
|
1776
|
-
this.state =
|
|
1915
|
+
this.state = 451;
|
|
1777
1916
|
this._errHandler.sync(this);
|
|
1778
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
1917
|
+
_alt = this.interpreter.adaptivePredict(this._input, 35, this._ctx);
|
|
1779
1918
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
1780
1919
|
if (_alt === 1) {
|
|
1781
1920
|
{
|
|
1782
1921
|
{
|
|
1783
|
-
this.state =
|
|
1922
|
+
this.state = 447;
|
|
1784
1923
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1785
|
-
this.state =
|
|
1924
|
+
this.state = 448;
|
|
1786
1925
|
this.string_literal();
|
|
1787
1926
|
}
|
|
1788
1927
|
}
|
|
1789
1928
|
}
|
|
1790
|
-
this.state =
|
|
1929
|
+
this.state = 453;
|
|
1791
1930
|
this._errHandler.sync(this);
|
|
1792
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
1931
|
+
_alt = this.interpreter.adaptivePredict(this._input, 35, this._ctx);
|
|
1793
1932
|
}
|
|
1794
1933
|
}
|
|
1795
1934
|
break;
|
|
1796
1935
|
case RuleFlowLanguageParser.L_PAREN:
|
|
1797
1936
|
this.enterOuterAlt(_localctx, 3);
|
|
1798
1937
|
{
|
|
1799
|
-
this.state =
|
|
1938
|
+
this.state = 454;
|
|
1800
1939
|
_localctx._literalTupleList = this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1801
|
-
this.state =
|
|
1940
|
+
this.state = 455;
|
|
1802
1941
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1803
|
-
this.state =
|
|
1942
|
+
this.state = 456;
|
|
1804
1943
|
this.string_literal();
|
|
1805
|
-
this.state =
|
|
1944
|
+
this.state = 461;
|
|
1806
1945
|
this._errHandler.sync(this);
|
|
1807
1946
|
_la = this._input.LA(1);
|
|
1808
1947
|
while (_la === RuleFlowLanguageParser.COMMA) {
|
|
1809
1948
|
{
|
|
1810
1949
|
{
|
|
1811
|
-
this.state =
|
|
1950
|
+
this.state = 457;
|
|
1812
1951
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1813
|
-
this.state =
|
|
1952
|
+
this.state = 458;
|
|
1814
1953
|
this.string_literal();
|
|
1815
1954
|
}
|
|
1816
1955
|
}
|
|
1817
|
-
this.state =
|
|
1956
|
+
this.state = 463;
|
|
1818
1957
|
this._errHandler.sync(this);
|
|
1819
1958
|
_la = this._input.LA(1);
|
|
1820
1959
|
}
|
|
1821
|
-
this.state =
|
|
1960
|
+
this.state = 464;
|
|
1822
1961
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1823
|
-
this.state =
|
|
1962
|
+
this.state = 479;
|
|
1824
1963
|
this._errHandler.sync(this);
|
|
1825
1964
|
_la = this._input.LA(1);
|
|
1826
1965
|
while (_la === RuleFlowLanguageParser.COMMA) {
|
|
1827
1966
|
{
|
|
1828
1967
|
{
|
|
1829
|
-
this.state =
|
|
1968
|
+
this.state = 465;
|
|
1830
1969
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1831
|
-
this.state =
|
|
1970
|
+
this.state = 466;
|
|
1832
1971
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
1833
|
-
this.state =
|
|
1972
|
+
this.state = 467;
|
|
1834
1973
|
this.string_literal();
|
|
1835
|
-
this.state =
|
|
1974
|
+
this.state = 472;
|
|
1836
1975
|
this._errHandler.sync(this);
|
|
1837
1976
|
_la = this._input.LA(1);
|
|
1838
1977
|
while (_la === RuleFlowLanguageParser.COMMA) {
|
|
1839
1978
|
{
|
|
1840
1979
|
{
|
|
1841
|
-
this.state =
|
|
1980
|
+
this.state = 468;
|
|
1842
1981
|
this.match(RuleFlowLanguageParser.COMMA);
|
|
1843
|
-
this.state =
|
|
1982
|
+
this.state = 469;
|
|
1844
1983
|
this.string_literal();
|
|
1845
1984
|
}
|
|
1846
1985
|
}
|
|
1847
|
-
this.state =
|
|
1986
|
+
this.state = 474;
|
|
1848
1987
|
this._errHandler.sync(this);
|
|
1849
1988
|
_la = this._input.LA(1);
|
|
1850
1989
|
}
|
|
1851
|
-
this.state =
|
|
1990
|
+
this.state = 475;
|
|
1852
1991
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1853
1992
|
}
|
|
1854
1993
|
}
|
|
1855
|
-
this.state =
|
|
1994
|
+
this.state = 481;
|
|
1856
1995
|
this._errHandler.sync(this);
|
|
1857
1996
|
_la = this._input.LA(1);
|
|
1858
1997
|
}
|
|
1859
|
-
this.state =
|
|
1998
|
+
this.state = 482;
|
|
1860
1999
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
1861
2000
|
}
|
|
1862
2001
|
break;
|
|
1863
2002
|
case RuleFlowLanguageParser.DOT:
|
|
1864
|
-
case RuleFlowLanguageParser.K_ELEM:
|
|
1865
2003
|
case RuleFlowLanguageParser.ID:
|
|
1866
2004
|
this.enterOuterAlt(_localctx, 4);
|
|
1867
2005
|
{
|
|
1868
|
-
this.state =
|
|
2006
|
+
this.state = 484;
|
|
1869
2007
|
this.validProperty();
|
|
1870
2008
|
}
|
|
1871
2009
|
break;
|
|
@@ -1891,44 +2029,44 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1891
2029
|
// @RuleVersion(0)
|
|
1892
2030
|
validValue() {
|
|
1893
2031
|
let _localctx = new ValidValueContext(this._ctx, this.state);
|
|
1894
|
-
this.enterRule(_localctx,
|
|
2032
|
+
this.enterRule(_localctx, 52, RuleFlowLanguageParser.RULE_validValue);
|
|
1895
2033
|
try {
|
|
1896
|
-
this.state =
|
|
2034
|
+
this.state = 492;
|
|
1897
2035
|
this._errHandler.sync(this);
|
|
1898
2036
|
switch (this._input.LA(1)) {
|
|
1899
2037
|
case RuleFlowLanguageParser.STRING_NOT_SPECIAL_CHARS:
|
|
1900
2038
|
case RuleFlowLanguageParser.SQUOTA_STRING:
|
|
1901
2039
|
this.enterOuterAlt(_localctx, 1);
|
|
1902
2040
|
{
|
|
1903
|
-
this.state =
|
|
2041
|
+
this.state = 487;
|
|
1904
2042
|
_localctx._string = this.string_literal();
|
|
1905
2043
|
}
|
|
1906
2044
|
break;
|
|
1907
2045
|
case RuleFlowLanguageParser.NUMERIC_LITERAL:
|
|
1908
2046
|
this.enterOuterAlt(_localctx, 2);
|
|
1909
2047
|
{
|
|
1910
|
-
this.state =
|
|
2048
|
+
this.state = 488;
|
|
1911
2049
|
_localctx._number = this.match(RuleFlowLanguageParser.NUMERIC_LITERAL);
|
|
1912
2050
|
}
|
|
1913
2051
|
break;
|
|
1914
2052
|
case RuleFlowLanguageParser.BOOLEAN_LITERAL:
|
|
1915
2053
|
this.enterOuterAlt(_localctx, 3);
|
|
1916
2054
|
{
|
|
1917
|
-
this.state =
|
|
2055
|
+
this.state = 489;
|
|
1918
2056
|
_localctx._booleanLiteral = this.match(RuleFlowLanguageParser.BOOLEAN_LITERAL);
|
|
1919
2057
|
}
|
|
1920
2058
|
break;
|
|
1921
2059
|
case RuleFlowLanguageParser.K_NULL:
|
|
1922
2060
|
this.enterOuterAlt(_localctx, 4);
|
|
1923
2061
|
{
|
|
1924
|
-
this.state =
|
|
2062
|
+
this.state = 490;
|
|
1925
2063
|
_localctx._nullValue = this.match(RuleFlowLanguageParser.K_NULL);
|
|
1926
2064
|
}
|
|
1927
2065
|
break;
|
|
1928
2066
|
case RuleFlowLanguageParser.CURRENT_DATE:
|
|
1929
2067
|
this.enterOuterAlt(_localctx, 5);
|
|
1930
2068
|
{
|
|
1931
|
-
this.state =
|
|
2069
|
+
this.state = 491;
|
|
1932
2070
|
_localctx._currentDate = this.match(RuleFlowLanguageParser.CURRENT_DATE);
|
|
1933
2071
|
}
|
|
1934
2072
|
break;
|
|
@@ -1954,9 +2092,9 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1954
2092
|
// @RuleVersion(0)
|
|
1955
2093
|
actionParamValue() {
|
|
1956
2094
|
let _localctx = new ActionParamValueContext(this._ctx, this.state);
|
|
1957
|
-
this.enterRule(_localctx,
|
|
2095
|
+
this.enterRule(_localctx, 54, RuleFlowLanguageParser.RULE_actionParamValue);
|
|
1958
2096
|
try {
|
|
1959
|
-
this.state =
|
|
2097
|
+
this.state = 496;
|
|
1960
2098
|
this._errHandler.sync(this);
|
|
1961
2099
|
switch (this._input.LA(1)) {
|
|
1962
2100
|
case RuleFlowLanguageParser.STRING_NOT_SPECIAL_CHARS:
|
|
@@ -1967,16 +2105,15 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
1967
2105
|
case RuleFlowLanguageParser.SQUOTA_STRING:
|
|
1968
2106
|
this.enterOuterAlt(_localctx, 1);
|
|
1969
2107
|
{
|
|
1970
|
-
this.state =
|
|
2108
|
+
this.state = 494;
|
|
1971
2109
|
this.validValue();
|
|
1972
2110
|
}
|
|
1973
2111
|
break;
|
|
1974
2112
|
case RuleFlowLanguageParser.DOT:
|
|
1975
|
-
case RuleFlowLanguageParser.K_ELEM:
|
|
1976
2113
|
case RuleFlowLanguageParser.ID:
|
|
1977
2114
|
this.enterOuterAlt(_localctx, 2);
|
|
1978
2115
|
{
|
|
1979
|
-
this.state =
|
|
2116
|
+
this.state = 495;
|
|
1980
2117
|
this.validProperty();
|
|
1981
2118
|
}
|
|
1982
2119
|
break;
|
|
@@ -2002,34 +2139,34 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
2002
2139
|
// @RuleVersion(0)
|
|
2003
2140
|
dateParse() {
|
|
2004
2141
|
let _localctx = new DateParseContext(this._ctx, this.state);
|
|
2005
|
-
this.enterRule(_localctx,
|
|
2142
|
+
this.enterRule(_localctx, 56, RuleFlowLanguageParser.RULE_dateParse);
|
|
2006
2143
|
try {
|
|
2007
|
-
this.state =
|
|
2144
|
+
this.state = 508;
|
|
2008
2145
|
this._errHandler.sync(this);
|
|
2009
2146
|
switch (this._input.LA(1)) {
|
|
2010
2147
|
case RuleFlowLanguageParser.K_DATE:
|
|
2011
2148
|
this.enterOuterAlt(_localctx, 1);
|
|
2012
2149
|
{
|
|
2013
|
-
this.state =
|
|
2150
|
+
this.state = 498;
|
|
2014
2151
|
this.match(RuleFlowLanguageParser.K_DATE);
|
|
2015
|
-
this.state =
|
|
2152
|
+
this.state = 499;
|
|
2016
2153
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
2017
|
-
this.state =
|
|
2154
|
+
this.state = 500;
|
|
2018
2155
|
this.dateValue();
|
|
2019
|
-
this.state =
|
|
2156
|
+
this.state = 501;
|
|
2020
2157
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
2021
2158
|
}
|
|
2022
2159
|
break;
|
|
2023
2160
|
case RuleFlowLanguageParser.K_DATETIME:
|
|
2024
2161
|
this.enterOuterAlt(_localctx, 2);
|
|
2025
2162
|
{
|
|
2026
|
-
this.state =
|
|
2163
|
+
this.state = 503;
|
|
2027
2164
|
this.match(RuleFlowLanguageParser.K_DATETIME);
|
|
2028
|
-
this.state =
|
|
2165
|
+
this.state = 504;
|
|
2029
2166
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
2030
|
-
this.state =
|
|
2167
|
+
this.state = 505;
|
|
2031
2168
|
this.dateValue();
|
|
2032
|
-
this.state =
|
|
2169
|
+
this.state = 506;
|
|
2033
2170
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
2034
2171
|
}
|
|
2035
2172
|
break;
|
|
@@ -2055,36 +2192,35 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
2055
2192
|
// @RuleVersion(0)
|
|
2056
2193
|
dateValue() {
|
|
2057
2194
|
let _localctx = new DateValueContext(this._ctx, this.state);
|
|
2058
|
-
this.enterRule(_localctx,
|
|
2195
|
+
this.enterRule(_localctx, 58, RuleFlowLanguageParser.RULE_dateValue);
|
|
2059
2196
|
try {
|
|
2060
|
-
this.state =
|
|
2197
|
+
this.state = 515;
|
|
2061
2198
|
this._errHandler.sync(this);
|
|
2062
2199
|
switch (this._input.LA(1)) {
|
|
2063
2200
|
case RuleFlowLanguageParser.STRING_NOT_SPECIAL_CHARS:
|
|
2064
2201
|
case RuleFlowLanguageParser.SQUOTA_STRING:
|
|
2065
2202
|
this.enterOuterAlt(_localctx, 1);
|
|
2066
2203
|
{
|
|
2067
|
-
this.state =
|
|
2204
|
+
this.state = 510;
|
|
2068
2205
|
this.string_literal();
|
|
2069
2206
|
}
|
|
2070
2207
|
break;
|
|
2071
2208
|
case RuleFlowLanguageParser.DOT:
|
|
2072
|
-
case RuleFlowLanguageParser.K_ELEM:
|
|
2073
2209
|
case RuleFlowLanguageParser.ID:
|
|
2074
2210
|
this.enterOuterAlt(_localctx, 2);
|
|
2075
2211
|
{
|
|
2076
|
-
this.state =
|
|
2212
|
+
this.state = 511;
|
|
2077
2213
|
this.validProperty();
|
|
2078
2214
|
}
|
|
2079
2215
|
break;
|
|
2080
2216
|
case RuleFlowLanguageParser.K_NOW:
|
|
2081
2217
|
this.enterOuterAlt(_localctx, 3);
|
|
2082
2218
|
{
|
|
2083
|
-
this.state =
|
|
2219
|
+
this.state = 512;
|
|
2084
2220
|
this.match(RuleFlowLanguageParser.K_NOW);
|
|
2085
|
-
this.state =
|
|
2221
|
+
this.state = 513;
|
|
2086
2222
|
this.match(RuleFlowLanguageParser.L_PAREN);
|
|
2087
|
-
this.state =
|
|
2223
|
+
this.state = 514;
|
|
2088
2224
|
this.match(RuleFlowLanguageParser.R_PAREN);
|
|
2089
2225
|
}
|
|
2090
2226
|
break;
|
|
@@ -2110,12 +2246,12 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
2110
2246
|
// @RuleVersion(0)
|
|
2111
2247
|
timeUnit() {
|
|
2112
2248
|
let _localctx = new TimeUnitContext(this._ctx, this.state);
|
|
2113
|
-
this.enterRule(_localctx,
|
|
2249
|
+
this.enterRule(_localctx, 60, RuleFlowLanguageParser.RULE_timeUnit);
|
|
2114
2250
|
let _la;
|
|
2115
2251
|
try {
|
|
2116
2252
|
this.enterOuterAlt(_localctx, 1);
|
|
2117
2253
|
{
|
|
2118
|
-
this.state =
|
|
2254
|
+
this.state = 517;
|
|
2119
2255
|
_la = this._input.LA(1);
|
|
2120
2256
|
if (!((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << RuleFlowLanguageParser.MINUTE) | (1 << RuleFlowLanguageParser.HOUR) | (1 << RuleFlowLanguageParser.DAY))) !== 0))) {
|
|
2121
2257
|
this._errHandler.recoverInline(this);
|
|
@@ -2147,66 +2283,44 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
2147
2283
|
// @RuleVersion(0)
|
|
2148
2284
|
validProperty() {
|
|
2149
2285
|
let _localctx = new ValidPropertyContext(this._ctx, this.state);
|
|
2150
|
-
this.enterRule(_localctx,
|
|
2286
|
+
this.enterRule(_localctx, 62, RuleFlowLanguageParser.RULE_validProperty);
|
|
2151
2287
|
let _la;
|
|
2152
2288
|
try {
|
|
2153
2289
|
let _alt;
|
|
2154
|
-
this.state =
|
|
2290
|
+
this.state = 533;
|
|
2155
2291
|
this._errHandler.sync(this);
|
|
2156
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
2292
|
+
switch (this.interpreter.adaptivePredict(this._input, 47, this._ctx)) {
|
|
2157
2293
|
case 1:
|
|
2158
2294
|
this.enterOuterAlt(_localctx, 1);
|
|
2159
2295
|
{
|
|
2160
|
-
this.state =
|
|
2296
|
+
this.state = 520;
|
|
2161
2297
|
this._errHandler.sync(this);
|
|
2162
2298
|
_la = this._input.LA(1);
|
|
2163
2299
|
if (_la === RuleFlowLanguageParser.DOT) {
|
|
2164
2300
|
{
|
|
2165
|
-
this.state =
|
|
2301
|
+
this.state = 519;
|
|
2166
2302
|
_localctx._root = this.match(RuleFlowLanguageParser.DOT);
|
|
2167
2303
|
}
|
|
2168
2304
|
}
|
|
2169
|
-
this.state =
|
|
2170
|
-
_localctx._property = this.
|
|
2171
|
-
_la = this._input.LA(1);
|
|
2172
|
-
if (!(_la === RuleFlowLanguageParser.K_ELEM || _la === RuleFlowLanguageParser.ID)) {
|
|
2173
|
-
_localctx._property = this._errHandler.recoverInline(this);
|
|
2174
|
-
}
|
|
2175
|
-
else {
|
|
2176
|
-
if (this._input.LA(1) === Token_1.Token.EOF) {
|
|
2177
|
-
this.matchedEOF = true;
|
|
2178
|
-
}
|
|
2179
|
-
this._errHandler.reportMatch(this);
|
|
2180
|
-
this.consume();
|
|
2181
|
-
}
|
|
2305
|
+
this.state = 522;
|
|
2306
|
+
_localctx._property = this.match(RuleFlowLanguageParser.ID);
|
|
2182
2307
|
}
|
|
2183
2308
|
break;
|
|
2184
2309
|
case 2:
|
|
2185
2310
|
this.enterOuterAlt(_localctx, 2);
|
|
2186
2311
|
{
|
|
2187
|
-
this.state =
|
|
2312
|
+
this.state = 524;
|
|
2188
2313
|
this._errHandler.sync(this);
|
|
2189
2314
|
_la = this._input.LA(1);
|
|
2190
2315
|
if (_la === RuleFlowLanguageParser.DOT) {
|
|
2191
2316
|
{
|
|
2192
|
-
this.state =
|
|
2317
|
+
this.state = 523;
|
|
2193
2318
|
_localctx._root = this.match(RuleFlowLanguageParser.DOT);
|
|
2194
2319
|
}
|
|
2195
2320
|
}
|
|
2196
|
-
this.state =
|
|
2197
|
-
_localctx._nestedProperty = this.
|
|
2198
|
-
|
|
2199
|
-
if (!(_la === RuleFlowLanguageParser.K_ELEM || _la === RuleFlowLanguageParser.ID)) {
|
|
2200
|
-
_localctx._nestedProperty = this._errHandler.recoverInline(this);
|
|
2201
|
-
}
|
|
2202
|
-
else {
|
|
2203
|
-
if (this._input.LA(1) === Token_1.Token.EOF) {
|
|
2204
|
-
this.matchedEOF = true;
|
|
2205
|
-
}
|
|
2206
|
-
this._errHandler.reportMatch(this);
|
|
2207
|
-
this.consume();
|
|
2208
|
-
}
|
|
2209
|
-
this.state = 497;
|
|
2321
|
+
this.state = 526;
|
|
2322
|
+
_localctx._nestedProperty = this.match(RuleFlowLanguageParser.ID);
|
|
2323
|
+
this.state = 529;
|
|
2210
2324
|
this._errHandler.sync(this);
|
|
2211
2325
|
_alt = 1;
|
|
2212
2326
|
do {
|
|
@@ -2214,29 +2328,19 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
2214
2328
|
case 1:
|
|
2215
2329
|
{
|
|
2216
2330
|
{
|
|
2217
|
-
this.state =
|
|
2331
|
+
this.state = 527;
|
|
2218
2332
|
this.match(RuleFlowLanguageParser.DOT);
|
|
2219
|
-
this.state =
|
|
2220
|
-
|
|
2221
|
-
if (!(_la === RuleFlowLanguageParser.K_ELEM || _la === RuleFlowLanguageParser.ID)) {
|
|
2222
|
-
this._errHandler.recoverInline(this);
|
|
2223
|
-
}
|
|
2224
|
-
else {
|
|
2225
|
-
if (this._input.LA(1) === Token_1.Token.EOF) {
|
|
2226
|
-
this.matchedEOF = true;
|
|
2227
|
-
}
|
|
2228
|
-
this._errHandler.reportMatch(this);
|
|
2229
|
-
this.consume();
|
|
2230
|
-
}
|
|
2333
|
+
this.state = 528;
|
|
2334
|
+
this.match(RuleFlowLanguageParser.ID);
|
|
2231
2335
|
}
|
|
2232
2336
|
}
|
|
2233
2337
|
break;
|
|
2234
2338
|
default:
|
|
2235
2339
|
throw new NoViableAltException_1.NoViableAltException(this);
|
|
2236
2340
|
}
|
|
2237
|
-
this.state =
|
|
2341
|
+
this.state = 531;
|
|
2238
2342
|
this._errHandler.sync(this);
|
|
2239
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
2343
|
+
_alt = this.interpreter.adaptivePredict(this._input, 46, this._ctx);
|
|
2240
2344
|
} while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER);
|
|
2241
2345
|
}
|
|
2242
2346
|
break;
|
|
@@ -2259,7 +2363,7 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
2259
2363
|
}
|
|
2260
2364
|
sempred(_localctx, ruleIndex, predIndex) {
|
|
2261
2365
|
switch (ruleIndex) {
|
|
2262
|
-
case
|
|
2366
|
+
case 21:
|
|
2263
2367
|
return this.expr_sempred(_localctx, predIndex);
|
|
2264
2368
|
}
|
|
2265
2369
|
return true;
|
|
@@ -2277,8 +2381,10 @@ class RuleFlowLanguageParser extends Parser_1.Parser {
|
|
|
2277
2381
|
case 4:
|
|
2278
2382
|
return this.precpred(this._ctx, 10);
|
|
2279
2383
|
case 5:
|
|
2280
|
-
return this.precpred(this._ctx,
|
|
2384
|
+
return this.precpred(this._ctx, 22);
|
|
2281
2385
|
case 6:
|
|
2386
|
+
return this.precpred(this._ctx, 18);
|
|
2387
|
+
case 7:
|
|
2282
2388
|
return this.precpred(this._ctx, 16);
|
|
2283
2389
|
}
|
|
2284
2390
|
return true;
|
|
@@ -2369,419 +2475,455 @@ Object.defineProperty(RuleFlowLanguageParser, "EQ", {
|
|
|
2369
2475
|
writable: true,
|
|
2370
2476
|
value: 13
|
|
2371
2477
|
});
|
|
2372
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2478
|
+
Object.defineProperty(RuleFlowLanguageParser, "PLUS_EQ", {
|
|
2373
2479
|
enumerable: true,
|
|
2374
2480
|
configurable: true,
|
|
2375
2481
|
writable: true,
|
|
2376
2482
|
value: 14
|
|
2377
2483
|
});
|
|
2378
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2484
|
+
Object.defineProperty(RuleFlowLanguageParser, "MINUS_EQ", {
|
|
2379
2485
|
enumerable: true,
|
|
2380
2486
|
configurable: true,
|
|
2381
2487
|
writable: true,
|
|
2382
2488
|
value: 15
|
|
2383
2489
|
});
|
|
2384
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2490
|
+
Object.defineProperty(RuleFlowLanguageParser, "MULTIPLY_EQ", {
|
|
2385
2491
|
enumerable: true,
|
|
2386
2492
|
configurable: true,
|
|
2387
2493
|
writable: true,
|
|
2388
2494
|
value: 16
|
|
2389
2495
|
});
|
|
2390
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2496
|
+
Object.defineProperty(RuleFlowLanguageParser, "DIVIDE_EQ", {
|
|
2391
2497
|
enumerable: true,
|
|
2392
2498
|
configurable: true,
|
|
2393
2499
|
writable: true,
|
|
2394
2500
|
value: 17
|
|
2395
2501
|
});
|
|
2396
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2502
|
+
Object.defineProperty(RuleFlowLanguageParser, "MODULO_EQ", {
|
|
2397
2503
|
enumerable: true,
|
|
2398
2504
|
configurable: true,
|
|
2399
2505
|
writable: true,
|
|
2400
2506
|
value: 18
|
|
2401
2507
|
});
|
|
2402
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2508
|
+
Object.defineProperty(RuleFlowLanguageParser, "NOT_EQ", {
|
|
2403
2509
|
enumerable: true,
|
|
2404
2510
|
configurable: true,
|
|
2405
2511
|
writable: true,
|
|
2406
2512
|
value: 19
|
|
2407
2513
|
});
|
|
2408
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2514
|
+
Object.defineProperty(RuleFlowLanguageParser, "MINUTE", {
|
|
2409
2515
|
enumerable: true,
|
|
2410
2516
|
configurable: true,
|
|
2411
2517
|
writable: true,
|
|
2412
2518
|
value: 20
|
|
2413
2519
|
});
|
|
2414
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2520
|
+
Object.defineProperty(RuleFlowLanguageParser, "HOUR", {
|
|
2415
2521
|
enumerable: true,
|
|
2416
2522
|
configurable: true,
|
|
2417
2523
|
writable: true,
|
|
2418
2524
|
value: 21
|
|
2419
2525
|
});
|
|
2420
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2526
|
+
Object.defineProperty(RuleFlowLanguageParser, "DAY", {
|
|
2421
2527
|
enumerable: true,
|
|
2422
2528
|
configurable: true,
|
|
2423
2529
|
writable: true,
|
|
2424
2530
|
value: 22
|
|
2425
2531
|
});
|
|
2426
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2532
|
+
Object.defineProperty(RuleFlowLanguageParser, "CURRENT_DATE", {
|
|
2427
2533
|
enumerable: true,
|
|
2428
2534
|
configurable: true,
|
|
2429
2535
|
writable: true,
|
|
2430
2536
|
value: 23
|
|
2431
2537
|
});
|
|
2432
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2538
|
+
Object.defineProperty(RuleFlowLanguageParser, "DATE_DIFF", {
|
|
2433
2539
|
enumerable: true,
|
|
2434
2540
|
configurable: true,
|
|
2435
2541
|
writable: true,
|
|
2436
2542
|
value: 24
|
|
2437
2543
|
});
|
|
2438
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2544
|
+
Object.defineProperty(RuleFlowLanguageParser, "ABS", {
|
|
2439
2545
|
enumerable: true,
|
|
2440
2546
|
configurable: true,
|
|
2441
2547
|
writable: true,
|
|
2442
2548
|
value: 25
|
|
2443
2549
|
});
|
|
2444
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2550
|
+
Object.defineProperty(RuleFlowLanguageParser, "REGEX_STRIP", {
|
|
2445
2551
|
enumerable: true,
|
|
2446
2552
|
configurable: true,
|
|
2447
2553
|
writable: true,
|
|
2448
2554
|
value: 26
|
|
2449
2555
|
});
|
|
2450
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2556
|
+
Object.defineProperty(RuleFlowLanguageParser, "MODULO", {
|
|
2451
2557
|
enumerable: true,
|
|
2452
2558
|
configurable: true,
|
|
2453
2559
|
writable: true,
|
|
2454
2560
|
value: 27
|
|
2455
2561
|
});
|
|
2456
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2562
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_STARTS_WITH", {
|
|
2457
2563
|
enumerable: true,
|
|
2458
2564
|
configurable: true,
|
|
2459
2565
|
writable: true,
|
|
2460
2566
|
value: 28
|
|
2461
2567
|
});
|
|
2462
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2568
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_LIST", {
|
|
2463
2569
|
enumerable: true,
|
|
2464
2570
|
configurable: true,
|
|
2465
2571
|
writable: true,
|
|
2466
2572
|
value: 29
|
|
2467
2573
|
});
|
|
2468
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2574
|
+
Object.defineProperty(RuleFlowLanguageParser, "L_BRACE", {
|
|
2469
2575
|
enumerable: true,
|
|
2470
2576
|
configurable: true,
|
|
2471
2577
|
writable: true,
|
|
2472
2578
|
value: 30
|
|
2473
2579
|
});
|
|
2474
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2580
|
+
Object.defineProperty(RuleFlowLanguageParser, "R_BRACE", {
|
|
2475
2581
|
enumerable: true,
|
|
2476
2582
|
configurable: true,
|
|
2477
2583
|
writable: true,
|
|
2478
2584
|
value: 31
|
|
2479
2585
|
});
|
|
2480
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2586
|
+
Object.defineProperty(RuleFlowLanguageParser, "L_PAREN", {
|
|
2481
2587
|
enumerable: true,
|
|
2482
2588
|
configurable: true,
|
|
2483
2589
|
writable: true,
|
|
2484
2590
|
value: 32
|
|
2485
2591
|
});
|
|
2486
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2592
|
+
Object.defineProperty(RuleFlowLanguageParser, "R_PAREN", {
|
|
2487
2593
|
enumerable: true,
|
|
2488
2594
|
configurable: true,
|
|
2489
2595
|
writable: true,
|
|
2490
2596
|
value: 33
|
|
2491
2597
|
});
|
|
2492
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2598
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_COLON", {
|
|
2493
2599
|
enumerable: true,
|
|
2494
2600
|
configurable: true,
|
|
2495
2601
|
writable: true,
|
|
2496
2602
|
value: 34
|
|
2497
2603
|
});
|
|
2498
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2604
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_ACTION", {
|
|
2499
2605
|
enumerable: true,
|
|
2500
2606
|
configurable: true,
|
|
2501
2607
|
writable: true,
|
|
2502
2608
|
value: 35
|
|
2503
2609
|
});
|
|
2504
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2610
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_WORKFLOW", {
|
|
2505
2611
|
enumerable: true,
|
|
2506
2612
|
configurable: true,
|
|
2507
2613
|
writable: true,
|
|
2508
2614
|
value: 36
|
|
2509
2615
|
});
|
|
2510
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2616
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_RULESET", {
|
|
2511
2617
|
enumerable: true,
|
|
2512
2618
|
configurable: true,
|
|
2513
2619
|
writable: true,
|
|
2514
2620
|
value: 37
|
|
2515
2621
|
});
|
|
2516
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2622
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_RETURN", {
|
|
2517
2623
|
enumerable: true,
|
|
2518
2624
|
configurable: true,
|
|
2519
2625
|
writable: true,
|
|
2520
2626
|
value: 38
|
|
2521
2627
|
});
|
|
2522
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2628
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_THEN", {
|
|
2523
2629
|
enumerable: true,
|
|
2524
2630
|
configurable: true,
|
|
2525
2631
|
writable: true,
|
|
2526
2632
|
value: 39
|
|
2527
2633
|
});
|
|
2528
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2634
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_DEFAULT", {
|
|
2529
2635
|
enumerable: true,
|
|
2530
2636
|
configurable: true,
|
|
2531
2637
|
writable: true,
|
|
2532
2638
|
value: 40
|
|
2533
2639
|
});
|
|
2534
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2640
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_WITH", {
|
|
2535
2641
|
enumerable: true,
|
|
2536
2642
|
configurable: true,
|
|
2537
2643
|
writable: true,
|
|
2538
2644
|
value: 41
|
|
2539
2645
|
});
|
|
2540
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2646
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_END", {
|
|
2541
2647
|
enumerable: true,
|
|
2542
2648
|
configurable: true,
|
|
2543
2649
|
writable: true,
|
|
2544
2650
|
value: 42
|
|
2545
2651
|
});
|
|
2546
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2652
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_ELSE", {
|
|
2547
2653
|
enumerable: true,
|
|
2548
2654
|
configurable: true,
|
|
2549
2655
|
writable: true,
|
|
2550
2656
|
value: 43
|
|
2551
2657
|
});
|
|
2552
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2658
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_AND", {
|
|
2553
2659
|
enumerable: true,
|
|
2554
2660
|
configurable: true,
|
|
2555
2661
|
writable: true,
|
|
2556
2662
|
value: 44
|
|
2557
2663
|
});
|
|
2558
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2664
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_OR", {
|
|
2559
2665
|
enumerable: true,
|
|
2560
2666
|
configurable: true,
|
|
2561
2667
|
writable: true,
|
|
2562
2668
|
value: 45
|
|
2563
2669
|
});
|
|
2564
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2670
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_CONTAINS", {
|
|
2565
2671
|
enumerable: true,
|
|
2566
2672
|
configurable: true,
|
|
2567
2673
|
writable: true,
|
|
2568
2674
|
value: 46
|
|
2569
2675
|
});
|
|
2570
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2676
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_IS", {
|
|
2571
2677
|
enumerable: true,
|
|
2572
2678
|
configurable: true,
|
|
2573
2679
|
writable: true,
|
|
2574
2680
|
value: 47
|
|
2575
2681
|
});
|
|
2576
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2682
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_NOT", {
|
|
2577
2683
|
enumerable: true,
|
|
2578
2684
|
configurable: true,
|
|
2579
2685
|
writable: true,
|
|
2580
2686
|
value: 48
|
|
2581
2687
|
});
|
|
2582
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2688
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_IS_NOT", {
|
|
2583
2689
|
enumerable: true,
|
|
2584
2690
|
configurable: true,
|
|
2585
2691
|
writable: true,
|
|
2586
2692
|
value: 49
|
|
2587
2693
|
});
|
|
2588
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2694
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_IN", {
|
|
2589
2695
|
enumerable: true,
|
|
2590
2696
|
configurable: true,
|
|
2591
2697
|
writable: true,
|
|
2592
2698
|
value: 50
|
|
2593
2699
|
});
|
|
2594
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2700
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_ANY", {
|
|
2595
2701
|
enumerable: true,
|
|
2596
2702
|
configurable: true,
|
|
2597
2703
|
writable: true,
|
|
2598
2704
|
value: 51
|
|
2599
2705
|
});
|
|
2600
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2706
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_NONE", {
|
|
2601
2707
|
enumerable: true,
|
|
2602
2708
|
configurable: true,
|
|
2603
2709
|
writable: true,
|
|
2604
2710
|
value: 52
|
|
2605
2711
|
});
|
|
2606
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2712
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_ALL", {
|
|
2607
2713
|
enumerable: true,
|
|
2608
2714
|
configurable: true,
|
|
2609
2715
|
writable: true,
|
|
2610
2716
|
value: 53
|
|
2611
2717
|
});
|
|
2612
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2718
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_COUNT", {
|
|
2613
2719
|
enumerable: true,
|
|
2614
2720
|
configurable: true,
|
|
2615
2721
|
writable: true,
|
|
2616
2722
|
value: 54
|
|
2617
2723
|
});
|
|
2618
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2724
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_AVERAGE", {
|
|
2619
2725
|
enumerable: true,
|
|
2620
2726
|
configurable: true,
|
|
2621
2727
|
writable: true,
|
|
2622
2728
|
value: 55
|
|
2623
2729
|
});
|
|
2730
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_DISTINCT", {
|
|
2731
|
+
enumerable: true,
|
|
2732
|
+
configurable: true,
|
|
2733
|
+
writable: true,
|
|
2734
|
+
value: 56
|
|
2735
|
+
});
|
|
2736
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_NULL", {
|
|
2737
|
+
enumerable: true,
|
|
2738
|
+
configurable: true,
|
|
2739
|
+
writable: true,
|
|
2740
|
+
value: 57
|
|
2741
|
+
});
|
|
2742
|
+
Object.defineProperty(RuleFlowLanguageParser, "DAY_OF_WEEK", {
|
|
2743
|
+
enumerable: true,
|
|
2744
|
+
configurable: true,
|
|
2745
|
+
writable: true,
|
|
2746
|
+
value: 58
|
|
2747
|
+
});
|
|
2624
2748
|
Object.defineProperty(RuleFlowLanguageParser, "K_EXPR", {
|
|
2625
2749
|
enumerable: true,
|
|
2626
2750
|
configurable: true,
|
|
2627
2751
|
writable: true,
|
|
2628
|
-
value:
|
|
2752
|
+
value: 59
|
|
2629
2753
|
});
|
|
2630
2754
|
Object.defineProperty(RuleFlowLanguageParser, "K_EVALUATION_MODE", {
|
|
2631
2755
|
enumerable: true,
|
|
2632
2756
|
configurable: true,
|
|
2633
2757
|
writable: true,
|
|
2634
|
-
value:
|
|
2758
|
+
value: 60
|
|
2635
2759
|
});
|
|
2636
2760
|
Object.defineProperty(RuleFlowLanguageParser, "K_MULTI_MATCH", {
|
|
2637
2761
|
enumerable: true,
|
|
2638
2762
|
configurable: true,
|
|
2639
2763
|
writable: true,
|
|
2640
|
-
value:
|
|
2764
|
+
value: 61
|
|
2641
2765
|
});
|
|
2642
2766
|
Object.defineProperty(RuleFlowLanguageParser, "K_SINGLE_MATCH", {
|
|
2643
2767
|
enumerable: true,
|
|
2644
2768
|
configurable: true,
|
|
2645
2769
|
writable: true,
|
|
2646
|
-
value:
|
|
2770
|
+
value: 62
|
|
2647
2771
|
});
|
|
2648
2772
|
Object.defineProperty(RuleFlowLanguageParser, "K_NOW", {
|
|
2649
2773
|
enumerable: true,
|
|
2650
2774
|
configurable: true,
|
|
2651
2775
|
writable: true,
|
|
2652
|
-
value:
|
|
2776
|
+
value: 63
|
|
2653
2777
|
});
|
|
2654
2778
|
Object.defineProperty(RuleFlowLanguageParser, "K_DATE", {
|
|
2655
2779
|
enumerable: true,
|
|
2656
2780
|
configurable: true,
|
|
2657
2781
|
writable: true,
|
|
2658
|
-
value:
|
|
2782
|
+
value: 64
|
|
2659
2783
|
});
|
|
2660
2784
|
Object.defineProperty(RuleFlowLanguageParser, "K_DATETIME", {
|
|
2661
2785
|
enumerable: true,
|
|
2662
2786
|
configurable: true,
|
|
2663
2787
|
writable: true,
|
|
2664
|
-
value:
|
|
2788
|
+
value: 65
|
|
2665
2789
|
});
|
|
2666
2790
|
Object.defineProperty(RuleFlowLanguageParser, "K_DATE_ADD", {
|
|
2667
2791
|
enumerable: true,
|
|
2668
2792
|
configurable: true,
|
|
2669
2793
|
writable: true,
|
|
2670
|
-
value:
|
|
2794
|
+
value: 66
|
|
2671
2795
|
});
|
|
2672
2796
|
Object.defineProperty(RuleFlowLanguageParser, "K_DATE_SUBTRACT", {
|
|
2673
2797
|
enumerable: true,
|
|
2674
2798
|
configurable: true,
|
|
2675
2799
|
writable: true,
|
|
2676
|
-
value:
|
|
2800
|
+
value: 67
|
|
2801
|
+
});
|
|
2802
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_SET", {
|
|
2803
|
+
enumerable: true,
|
|
2804
|
+
configurable: true,
|
|
2805
|
+
writable: true,
|
|
2806
|
+
value: 68
|
|
2807
|
+
});
|
|
2808
|
+
Object.defineProperty(RuleFlowLanguageParser, "K_CONTINUE", {
|
|
2809
|
+
enumerable: true,
|
|
2810
|
+
configurable: true,
|
|
2811
|
+
writable: true,
|
|
2812
|
+
value: 69
|
|
2677
2813
|
});
|
|
2678
2814
|
Object.defineProperty(RuleFlowLanguageParser, "STRING_DISTANCE", {
|
|
2679
2815
|
enumerable: true,
|
|
2680
2816
|
configurable: true,
|
|
2681
2817
|
writable: true,
|
|
2682
|
-
value:
|
|
2818
|
+
value: 70
|
|
2683
2819
|
});
|
|
2684
2820
|
Object.defineProperty(RuleFlowLanguageParser, "PARTIAL_RATIO", {
|
|
2685
2821
|
enumerable: true,
|
|
2686
2822
|
configurable: true,
|
|
2687
2823
|
writable: true,
|
|
2688
|
-
value:
|
|
2824
|
+
value: 71
|
|
2689
2825
|
});
|
|
2690
2826
|
Object.defineProperty(RuleFlowLanguageParser, "TOKEN_SORT_RATIO", {
|
|
2691
2827
|
enumerable: true,
|
|
2692
2828
|
configurable: true,
|
|
2693
2829
|
writable: true,
|
|
2694
|
-
value:
|
|
2830
|
+
value: 72
|
|
2695
2831
|
});
|
|
2696
2832
|
Object.defineProperty(RuleFlowLanguageParser, "TOKEN_SET_RATIO", {
|
|
2697
2833
|
enumerable: true,
|
|
2698
2834
|
configurable: true,
|
|
2699
2835
|
writable: true,
|
|
2700
|
-
value:
|
|
2836
|
+
value: 73
|
|
2701
2837
|
});
|
|
2702
2838
|
Object.defineProperty(RuleFlowLanguageParser, "STRING_SIMILARITY_SCORE", {
|
|
2703
2839
|
enumerable: true,
|
|
2704
2840
|
configurable: true,
|
|
2705
2841
|
writable: true,
|
|
2706
|
-
value:
|
|
2842
|
+
value: 74
|
|
2707
2843
|
});
|
|
2708
2844
|
Object.defineProperty(RuleFlowLanguageParser, "GEOHASH_ENCODE", {
|
|
2709
2845
|
enumerable: true,
|
|
2710
2846
|
configurable: true,
|
|
2711
2847
|
writable: true,
|
|
2712
|
-
value:
|
|
2848
|
+
value: 75
|
|
2713
2849
|
});
|
|
2714
2850
|
Object.defineProperty(RuleFlowLanguageParser, "GEOHASH_DECODE", {
|
|
2715
2851
|
enumerable: true,
|
|
2716
2852
|
configurable: true,
|
|
2717
2853
|
writable: true,
|
|
2718
|
-
value:
|
|
2854
|
+
value: 76
|
|
2719
2855
|
});
|
|
2720
2856
|
Object.defineProperty(RuleFlowLanguageParser, "DISTANCE", {
|
|
2721
2857
|
enumerable: true,
|
|
2722
2858
|
configurable: true,
|
|
2723
2859
|
writable: true,
|
|
2724
|
-
value:
|
|
2860
|
+
value: 77
|
|
2725
2861
|
});
|
|
2726
2862
|
Object.defineProperty(RuleFlowLanguageParser, "WITHIN_RADIUS", {
|
|
2727
2863
|
enumerable: true,
|
|
2728
2864
|
configurable: true,
|
|
2729
2865
|
writable: true,
|
|
2730
|
-
value:
|
|
2866
|
+
value: 78
|
|
2731
2867
|
});
|
|
2732
2868
|
Object.defineProperty(RuleFlowLanguageParser, "NUMERIC_LITERAL", {
|
|
2733
2869
|
enumerable: true,
|
|
2734
2870
|
configurable: true,
|
|
2735
2871
|
writable: true,
|
|
2736
|
-
value:
|
|
2872
|
+
value: 79
|
|
2737
2873
|
});
|
|
2738
2874
|
Object.defineProperty(RuleFlowLanguageParser, "BOOLEAN_LITERAL", {
|
|
2739
2875
|
enumerable: true,
|
|
2740
2876
|
configurable: true,
|
|
2741
2877
|
writable: true,
|
|
2742
|
-
value:
|
|
2878
|
+
value: 80
|
|
2743
2879
|
});
|
|
2744
2880
|
Object.defineProperty(RuleFlowLanguageParser, "DQUOTA_STRING", {
|
|
2745
2881
|
enumerable: true,
|
|
2746
2882
|
configurable: true,
|
|
2747
2883
|
writable: true,
|
|
2748
|
-
value:
|
|
2884
|
+
value: 81
|
|
2749
2885
|
});
|
|
2750
2886
|
Object.defineProperty(RuleFlowLanguageParser, "SQUOTA_STRING", {
|
|
2751
2887
|
enumerable: true,
|
|
2752
2888
|
configurable: true,
|
|
2753
2889
|
writable: true,
|
|
2754
|
-
value:
|
|
2890
|
+
value: 82
|
|
2891
|
+
});
|
|
2892
|
+
Object.defineProperty(RuleFlowLanguageParser, "VARIABLE", {
|
|
2893
|
+
enumerable: true,
|
|
2894
|
+
configurable: true,
|
|
2895
|
+
writable: true,
|
|
2896
|
+
value: 83
|
|
2755
2897
|
});
|
|
2756
2898
|
Object.defineProperty(RuleFlowLanguageParser, "ID", {
|
|
2757
2899
|
enumerable: true,
|
|
2758
2900
|
configurable: true,
|
|
2759
2901
|
writable: true,
|
|
2760
|
-
value:
|
|
2902
|
+
value: 84
|
|
2761
2903
|
});
|
|
2762
2904
|
Object.defineProperty(RuleFlowLanguageParser, "SINGLE_LINE_COMMENT", {
|
|
2763
2905
|
enumerable: true,
|
|
2764
2906
|
configurable: true,
|
|
2765
2907
|
writable: true,
|
|
2766
|
-
value:
|
|
2908
|
+
value: 85
|
|
2767
2909
|
});
|
|
2768
2910
|
Object.defineProperty(RuleFlowLanguageParser, "MULTILINE_COMMENT", {
|
|
2769
2911
|
enumerable: true,
|
|
2770
2912
|
configurable: true,
|
|
2771
2913
|
writable: true,
|
|
2772
|
-
value:
|
|
2914
|
+
value: 86
|
|
2773
2915
|
});
|
|
2774
2916
|
Object.defineProperty(RuleFlowLanguageParser, "SPACES", {
|
|
2775
2917
|
enumerable: true,
|
|
2776
2918
|
configurable: true,
|
|
2777
2919
|
writable: true,
|
|
2778
|
-
value:
|
|
2920
|
+
value: 87
|
|
2779
2921
|
});
|
|
2780
2922
|
Object.defineProperty(RuleFlowLanguageParser, "UNEXPECTED_CHAR", {
|
|
2781
2923
|
enumerable: true,
|
|
2782
2924
|
configurable: true,
|
|
2783
2925
|
writable: true,
|
|
2784
|
-
value:
|
|
2926
|
+
value: 88
|
|
2785
2927
|
});
|
|
2786
2928
|
Object.defineProperty(RuleFlowLanguageParser, "RULE_parse", {
|
|
2787
2929
|
enumerable: true,
|
|
@@ -2837,138 +2979,144 @@ Object.defineProperty(RuleFlowLanguageParser, "RULE_rule_body", {
|
|
|
2837
2979
|
writable: true,
|
|
2838
2980
|
value: 8
|
|
2839
2981
|
});
|
|
2840
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2982
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_set_clause", {
|
|
2841
2983
|
enumerable: true,
|
|
2842
2984
|
configurable: true,
|
|
2843
2985
|
writable: true,
|
|
2844
2986
|
value: 9
|
|
2845
2987
|
});
|
|
2846
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2988
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_name", {
|
|
2847
2989
|
enumerable: true,
|
|
2848
2990
|
configurable: true,
|
|
2849
2991
|
writable: true,
|
|
2850
2992
|
value: 10
|
|
2851
2993
|
});
|
|
2852
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
2994
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_default_clause", {
|
|
2853
2995
|
enumerable: true,
|
|
2854
2996
|
configurable: true,
|
|
2855
2997
|
writable: true,
|
|
2856
2998
|
value: 11
|
|
2857
2999
|
});
|
|
2858
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3000
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_configuration", {
|
|
2859
3001
|
enumerable: true,
|
|
2860
3002
|
configurable: true,
|
|
2861
3003
|
writable: true,
|
|
2862
3004
|
value: 12
|
|
2863
3005
|
});
|
|
2864
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3006
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_evaluation_mode", {
|
|
2865
3007
|
enumerable: true,
|
|
2866
3008
|
configurable: true,
|
|
2867
3009
|
writable: true,
|
|
2868
3010
|
value: 13
|
|
2869
3011
|
});
|
|
2870
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3012
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_return_result", {
|
|
2871
3013
|
enumerable: true,
|
|
2872
3014
|
configurable: true,
|
|
2873
3015
|
writable: true,
|
|
2874
3016
|
value: 14
|
|
2875
3017
|
});
|
|
2876
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3018
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_state_rule", {
|
|
2877
3019
|
enumerable: true,
|
|
2878
3020
|
configurable: true,
|
|
2879
3021
|
writable: true,
|
|
2880
3022
|
value: 15
|
|
2881
3023
|
});
|
|
2882
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3024
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_actions", {
|
|
2883
3025
|
enumerable: true,
|
|
2884
3026
|
configurable: true,
|
|
2885
3027
|
writable: true,
|
|
2886
3028
|
value: 16
|
|
2887
3029
|
});
|
|
2888
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3030
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_action", {
|
|
2889
3031
|
enumerable: true,
|
|
2890
3032
|
configurable: true,
|
|
2891
3033
|
writable: true,
|
|
2892
3034
|
value: 17
|
|
2893
3035
|
});
|
|
2894
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3036
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_action_params", {
|
|
2895
3037
|
enumerable: true,
|
|
2896
3038
|
configurable: true,
|
|
2897
3039
|
writable: true,
|
|
2898
3040
|
value: 18
|
|
2899
3041
|
});
|
|
2900
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3042
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_param_pairs", {
|
|
2901
3043
|
enumerable: true,
|
|
2902
3044
|
configurable: true,
|
|
2903
3045
|
writable: true,
|
|
2904
3046
|
value: 19
|
|
2905
3047
|
});
|
|
2906
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3048
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_param_pair", {
|
|
2907
3049
|
enumerable: true,
|
|
2908
3050
|
configurable: true,
|
|
2909
3051
|
writable: true,
|
|
2910
3052
|
value: 20
|
|
2911
3053
|
});
|
|
2912
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3054
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_expr", {
|
|
2913
3055
|
enumerable: true,
|
|
2914
3056
|
configurable: true,
|
|
2915
3057
|
writable: true,
|
|
2916
3058
|
value: 21
|
|
2917
3059
|
});
|
|
2918
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3060
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_geoExpr", {
|
|
2919
3061
|
enumerable: true,
|
|
2920
3062
|
configurable: true,
|
|
2921
3063
|
writable: true,
|
|
2922
3064
|
value: 22
|
|
2923
3065
|
});
|
|
2924
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3066
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_dateExpr", {
|
|
2925
3067
|
enumerable: true,
|
|
2926
3068
|
configurable: true,
|
|
2927
3069
|
writable: true,
|
|
2928
3070
|
value: 23
|
|
2929
3071
|
});
|
|
2930
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3072
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_propertyTuple", {
|
|
2931
3073
|
enumerable: true,
|
|
2932
3074
|
configurable: true,
|
|
2933
3075
|
writable: true,
|
|
2934
3076
|
value: 24
|
|
2935
3077
|
});
|
|
2936
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3078
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_listElems", {
|
|
2937
3079
|
enumerable: true,
|
|
2938
3080
|
configurable: true,
|
|
2939
3081
|
writable: true,
|
|
2940
3082
|
value: 25
|
|
2941
3083
|
});
|
|
2942
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3084
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_validValue", {
|
|
2943
3085
|
enumerable: true,
|
|
2944
3086
|
configurable: true,
|
|
2945
3087
|
writable: true,
|
|
2946
3088
|
value: 26
|
|
2947
3089
|
});
|
|
2948
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3090
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_actionParamValue", {
|
|
2949
3091
|
enumerable: true,
|
|
2950
3092
|
configurable: true,
|
|
2951
3093
|
writable: true,
|
|
2952
3094
|
value: 27
|
|
2953
3095
|
});
|
|
2954
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3096
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_dateParse", {
|
|
2955
3097
|
enumerable: true,
|
|
2956
3098
|
configurable: true,
|
|
2957
3099
|
writable: true,
|
|
2958
3100
|
value: 28
|
|
2959
3101
|
});
|
|
2960
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3102
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_dateValue", {
|
|
2961
3103
|
enumerable: true,
|
|
2962
3104
|
configurable: true,
|
|
2963
3105
|
writable: true,
|
|
2964
3106
|
value: 29
|
|
2965
3107
|
});
|
|
2966
|
-
Object.defineProperty(RuleFlowLanguageParser, "
|
|
3108
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_timeUnit", {
|
|
2967
3109
|
enumerable: true,
|
|
2968
3110
|
configurable: true,
|
|
2969
3111
|
writable: true,
|
|
2970
3112
|
value: 30
|
|
2971
3113
|
});
|
|
3114
|
+
Object.defineProperty(RuleFlowLanguageParser, "RULE_validProperty", {
|
|
3115
|
+
enumerable: true,
|
|
3116
|
+
configurable: true,
|
|
3117
|
+
writable: true,
|
|
3118
|
+
value: 31
|
|
3119
|
+
});
|
|
2972
3120
|
// tslint:disable:no-trailing-whitespace
|
|
2973
3121
|
Object.defineProperty(RuleFlowLanguageParser, "ruleNames", {
|
|
2974
3122
|
enumerable: true,
|
|
@@ -2976,11 +3124,11 @@ Object.defineProperty(RuleFlowLanguageParser, "ruleNames", {
|
|
|
2976
3124
|
writable: true,
|
|
2977
3125
|
value: [
|
|
2978
3126
|
"parse", "error", "workflow", "workflow_name", "string_literal", "rulesets",
|
|
2979
|
-
"ruleset_condition", "rules", "rule_body", "
|
|
2980
|
-
"evaluation_mode", "return_result", "state_rule", "actions",
|
|
2981
|
-
"action_params", "param_pairs", "param_pair", "expr", "geoExpr",
|
|
2982
|
-
"propertyTuple", "listElems", "validValue", "actionParamValue",
|
|
2983
|
-
"dateValue", "timeUnit", "validProperty",
|
|
3127
|
+
"ruleset_condition", "rules", "rule_body", "set_clause", "name", "default_clause",
|
|
3128
|
+
"configuration", "evaluation_mode", "return_result", "state_rule", "actions",
|
|
3129
|
+
"action", "action_params", "param_pairs", "param_pair", "expr", "geoExpr",
|
|
3130
|
+
"dateExpr", "propertyTuple", "listElems", "validValue", "actionParamValue",
|
|
3131
|
+
"dateParse", "dateValue", "timeUnit", "validProperty",
|
|
2984
3132
|
]
|
|
2985
3133
|
});
|
|
2986
3134
|
Object.defineProperty(RuleFlowLanguageParser, "_LITERAL_NAMES", {
|
|
@@ -2989,15 +3137,16 @@ Object.defineProperty(RuleFlowLanguageParser, "_LITERAL_NAMES", {
|
|
|
2989
3137
|
writable: true,
|
|
2990
3138
|
value: [
|
|
2991
3139
|
undefined, undefined, "'.'", "','", "'+'", "'-'", "'*'", "'/'", "'<'",
|
|
2992
|
-
"'<='", "'>'", "'>='", "'='", "'=='", "'
|
|
2993
|
-
|
|
2994
|
-
|
|
3140
|
+
"'<='", "'>'", "'>='", "'='", "'=='", "'+='", "'-='", "'*='", "'/='",
|
|
3141
|
+
"'%='", "'<>'", "'minute'", "'hour'", "'day'", undefined, undefined, "'abs'",
|
|
3142
|
+
undefined, undefined, undefined, "'list'", "'{'", "'}'", "'('", "')'",
|
|
3143
|
+
"':'", "'action'", undefined, undefined, undefined, undefined, undefined,
|
|
2995
3144
|
undefined, undefined, undefined, undefined, undefined, undefined, undefined,
|
|
2996
3145
|
undefined, undefined, undefined, undefined, undefined, undefined, undefined,
|
|
2997
3146
|
undefined, undefined, undefined, undefined, undefined, undefined, undefined,
|
|
2998
3147
|
undefined, undefined, undefined, undefined, undefined, undefined, undefined,
|
|
2999
3148
|
undefined, undefined, undefined, undefined, undefined, undefined, undefined,
|
|
3000
|
-
undefined,
|
|
3149
|
+
undefined, "'distance'",
|
|
3001
3150
|
]
|
|
3002
3151
|
});
|
|
3003
3152
|
Object.defineProperty(RuleFlowLanguageParser, "_SYMBOLIC_NAMES", {
|
|
@@ -3006,18 +3155,19 @@ Object.defineProperty(RuleFlowLanguageParser, "_SYMBOLIC_NAMES", {
|
|
|
3006
3155
|
writable: true,
|
|
3007
3156
|
value: [
|
|
3008
3157
|
undefined, "STRING_NOT_SPECIAL_CHARS", "DOT", "COMMA", "ADD", "MINUS",
|
|
3009
|
-
"MULTIPLY", "DIVIDE", "LT", "LT_EQ", "GT", "GT_EQ", "EQ_IC", "EQ", "
|
|
3010
|
-
"
|
|
3011
|
-
"
|
|
3012
|
-
"
|
|
3013
|
-
"
|
|
3014
|
-
"
|
|
3015
|
-
"
|
|
3016
|
-
"
|
|
3017
|
-
"
|
|
3018
|
-
"
|
|
3019
|
-
"
|
|
3020
|
-
"
|
|
3158
|
+
"MULTIPLY", "DIVIDE", "LT", "LT_EQ", "GT", "GT_EQ", "EQ_IC", "EQ", "PLUS_EQ",
|
|
3159
|
+
"MINUS_EQ", "MULTIPLY_EQ", "DIVIDE_EQ", "MODULO_EQ", "NOT_EQ", "MINUTE",
|
|
3160
|
+
"HOUR", "DAY", "CURRENT_DATE", "DATE_DIFF", "ABS", "REGEX_STRIP", "MODULO",
|
|
3161
|
+
"K_STARTS_WITH", "K_LIST", "L_BRACE", "R_BRACE", "L_PAREN", "R_PAREN",
|
|
3162
|
+
"K_COLON", "K_ACTION", "K_WORKFLOW", "K_RULESET", "K_RETURN", "K_THEN",
|
|
3163
|
+
"K_DEFAULT", "K_WITH", "K_END", "K_ELSE", "K_AND", "K_OR", "K_CONTAINS",
|
|
3164
|
+
"K_IS", "K_NOT", "K_IS_NOT", "K_IN", "K_ANY", "K_NONE", "K_ALL", "K_COUNT",
|
|
3165
|
+
"K_AVERAGE", "K_DISTINCT", "K_NULL", "DAY_OF_WEEK", "K_EXPR", "K_EVALUATION_MODE",
|
|
3166
|
+
"K_MULTI_MATCH", "K_SINGLE_MATCH", "K_NOW", "K_DATE", "K_DATETIME", "K_DATE_ADD",
|
|
3167
|
+
"K_DATE_SUBTRACT", "K_SET", "K_CONTINUE", "STRING_DISTANCE", "PARTIAL_RATIO",
|
|
3168
|
+
"TOKEN_SORT_RATIO", "TOKEN_SET_RATIO", "STRING_SIMILARITY_SCORE", "GEOHASH_ENCODE",
|
|
3169
|
+
"GEOHASH_DECODE", "DISTANCE", "WITHIN_RADIUS", "NUMERIC_LITERAL", "BOOLEAN_LITERAL",
|
|
3170
|
+
"DQUOTA_STRING", "SQUOTA_STRING", "VARIABLE", "ID", "SINGLE_LINE_COMMENT",
|
|
3021
3171
|
"MULTILINE_COMMENT", "SPACES", "UNEXPECTED_CHAR",
|
|
3022
3172
|
]
|
|
3023
3173
|
});
|
|
@@ -3031,258 +3181,274 @@ Object.defineProperty(RuleFlowLanguageParser, "_serializedATN", {
|
|
|
3031
3181
|
enumerable: true,
|
|
3032
3182
|
configurable: true,
|
|
3033
3183
|
writable: true,
|
|
3034
|
-
value: "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\
|
|
3184
|
+
value: "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03Z\u021A\x04\x02" +
|
|
3035
3185
|
"\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04\x07" +
|
|
3036
3186
|
"\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r\t\r\x04" +
|
|
3037
3187
|
"\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12\x04" +
|
|
3038
3188
|
"\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t\x17\x04" +
|
|
3039
3189
|
"\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t\x1C\x04" +
|
|
3040
|
-
"\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x03\x02\x03\x02
|
|
3041
|
-
"
|
|
3042
|
-
"
|
|
3043
|
-
"\x04\x03\x05\x03\x05\x03\x06\x03\x06\x03\x07\x03\x07\x03\x07\x05
|
|
3044
|
-
"\n\x07\x03\x07\x06\
|
|
3045
|
-
"\b\x03\b\x03\b\x03\b\x05\
|
|
3046
|
-
"\
|
|
3047
|
-
"\
|
|
3048
|
-
"\
|
|
3049
|
-
"\x03\
|
|
3050
|
-
"\
|
|
3051
|
-
"\
|
|
3052
|
-
"\x12\x05\x12\
|
|
3053
|
-
"\
|
|
3054
|
-
"\x13\x03\
|
|
3055
|
-
"\
|
|
3056
|
-
"\x03\
|
|
3057
|
-
"\x16\x03\x16\x03\x16\x03\
|
|
3058
|
-
"\
|
|
3059
|
-
"\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" +
|
|
3060
|
-
"\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" +
|
|
3061
|
-
"\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" +
|
|
3062
|
-
"\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" +
|
|
3063
|
-
"\x16\x03\x16\x03\x16\x03\x16\x05\x16\u0114\n\x16\x03\x16\x03\x16\x03\x16" +
|
|
3064
|
-
"\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16" +
|
|
3065
|
-
"\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x05\x16\u0127\n\x16\x03\x16\x03" +
|
|
3066
|
-
"\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" +
|
|
3067
|
-
"\x16\x05\x16\u0134\n\x16\x07\x16\u0136\n\x16\f\x16\x0E\x16\u0139\v\x16" +
|
|
3068
|
-
"\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x05\x17\u0142" +
|
|
3069
|
-
"\n\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" +
|
|
3070
|
-
"\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" +
|
|
3190
|
+
"\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x03\x02\x03\x02" +
|
|
3191
|
+
"\x05\x02E\n\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x04\x03\x04\x03\x04" +
|
|
3192
|
+
"\x05\x04N\n\x04\x03\x04\x07\x04Q\n\x04\f\x04\x0E\x04T\v\x04\x03\x04\x03" +
|
|
3193
|
+
"\x04\x03\x04\x03\x05\x03\x05\x03\x06\x03\x06\x03\x07\x03\x07\x03\x07\x05" +
|
|
3194
|
+
"\x07`\n\x07\x03\x07\x06\x07c\n\x07\r\x07\x0E\x07d\x03\b\x03\b\x03\b\x03" +
|
|
3195
|
+
"\b\x03\b\x03\b\x03\b\x03\b\x05\bo\n\b\x03\t\x03\t\x05\ts\n\t\x03\t\x03" +
|
|
3196
|
+
"\t\x05\tw\n\t\x03\n\x03\n\x07\n{\n\n\f\n\x0E\n~\v\n\x03\n\x03\n\x05\n" +
|
|
3197
|
+
"\x82\n\n\x03\n\x03\n\x03\n\x03\n\x05\n\x88\n\n\x03\n\x03\n\x03\n\x03\n" +
|
|
3198
|
+
"\x05\n\x8E\n\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\v\x03\v\x03\v\x05\v\x98" +
|
|
3199
|
+
"\n\v\x03\f\x03\f\x03\r\x03\r\x05\r\x9E\n\r\x03\r\x03\r\x05\r\xA2\n\r\x03" +
|
|
3200
|
+
"\x0E\x05\x0E\xA5\n\x0E\x03\x0F\x03\x0F\x03\x0F\x03\x10\x03\x10\x03\x10" +
|
|
3201
|
+
"\x03\x10\x03\x10\x03\x10\x03\x10\x03\x10\x05\x10\xB2\n\x10\x03\x11\x03" +
|
|
3202
|
+
"\x11\x03\x12\x05\x12\xB7\n\x12\x03\x12\x03\x12\x03\x12\x07\x12\xBC\n\x12" +
|
|
3203
|
+
"\f\x12\x0E\x12\xBF\v\x12\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x05\x13" +
|
|
3204
|
+
"\xC6\n\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x05" +
|
|
3205
|
+
"\x13\xCF\n\x13\x05\x13\xD1\n\x13\x03\x14\x03\x14\x03\x14\x03\x14\x03\x15" +
|
|
3206
|
+
"\x03\x15\x03\x15\x07\x15\xDA\n\x15\f\x15\x0E\x15\xDD\v\x15\x03\x16\x03" +
|
|
3207
|
+
"\x16\x03\x16\x03\x16\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03" +
|
|
3208
|
+
"\x17\x03\x17\x05\x17\xEB\n\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" +
|
|
3071
3209
|
"\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" +
|
|
3210
|
+
"\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x07\x17\u0102" +
|
|
3211
|
+
"\n\x17\f\x17\x0E\x17\u0105\v\x17\x05\x17\u0107\n\x17\x03\x17\x03\x17\x03" +
|
|
3212
|
+
"\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03" +
|
|
3213
|
+
"\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03" +
|
|
3214
|
+
"\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03" +
|
|
3215
|
+
"\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03" +
|
|
3216
|
+
"\x17\x03\x17\x05\x17\u0131\n\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" +
|
|
3072
3217
|
"\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" +
|
|
3073
|
-
"\x03\x17\x03\x17\x03\x17\
|
|
3218
|
+
"\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x05\x17\u0147\n\x17\x03" +
|
|
3219
|
+
"\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03" +
|
|
3220
|
+
"\x17\x03\x17\x05\x17\u0154\n\x17\x07\x17\u0156\n\x17\f\x17\x0E\x17\u0159" +
|
|
3221
|
+
"\v\x17\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x05\x18" +
|
|
3222
|
+
"\u0162\n\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03" +
|
|
3074
3223
|
"\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03" +
|
|
3075
3224
|
"\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03" +
|
|
3076
3225
|
"\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03" +
|
|
3077
|
-
"\x18\x03\x18\x03\x18\x03\x18\
|
|
3078
|
-
"\x03\x19\x03\x19\
|
|
3079
|
-
"\x03\x19\x03\
|
|
3080
|
-
"\
|
|
3081
|
-
"\x03\
|
|
3082
|
-
"\
|
|
3083
|
-
"\x1A\
|
|
3084
|
-
"\
|
|
3085
|
-
"\x1B\x03\x1B\x03\x1B\
|
|
3086
|
-
"\
|
|
3087
|
-
"\
|
|
3088
|
-
"\
|
|
3089
|
-
"\
|
|
3090
|
-
"
|
|
3091
|
-
"\
|
|
3092
|
-
"\
|
|
3093
|
-
"
|
|
3094
|
-
"\x02\
|
|
3095
|
-
"\
|
|
3096
|
-
"
|
|
3097
|
-
"
|
|
3098
|
-
"\
|
|
3099
|
-
"\
|
|
3100
|
-
"\
|
|
3101
|
-
"\
|
|
3102
|
-
"\x02\
|
|
3103
|
-
"\x02\
|
|
3104
|
-
"\x02\x02\
|
|
3105
|
-
"\x02\x02\x02
|
|
3106
|
-
"
|
|
3107
|
-
"
|
|
3108
|
-
"
|
|
3109
|
-
"
|
|
3110
|
-
"
|
|
3111
|
-
"
|
|
3112
|
-
"
|
|
3113
|
-
"
|
|
3114
|
-
"
|
|
3115
|
-
"
|
|
3116
|
-
"
|
|
3117
|
-
"
|
|
3118
|
-
"\x02\
|
|
3119
|
-
"\x02\x02\
|
|
3120
|
-
"
|
|
3121
|
-
"\x05
|
|
3122
|
-
"\x02\
|
|
3123
|
-
"\
|
|
3124
|
-
"\
|
|
3125
|
-
"\
|
|
3126
|
-
"\
|
|
3127
|
-
"\
|
|
3128
|
-
"\
|
|
3129
|
-
"\
|
|
3130
|
-
"\x03\x02\x02\x02\
|
|
3131
|
-
"\
|
|
3132
|
-
"\
|
|
3133
|
-
"\
|
|
3134
|
-
"\
|
|
3135
|
-
"\
|
|
3136
|
-
"\
|
|
3137
|
-
"\
|
|
3138
|
-
"\
|
|
3139
|
-
"\
|
|
3140
|
-
"
|
|
3141
|
-
"\
|
|
3142
|
-
"\
|
|
3143
|
-
"\
|
|
3144
|
-
"\
|
|
3145
|
-
"
|
|
3146
|
-
"\x02\x02\
|
|
3147
|
-
"\x02\x02\
|
|
3148
|
-
"
|
|
3149
|
-
"\x02\
|
|
3150
|
-
"\x02\
|
|
3151
|
-
"\
|
|
3152
|
-
"\
|
|
3153
|
-
"\
|
|
3154
|
-
"
|
|
3155
|
-
"\x02\x02\
|
|
3156
|
-
"\x02\x02\
|
|
3157
|
-
"\x02\x02\
|
|
3158
|
-
"\x02\x02\
|
|
3159
|
-
"\
|
|
3160
|
-
"\
|
|
3161
|
-
"\
|
|
3162
|
-
"\
|
|
3163
|
-
"\
|
|
3164
|
-
"\
|
|
3165
|
-
"\
|
|
3166
|
-
"
|
|
3167
|
-
"\x02\x02\
|
|
3168
|
-
"\
|
|
3169
|
-
"\
|
|
3170
|
-
"\
|
|
3171
|
-
"
|
|
3172
|
-
"\
|
|
3173
|
-
"\
|
|
3174
|
-
"\x02\
|
|
3175
|
-
"\
|
|
3176
|
-
"\
|
|
3177
|
-
"\
|
|
3178
|
-
"\x02\x02\
|
|
3179
|
-
"\
|
|
3180
|
-
"\
|
|
3181
|
-
"\
|
|
3182
|
-
"\x02\x02\
|
|
3183
|
-
"\
|
|
3184
|
-
"\
|
|
3185
|
-
"\
|
|
3186
|
-
"
|
|
3187
|
-
"\
|
|
3188
|
-
"\
|
|
3189
|
-
"\
|
|
3190
|
-
"\
|
|
3191
|
-
"\x02\x02\u012B\u012C\x07\
|
|
3192
|
-
"\
|
|
3193
|
-
"\u0130\
|
|
3194
|
-
"
|
|
3195
|
-
"\
|
|
3196
|
-
"\x02\x02\
|
|
3197
|
-
"\
|
|
3198
|
-
"\x02\x02\
|
|
3199
|
-
"\
|
|
3200
|
-
"\x02\
|
|
3201
|
-
"\
|
|
3202
|
-
"\
|
|
3203
|
-
"\
|
|
3204
|
-
"\
|
|
3205
|
-
"\
|
|
3206
|
-
"\
|
|
3207
|
-
"\
|
|
3208
|
-
"\
|
|
3209
|
-
"\
|
|
3210
|
-
"
|
|
3211
|
-
"\
|
|
3212
|
-
"\
|
|
3213
|
-
"\x02\x02\
|
|
3214
|
-
"\
|
|
3215
|
-
"\
|
|
3216
|
-
"\
|
|
3217
|
-
"\
|
|
3218
|
-
"\
|
|
3219
|
-
"\
|
|
3220
|
-
"
|
|
3221
|
-
"\x02\
|
|
3222
|
-
"\
|
|
3223
|
-
"\
|
|
3224
|
-
"\
|
|
3225
|
-
"
|
|
3226
|
-
"\
|
|
3227
|
-
"\
|
|
3228
|
-
"\x02\
|
|
3229
|
-
"\
|
|
3230
|
-
"\
|
|
3231
|
-
"\
|
|
3232
|
-
"\
|
|
3233
|
-
"\
|
|
3234
|
-
"\
|
|
3235
|
-
"\x02\
|
|
3236
|
-
"\
|
|
3237
|
-
"\
|
|
3238
|
-
"\x02\x02\
|
|
3239
|
-
"\
|
|
3240
|
-
"\
|
|
3241
|
-
"\
|
|
3242
|
-
"\
|
|
3243
|
-
"\x02\
|
|
3244
|
-
"\
|
|
3245
|
-
"\
|
|
3246
|
-
"\
|
|
3247
|
-
"\
|
|
3248
|
-
"\
|
|
3249
|
-
"\
|
|
3250
|
-
"\
|
|
3251
|
-
"\
|
|
3252
|
-
"\
|
|
3253
|
-
"\
|
|
3254
|
-
"\
|
|
3255
|
-
"\
|
|
3256
|
-
"\
|
|
3257
|
-
"\
|
|
3258
|
-
"\
|
|
3259
|
-
"\
|
|
3260
|
-
"\
|
|
3261
|
-
"\
|
|
3262
|
-
"\
|
|
3263
|
-
"\
|
|
3264
|
-
"\
|
|
3265
|
-
"
|
|
3266
|
-
"\x03\x02\x02\x02\
|
|
3267
|
-
"\
|
|
3268
|
-
"\x02\x02\
|
|
3269
|
-
"\x05
|
|
3270
|
-
"\
|
|
3271
|
-
"\x02\
|
|
3272
|
-
"\
|
|
3273
|
-
"\
|
|
3274
|
-
"\
|
|
3275
|
-
"\
|
|
3276
|
-
"\x02\x02\x02\
|
|
3277
|
-
"\
|
|
3278
|
-
"\
|
|
3279
|
-
"\
|
|
3280
|
-
"\
|
|
3281
|
-
"\
|
|
3282
|
-
"\
|
|
3283
|
-
"\
|
|
3284
|
-
"\
|
|
3285
|
-
"\
|
|
3226
|
+
"\x18\x03\x18\x03\x18\x03\x18\x05\x18\u018A\n\x18\x03\x19\x03\x19\x03\x19" +
|
|
3227
|
+
"\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19" +
|
|
3228
|
+
"\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19" +
|
|
3229
|
+
"\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19" +
|
|
3230
|
+
"\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x05\x19\u01AF\n\x19\x03\x1A\x03" +
|
|
3231
|
+
"\x1A\x03\x1A\x03\x1A\x07\x1A\u01B5\n\x1A\f\x1A\x0E\x1A\u01B8\v\x1A\x03" +
|
|
3232
|
+
"\x1A\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03" +
|
|
3233
|
+
"\x1B\x07\x1B\u01C4\n\x1B\f\x1B\x0E\x1B\u01C7\v\x1B\x03\x1B\x03\x1B\x03" +
|
|
3234
|
+
"\x1B\x03\x1B\x03\x1B\x07\x1B\u01CE\n\x1B\f\x1B\x0E\x1B\u01D1\v\x1B\x03" +
|
|
3235
|
+
"\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x07\x1B\u01D9\n\x1B\f\x1B" +
|
|
3236
|
+
"\x0E\x1B\u01DC\v\x1B\x03\x1B\x03\x1B\x07\x1B\u01E0\n\x1B\f\x1B\x0E\x1B" +
|
|
3237
|
+
"\u01E3\v\x1B\x03\x1B\x03\x1B\x03\x1B\x05\x1B\u01E8\n\x1B\x03\x1C\x03\x1C" +
|
|
3238
|
+
"\x03\x1C\x03\x1C\x03\x1C\x05\x1C\u01EF\n\x1C\x03\x1D\x03\x1D\x05\x1D\u01F3" +
|
|
3239
|
+
"\n\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" +
|
|
3240
|
+
"\x03\x1E\x03\x1E\x05\x1E\u01FF\n\x1E\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03" +
|
|
3241
|
+
"\x1F\x05\x1F\u0206\n\x1F\x03 \x03 \x03!\x05!\u020B\n!\x03!\x03!\x05!\u020F" +
|
|
3242
|
+
"\n!\x03!\x03!\x03!\x06!\u0214\n!\r!\x0E!\u0215\x05!\u0218\n!\x03!\x03" +
|
|
3243
|
+
"\xBD\x02\x03,\"\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02\x0E\x02\x10" +
|
|
3244
|
+
"\x02\x12\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02 \x02\"\x02" +
|
|
3245
|
+
"$\x02&\x02(\x02*\x02,\x02.\x020\x022\x024\x026\x028\x02:\x02<\x02>\x02" +
|
|
3246
|
+
"@\x02\x02\r\x04\x02\x03\x03TT\x04\x02++..\x03\x02\x10\x14\x03\x02()\x03" +
|
|
3247
|
+
"\x02?@\x05\x02\x1E\x1E0044\x04\x02\b\t\x1D\x1D\x03\x02\x06\x07\x04\x02" +
|
|
3248
|
+
"\n\x0F\x15\x15\x04\x02005:\x03\x02\x16\x18\x02\u024D\x02D\x03\x02\x02" +
|
|
3249
|
+
"\x02\x04H\x03\x02\x02\x02\x06J\x03\x02\x02\x02\bX\x03\x02\x02\x02\nZ\x03" +
|
|
3250
|
+
"\x02\x02\x02\f\\\x03\x02\x02\x02\x0En\x03\x02\x02\x02\x10p\x03\x02\x02" +
|
|
3251
|
+
"\x02\x12x\x03\x02\x02\x02\x14\x97\x03\x02\x02\x02\x16\x99\x03\x02\x02" +
|
|
3252
|
+
"\x02\x18\x9B\x03\x02\x02\x02\x1A\xA4\x03\x02\x02\x02\x1C\xA6\x03\x02\x02" +
|
|
3253
|
+
"\x02\x1E\xB1\x03\x02\x02\x02 \xB3\x03\x02\x02\x02\"\xB6\x03\x02\x02\x02" +
|
|
3254
|
+
"$\xD0\x03\x02\x02\x02&\xD2\x03\x02\x02\x02(\xD6\x03\x02\x02\x02*\xDE\x03" +
|
|
3255
|
+
"\x02\x02\x02,\u0130\x03\x02\x02\x02.\u0189\x03\x02\x02\x020\u01AE\x03" +
|
|
3256
|
+
"\x02\x02\x022\u01B0\x03\x02\x02\x024\u01E7\x03\x02\x02\x026\u01EE\x03" +
|
|
3257
|
+
"\x02\x02\x028\u01F2\x03\x02\x02\x02:\u01FE\x03\x02\x02\x02<\u0205\x03" +
|
|
3258
|
+
"\x02\x02\x02>\u0207\x03\x02\x02\x02@\u0217\x03\x02\x02\x02BE\x05\x06\x04" +
|
|
3259
|
+
"\x02CE\x05\x04\x03\x02DB\x03\x02\x02\x02DC\x03\x02\x02\x02EF\x03\x02\x02" +
|
|
3260
|
+
"\x02FG\x07\x02\x02\x03G\x03\x03\x02\x02\x02HI\x07Z\x02\x02I\x05\x03\x02" +
|
|
3261
|
+
"\x02\x02JK\x07&\x02\x02KM\x05\b\x05\x02LN\x05\x1A\x0E\x02ML\x03\x02\x02" +
|
|
3262
|
+
"\x02MN\x03\x02\x02\x02NR\x03\x02\x02\x02OQ\x05\f\x07\x02PO\x03\x02\x02" +
|
|
3263
|
+
"\x02QT\x03\x02\x02\x02RP\x03\x02\x02\x02RS\x03\x02\x02\x02SU\x03\x02\x02" +
|
|
3264
|
+
"\x02TR\x03\x02\x02\x02UV\x05\x18\r\x02VW\x07,\x02\x02W\x07\x03\x02\x02" +
|
|
3265
|
+
"\x02XY\x07\x03\x02\x02Y\t\x03\x02\x02\x02Z[\t\x02\x02\x02[\v\x03\x02\x02" +
|
|
3266
|
+
"\x02\\]\x07\'\x02\x02]_\x05\x16\f\x02^`\x05\x0E\b\x02_^\x03\x02\x02\x02" +
|
|
3267
|
+
"_`\x03\x02\x02\x02`b\x03\x02\x02\x02ac\x05\x10\t\x02ba\x03\x02\x02\x02" +
|
|
3268
|
+
"cd\x03\x02\x02\x02db\x03\x02\x02\x02de\x03\x02\x02\x02e\r\x03\x02\x02" +
|
|
3269
|
+
"\x02fg\x05,\x17\x02gh\x07)\x02\x02ho\x03\x02\x02\x02ij\x07\"\x02\x02j" +
|
|
3270
|
+
"k\x05,\x17\x02kl\x07#\x02\x02lm\x07)\x02\x02mo\x03\x02\x02\x02nf\x03\x02" +
|
|
3271
|
+
"\x02\x02ni\x03\x02\x02\x02o\x0F\x03\x02\x02\x02pr\x05\x16\f\x02qs\x07" +
|
|
3272
|
+
"\"\x02\x02rq\x03\x02\x02\x02rs\x03\x02\x02\x02st\x03\x02\x02\x02tv\x05" +
|
|
3273
|
+
"\x12\n\x02uw\x07#\x02\x02vu\x03\x02\x02\x02vw\x03\x02\x02\x02w\x11\x03" +
|
|
3274
|
+
"\x02\x02\x02x|\x05,\x17\x02y{\x05\x14\v\x02zy\x03\x02\x02\x02{~\x03\x02" +
|
|
3275
|
+
"\x02\x02|z\x03\x02\x02\x02|}\x03\x02\x02\x02}\x8D\x03\x02\x02\x02~|\x03" +
|
|
3276
|
+
"\x02\x02\x02\x7F\x81\x07)\x02\x02\x80\x82\t\x03\x02\x02\x81\x80\x03\x02" +
|
|
3277
|
+
"\x02\x02\x81\x82\x03\x02\x02\x02\x82\x83\x03\x02\x02\x02\x83\x8E\x05\"" +
|
|
3278
|
+
"\x12\x02\x84\x85\x07(\x02\x02\x85\x87\x05\x1E\x10\x02\x86\x88\x05\"\x12" +
|
|
3279
|
+
"\x02\x87\x86\x03\x02\x02\x02\x87\x88\x03\x02\x02\x02\x88\x8E\x03\x02\x02" +
|
|
3280
|
+
"\x02\x89\x8A\x05\"\x12\x02\x8A\x8B\x07G\x02\x02\x8B\x8E\x03\x02\x02\x02" +
|
|
3281
|
+
"\x8C\x8E\x07G\x02\x02\x8D\x7F\x03\x02\x02\x02\x8D\x84\x03\x02\x02\x02" +
|
|
3282
|
+
"\x8D\x89\x03\x02\x02\x02\x8D\x8C\x03\x02\x02\x02\x8E\x13\x03\x02\x02\x02" +
|
|
3283
|
+
"\x8F\x90\x07F\x02\x02\x90\x91\x07U\x02\x02\x91\x92\x07\x0E\x02\x02\x92" +
|
|
3284
|
+
"\x98\x05,\x17\x02\x93\x94\x07F\x02\x02\x94\x95\x07U\x02\x02\x95\x96\t" +
|
|
3285
|
+
"\x04\x02\x02\x96\x98\x05,\x17\x02\x97\x8F\x03\x02\x02\x02\x97\x93\x03" +
|
|
3286
|
+
"\x02\x02\x02\x98\x15\x03\x02\x02\x02\x99\x9A\x05\n\x06\x02\x9A\x17\x03" +
|
|
3287
|
+
"\x02\x02\x02\x9B\x9D\x07*\x02\x02\x9C\x9E\t\x05\x02\x02\x9D\x9C\x03\x02" +
|
|
3288
|
+
"\x02\x02\x9D\x9E\x03\x02\x02\x02\x9E\x9F\x03\x02\x02\x02\x9F\xA1\x05\x1E" +
|
|
3289
|
+
"\x10\x02\xA0\xA2\x05\"\x12\x02\xA1\xA0\x03\x02\x02\x02\xA1\xA2\x03\x02" +
|
|
3290
|
+
"\x02\x02\xA2\x19\x03\x02\x02\x02\xA3\xA5\x05\x1C\x0F\x02\xA4\xA3\x03\x02" +
|
|
3291
|
+
"\x02\x02\xA4\xA5\x03\x02\x02\x02\xA5\x1B\x03\x02\x02\x02\xA6\xA7\x07>" +
|
|
3292
|
+
"\x02\x02\xA7\xA8\t\x06\x02\x02\xA8\x1D\x03\x02\x02\x02\xA9\xB2\x05 \x11" +
|
|
3293
|
+
"\x02\xAA\xB2\x05@!\x02\xAB\xB2\x056\x1C\x02\xAC\xAD\x07=\x02\x02\xAD\xAE" +
|
|
3294
|
+
"\x07\"\x02\x02\xAE\xAF\x05,\x17\x02\xAF\xB0\x07#\x02\x02\xB0\xB2\x03\x02" +
|
|
3295
|
+
"\x02\x02\xB1\xA9\x03\x02\x02\x02\xB1\xAA\x03\x02\x02\x02\xB1\xAB\x03\x02" +
|
|
3296
|
+
"\x02\x02\xB1\xAC\x03\x02\x02\x02\xB2\x1F\x03\x02\x02\x02\xB3\xB4\x07V" +
|
|
3297
|
+
"\x02\x02\xB4!\x03\x02\x02\x02\xB5\xB7\t\x03\x02\x02\xB6\xB5\x03\x02\x02" +
|
|
3298
|
+
"\x02\xB6\xB7\x03\x02\x02\x02\xB7\xB8\x03\x02\x02\x02\xB8\xBD\x05$\x13" +
|
|
3299
|
+
"\x02\xB9\xBA\x07.\x02\x02\xBA\xBC\x05$\x13\x02\xBB\xB9\x03\x02\x02\x02" +
|
|
3300
|
+
"\xBC\xBF\x03\x02\x02\x02\xBD\xBE\x03\x02\x02\x02\xBD\xBB\x03\x02\x02\x02" +
|
|
3301
|
+
"\xBE#\x03\x02\x02\x02\xBF\xBD\x03\x02\x02\x02\xC0\xC1\x07%\x02\x02\xC1" +
|
|
3302
|
+
"\xC2\x07\"\x02\x02\xC2\xC5\x05\n\x06\x02\xC3\xC4\x07\x05\x02\x02\xC4\xC6" +
|
|
3303
|
+
"\x05&\x14\x02\xC5\xC3\x03\x02\x02\x02\xC5\xC6\x03\x02\x02\x02\xC6\xC7" +
|
|
3304
|
+
"\x03\x02\x02\x02\xC7\xC8\x07#\x02\x02\xC8\xD1\x03\x02\x02\x02\xC9\xCE" +
|
|
3305
|
+
"\x07V\x02\x02\xCA\xCB\x07\"\x02\x02\xCB\xCC\x05&\x14\x02\xCC\xCD\x07#" +
|
|
3306
|
+
"\x02\x02\xCD\xCF\x03\x02\x02\x02\xCE\xCA\x03\x02\x02\x02\xCE\xCF\x03\x02" +
|
|
3307
|
+
"\x02\x02\xCF\xD1\x03\x02\x02\x02\xD0\xC0\x03\x02\x02\x02\xD0\xC9\x03\x02" +
|
|
3308
|
+
"\x02\x02\xD1%\x03\x02\x02\x02\xD2\xD3\x07 \x02\x02\xD3\xD4\x05(\x15\x02" +
|
|
3309
|
+
"\xD4\xD5\x07!\x02\x02\xD5\'\x03\x02\x02\x02\xD6\xDB\x05*\x16\x02\xD7\xD8" +
|
|
3310
|
+
"\x07\x05\x02\x02\xD8\xDA\x05*\x16\x02\xD9\xD7\x03\x02\x02\x02\xDA\xDD" +
|
|
3311
|
+
"\x03\x02\x02\x02\xDB\xD9\x03\x02\x02\x02\xDB\xDC\x03\x02\x02\x02\xDC)" +
|
|
3312
|
+
"\x03\x02\x02\x02\xDD\xDB\x03\x02\x02\x02\xDE\xDF\x05\n\x06\x02\xDF\xE0" +
|
|
3313
|
+
"\x07$\x02\x02\xE0\xE1\x058\x1D\x02\xE1+\x03\x02\x02\x02\xE2\xE3\b\x17" +
|
|
3314
|
+
"\x01\x02\xE3\xE4\x07\"\x02\x02\xE4\xE5\x05,\x17\x02\xE5\xE6\x07#\x02\x02" +
|
|
3315
|
+
"\xE6\u0131\x03\x02\x02\x02\xE7\u0131\x07U\x02\x02\xE8\xEA\x052\x1A\x02" +
|
|
3316
|
+
"\xE9\xEB\x072\x02\x02\xEA\xE9\x03\x02\x02\x02\xEA\xEB\x03\x02\x02\x02" +
|
|
3317
|
+
"\xEB\xEC\x03\x02\x02\x02\xEC\xED\t\x07\x02\x02\xED\xEE\x054\x1B\x02\xEE" +
|
|
3318
|
+
"\u0131\x03\x02\x02\x02\xEF\u0131\x050\x19\x02\xF0\xF1\x07\x1C\x02\x02" +
|
|
3319
|
+
"\xF1\xF2\x07\"\x02\x02\xF2\xF3\x05@!\x02\xF3\xF4\x07\x05\x02\x02\xF4\xF5" +
|
|
3320
|
+
"\x07T\x02\x02\xF5\xF6\x07#\x02\x02\xF6\u0131\x03\x02\x02\x02\xF7\xF8\x07" +
|
|
3321
|
+
"\x1B\x02\x02\xF8\xF9\x07\"\x02\x02\xF9\xFA\x05,\x17\x02\xFA\xFB\x07#\x02" +
|
|
3322
|
+
"\x02\xFB\u0131\x03\x02\x02\x02\xFC\xFD\x07V\x02\x02\xFD\u0106\x07\"\x02" +
|
|
3323
|
+
"\x02\xFE\u0103\x05,\x17\x02\xFF\u0100\x07\x05\x02\x02\u0100\u0102\x05" +
|
|
3324
|
+
",\x17\x02\u0101\xFF\x03\x02\x02\x02\u0102\u0105\x03\x02\x02\x02\u0103" +
|
|
3325
|
+
"\u0101\x03\x02\x02\x02\u0103\u0104\x03\x02\x02\x02\u0104\u0107\x03\x02" +
|
|
3326
|
+
"\x02\x02\u0105\u0103\x03\x02\x02\x02\u0106\xFE\x03\x02\x02\x02\u0106\u0107" +
|
|
3327
|
+
"\x03\x02\x02\x02\u0107\u0108\x03\x02\x02\x02\u0108\u0131\x07#\x02\x02" +
|
|
3328
|
+
"\u0109\u0131\x05:\x1E\x02\u010A\u0131\x056\x1C\x02\u010B\u0131\x05@!\x02" +
|
|
3329
|
+
"\u010C\u010D\x07H\x02\x02\u010D\u010E\x07\"\x02\x02\u010E\u010F\x05,\x17" +
|
|
3330
|
+
"\x02\u010F\u0110\x07\x05\x02\x02\u0110\u0111\x05,\x17\x02\u0111\u0112" +
|
|
3331
|
+
"\x07#\x02\x02\u0112\u0131\x03\x02\x02\x02\u0113\u0114\x07I\x02\x02\u0114" +
|
|
3332
|
+
"\u0115\x07\"\x02\x02\u0115\u0116\x05,\x17\x02\u0116\u0117\x07\x05\x02" +
|
|
3333
|
+
"\x02\u0117\u0118\x05,\x17\x02\u0118\u0119\x07#\x02\x02\u0119\u0131\x03" +
|
|
3334
|
+
"\x02\x02\x02\u011A\u011B\x07J\x02\x02\u011B\u011C\x07\"\x02\x02\u011C" +
|
|
3335
|
+
"\u011D\x05,\x17\x02\u011D\u011E\x07\x05\x02\x02\u011E\u011F\x05,\x17\x02" +
|
|
3336
|
+
"\u011F\u0120\x07#\x02\x02\u0120\u0131\x03\x02\x02\x02\u0121\u0122\x07" +
|
|
3337
|
+
"K\x02\x02\u0122\u0123\x07\"\x02\x02\u0123\u0124\x05,\x17\x02\u0124\u0125" +
|
|
3338
|
+
"\x07\x05\x02\x02\u0125\u0126\x05,\x17\x02\u0126\u0127\x07#\x02\x02\u0127" +
|
|
3339
|
+
"\u0131\x03\x02\x02\x02\u0128\u0129\x07L\x02\x02\u0129\u012A\x07\"\x02" +
|
|
3340
|
+
"\x02\u012A\u012B\x05,\x17\x02\u012B\u012C\x07\x05\x02\x02\u012C\u012D" +
|
|
3341
|
+
"\x05,\x17\x02\u012D\u012E\x07#\x02\x02\u012E\u0131\x03\x02\x02\x02\u012F" +
|
|
3342
|
+
"\u0131\x05.\x18\x02\u0130\xE2\x03\x02\x02\x02\u0130\xE7\x03\x02\x02\x02" +
|
|
3343
|
+
"\u0130\xE8\x03\x02\x02\x02\u0130\xEF\x03\x02\x02\x02\u0130\xF0\x03\x02" +
|
|
3344
|
+
"\x02\x02\u0130\xF7\x03\x02\x02\x02\u0130\xFC\x03\x02\x02\x02\u0130\u0109" +
|
|
3345
|
+
"\x03\x02\x02\x02\u0130\u010A\x03\x02\x02\x02\u0130\u010B\x03\x02\x02\x02" +
|
|
3346
|
+
"\u0130\u010C\x03\x02\x02\x02\u0130\u0113\x03\x02\x02\x02\u0130\u011A\x03" +
|
|
3347
|
+
"\x02\x02\x02\u0130\u0121\x03\x02\x02\x02\u0130\u0128\x03\x02\x02\x02\u0130" +
|
|
3348
|
+
"\u012F\x03\x02\x02\x02\u0131\u0157\x03\x02\x02\x02\u0132\u0133\f\x17\x02" +
|
|
3349
|
+
"\x02\u0133\u0134\t\b\x02\x02\u0134\u0156\x05,\x17\x18\u0135\u0136\f\x16" +
|
|
3350
|
+
"\x02\x02\u0136\u0137\t\t\x02\x02\u0137\u0156\x05,\x17\x17\u0138\u0139" +
|
|
3351
|
+
"\f\x15\x02\x02\u0139\u013A\t\n\x02\x02\u013A\u0156\x05,\x17\x16\u013B" +
|
|
3352
|
+
"\u013C\f\r\x02\x02\u013C\u013D\x07.\x02\x02\u013D\u0156\x05,\x17\x0E\u013E" +
|
|
3353
|
+
"\u013F\f\f\x02\x02\u013F\u0140\x07/\x02\x02\u0140\u0156\x05,\x17\r\u0141" +
|
|
3354
|
+
"\u0142\f\x18\x02\x02\u0142\u0143\x07\x04\x02\x02\u0143\u0156\x07V\x02" +
|
|
3355
|
+
"\x02\u0144\u0146\f\x14\x02\x02\u0145\u0147\x072\x02\x02\u0146\u0145\x03" +
|
|
3356
|
+
"\x02\x02\x02\u0146\u0147\x03\x02\x02\x02\u0147\u0148\x03\x02\x02\x02\u0148" +
|
|
3357
|
+
"\u0149\t\x07\x02\x02\u0149\u0156\x054\x1B\x02\u014A\u014B\f\x12\x02\x02" +
|
|
3358
|
+
"\u014B\u014C\x07\x04\x02\x02\u014C\u0153\t\v\x02\x02\u014D\u014E\x07 " +
|
|
3359
|
+
"\x02\x02\u014E\u014F\x05,\x17\x02\u014F\u0150\x07!\x02\x02\u0150\u0154" +
|
|
3360
|
+
"\x03\x02\x02\x02\u0151\u0152\x07\"\x02\x02\u0152\u0154\x07#\x02\x02\u0153" +
|
|
3361
|
+
"\u014D\x03\x02\x02\x02\u0153\u0151\x03\x02\x02\x02\u0154\u0156\x03\x02" +
|
|
3362
|
+
"\x02\x02\u0155\u0132\x03\x02\x02\x02\u0155\u0135\x03\x02\x02\x02\u0155" +
|
|
3363
|
+
"\u0138\x03\x02\x02\x02\u0155\u013B\x03\x02\x02\x02\u0155\u013E\x03\x02" +
|
|
3364
|
+
"\x02\x02\u0155\u0141\x03\x02\x02\x02\u0155\u0144\x03\x02\x02\x02\u0155" +
|
|
3365
|
+
"\u014A\x03\x02\x02\x02\u0156\u0159\x03\x02\x02\x02\u0157\u0155\x03\x02" +
|
|
3366
|
+
"\x02\x02\u0157\u0158\x03\x02\x02\x02\u0158-\x03\x02\x02\x02\u0159\u0157" +
|
|
3367
|
+
"\x03\x02\x02\x02\u015A\u015B\x07M\x02\x02\u015B\u015C\x07\"\x02\x02\u015C" +
|
|
3368
|
+
"\u015D\x05,\x17\x02\u015D\u015E\x07\x05\x02\x02\u015E\u0161\x05,\x17\x02" +
|
|
3369
|
+
"\u015F\u0160\x07\x05\x02\x02\u0160\u0162\x05,\x17\x02\u0161\u015F\x03" +
|
|
3370
|
+
"\x02\x02\x02\u0161\u0162\x03\x02\x02\x02\u0162\u0163\x03\x02\x02\x02\u0163" +
|
|
3371
|
+
"\u0164\x07#\x02\x02\u0164\u018A\x03\x02\x02\x02\u0165\u0166\x07N\x02\x02" +
|
|
3372
|
+
"\u0166\u0167\x07\"\x02\x02\u0167\u0168\x05,\x17\x02\u0168\u0169\x07#\x02" +
|
|
3373
|
+
"\x02\u0169\u018A\x03\x02\x02\x02\u016A\u016B\x07O\x02\x02\u016B\u016C" +
|
|
3374
|
+
"\x07\"\x02\x02\u016C\u016D\x05,\x17\x02\u016D\u016E\x07\x05\x02\x02\u016E" +
|
|
3375
|
+
"\u016F\x05,\x17\x02\u016F\u0170\x07\x05\x02\x02\u0170\u0171\x05,\x17\x02" +
|
|
3376
|
+
"\u0171\u0172\x07\x05\x02\x02\u0172\u0173\x05,\x17\x02\u0173\u0174\x07" +
|
|
3377
|
+
"#\x02\x02\u0174\u018A\x03\x02\x02\x02\u0175\u0176\x07O\x02\x02\u0176\u0177" +
|
|
3378
|
+
"\x07\"\x02\x02\u0177\u0178\x05,\x17\x02\u0178\u0179\x07\x05\x02\x02\u0179" +
|
|
3379
|
+
"\u017A\x05,\x17\x02\u017A\u017B\x07#\x02\x02\u017B\u018A\x03\x02\x02\x02" +
|
|
3380
|
+
"\u017C\u017D\x07P\x02\x02\u017D\u017E\x07\"\x02\x02\u017E\u017F\x05,\x17" +
|
|
3381
|
+
"\x02\u017F\u0180\x07\x05\x02\x02\u0180\u0181\x05,\x17\x02\u0181\u0182" +
|
|
3382
|
+
"\x07\x05\x02\x02\u0182\u0183\x05,\x17\x02\u0183\u0184\x07\x05\x02\x02" +
|
|
3383
|
+
"\u0184\u0185\x05,\x17\x02\u0185\u0186\x07\x05\x02\x02\u0186\u0187\x05" +
|
|
3384
|
+
",\x17\x02\u0187\u0188\x07#\x02\x02\u0188\u018A\x03\x02\x02\x02\u0189\u015A" +
|
|
3385
|
+
"\x03\x02\x02\x02\u0189\u0165\x03\x02\x02\x02\u0189\u016A\x03\x02\x02\x02" +
|
|
3386
|
+
"\u0189\u0175\x03\x02\x02\x02\u0189\u017C\x03\x02\x02\x02\u018A/\x03\x02" +
|
|
3387
|
+
"\x02\x02\u018B\u018C\x07\x1A\x02\x02\u018C\u018D\x07\"\x02\x02\u018D\u018E" +
|
|
3388
|
+
"\x05<\x1F\x02\u018E\u018F\x07\x05\x02\x02\u018F\u0190\x05<\x1F\x02\u0190" +
|
|
3389
|
+
"\u0191\x07\x05\x02\x02\u0191\u0192\t\f\x02\x02\u0192\u0193\x07#\x02\x02" +
|
|
3390
|
+
"\u0193\u01AF\x03\x02\x02\x02\u0194\u0195\x07<\x02\x02\u0195\u0196\x07" +
|
|
3391
|
+
"\"\x02\x02\u0196\u0197\x05<\x1F\x02\u0197\u0198\x07#\x02\x02\u0198\u01AF" +
|
|
3392
|
+
"\x03\x02\x02\x02\u0199\u019A\x07A\x02\x02\u019A\u019B\x07\"\x02\x02\u019B" +
|
|
3393
|
+
"\u01AF\x07#\x02\x02\u019C\u019D\x07D\x02\x02\u019D\u019E\x07\"\x02\x02" +
|
|
3394
|
+
"\u019E\u019F\x05<\x1F\x02\u019F\u01A0\x07\x05\x02\x02\u01A0\u01A1\x05" +
|
|
3395
|
+
",\x17\x02\u01A1\u01A2\x07\x05\x02\x02\u01A2\u01A3\x05> \x02\u01A3\u01A4" +
|
|
3396
|
+
"\x07#\x02\x02\u01A4\u01AF\x03\x02\x02\x02\u01A5\u01A6\x07E\x02\x02\u01A6" +
|
|
3397
|
+
"\u01A7\x07\"\x02\x02\u01A7\u01A8\x05<\x1F\x02\u01A8\u01A9\x07\x05\x02" +
|
|
3398
|
+
"\x02\u01A9\u01AA\x05,\x17\x02\u01AA\u01AB\x07\x05\x02\x02\u01AB\u01AC" +
|
|
3399
|
+
"\x05> \x02\u01AC\u01AD\x07#\x02\x02\u01AD\u01AF\x03\x02\x02\x02\u01AE" +
|
|
3400
|
+
"\u018B\x03\x02\x02\x02\u01AE\u0194\x03\x02\x02\x02\u01AE\u0199\x03\x02" +
|
|
3401
|
+
"\x02\x02\u01AE\u019C\x03\x02\x02\x02\u01AE\u01A5\x03\x02\x02\x02\u01AF" +
|
|
3402
|
+
"1\x03\x02\x02\x02\u01B0\u01B1\x07\"\x02\x02\u01B1\u01B6\x05@!\x02\u01B2" +
|
|
3403
|
+
"\u01B3\x07\x05\x02\x02\u01B3\u01B5\x05@!\x02\u01B4\u01B2\x03\x02\x02\x02" +
|
|
3404
|
+
"\u01B5\u01B8\x03\x02\x02\x02\u01B6\u01B4\x03\x02\x02\x02\u01B6\u01B7\x03" +
|
|
3405
|
+
"\x02\x02\x02\u01B7\u01B9\x03\x02\x02\x02\u01B8\u01B6\x03\x02\x02\x02\u01B9" +
|
|
3406
|
+
"\u01BA\x07#\x02\x02\u01BA3\x03\x02\x02\x02\u01BB\u01BC\x07\x1F\x02\x02" +
|
|
3407
|
+
"\u01BC\u01BD\x07\"\x02\x02\u01BD\u01BE\x05\n\x06\x02\u01BE\u01BF\x07#" +
|
|
3408
|
+
"\x02\x02\u01BF\u01E8\x03\x02\x02\x02\u01C0\u01C5\x05\n\x06\x02\u01C1\u01C2" +
|
|
3409
|
+
"\x07\x05\x02\x02\u01C2\u01C4\x05\n\x06\x02\u01C3\u01C1\x03\x02\x02\x02" +
|
|
3410
|
+
"\u01C4\u01C7\x03\x02\x02\x02\u01C5\u01C3\x03\x02\x02\x02\u01C5\u01C6\x03" +
|
|
3411
|
+
"\x02\x02\x02\u01C6\u01E8\x03\x02\x02\x02\u01C7\u01C5\x03\x02\x02\x02\u01C8" +
|
|
3412
|
+
"\u01C9\x07\"\x02\x02\u01C9\u01CA\x07\"\x02\x02\u01CA\u01CF\x05\n\x06\x02" +
|
|
3413
|
+
"\u01CB\u01CC\x07\x05\x02\x02\u01CC\u01CE\x05\n\x06\x02\u01CD\u01CB\x03" +
|
|
3414
|
+
"\x02\x02\x02\u01CE\u01D1\x03\x02\x02\x02\u01CF\u01CD\x03\x02\x02\x02\u01CF" +
|
|
3415
|
+
"\u01D0\x03\x02\x02\x02\u01D0\u01D2\x03\x02\x02\x02\u01D1\u01CF\x03\x02" +
|
|
3416
|
+
"\x02\x02\u01D2\u01E1\x07#\x02\x02\u01D3\u01D4\x07\x05\x02\x02\u01D4\u01D5" +
|
|
3417
|
+
"\x07\"\x02\x02\u01D5\u01DA\x05\n\x06\x02\u01D6\u01D7\x07\x05\x02\x02\u01D7" +
|
|
3418
|
+
"\u01D9\x05\n\x06\x02\u01D8\u01D6\x03\x02\x02\x02\u01D9\u01DC\x03\x02\x02" +
|
|
3419
|
+
"\x02\u01DA\u01D8\x03\x02\x02\x02\u01DA\u01DB\x03\x02\x02\x02\u01DB\u01DD" +
|
|
3420
|
+
"\x03\x02\x02\x02\u01DC\u01DA\x03\x02\x02\x02\u01DD\u01DE\x07#\x02\x02" +
|
|
3421
|
+
"\u01DE\u01E0\x03\x02\x02\x02\u01DF\u01D3\x03\x02\x02\x02\u01E0\u01E3\x03" +
|
|
3422
|
+
"\x02\x02\x02\u01E1\u01DF\x03\x02\x02\x02\u01E1\u01E2\x03\x02\x02\x02\u01E2" +
|
|
3423
|
+
"\u01E4\x03\x02\x02\x02\u01E3\u01E1\x03\x02\x02\x02\u01E4\u01E5\x07#\x02" +
|
|
3424
|
+
"\x02\u01E5\u01E8\x03\x02\x02\x02\u01E6\u01E8\x05@!\x02\u01E7\u01BB\x03" +
|
|
3425
|
+
"\x02\x02\x02\u01E7\u01C0\x03\x02\x02\x02\u01E7\u01C8\x03\x02\x02\x02\u01E7" +
|
|
3426
|
+
"\u01E6\x03\x02\x02\x02\u01E85\x03\x02\x02\x02\u01E9\u01EF\x05\n\x06\x02" +
|
|
3427
|
+
"\u01EA\u01EF\x07Q\x02\x02\u01EB\u01EF\x07R\x02\x02\u01EC\u01EF\x07;\x02" +
|
|
3428
|
+
"\x02\u01ED\u01EF\x07\x19\x02\x02\u01EE\u01E9\x03\x02\x02\x02\u01EE\u01EA" +
|
|
3429
|
+
"\x03\x02\x02\x02\u01EE\u01EB\x03\x02\x02\x02\u01EE\u01EC\x03\x02\x02\x02" +
|
|
3430
|
+
"\u01EE\u01ED\x03\x02\x02\x02\u01EF7\x03\x02\x02\x02\u01F0\u01F3\x056\x1C" +
|
|
3431
|
+
"\x02\u01F1\u01F3\x05@!\x02\u01F2\u01F0\x03\x02\x02\x02\u01F2\u01F1\x03" +
|
|
3432
|
+
"\x02\x02\x02\u01F39\x03\x02\x02\x02\u01F4\u01F5\x07B\x02\x02\u01F5\u01F6" +
|
|
3433
|
+
"\x07\"\x02\x02\u01F6\u01F7\x05<\x1F\x02\u01F7\u01F8\x07#\x02\x02\u01F8" +
|
|
3434
|
+
"\u01FF\x03\x02\x02\x02\u01F9\u01FA\x07C\x02\x02\u01FA\u01FB\x07\"\x02" +
|
|
3435
|
+
"\x02\u01FB\u01FC\x05<\x1F\x02\u01FC\u01FD\x07#\x02\x02\u01FD\u01FF\x03" +
|
|
3436
|
+
"\x02\x02\x02\u01FE\u01F4\x03\x02\x02\x02\u01FE\u01F9\x03\x02\x02\x02\u01FF" +
|
|
3437
|
+
";\x03\x02\x02\x02\u0200\u0206\x05\n\x06\x02\u0201\u0206\x05@!\x02\u0202" +
|
|
3438
|
+
"\u0203\x07A\x02\x02\u0203\u0204\x07\"\x02\x02\u0204\u0206\x07#\x02\x02" +
|
|
3439
|
+
"\u0205\u0200\x03\x02\x02\x02\u0205\u0201\x03\x02\x02\x02\u0205\u0202\x03" +
|
|
3440
|
+
"\x02\x02\x02\u0206=\x03\x02\x02\x02\u0207\u0208\t\f\x02\x02\u0208?\x03" +
|
|
3441
|
+
"\x02\x02\x02\u0209\u020B\x07\x04\x02\x02\u020A\u0209\x03\x02\x02\x02\u020A" +
|
|
3442
|
+
"\u020B\x03\x02\x02\x02\u020B\u020C\x03\x02\x02\x02\u020C\u0218\x07V\x02" +
|
|
3443
|
+
"\x02\u020D\u020F\x07\x04\x02\x02\u020E\u020D\x03\x02\x02\x02\u020E\u020F" +
|
|
3444
|
+
"\x03\x02\x02\x02\u020F\u0210\x03\x02\x02\x02\u0210\u0213\x07V\x02\x02" +
|
|
3445
|
+
"\u0211\u0212\x07\x04\x02\x02\u0212\u0214\x07V\x02\x02\u0213\u0211\x03" +
|
|
3446
|
+
"\x02\x02\x02\u0214\u0215\x03\x02\x02\x02\u0215\u0213\x03\x02\x02\x02\u0215" +
|
|
3447
|
+
"\u0216\x03\x02\x02\x02\u0216\u0218\x03\x02\x02\x02\u0217\u020A\x03\x02" +
|
|
3448
|
+
"\x02\x02\u0217\u020E\x03\x02\x02\x02\u0218A\x03\x02\x02\x022DMR_dnrv|" +
|
|
3449
|
+
"\x81\x87\x8D\x97\x9D\xA1\xA4\xB1\xB6\xBD\xC5\xCE\xD0\xDB\xEA\u0103\u0106" +
|
|
3450
|
+
"\u0130\u0146\u0153\u0155\u0157\u0161\u0189\u01AE\u01B6\u01C5\u01CF\u01DA" +
|
|
3451
|
+
"\u01E1\u01E7\u01EE\u01F2\u01FE\u0205\u020A\u020E\u0215\u0217"
|
|
3286
3452
|
});
|
|
3287
3453
|
class ParseContext extends ParserRuleContext_1.ParserRuleContext {
|
|
3288
3454
|
EOF() { return this.getToken(RuleFlowLanguageParser.EOF, 0); }
|
|
@@ -3579,6 +3745,15 @@ class Rule_bodyContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
3579
3745
|
expr() {
|
|
3580
3746
|
return this.getRuleContext(0, ExprContext);
|
|
3581
3747
|
}
|
|
3748
|
+
K_CONTINUE() { return this.tryGetToken(RuleFlowLanguageParser.K_CONTINUE, 0); }
|
|
3749
|
+
set_clause(i) {
|
|
3750
|
+
if (i === undefined) {
|
|
3751
|
+
return this.getRuleContexts(Set_clauseContext);
|
|
3752
|
+
}
|
|
3753
|
+
else {
|
|
3754
|
+
return this.getRuleContext(i, Set_clauseContext);
|
|
3755
|
+
}
|
|
3756
|
+
}
|
|
3582
3757
|
K_THEN() { return this.tryGetToken(RuleFlowLanguageParser.K_THEN, 0); }
|
|
3583
3758
|
K_RETURN() { return this.tryGetToken(RuleFlowLanguageParser.K_RETURN, 0); }
|
|
3584
3759
|
actions() {
|
|
@@ -3603,6 +3778,12 @@ class Rule_bodyContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
3603
3778
|
writable: true,
|
|
3604
3779
|
value: void 0
|
|
3605
3780
|
});
|
|
3781
|
+
Object.defineProperty(this, "_inline_actions", {
|
|
3782
|
+
enumerable: true,
|
|
3783
|
+
configurable: true,
|
|
3784
|
+
writable: true,
|
|
3785
|
+
value: void 0
|
|
3786
|
+
});
|
|
3606
3787
|
}
|
|
3607
3788
|
// @Override
|
|
3608
3789
|
get ruleIndex() { return RuleFlowLanguageParser.RULE_rule_body; }
|
|
@@ -3629,6 +3810,58 @@ class Rule_bodyContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
3629
3810
|
}
|
|
3630
3811
|
}
|
|
3631
3812
|
exports.Rule_bodyContext = Rule_bodyContext;
|
|
3813
|
+
class Set_clauseContext extends ParserRuleContext_1.ParserRuleContext {
|
|
3814
|
+
K_SET() { return this.getToken(RuleFlowLanguageParser.K_SET, 0); }
|
|
3815
|
+
EQ_IC() { return this.tryGetToken(RuleFlowLanguageParser.EQ_IC, 0); }
|
|
3816
|
+
expr() {
|
|
3817
|
+
return this.getRuleContext(0, ExprContext);
|
|
3818
|
+
}
|
|
3819
|
+
VARIABLE() { return this.getToken(RuleFlowLanguageParser.VARIABLE, 0); }
|
|
3820
|
+
PLUS_EQ() { return this.tryGetToken(RuleFlowLanguageParser.PLUS_EQ, 0); }
|
|
3821
|
+
MINUS_EQ() { return this.tryGetToken(RuleFlowLanguageParser.MINUS_EQ, 0); }
|
|
3822
|
+
MULTIPLY_EQ() { return this.tryGetToken(RuleFlowLanguageParser.MULTIPLY_EQ, 0); }
|
|
3823
|
+
DIVIDE_EQ() { return this.tryGetToken(RuleFlowLanguageParser.DIVIDE_EQ, 0); }
|
|
3824
|
+
MODULO_EQ() { return this.tryGetToken(RuleFlowLanguageParser.MODULO_EQ, 0); }
|
|
3825
|
+
constructor(parent, invokingState) {
|
|
3826
|
+
super(parent, invokingState);
|
|
3827
|
+
Object.defineProperty(this, "_variable", {
|
|
3828
|
+
enumerable: true,
|
|
3829
|
+
configurable: true,
|
|
3830
|
+
writable: true,
|
|
3831
|
+
value: void 0
|
|
3832
|
+
});
|
|
3833
|
+
Object.defineProperty(this, "_compound_op", {
|
|
3834
|
+
enumerable: true,
|
|
3835
|
+
configurable: true,
|
|
3836
|
+
writable: true,
|
|
3837
|
+
value: void 0
|
|
3838
|
+
});
|
|
3839
|
+
}
|
|
3840
|
+
// @Override
|
|
3841
|
+
get ruleIndex() { return RuleFlowLanguageParser.RULE_set_clause; }
|
|
3842
|
+
// @Override
|
|
3843
|
+
enterRule(listener) {
|
|
3844
|
+
if (listener.enterSet_clause) {
|
|
3845
|
+
listener.enterSet_clause(this);
|
|
3846
|
+
}
|
|
3847
|
+
}
|
|
3848
|
+
// @Override
|
|
3849
|
+
exitRule(listener) {
|
|
3850
|
+
if (listener.exitSet_clause) {
|
|
3851
|
+
listener.exitSet_clause(this);
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
// @Override
|
|
3855
|
+
accept(visitor) {
|
|
3856
|
+
if (visitor.visitSet_clause) {
|
|
3857
|
+
return visitor.visitSet_clause(this);
|
|
3858
|
+
}
|
|
3859
|
+
else {
|
|
3860
|
+
return visitor.visitChildren(this);
|
|
3861
|
+
}
|
|
3862
|
+
}
|
|
3863
|
+
}
|
|
3864
|
+
exports.Set_clauseContext = Set_clauseContext;
|
|
3632
3865
|
class NameContext extends ParserRuleContext_1.ParserRuleContext {
|
|
3633
3866
|
string_literal() {
|
|
3634
3867
|
return this.getRuleContext(0, String_literalContext);
|
|
@@ -4112,6 +4345,80 @@ class ParenthesisContext extends ExprContext {
|
|
|
4112
4345
|
}
|
|
4113
4346
|
}
|
|
4114
4347
|
exports.ParenthesisContext = ParenthesisContext;
|
|
4348
|
+
class VariableRefContext extends ExprContext {
|
|
4349
|
+
VARIABLE() { return this.getToken(RuleFlowLanguageParser.VARIABLE, 0); }
|
|
4350
|
+
constructor(ctx) {
|
|
4351
|
+
super(ctx.parent, ctx.invokingState);
|
|
4352
|
+
this.copyFrom(ctx);
|
|
4353
|
+
}
|
|
4354
|
+
// @Override
|
|
4355
|
+
enterRule(listener) {
|
|
4356
|
+
if (listener.enterVariableRef) {
|
|
4357
|
+
listener.enterVariableRef(this);
|
|
4358
|
+
}
|
|
4359
|
+
}
|
|
4360
|
+
// @Override
|
|
4361
|
+
exitRule(listener) {
|
|
4362
|
+
if (listener.exitVariableRef) {
|
|
4363
|
+
listener.exitVariableRef(this);
|
|
4364
|
+
}
|
|
4365
|
+
}
|
|
4366
|
+
// @Override
|
|
4367
|
+
accept(visitor) {
|
|
4368
|
+
if (visitor.visitVariableRef) {
|
|
4369
|
+
return visitor.visitVariableRef(this);
|
|
4370
|
+
}
|
|
4371
|
+
else {
|
|
4372
|
+
return visitor.visitChildren(this);
|
|
4373
|
+
}
|
|
4374
|
+
}
|
|
4375
|
+
}
|
|
4376
|
+
exports.VariableRefContext = VariableRefContext;
|
|
4377
|
+
class MemberAccessContext extends ExprContext {
|
|
4378
|
+
DOT() { return this.getToken(RuleFlowLanguageParser.DOT, 0); }
|
|
4379
|
+
expr() {
|
|
4380
|
+
return this.getRuleContext(0, ExprContext);
|
|
4381
|
+
}
|
|
4382
|
+
ID() { return this.getToken(RuleFlowLanguageParser.ID, 0); }
|
|
4383
|
+
constructor(ctx) {
|
|
4384
|
+
super(ctx.parent, ctx.invokingState);
|
|
4385
|
+
Object.defineProperty(this, "_base", {
|
|
4386
|
+
enumerable: true,
|
|
4387
|
+
configurable: true,
|
|
4388
|
+
writable: true,
|
|
4389
|
+
value: void 0
|
|
4390
|
+
});
|
|
4391
|
+
Object.defineProperty(this, "_field", {
|
|
4392
|
+
enumerable: true,
|
|
4393
|
+
configurable: true,
|
|
4394
|
+
writable: true,
|
|
4395
|
+
value: void 0
|
|
4396
|
+
});
|
|
4397
|
+
this.copyFrom(ctx);
|
|
4398
|
+
}
|
|
4399
|
+
// @Override
|
|
4400
|
+
enterRule(listener) {
|
|
4401
|
+
if (listener.enterMemberAccess) {
|
|
4402
|
+
listener.enterMemberAccess(this);
|
|
4403
|
+
}
|
|
4404
|
+
}
|
|
4405
|
+
// @Override
|
|
4406
|
+
exitRule(listener) {
|
|
4407
|
+
if (listener.exitMemberAccess) {
|
|
4408
|
+
listener.exitMemberAccess(this);
|
|
4409
|
+
}
|
|
4410
|
+
}
|
|
4411
|
+
// @Override
|
|
4412
|
+
accept(visitor) {
|
|
4413
|
+
if (visitor.visitMemberAccess) {
|
|
4414
|
+
return visitor.visitMemberAccess(this);
|
|
4415
|
+
}
|
|
4416
|
+
else {
|
|
4417
|
+
return visitor.visitChildren(this);
|
|
4418
|
+
}
|
|
4419
|
+
}
|
|
4420
|
+
}
|
|
4421
|
+
exports.MemberAccessContext = MemberAccessContext;
|
|
4115
4422
|
class MathMulContext extends ExprContext {
|
|
4116
4423
|
expr(i) {
|
|
4117
4424
|
if (i === undefined) {
|
|
@@ -4426,6 +4733,7 @@ class AggregationContext extends ExprContext {
|
|
|
4426
4733
|
K_ALL() { return this.tryGetToken(RuleFlowLanguageParser.K_ALL, 0); }
|
|
4427
4734
|
K_DISTINCT() { return this.tryGetToken(RuleFlowLanguageParser.K_DISTINCT, 0); }
|
|
4428
4735
|
K_NONE() { return this.tryGetToken(RuleFlowLanguageParser.K_NONE, 0); }
|
|
4736
|
+
K_CONTAINS() { return this.tryGetToken(RuleFlowLanguageParser.K_CONTAINS, 0); }
|
|
4429
4737
|
L_BRACE() { return this.tryGetToken(RuleFlowLanguageParser.L_BRACE, 0); }
|
|
4430
4738
|
R_BRACE() { return this.tryGetToken(RuleFlowLanguageParser.R_BRACE, 0); }
|
|
4431
4739
|
L_PAREN() { return this.tryGetToken(RuleFlowLanguageParser.L_PAREN, 0); }
|
|
@@ -4606,62 +4914,53 @@ class UnaryContext extends ExprContext {
|
|
|
4606
4914
|
}
|
|
4607
4915
|
}
|
|
4608
4916
|
exports.UnaryContext = UnaryContext;
|
|
4609
|
-
class
|
|
4917
|
+
class CustomFunctionCallContext extends ExprContext {
|
|
4918
|
+
ID() { return this.getToken(RuleFlowLanguageParser.ID, 0); }
|
|
4610
4919
|
L_PAREN() { return this.getToken(RuleFlowLanguageParser.L_PAREN, 0); }
|
|
4611
|
-
COMMA() { return this.getToken(RuleFlowLanguageParser.COMMA, 0); }
|
|
4612
4920
|
R_PAREN() { return this.getToken(RuleFlowLanguageParser.R_PAREN, 0); }
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4921
|
+
expr(i) {
|
|
4922
|
+
if (i === undefined) {
|
|
4923
|
+
return this.getRuleContexts(ExprContext);
|
|
4924
|
+
}
|
|
4925
|
+
else {
|
|
4926
|
+
return this.getRuleContext(i, ExprContext);
|
|
4927
|
+
}
|
|
4616
4928
|
}
|
|
4617
|
-
|
|
4618
|
-
|
|
4929
|
+
COMMA(i) {
|
|
4930
|
+
if (i === undefined) {
|
|
4931
|
+
return this.getTokens(RuleFlowLanguageParser.COMMA);
|
|
4932
|
+
}
|
|
4933
|
+
else {
|
|
4934
|
+
return this.getToken(RuleFlowLanguageParser.COMMA, i);
|
|
4935
|
+
}
|
|
4619
4936
|
}
|
|
4620
4937
|
constructor(ctx) {
|
|
4621
4938
|
super(ctx.parent, ctx.invokingState);
|
|
4622
|
-
Object.defineProperty(this, "_op", {
|
|
4623
|
-
enumerable: true,
|
|
4624
|
-
configurable: true,
|
|
4625
|
-
writable: true,
|
|
4626
|
-
value: void 0
|
|
4627
|
-
});
|
|
4628
|
-
Object.defineProperty(this, "_listName", {
|
|
4629
|
-
enumerable: true,
|
|
4630
|
-
configurable: true,
|
|
4631
|
-
writable: true,
|
|
4632
|
-
value: void 0
|
|
4633
|
-
});
|
|
4634
|
-
Object.defineProperty(this, "_predicate", {
|
|
4635
|
-
enumerable: true,
|
|
4636
|
-
configurable: true,
|
|
4637
|
-
writable: true,
|
|
4638
|
-
value: void 0
|
|
4639
|
-
});
|
|
4640
4939
|
this.copyFrom(ctx);
|
|
4641
4940
|
}
|
|
4642
4941
|
// @Override
|
|
4643
4942
|
enterRule(listener) {
|
|
4644
|
-
if (listener.
|
|
4645
|
-
listener.
|
|
4943
|
+
if (listener.enterCustomFunctionCall) {
|
|
4944
|
+
listener.enterCustomFunctionCall(this);
|
|
4646
4945
|
}
|
|
4647
4946
|
}
|
|
4648
4947
|
// @Override
|
|
4649
4948
|
exitRule(listener) {
|
|
4650
|
-
if (listener.
|
|
4651
|
-
listener.
|
|
4949
|
+
if (listener.exitCustomFunctionCall) {
|
|
4950
|
+
listener.exitCustomFunctionCall(this);
|
|
4652
4951
|
}
|
|
4653
4952
|
}
|
|
4654
4953
|
// @Override
|
|
4655
4954
|
accept(visitor) {
|
|
4656
|
-
if (visitor.
|
|
4657
|
-
return visitor.
|
|
4955
|
+
if (visitor.visitCustomFunctionCall) {
|
|
4956
|
+
return visitor.visitCustomFunctionCall(this);
|
|
4658
4957
|
}
|
|
4659
4958
|
else {
|
|
4660
4959
|
return visitor.visitChildren(this);
|
|
4661
4960
|
}
|
|
4662
4961
|
}
|
|
4663
4962
|
}
|
|
4664
|
-
exports.
|
|
4963
|
+
exports.CustomFunctionCallContext = CustomFunctionCallContext;
|
|
4665
4964
|
class BinaryAndContext extends ExprContext {
|
|
4666
4965
|
expr(i) {
|
|
4667
4966
|
if (i === undefined) {
|
|
@@ -6148,14 +6447,6 @@ class ValidPropertyContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
6148
6447
|
return this.getToken(RuleFlowLanguageParser.ID, i);
|
|
6149
6448
|
}
|
|
6150
6449
|
}
|
|
6151
|
-
K_ELEM(i) {
|
|
6152
|
-
if (i === undefined) {
|
|
6153
|
-
return this.getTokens(RuleFlowLanguageParser.K_ELEM);
|
|
6154
|
-
}
|
|
6155
|
-
else {
|
|
6156
|
-
return this.getToken(RuleFlowLanguageParser.K_ELEM, i);
|
|
6157
|
-
}
|
|
6158
|
-
}
|
|
6159
6450
|
DOT(i) {
|
|
6160
6451
|
if (i === undefined) {
|
|
6161
6452
|
return this.getTokens(RuleFlowLanguageParser.DOT);
|