@opra/common 0.16.2 → 0.17.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/cjs/document/data-type/complex-type.js +69 -56
- package/cjs/document/data-type/simple-type.js +0 -1
- package/cjs/document/resource/collection.js +15 -16
- package/cjs/document/resource/singleton.js +2 -2
- package/cjs/http/http-params.js +10 -11
- package/esm/document/api-document.js +33 -37
- package/esm/document/constants.js +3 -6
- package/esm/document/data-type/api-field.js +12 -15
- package/esm/document/data-type/builtin/any.type.js +5 -8
- package/esm/document/data-type/builtin/base64.type.js +5 -8
- package/esm/document/data-type/builtin/bigint.type.js +5 -8
- package/esm/document/data-type/builtin/boolean.type.js +8 -11
- package/esm/document/data-type/builtin/date.type.js +7 -10
- package/esm/document/data-type/builtin/guid.type.js +9 -12
- package/esm/document/data-type/builtin/index.js +10 -13
- package/esm/document/data-type/builtin/integer.type.js +10 -13
- package/esm/document/data-type/builtin/number.type.js +7 -10
- package/esm/document/data-type/builtin/object.type.js +5 -8
- package/esm/document/data-type/builtin/string.type.js +8 -11
- package/esm/document/data-type/builtin/time.type.js +7 -10
- package/esm/document/data-type/builtin/timestamp.type.js +9 -12
- package/esm/document/data-type/complex-type.js +94 -85
- package/esm/document/data-type/data-type.js +9 -12
- package/esm/document/data-type/enum-type.js +15 -19
- package/esm/document/data-type/mapped-type.js +24 -29
- package/esm/document/data-type/simple-type.js +17 -22
- package/esm/document/data-type/union-type.js +26 -29
- package/esm/document/factory/add-references.js +3 -7
- package/esm/document/factory/create-document.js +10 -16
- package/esm/document/factory/factory.js +33 -37
- package/esm/document/factory/import-resource-class.js +16 -22
- package/esm/document/factory/import-type-class.js +24 -34
- package/esm/document/factory/index.js +1 -4
- package/esm/document/factory/process-resources.js +10 -16
- package/esm/document/factory/process-types.js +31 -37
- package/esm/document/index.js +14 -17
- package/esm/document/resource/collection.js +58 -63
- package/esm/document/resource/resource.js +9 -12
- package/esm/document/resource/singleton.js +27 -31
- package/esm/document/utils/inspect.util.js +4 -7
- package/esm/document/utils/string-compare.util.js +1 -5
- package/esm/exception/enums/issue-severity.enum.js +2 -5
- package/esm/exception/error-issue.js +1 -2
- package/esm/exception/http-errors/bad-request.error.js +4 -8
- package/esm/exception/http-errors/failed-dependency.error.js +4 -8
- package/esm/exception/http-errors/forbidden.error.js +4 -8
- package/esm/exception/http-errors/internal-server.error.js +4 -8
- package/esm/exception/http-errors/method-not-allowed.error.js +4 -8
- package/esm/exception/http-errors/not-acceptable.error.js +4 -8
- package/esm/exception/http-errors/not-found.error.js +4 -8
- package/esm/exception/http-errors/unauthorized.error.js +4 -8
- package/esm/exception/http-errors/unprocessable-entity.error.js +4 -8
- package/esm/exception/index.js +15 -18
- package/esm/exception/opra-exception.js +3 -7
- package/esm/exception/resource-errors/resource-conflict.error.js +4 -8
- package/esm/exception/resource-errors/resource-not-found.error.js +4 -8
- package/esm/exception/wrap-exception.js +20 -24
- package/esm/filter/antlr/OpraFilterLexer.js +6 -9
- package/esm/filter/antlr/OpraFilterListener.js +2 -5
- package/esm/filter/antlr/OpraFilterParser.js +79 -126
- package/esm/filter/antlr/OpraFilterVisitor.js +2 -5
- package/esm/filter/ast/abstract/ast.js +1 -5
- package/esm/filter/ast/abstract/expression.js +2 -6
- package/esm/filter/ast/abstract/literal.js +2 -6
- package/esm/filter/ast/abstract/term.js +2 -6
- package/esm/filter/ast/expressions/arithmetic-expression.js +3 -8
- package/esm/filter/ast/expressions/array-expression.js +2 -6
- package/esm/filter/ast/expressions/comparison-expression.js +2 -6
- package/esm/filter/ast/expressions/logical-expression.js +2 -6
- package/esm/filter/ast/expressions/parentheses-expression.js +2 -6
- package/esm/filter/ast/index.js +16 -19
- package/esm/filter/ast/terms/boolean-literal.js +2 -6
- package/esm/filter/ast/terms/date-literal.js +8 -12
- package/esm/filter/ast/terms/external-constant.js +2 -6
- package/esm/filter/ast/terms/null-literal.js +2 -6
- package/esm/filter/ast/terms/number-literal.js +4 -8
- package/esm/filter/ast/terms/qualified-identifier.js +2 -6
- package/esm/filter/ast/terms/string-literal.js +4 -8
- package/esm/filter/ast/terms/time-literal.js +6 -10
- package/esm/filter/build.js +45 -69
- package/esm/filter/errors.js +3 -9
- package/esm/filter/filter-tree-visitor.js +26 -31
- package/esm/filter/index.js +5 -8
- package/esm/filter/opra-error-listener.js +4 -8
- package/esm/filter/parse.js +14 -19
- package/esm/filter/utils.js +2 -7
- package/esm/helpers/function-utils.js +8 -14
- package/esm/helpers/get-stack-filename.js +1 -5
- package/esm/helpers/index.js +8 -11
- package/esm/helpers/is-url.js +1 -5
- package/esm/helpers/mixin-utils.js +2 -7
- package/esm/helpers/object-utils.js +6 -12
- package/esm/helpers/path-to-object-tree.js +1 -5
- package/esm/helpers/responsive-map.js +1 -5
- package/esm/helpers/type-guards.js +7 -17
- package/esm/http/codecs/boolean-codec.js +1 -5
- package/esm/http/codecs/date-codec.js +1 -5
- package/esm/http/codecs/filter-codec.js +5 -9
- package/esm/http/codecs/integer-codec.js +2 -6
- package/esm/http/codecs/number-codec.js +1 -5
- package/esm/http/codecs/string-codec.js +1 -5
- package/esm/http/enums/http-headers-codes.enum.js +2 -5
- package/esm/http/enums/http-status-codes.enum.js +2 -5
- package/esm/http/enums/http-status-messages.js +1 -4
- package/esm/http/http-headers.js +5 -9
- package/esm/http/http-message.host.js +13 -18
- package/esm/http/http-params.js +30 -36
- package/esm/http/http-request-message.js +18 -22
- package/esm/http/http-response-message.js +23 -28
- package/esm/http/index.js +14 -17
- package/esm/http/interfaces/client-http-headers.interface.js +1 -2
- package/esm/http/interfaces/cookie-options.interface.js +1 -2
- package/esm/http/interfaces/server-http-headers.interface.js +1 -2
- package/esm/i18n/i18n.js +23 -28
- package/esm/i18n/index.js +5 -9
- package/esm/i18n/string-utils.js +2 -7
- package/esm/i18n/translate.js +3 -7
- package/esm/index.js +11 -16
- package/esm/schema/constants.js +1 -4
- package/esm/schema/data-type/complex-type.interface.js +2 -5
- package/esm/schema/data-type/data-type.interface.js +1 -2
- package/esm/schema/data-type/enum-type.interface.js +2 -5
- package/esm/schema/data-type/field.interface.js +1 -2
- package/esm/schema/data-type/mapped-type.interface.js +2 -5
- package/esm/schema/data-type/simple-type.interface.js +2 -5
- package/esm/schema/data-type/union-type.interface.js +2 -5
- package/esm/schema/document.interface.js +1 -2
- package/esm/schema/index.js +31 -34
- package/esm/schema/resource/collection.interface.js +2 -5
- package/esm/schema/resource/container.interface.js +2 -5
- package/esm/schema/resource/endpoint.interface.js +1 -2
- package/esm/schema/resource/resource.interface.js +1 -2
- package/esm/schema/resource/singleton.interface.js +2 -5
- package/esm/schema/type-guards.js +40 -53
- package/esm/types.js +1 -2
- package/esm/url/index.js +5 -8
- package/esm/url/opra-url-path-component.js +3 -7
- package/esm/url/opra-url-path.js +14 -18
- package/esm/url/opra-url.js +15 -19
- package/esm/url/utils/decode-path-component.js +4 -8
- package/esm/url/utils/encode-path-component.js +3 -8
- package/esm/utils/path-utils.js +2 -7
- package/package.json +1 -1
- package/types/document/data-type/complex-type.d.ts +8 -2
- package/types/document/resource/collection.d.ts +5 -3
- package/types/document/resource/singleton.d.ts +3 -1
- package/types/filter/ast/terms/qualified-identifier.d.ts +4 -0
- package/types/http/http-params.d.ts +20 -19
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/* eslint-disable */
|
|
3
2
|
// Generated from ./src/filter/antlr/OpraFilter.g4 by ANTLR 4.11.2-SNAPSHOT
|
|
4
3
|
// noinspection ES6UnusedImports,JSUnusedGlobalSymbols,JSUnusedLocalSymbols,SpellCheckingInspection
|
|
5
4
|
// @ts-nocheck
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const antlr4_1 = require("@browsery/antlr4");
|
|
9
|
-
class OpraFilterParser extends antlr4_1.Parser {
|
|
5
|
+
import { ATN, ATNDeserializer, DFA, FailedPredicateException, NoViableAltException, Parser, ParserATNSimulator, ParserRuleContext, PredictionContextCache, RecognitionException, Token } from '@browsery/antlr4';
|
|
6
|
+
export default class OpraFilterParser extends Parser {
|
|
10
7
|
get grammarFileName() {
|
|
11
8
|
return "OpraFilter.g4";
|
|
12
9
|
}
|
|
@@ -23,11 +20,11 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
23
20
|
return OpraFilterParser._serializedATN;
|
|
24
21
|
}
|
|
25
22
|
createFailedPredicateException(predicate, message) {
|
|
26
|
-
return new
|
|
23
|
+
return new FailedPredicateException(this, predicate, message);
|
|
27
24
|
}
|
|
28
25
|
constructor(input) {
|
|
29
26
|
super(input);
|
|
30
|
-
this._interp = new
|
|
27
|
+
this._interp = new ParserATNSimulator(this, OpraFilterParser._ATN, OpraFilterParser.DecisionsToDFA, new PredictionContextCache());
|
|
31
28
|
}
|
|
32
29
|
// @RuleVersion(0)
|
|
33
30
|
root() {
|
|
@@ -43,7 +40,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
43
40
|
}
|
|
44
41
|
}
|
|
45
42
|
catch (re) {
|
|
46
|
-
if (re instanceof
|
|
43
|
+
if (re instanceof RecognitionException) {
|
|
47
44
|
localctx.exception = re;
|
|
48
45
|
this._errHandler.reportError(this, re);
|
|
49
46
|
this._errHandler.recover(this, re);
|
|
@@ -151,13 +148,13 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
151
148
|
}
|
|
152
149
|
break;
|
|
153
150
|
default:
|
|
154
|
-
throw new
|
|
151
|
+
throw new NoViableAltException(this);
|
|
155
152
|
}
|
|
156
153
|
this._ctx.stop = this._input.LT(-1);
|
|
157
154
|
this.state = 83;
|
|
158
155
|
this._errHandler.sync(this);
|
|
159
156
|
_alt = this._interp.adaptivePredict(this._input, 3, this._ctx);
|
|
160
|
-
while (_alt !== 2 && _alt !==
|
|
157
|
+
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
|
|
161
158
|
if (_alt === 1) {
|
|
162
159
|
if (this._parseListeners != null) {
|
|
163
160
|
this.triggerExitRuleEvent();
|
|
@@ -219,7 +216,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
219
216
|
}
|
|
220
217
|
}
|
|
221
218
|
catch (re) {
|
|
222
|
-
if (re instanceof
|
|
219
|
+
if (re instanceof RecognitionException) {
|
|
223
220
|
localctx.exception = re;
|
|
224
221
|
this._errHandler.reportError(this, re);
|
|
225
222
|
this._errHandler.recover(this, re);
|
|
@@ -275,11 +272,11 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
275
272
|
}
|
|
276
273
|
break;
|
|
277
274
|
default:
|
|
278
|
-
throw new
|
|
275
|
+
throw new NoViableAltException(this);
|
|
279
276
|
}
|
|
280
277
|
}
|
|
281
278
|
catch (re) {
|
|
282
|
-
if (re instanceof
|
|
279
|
+
if (re instanceof RecognitionException) {
|
|
283
280
|
localctx.exception = re;
|
|
284
281
|
this._errHandler.reportError(this, re);
|
|
285
282
|
this._errHandler.recover(this, re);
|
|
@@ -305,7 +302,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
305
302
|
}
|
|
306
303
|
}
|
|
307
304
|
catch (re) {
|
|
308
|
-
if (re instanceof
|
|
305
|
+
if (re instanceof RecognitionException) {
|
|
309
306
|
localctx.exception = re;
|
|
310
307
|
this._errHandler.reportError(this, re);
|
|
311
308
|
this._errHandler.recover(this, re);
|
|
@@ -332,7 +329,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
332
329
|
}
|
|
333
330
|
}
|
|
334
331
|
catch (re) {
|
|
335
|
-
if (re instanceof
|
|
332
|
+
if (re instanceof RecognitionException) {
|
|
336
333
|
localctx.exception = re;
|
|
337
334
|
this._errHandler.reportError(this, re);
|
|
338
335
|
this._errHandler.recover(this, re);
|
|
@@ -371,11 +368,11 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
371
368
|
}
|
|
372
369
|
break;
|
|
373
370
|
default:
|
|
374
|
-
throw new
|
|
371
|
+
throw new NoViableAltException(this);
|
|
375
372
|
}
|
|
376
373
|
}
|
|
377
374
|
catch (re) {
|
|
378
|
-
if (re instanceof
|
|
375
|
+
if (re instanceof RecognitionException) {
|
|
379
376
|
localctx.exception = re;
|
|
380
377
|
this._errHandler.reportError(this, re);
|
|
381
378
|
this._errHandler.recover(this, re);
|
|
@@ -415,7 +412,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
415
412
|
}
|
|
416
413
|
}
|
|
417
414
|
catch (re) {
|
|
418
|
-
if (re instanceof
|
|
415
|
+
if (re instanceof RecognitionException) {
|
|
419
416
|
localctx.exception = re;
|
|
420
417
|
this._errHandler.reportError(this, re);
|
|
421
418
|
this._errHandler.recover(this, re);
|
|
@@ -458,7 +455,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
458
455
|
}
|
|
459
456
|
}
|
|
460
457
|
catch (re) {
|
|
461
|
-
if (re instanceof
|
|
458
|
+
if (re instanceof RecognitionException) {
|
|
462
459
|
localctx.exception = re;
|
|
463
460
|
this._errHandler.reportError(this, re);
|
|
464
461
|
this._errHandler.recover(this, re);
|
|
@@ -516,11 +513,11 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
516
513
|
}
|
|
517
514
|
break;
|
|
518
515
|
default:
|
|
519
|
-
throw new
|
|
516
|
+
throw new NoViableAltException(this);
|
|
520
517
|
}
|
|
521
518
|
}
|
|
522
519
|
catch (re) {
|
|
523
|
-
if (re instanceof
|
|
520
|
+
if (re instanceof RecognitionException) {
|
|
524
521
|
localctx.exception = re;
|
|
525
522
|
this._errHandler.reportError(this, re);
|
|
526
523
|
this._errHandler.recover(this, re);
|
|
@@ -554,7 +551,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
554
551
|
}
|
|
555
552
|
}
|
|
556
553
|
catch (re) {
|
|
557
|
-
if (re instanceof
|
|
554
|
+
if (re instanceof RecognitionException) {
|
|
558
555
|
localctx.exception = re;
|
|
559
556
|
this._errHandler.reportError(this, re);
|
|
560
557
|
this._errHandler.recover(this, re);
|
|
@@ -588,7 +585,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
588
585
|
}
|
|
589
586
|
}
|
|
590
587
|
catch (re) {
|
|
591
|
-
if (re instanceof
|
|
588
|
+
if (re instanceof RecognitionException) {
|
|
592
589
|
localctx.exception = re;
|
|
593
590
|
this._errHandler.reportError(this, re);
|
|
594
591
|
this._errHandler.recover(this, re);
|
|
@@ -613,7 +610,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
613
610
|
this.state = 128;
|
|
614
611
|
this._errHandler.sync(this);
|
|
615
612
|
_alt = this._interp.adaptivePredict(this._input, 9, this._ctx);
|
|
616
|
-
while (_alt !== 2 && _alt !==
|
|
613
|
+
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
|
|
617
614
|
if (_alt === 1) {
|
|
618
615
|
{
|
|
619
616
|
{
|
|
@@ -633,7 +630,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
633
630
|
}
|
|
634
631
|
}
|
|
635
632
|
catch (re) {
|
|
636
|
-
if (re instanceof
|
|
633
|
+
if (re instanceof RecognitionException) {
|
|
637
634
|
localctx.exception = re;
|
|
638
635
|
this._errHandler.reportError(this, re);
|
|
639
636
|
this._errHandler.recover(this, re);
|
|
@@ -669,7 +666,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
669
666
|
}
|
|
670
667
|
}
|
|
671
668
|
catch (re) {
|
|
672
|
-
if (re instanceof
|
|
669
|
+
if (re instanceof RecognitionException) {
|
|
673
670
|
localctx.exception = re;
|
|
674
671
|
this._errHandler.reportError(this, re);
|
|
675
672
|
this._errHandler.recover(this, re);
|
|
@@ -695,7 +692,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
695
692
|
}
|
|
696
693
|
}
|
|
697
694
|
catch (re) {
|
|
698
|
-
if (re instanceof
|
|
695
|
+
if (re instanceof RecognitionException) {
|
|
699
696
|
localctx.exception = re;
|
|
700
697
|
this._errHandler.reportError(this, re);
|
|
701
698
|
this._errHandler.recover(this, re);
|
|
@@ -784,11 +781,11 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
784
781
|
}
|
|
785
782
|
break;
|
|
786
783
|
default:
|
|
787
|
-
throw new
|
|
784
|
+
throw new NoViableAltException(this);
|
|
788
785
|
}
|
|
789
786
|
}
|
|
790
787
|
catch (re) {
|
|
791
|
-
if (re instanceof
|
|
788
|
+
if (re instanceof RecognitionException) {
|
|
792
789
|
localctx.exception = re;
|
|
793
790
|
this._errHandler.reportError(this, re);
|
|
794
791
|
this._errHandler.recover(this, re);
|
|
@@ -822,7 +819,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
822
819
|
}
|
|
823
820
|
}
|
|
824
821
|
catch (re) {
|
|
825
|
-
if (re instanceof
|
|
822
|
+
if (re instanceof RecognitionException) {
|
|
826
823
|
localctx.exception = re;
|
|
827
824
|
this._errHandler.reportError(this, re);
|
|
828
825
|
this._errHandler.recover(this, re);
|
|
@@ -856,7 +853,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
856
853
|
}
|
|
857
854
|
}
|
|
858
855
|
catch (re) {
|
|
859
|
-
if (re instanceof
|
|
856
|
+
if (re instanceof RecognitionException) {
|
|
860
857
|
localctx.exception = re;
|
|
861
858
|
this._errHandler.reportError(this, re);
|
|
862
859
|
this._errHandler.recover(this, re);
|
|
@@ -890,7 +887,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
890
887
|
}
|
|
891
888
|
}
|
|
892
889
|
catch (re) {
|
|
893
|
-
if (re instanceof
|
|
890
|
+
if (re instanceof RecognitionException) {
|
|
894
891
|
localctx.exception = re;
|
|
895
892
|
this._errHandler.reportError(this, re);
|
|
896
893
|
this._errHandler.recover(this, re);
|
|
@@ -924,7 +921,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
924
921
|
}
|
|
925
922
|
}
|
|
926
923
|
catch (re) {
|
|
927
|
-
if (re instanceof
|
|
924
|
+
if (re instanceof RecognitionException) {
|
|
928
925
|
localctx.exception = re;
|
|
929
926
|
this._errHandler.reportError(this, re);
|
|
930
927
|
this._errHandler.recover(this, re);
|
|
@@ -958,7 +955,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
958
955
|
}
|
|
959
956
|
}
|
|
960
957
|
catch (re) {
|
|
961
|
-
if (re instanceof
|
|
958
|
+
if (re instanceof RecognitionException) {
|
|
962
959
|
localctx.exception = re;
|
|
963
960
|
this._errHandler.reportError(this, re);
|
|
964
961
|
this._errHandler.recover(this, re);
|
|
@@ -984,7 +981,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
984
981
|
}
|
|
985
982
|
}
|
|
986
983
|
catch (re) {
|
|
987
|
-
if (re instanceof
|
|
984
|
+
if (re instanceof RecognitionException) {
|
|
988
985
|
localctx.exception = re;
|
|
989
986
|
this._errHandler.reportError(this, re);
|
|
990
987
|
this._errHandler.recover(this, re);
|
|
@@ -1018,7 +1015,7 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
1018
1015
|
}
|
|
1019
1016
|
}
|
|
1020
1017
|
catch (re) {
|
|
1021
|
-
if (re instanceof
|
|
1018
|
+
if (re instanceof RecognitionException) {
|
|
1022
1019
|
localctx.exception = re;
|
|
1023
1020
|
this._errHandler.reportError(this, re);
|
|
1024
1021
|
this._errHandler.recover(this, re);
|
|
@@ -1052,12 +1049,11 @@ class OpraFilterParser extends antlr4_1.Parser {
|
|
|
1052
1049
|
}
|
|
1053
1050
|
static get _ATN() {
|
|
1054
1051
|
if (!OpraFilterParser.__ATN) {
|
|
1055
|
-
OpraFilterParser.__ATN = new
|
|
1052
|
+
OpraFilterParser.__ATN = new ATNDeserializer().deserialize(OpraFilterParser._serializedATN);
|
|
1056
1053
|
}
|
|
1057
1054
|
return OpraFilterParser.__ATN;
|
|
1058
1055
|
}
|
|
1059
1056
|
}
|
|
1060
|
-
exports.default = OpraFilterParser;
|
|
1061
1057
|
OpraFilterParser.T__0 = 1;
|
|
1062
1058
|
OpraFilterParser.T__1 = 2;
|
|
1063
1059
|
OpraFilterParser.T__2 = 3;
|
|
@@ -1114,7 +1110,7 @@ OpraFilterParser.INTEGER = 53;
|
|
|
1114
1110
|
OpraFilterParser.WHITESPACE = 54;
|
|
1115
1111
|
OpraFilterParser.COMMENT = 55;
|
|
1116
1112
|
OpraFilterParser.LINE_COMMENT = 56;
|
|
1117
|
-
OpraFilterParser.EOF =
|
|
1113
|
+
OpraFilterParser.EOF = Token.EOF;
|
|
1118
1114
|
OpraFilterParser.RULE_root = 0;
|
|
1119
1115
|
OpraFilterParser.RULE_expression = 1;
|
|
1120
1116
|
OpraFilterParser.RULE_term = 2;
|
|
@@ -1229,8 +1225,8 @@ OpraFilterParser._serializedATN = [4, 1, 56, 163, 2, 0, 7, 0, 2,
|
|
|
1229
1225
|
153, 7, 5, 0, 0, 153, 35, 1, 0, 0, 0, 154, 155, 7, 6, 0, 0, 155, 37, 1, 0, 0, 0, 156, 157, 7, 7, 0,
|
|
1230
1226
|
0, 157, 39, 1, 0, 0, 0, 158, 159, 5, 44, 0, 0, 159, 41, 1, 0, 0, 0, 160, 161, 7, 8, 0, 0, 161, 43,
|
|
1231
1227
|
1, 0, 0, 0, 11, 62, 67, 81, 83, 89, 97, 102, 111, 117, 128, 146];
|
|
1232
|
-
OpraFilterParser.DecisionsToDFA = OpraFilterParser._ATN.decisionToState.map((ds, index) => new
|
|
1233
|
-
class RootContext extends
|
|
1228
|
+
OpraFilterParser.DecisionsToDFA = OpraFilterParser._ATN.decisionToState.map((ds, index) => new DFA(ds, index));
|
|
1229
|
+
export class RootContext extends ParserRuleContext {
|
|
1234
1230
|
constructor(parser, parent, invokingState) {
|
|
1235
1231
|
super(parent, invokingState);
|
|
1236
1232
|
this.parser = parser;
|
|
@@ -1264,8 +1260,7 @@ class RootContext extends antlr4_1.ParserRuleContext {
|
|
|
1264
1260
|
}
|
|
1265
1261
|
}
|
|
1266
1262
|
}
|
|
1267
|
-
|
|
1268
|
-
class ExpressionContext extends antlr4_1.ParserRuleContext {
|
|
1263
|
+
export class ExpressionContext extends ParserRuleContext {
|
|
1269
1264
|
constructor(parser, parent, invokingState) {
|
|
1270
1265
|
super(parent, invokingState);
|
|
1271
1266
|
this.parser = parser;
|
|
@@ -1277,8 +1272,7 @@ class ExpressionContext extends antlr4_1.ParserRuleContext {
|
|
|
1277
1272
|
super.copyFrom(ctx);
|
|
1278
1273
|
}
|
|
1279
1274
|
}
|
|
1280
|
-
|
|
1281
|
-
class ParenthesizedExpressionContext extends ExpressionContext {
|
|
1275
|
+
export class ParenthesizedExpressionContext extends ExpressionContext {
|
|
1282
1276
|
constructor(parser, ctx) {
|
|
1283
1277
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1284
1278
|
super.copyFrom(ctx);
|
|
@@ -1306,8 +1300,7 @@ class ParenthesizedExpressionContext extends ExpressionContext {
|
|
|
1306
1300
|
}
|
|
1307
1301
|
}
|
|
1308
1302
|
}
|
|
1309
|
-
|
|
1310
|
-
class ArrayExpressionContext extends ExpressionContext {
|
|
1303
|
+
export class ArrayExpressionContext extends ExpressionContext {
|
|
1311
1304
|
constructor(parser, ctx) {
|
|
1312
1305
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1313
1306
|
super.copyFrom(ctx);
|
|
@@ -1338,8 +1331,7 @@ class ArrayExpressionContext extends ExpressionContext {
|
|
|
1338
1331
|
}
|
|
1339
1332
|
}
|
|
1340
1333
|
}
|
|
1341
|
-
|
|
1342
|
-
class PolarityExpressionContext extends ExpressionContext {
|
|
1334
|
+
export class PolarityExpressionContext extends ExpressionContext {
|
|
1343
1335
|
constructor(parser, ctx) {
|
|
1344
1336
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1345
1337
|
super.copyFrom(ctx);
|
|
@@ -1370,8 +1362,7 @@ class PolarityExpressionContext extends ExpressionContext {
|
|
|
1370
1362
|
}
|
|
1371
1363
|
}
|
|
1372
1364
|
}
|
|
1373
|
-
|
|
1374
|
-
class ComparisonExpressionContext extends ExpressionContext {
|
|
1365
|
+
export class ComparisonExpressionContext extends ExpressionContext {
|
|
1375
1366
|
constructor(parser, ctx) {
|
|
1376
1367
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1377
1368
|
super.copyFrom(ctx);
|
|
@@ -1405,8 +1396,7 @@ class ComparisonExpressionContext extends ExpressionContext {
|
|
|
1405
1396
|
}
|
|
1406
1397
|
}
|
|
1407
1398
|
}
|
|
1408
|
-
|
|
1409
|
-
class ArithmeticExpressionContext extends ExpressionContext {
|
|
1399
|
+
export class ArithmeticExpressionContext extends ExpressionContext {
|
|
1410
1400
|
constructor(parser, ctx) {
|
|
1411
1401
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1412
1402
|
super.copyFrom(ctx);
|
|
@@ -1440,8 +1430,7 @@ class ArithmeticExpressionContext extends ExpressionContext {
|
|
|
1440
1430
|
}
|
|
1441
1431
|
}
|
|
1442
1432
|
}
|
|
1443
|
-
|
|
1444
|
-
class LogicalExpressionContext extends ExpressionContext {
|
|
1433
|
+
export class LogicalExpressionContext extends ExpressionContext {
|
|
1445
1434
|
constructor(parser, ctx) {
|
|
1446
1435
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1447
1436
|
super.copyFrom(ctx);
|
|
@@ -1475,8 +1464,7 @@ class LogicalExpressionContext extends ExpressionContext {
|
|
|
1475
1464
|
}
|
|
1476
1465
|
}
|
|
1477
1466
|
}
|
|
1478
|
-
|
|
1479
|
-
class TermExpressionContext extends ExpressionContext {
|
|
1467
|
+
export class TermExpressionContext extends ExpressionContext {
|
|
1480
1468
|
constructor(parser, ctx) {
|
|
1481
1469
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1482
1470
|
super.copyFrom(ctx);
|
|
@@ -1504,8 +1492,7 @@ class TermExpressionContext extends ExpressionContext {
|
|
|
1504
1492
|
}
|
|
1505
1493
|
}
|
|
1506
1494
|
}
|
|
1507
|
-
|
|
1508
|
-
class TermContext extends antlr4_1.ParserRuleContext {
|
|
1495
|
+
export class TermContext extends ParserRuleContext {
|
|
1509
1496
|
constructor(parser, parent, invokingState) {
|
|
1510
1497
|
super(parent, invokingState);
|
|
1511
1498
|
this.parser = parser;
|
|
@@ -1517,8 +1504,7 @@ class TermContext extends antlr4_1.ParserRuleContext {
|
|
|
1517
1504
|
super.copyFrom(ctx);
|
|
1518
1505
|
}
|
|
1519
1506
|
}
|
|
1520
|
-
|
|
1521
|
-
class ExternalConstantTermContext extends TermContext {
|
|
1507
|
+
export class ExternalConstantTermContext extends TermContext {
|
|
1522
1508
|
constructor(parser, ctx) {
|
|
1523
1509
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1524
1510
|
super.copyFrom(ctx);
|
|
@@ -1546,8 +1532,7 @@ class ExternalConstantTermContext extends TermContext {
|
|
|
1546
1532
|
}
|
|
1547
1533
|
}
|
|
1548
1534
|
}
|
|
1549
|
-
|
|
1550
|
-
class LiteralTermContext extends TermContext {
|
|
1535
|
+
export class LiteralTermContext extends TermContext {
|
|
1551
1536
|
constructor(parser, ctx) {
|
|
1552
1537
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1553
1538
|
super.copyFrom(ctx);
|
|
@@ -1575,8 +1560,7 @@ class LiteralTermContext extends TermContext {
|
|
|
1575
1560
|
}
|
|
1576
1561
|
}
|
|
1577
1562
|
}
|
|
1578
|
-
|
|
1579
|
-
class QualifiedIdentifierTermContext extends TermContext {
|
|
1563
|
+
export class QualifiedIdentifierTermContext extends TermContext {
|
|
1580
1564
|
constructor(parser, ctx) {
|
|
1581
1565
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1582
1566
|
super.copyFrom(ctx);
|
|
@@ -1604,8 +1588,7 @@ class QualifiedIdentifierTermContext extends TermContext {
|
|
|
1604
1588
|
}
|
|
1605
1589
|
}
|
|
1606
1590
|
}
|
|
1607
|
-
|
|
1608
|
-
class InvocableContext extends antlr4_1.ParserRuleContext {
|
|
1591
|
+
export class InvocableContext extends ParserRuleContext {
|
|
1609
1592
|
constructor(parser, parent, invokingState) {
|
|
1610
1593
|
super(parent, invokingState);
|
|
1611
1594
|
this.parser = parser;
|
|
@@ -1636,8 +1619,7 @@ class InvocableContext extends antlr4_1.ParserRuleContext {
|
|
|
1636
1619
|
}
|
|
1637
1620
|
}
|
|
1638
1621
|
}
|
|
1639
|
-
|
|
1640
|
-
class InvocationContext extends antlr4_1.ParserRuleContext {
|
|
1622
|
+
export class InvocationContext extends ParserRuleContext {
|
|
1641
1623
|
constructor(parser, parent, invokingState) {
|
|
1642
1624
|
super(parent, invokingState);
|
|
1643
1625
|
this.parser = parser;
|
|
@@ -1649,8 +1631,7 @@ class InvocationContext extends antlr4_1.ParserRuleContext {
|
|
|
1649
1631
|
super.copyFrom(ctx);
|
|
1650
1632
|
}
|
|
1651
1633
|
}
|
|
1652
|
-
|
|
1653
|
-
class MemberInvocationContext extends InvocationContext {
|
|
1634
|
+
export class MemberInvocationContext extends InvocationContext {
|
|
1654
1635
|
constructor(parser, ctx) {
|
|
1655
1636
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1656
1637
|
super.copyFrom(ctx);
|
|
@@ -1678,8 +1659,7 @@ class MemberInvocationContext extends InvocationContext {
|
|
|
1678
1659
|
}
|
|
1679
1660
|
}
|
|
1680
1661
|
}
|
|
1681
|
-
|
|
1682
|
-
class IndexerContext extends antlr4_1.ParserRuleContext {
|
|
1662
|
+
export class IndexerContext extends ParserRuleContext {
|
|
1683
1663
|
constructor(parser, parent, invokingState) {
|
|
1684
1664
|
super(parent, invokingState);
|
|
1685
1665
|
this.parser = parser;
|
|
@@ -1691,8 +1671,7 @@ class IndexerContext extends antlr4_1.ParserRuleContext {
|
|
|
1691
1671
|
super.copyFrom(ctx);
|
|
1692
1672
|
}
|
|
1693
1673
|
}
|
|
1694
|
-
|
|
1695
|
-
class NumberIndexContext extends IndexerContext {
|
|
1674
|
+
export class NumberIndexContext extends IndexerContext {
|
|
1696
1675
|
constructor(parser, ctx) {
|
|
1697
1676
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1698
1677
|
super.copyFrom(ctx);
|
|
@@ -1720,8 +1699,7 @@ class NumberIndexContext extends IndexerContext {
|
|
|
1720
1699
|
}
|
|
1721
1700
|
}
|
|
1722
1701
|
}
|
|
1723
|
-
|
|
1724
|
-
class MemberIndexContext extends IndexerContext {
|
|
1702
|
+
export class MemberIndexContext extends IndexerContext {
|
|
1725
1703
|
constructor(parser, ctx) {
|
|
1726
1704
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
1727
1705
|
super.copyFrom(ctx);
|
|
@@ -1749,8 +1727,7 @@ class MemberIndexContext extends IndexerContext {
|
|
|
1749
1727
|
}
|
|
1750
1728
|
}
|
|
1751
1729
|
}
|
|
1752
|
-
|
|
1753
|
-
class FunctionContext extends antlr4_1.ParserRuleContext {
|
|
1730
|
+
export class FunctionContext extends ParserRuleContext {
|
|
1754
1731
|
constructor(parser, parent, invokingState) {
|
|
1755
1732
|
super(parent, invokingState);
|
|
1756
1733
|
this.parser = parser;
|
|
@@ -1784,8 +1761,7 @@ class FunctionContext extends antlr4_1.ParserRuleContext {
|
|
|
1784
1761
|
}
|
|
1785
1762
|
}
|
|
1786
1763
|
}
|
|
1787
|
-
|
|
1788
|
-
class ParamListContext extends antlr4_1.ParserRuleContext {
|
|
1764
|
+
export class ParamListContext extends ParserRuleContext {
|
|
1789
1765
|
constructor(parser, parent, invokingState) {
|
|
1790
1766
|
super(parent, invokingState);
|
|
1791
1767
|
this.parser = parser;
|
|
@@ -1819,8 +1795,7 @@ class ParamListContext extends antlr4_1.ParserRuleContext {
|
|
|
1819
1795
|
}
|
|
1820
1796
|
}
|
|
1821
1797
|
}
|
|
1822
|
-
|
|
1823
|
-
class UnitContext extends antlr4_1.ParserRuleContext {
|
|
1798
|
+
export class UnitContext extends ParserRuleContext {
|
|
1824
1799
|
constructor(parser, parent, invokingState) {
|
|
1825
1800
|
super(parent, invokingState);
|
|
1826
1801
|
this.parser = parser;
|
|
@@ -1857,8 +1832,7 @@ class UnitContext extends antlr4_1.ParserRuleContext {
|
|
|
1857
1832
|
}
|
|
1858
1833
|
}
|
|
1859
1834
|
}
|
|
1860
|
-
|
|
1861
|
-
class DateTimePrecisionContext extends antlr4_1.ParserRuleContext {
|
|
1835
|
+
export class DateTimePrecisionContext extends ParserRuleContext {
|
|
1862
1836
|
constructor(parser, parent, invokingState) {
|
|
1863
1837
|
super(parent, invokingState);
|
|
1864
1838
|
this.parser = parser;
|
|
@@ -1886,8 +1860,7 @@ class DateTimePrecisionContext extends antlr4_1.ParserRuleContext {
|
|
|
1886
1860
|
}
|
|
1887
1861
|
}
|
|
1888
1862
|
}
|
|
1889
|
-
|
|
1890
|
-
class PluralDateTimePrecisionContext extends antlr4_1.ParserRuleContext {
|
|
1863
|
+
export class PluralDateTimePrecisionContext extends ParserRuleContext {
|
|
1891
1864
|
constructor(parser, parent, invokingState) {
|
|
1892
1865
|
super(parent, invokingState);
|
|
1893
1866
|
this.parser = parser;
|
|
@@ -1915,8 +1888,7 @@ class PluralDateTimePrecisionContext extends antlr4_1.ParserRuleContext {
|
|
|
1915
1888
|
}
|
|
1916
1889
|
}
|
|
1917
1890
|
}
|
|
1918
|
-
|
|
1919
|
-
class QualifiedIdentifierContext extends antlr4_1.ParserRuleContext {
|
|
1891
|
+
export class QualifiedIdentifierContext extends ParserRuleContext {
|
|
1920
1892
|
constructor(parser, parent, invokingState) {
|
|
1921
1893
|
super(parent, invokingState);
|
|
1922
1894
|
this.parser = parser;
|
|
@@ -1950,8 +1922,7 @@ class QualifiedIdentifierContext extends antlr4_1.ParserRuleContext {
|
|
|
1950
1922
|
}
|
|
1951
1923
|
}
|
|
1952
1924
|
}
|
|
1953
|
-
|
|
1954
|
-
class ExternalConstantContext extends antlr4_1.ParserRuleContext {
|
|
1925
|
+
export class ExternalConstantContext extends ParserRuleContext {
|
|
1955
1926
|
constructor(parser, parent, invokingState) {
|
|
1956
1927
|
super(parent, invokingState);
|
|
1957
1928
|
this.parser = parser;
|
|
@@ -1985,8 +1956,7 @@ class ExternalConstantContext extends antlr4_1.ParserRuleContext {
|
|
|
1985
1956
|
}
|
|
1986
1957
|
}
|
|
1987
1958
|
}
|
|
1988
|
-
|
|
1989
|
-
class IdentifierContext extends antlr4_1.ParserRuleContext {
|
|
1959
|
+
export class IdentifierContext extends ParserRuleContext {
|
|
1990
1960
|
constructor(parser, parent, invokingState) {
|
|
1991
1961
|
super(parent, invokingState);
|
|
1992
1962
|
this.parser = parser;
|
|
@@ -2017,8 +1987,7 @@ class IdentifierContext extends antlr4_1.ParserRuleContext {
|
|
|
2017
1987
|
}
|
|
2018
1988
|
}
|
|
2019
1989
|
}
|
|
2020
|
-
|
|
2021
|
-
class LiteralContext extends antlr4_1.ParserRuleContext {
|
|
1990
|
+
export class LiteralContext extends ParserRuleContext {
|
|
2022
1991
|
constructor(parser, parent, invokingState) {
|
|
2023
1992
|
super(parent, invokingState);
|
|
2024
1993
|
this.parser = parser;
|
|
@@ -2030,8 +1999,7 @@ class LiteralContext extends antlr4_1.ParserRuleContext {
|
|
|
2030
1999
|
super.copyFrom(ctx);
|
|
2031
2000
|
}
|
|
2032
2001
|
}
|
|
2033
|
-
|
|
2034
|
-
class TimeLiteralContext extends LiteralContext {
|
|
2002
|
+
export class TimeLiteralContext extends LiteralContext {
|
|
2035
2003
|
constructor(parser, ctx) {
|
|
2036
2004
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
2037
2005
|
super.copyFrom(ctx);
|
|
@@ -2059,8 +2027,7 @@ class TimeLiteralContext extends LiteralContext {
|
|
|
2059
2027
|
}
|
|
2060
2028
|
}
|
|
2061
2029
|
}
|
|
2062
|
-
|
|
2063
|
-
class NullLiteralContext extends LiteralContext {
|
|
2030
|
+
export class NullLiteralContext extends LiteralContext {
|
|
2064
2031
|
constructor(parser, ctx) {
|
|
2065
2032
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
2066
2033
|
super.copyFrom(ctx);
|
|
@@ -2088,8 +2055,7 @@ class NullLiteralContext extends LiteralContext {
|
|
|
2088
2055
|
}
|
|
2089
2056
|
}
|
|
2090
2057
|
}
|
|
2091
|
-
|
|
2092
|
-
class DateTimeLiteralContext extends LiteralContext {
|
|
2058
|
+
export class DateTimeLiteralContext extends LiteralContext {
|
|
2093
2059
|
constructor(parser, ctx) {
|
|
2094
2060
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
2095
2061
|
super.copyFrom(ctx);
|
|
@@ -2117,8 +2083,7 @@ class DateTimeLiteralContext extends LiteralContext {
|
|
|
2117
2083
|
}
|
|
2118
2084
|
}
|
|
2119
2085
|
}
|
|
2120
|
-
|
|
2121
|
-
class StringLiteralContext extends LiteralContext {
|
|
2086
|
+
export class StringLiteralContext extends LiteralContext {
|
|
2122
2087
|
constructor(parser, ctx) {
|
|
2123
2088
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
2124
2089
|
super.copyFrom(ctx);
|
|
@@ -2146,8 +2111,7 @@ class StringLiteralContext extends LiteralContext {
|
|
|
2146
2111
|
}
|
|
2147
2112
|
}
|
|
2148
2113
|
}
|
|
2149
|
-
|
|
2150
|
-
class DateLiteralContext extends LiteralContext {
|
|
2114
|
+
export class DateLiteralContext extends LiteralContext {
|
|
2151
2115
|
constructor(parser, ctx) {
|
|
2152
2116
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
2153
2117
|
super.copyFrom(ctx);
|
|
@@ -2175,8 +2139,7 @@ class DateLiteralContext extends LiteralContext {
|
|
|
2175
2139
|
}
|
|
2176
2140
|
}
|
|
2177
2141
|
}
|
|
2178
|
-
|
|
2179
|
-
class InfinityLiteralContext extends LiteralContext {
|
|
2142
|
+
export class InfinityLiteralContext extends LiteralContext {
|
|
2180
2143
|
constructor(parser, ctx) {
|
|
2181
2144
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
2182
2145
|
super.copyFrom(ctx);
|
|
@@ -2204,8 +2167,7 @@ class InfinityLiteralContext extends LiteralContext {
|
|
|
2204
2167
|
}
|
|
2205
2168
|
}
|
|
2206
2169
|
}
|
|
2207
|
-
|
|
2208
|
-
class BooleanLiteralContext extends LiteralContext {
|
|
2170
|
+
export class BooleanLiteralContext extends LiteralContext {
|
|
2209
2171
|
constructor(parser, ctx) {
|
|
2210
2172
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
2211
2173
|
super.copyFrom(ctx);
|
|
@@ -2233,8 +2195,7 @@ class BooleanLiteralContext extends LiteralContext {
|
|
|
2233
2195
|
}
|
|
2234
2196
|
}
|
|
2235
2197
|
}
|
|
2236
|
-
|
|
2237
|
-
class NumberLiteralContext extends LiteralContext {
|
|
2198
|
+
export class NumberLiteralContext extends LiteralContext {
|
|
2238
2199
|
constructor(parser, ctx) {
|
|
2239
2200
|
super(parser, ctx.parentCtx, ctx.invokingState);
|
|
2240
2201
|
super.copyFrom(ctx);
|
|
@@ -2262,8 +2223,7 @@ class NumberLiteralContext extends LiteralContext {
|
|
|
2262
2223
|
}
|
|
2263
2224
|
}
|
|
2264
2225
|
}
|
|
2265
|
-
|
|
2266
|
-
class CompOpContext extends antlr4_1.ParserRuleContext {
|
|
2226
|
+
export class CompOpContext extends ParserRuleContext {
|
|
2267
2227
|
constructor(parser, parent, invokingState) {
|
|
2268
2228
|
super(parent, invokingState);
|
|
2269
2229
|
this.parser = parser;
|
|
@@ -2291,8 +2251,7 @@ class CompOpContext extends antlr4_1.ParserRuleContext {
|
|
|
2291
2251
|
}
|
|
2292
2252
|
}
|
|
2293
2253
|
}
|
|
2294
|
-
|
|
2295
|
-
class ArthOpContext extends antlr4_1.ParserRuleContext {
|
|
2254
|
+
export class ArthOpContext extends ParserRuleContext {
|
|
2296
2255
|
constructor(parser, parent, invokingState) {
|
|
2297
2256
|
super(parent, invokingState);
|
|
2298
2257
|
this.parser = parser;
|
|
@@ -2320,8 +2279,7 @@ class ArthOpContext extends antlr4_1.ParserRuleContext {
|
|
|
2320
2279
|
}
|
|
2321
2280
|
}
|
|
2322
2281
|
}
|
|
2323
|
-
|
|
2324
|
-
class PolarOpContext extends antlr4_1.ParserRuleContext {
|
|
2282
|
+
export class PolarOpContext extends ParserRuleContext {
|
|
2325
2283
|
constructor(parser, parent, invokingState) {
|
|
2326
2284
|
super(parent, invokingState);
|
|
2327
2285
|
this.parser = parser;
|
|
@@ -2349,8 +2307,7 @@ class PolarOpContext extends antlr4_1.ParserRuleContext {
|
|
|
2349
2307
|
}
|
|
2350
2308
|
}
|
|
2351
2309
|
}
|
|
2352
|
-
|
|
2353
|
-
class LogOpContext extends antlr4_1.ParserRuleContext {
|
|
2310
|
+
export class LogOpContext extends ParserRuleContext {
|
|
2354
2311
|
constructor(parser, parent, invokingState) {
|
|
2355
2312
|
super(parent, invokingState);
|
|
2356
2313
|
this.parser = parser;
|
|
@@ -2378,8 +2335,7 @@ class LogOpContext extends antlr4_1.ParserRuleContext {
|
|
|
2378
2335
|
}
|
|
2379
2336
|
}
|
|
2380
2337
|
}
|
|
2381
|
-
|
|
2382
|
-
class BooleanContext extends antlr4_1.ParserRuleContext {
|
|
2338
|
+
export class BooleanContext extends ParserRuleContext {
|
|
2383
2339
|
constructor(parser, parent, invokingState) {
|
|
2384
2340
|
super(parent, invokingState);
|
|
2385
2341
|
this.parser = parser;
|
|
@@ -2407,8 +2363,7 @@ class BooleanContext extends antlr4_1.ParserRuleContext {
|
|
|
2407
2363
|
}
|
|
2408
2364
|
}
|
|
2409
2365
|
}
|
|
2410
|
-
|
|
2411
|
-
class NullContext extends antlr4_1.ParserRuleContext {
|
|
2366
|
+
export class NullContext extends ParserRuleContext {
|
|
2412
2367
|
constructor(parser, parent, invokingState) {
|
|
2413
2368
|
super(parent, invokingState);
|
|
2414
2369
|
this.parser = parser;
|
|
@@ -2436,8 +2391,7 @@ class NullContext extends antlr4_1.ParserRuleContext {
|
|
|
2436
2391
|
}
|
|
2437
2392
|
}
|
|
2438
2393
|
}
|
|
2439
|
-
|
|
2440
|
-
class InfinityContext extends antlr4_1.ParserRuleContext {
|
|
2394
|
+
export class InfinityContext extends ParserRuleContext {
|
|
2441
2395
|
constructor(parser, parent, invokingState) {
|
|
2442
2396
|
super(parent, invokingState);
|
|
2443
2397
|
this.parser = parser;
|
|
@@ -2465,4 +2419,3 @@ class InfinityContext extends antlr4_1.ParserRuleContext {
|
|
|
2465
2419
|
}
|
|
2466
2420
|
}
|
|
2467
2421
|
}
|
|
2468
|
-
exports.InfinityContext = InfinityContext;
|