@malloydata/malloy 0.0.122 → 0.0.123-dev240205152128
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/dist/dialect/dialect_map.js +2 -0
- package/dist/dialect/functions/string_agg.js +12 -4
- package/dist/dialect/functions/util.d.ts +4 -2
- package/dist/dialect/functions/util.js +1 -0
- package/dist/dialect/postgres/functions/string_agg.js +10 -2
- package/dist/dialect/standardsql/functions/string_agg.js +14 -4
- package/dist/lang/ast/expressions/expr-func.js +3 -1
- package/dist/lang/ast/expressions/function-ordering.d.ts +4 -4
- package/dist/lang/ast/expressions/function-ordering.js +26 -8
- package/dist/lang/lib/Malloy/MalloyParser.d.ts +1 -1
- package/dist/lang/lib/Malloy/MalloyParser.js +968 -904
- package/dist/lang/malloy-to-ast.js +2 -1
- package/dist/lang/test/expressions.spec.js +36 -0
- package/dist/model/malloy_query.d.ts +5 -2
- package/dist/model/malloy_query.js +96 -25
- package/dist/model/malloy_types.d.ts +9 -2
- package/package.json +1 -1
|
@@ -3258,29 +3258,90 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3258
3258
|
this.enterRule(_localctx, 124, MalloyParser.RULE_aggregateOrderBySpec);
|
|
3259
3259
|
let _la;
|
|
3260
3260
|
try {
|
|
3261
|
-
this.
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3261
|
+
this.state = 733;
|
|
3262
|
+
this._errHandler.sync(this);
|
|
3263
|
+
switch (this._input.LA(1)) {
|
|
3264
|
+
case MalloyParser.ALL:
|
|
3265
|
+
case MalloyParser.AVG:
|
|
3266
|
+
case MalloyParser.CAST:
|
|
3267
|
+
case MalloyParser.COUNT:
|
|
3268
|
+
case MalloyParser.DAY:
|
|
3269
|
+
case MalloyParser.EXCLUDE:
|
|
3270
|
+
case MalloyParser.FALSE:
|
|
3271
|
+
case MalloyParser.HOUR:
|
|
3272
|
+
case MalloyParser.MAX:
|
|
3273
|
+
case MalloyParser.MIN:
|
|
3274
|
+
case MalloyParser.MINUTE:
|
|
3275
|
+
case MalloyParser.MONTH:
|
|
3276
|
+
case MalloyParser.NOT:
|
|
3277
|
+
case MalloyParser.NOW:
|
|
3278
|
+
case MalloyParser.NULL:
|
|
3279
|
+
case MalloyParser.PICK:
|
|
3280
|
+
case MalloyParser.QUARTER:
|
|
3281
|
+
case MalloyParser.SECOND:
|
|
3282
|
+
case MalloyParser.SOURCE_KW:
|
|
3283
|
+
case MalloyParser.SUM:
|
|
3284
|
+
case MalloyParser.TRUE:
|
|
3285
|
+
case MalloyParser.WEEK:
|
|
3286
|
+
case MalloyParser.YEAR:
|
|
3287
|
+
case MalloyParser.HACKY_REGEX:
|
|
3288
|
+
case MalloyParser.SQ_STRING:
|
|
3289
|
+
case MalloyParser.DQ_STRING:
|
|
3290
|
+
case MalloyParser.BQ_STRING:
|
|
3291
|
+
case MalloyParser.OPAREN:
|
|
3292
|
+
case MalloyParser.MINUS:
|
|
3293
|
+
case MalloyParser.LITERAL_TIMESTAMP:
|
|
3294
|
+
case MalloyParser.LITERAL_HOUR:
|
|
3295
|
+
case MalloyParser.LITERAL_DAY:
|
|
3296
|
+
case MalloyParser.LITERAL_QUARTER:
|
|
3297
|
+
case MalloyParser.LITERAL_MONTH:
|
|
3298
|
+
case MalloyParser.LITERAL_WEEK:
|
|
3299
|
+
case MalloyParser.LITERAL_YEAR:
|
|
3300
|
+
case MalloyParser.IDENTIFIER:
|
|
3301
|
+
case MalloyParser.NUMERIC_LITERAL:
|
|
3302
|
+
case MalloyParser.INTEGER_LITERAL:
|
|
3303
|
+
case MalloyParser.SQL_BEGIN:
|
|
3304
|
+
this.enterOuterAlt(_localctx, 1);
|
|
3269
3305
|
{
|
|
3270
|
-
this.state =
|
|
3306
|
+
this.state = 727;
|
|
3307
|
+
this.fieldExpr(0);
|
|
3308
|
+
this.state = 729;
|
|
3309
|
+
this._errHandler.sync(this);
|
|
3271
3310
|
_la = this._input.LA(1);
|
|
3272
|
-
if (
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3311
|
+
if (_la === MalloyParser.ASC || _la === MalloyParser.DESC) {
|
|
3312
|
+
{
|
|
3313
|
+
this.state = 728;
|
|
3314
|
+
_la = this._input.LA(1);
|
|
3315
|
+
if (!(_la === MalloyParser.ASC || _la === MalloyParser.DESC)) {
|
|
3316
|
+
this._errHandler.recoverInline(this);
|
|
3317
|
+
}
|
|
3318
|
+
else {
|
|
3319
|
+
if (this._input.LA(1) === Token_1.Token.EOF) {
|
|
3320
|
+
this.matchedEOF = true;
|
|
3321
|
+
}
|
|
3322
|
+
this._errHandler.reportMatch(this);
|
|
3323
|
+
this.consume();
|
|
3324
|
+
}
|
|
3278
3325
|
}
|
|
3279
|
-
this._errHandler.reportMatch(this);
|
|
3280
|
-
this.consume();
|
|
3281
3326
|
}
|
|
3282
3327
|
}
|
|
3283
|
-
|
|
3328
|
+
break;
|
|
3329
|
+
case MalloyParser.ASC:
|
|
3330
|
+
this.enterOuterAlt(_localctx, 2);
|
|
3331
|
+
{
|
|
3332
|
+
this.state = 731;
|
|
3333
|
+
this.match(MalloyParser.ASC);
|
|
3334
|
+
}
|
|
3335
|
+
break;
|
|
3336
|
+
case MalloyParser.DESC:
|
|
3337
|
+
this.enterOuterAlt(_localctx, 3);
|
|
3338
|
+
{
|
|
3339
|
+
this.state = 732;
|
|
3340
|
+
this.match(MalloyParser.DESC);
|
|
3341
|
+
}
|
|
3342
|
+
break;
|
|
3343
|
+
default:
|
|
3344
|
+
throw new NoViableAltException_1.NoViableAltException(this);
|
|
3284
3345
|
}
|
|
3285
3346
|
}
|
|
3286
3347
|
catch (re) {
|
|
@@ -3305,9 +3366,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3305
3366
|
try {
|
|
3306
3367
|
this.enterOuterAlt(_localctx, 1);
|
|
3307
3368
|
{
|
|
3308
|
-
this.state =
|
|
3369
|
+
this.state = 735;
|
|
3309
3370
|
this.match(MalloyParser.ORDER_BY);
|
|
3310
|
-
this.state =
|
|
3371
|
+
this.state = 736;
|
|
3311
3372
|
this.aggregateOrdering();
|
|
3312
3373
|
}
|
|
3313
3374
|
}
|
|
@@ -3333,7 +3394,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3333
3394
|
try {
|
|
3334
3395
|
this.enterOuterAlt(_localctx, 1);
|
|
3335
3396
|
{
|
|
3336
|
-
this.state =
|
|
3397
|
+
this.state = 738;
|
|
3337
3398
|
this.limitStatement();
|
|
3338
3399
|
}
|
|
3339
3400
|
}
|
|
@@ -3357,34 +3418,34 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3357
3418
|
let _localctx = new FieldPropertyStatementContext(this._ctx, this.state);
|
|
3358
3419
|
this.enterRule(_localctx, 130, MalloyParser.RULE_fieldPropertyStatement);
|
|
3359
3420
|
try {
|
|
3360
|
-
this.state =
|
|
3421
|
+
this.state = 744;
|
|
3361
3422
|
this._errHandler.sync(this);
|
|
3362
3423
|
switch (this._input.LA(1)) {
|
|
3363
3424
|
case MalloyParser.WHERE:
|
|
3364
3425
|
this.enterOuterAlt(_localctx, 1);
|
|
3365
3426
|
{
|
|
3366
|
-
this.state =
|
|
3427
|
+
this.state = 740;
|
|
3367
3428
|
this.whereStatement();
|
|
3368
3429
|
}
|
|
3369
3430
|
break;
|
|
3370
3431
|
case MalloyParser.PARTITION_BY:
|
|
3371
3432
|
this.enterOuterAlt(_localctx, 2);
|
|
3372
3433
|
{
|
|
3373
|
-
this.state =
|
|
3434
|
+
this.state = 741;
|
|
3374
3435
|
this.partitionByStatement();
|
|
3375
3436
|
}
|
|
3376
3437
|
break;
|
|
3377
3438
|
case MalloyParser.ORDER_BY:
|
|
3378
3439
|
this.enterOuterAlt(_localctx, 3);
|
|
3379
3440
|
{
|
|
3380
|
-
this.state =
|
|
3441
|
+
this.state = 742;
|
|
3381
3442
|
this.aggregateOrderByStatement();
|
|
3382
3443
|
}
|
|
3383
3444
|
break;
|
|
3384
3445
|
case MalloyParser.LIMIT:
|
|
3385
3446
|
this.enterOuterAlt(_localctx, 4);
|
|
3386
3447
|
{
|
|
3387
|
-
this.state =
|
|
3448
|
+
this.state = 743;
|
|
3388
3449
|
this.fieldPropertyLimitStatement();
|
|
3389
3450
|
}
|
|
3390
3451
|
break;
|
|
@@ -3416,32 +3477,32 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3416
3477
|
let _alt;
|
|
3417
3478
|
this.enterOuterAlt(_localctx, 1);
|
|
3418
3479
|
{
|
|
3419
|
-
this.state =
|
|
3480
|
+
this.state = 746;
|
|
3420
3481
|
this.fieldExpr(0);
|
|
3421
|
-
this.state =
|
|
3482
|
+
this.state = 751;
|
|
3422
3483
|
this._errHandler.sync(this);
|
|
3423
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
3484
|
+
_alt = this.interpreter.adaptivePredict(this._input, 66, this._ctx);
|
|
3424
3485
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
3425
3486
|
if (_alt === 1) {
|
|
3426
3487
|
{
|
|
3427
3488
|
{
|
|
3428
|
-
this.state =
|
|
3489
|
+
this.state = 747;
|
|
3429
3490
|
this.match(MalloyParser.COMMA);
|
|
3430
|
-
this.state =
|
|
3491
|
+
this.state = 748;
|
|
3431
3492
|
this.fieldExpr(0);
|
|
3432
3493
|
}
|
|
3433
3494
|
}
|
|
3434
3495
|
}
|
|
3435
|
-
this.state =
|
|
3496
|
+
this.state = 753;
|
|
3436
3497
|
this._errHandler.sync(this);
|
|
3437
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
3498
|
+
_alt = this.interpreter.adaptivePredict(this._input, 66, this._ctx);
|
|
3438
3499
|
}
|
|
3439
|
-
this.state =
|
|
3500
|
+
this.state = 755;
|
|
3440
3501
|
this._errHandler.sync(this);
|
|
3441
3502
|
_la = this._input.LA(1);
|
|
3442
3503
|
if (_la === MalloyParser.COMMA) {
|
|
3443
3504
|
{
|
|
3444
|
-
this.state =
|
|
3505
|
+
this.state = 754;
|
|
3445
3506
|
this.match(MalloyParser.COMMA);
|
|
3446
3507
|
}
|
|
3447
3508
|
}
|
|
@@ -3469,9 +3530,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3469
3530
|
try {
|
|
3470
3531
|
this.enterOuterAlt(_localctx, 1);
|
|
3471
3532
|
{
|
|
3472
|
-
this.state =
|
|
3533
|
+
this.state = 757;
|
|
3473
3534
|
this.match(MalloyParser.WHERE);
|
|
3474
|
-
this.state =
|
|
3535
|
+
this.state = 758;
|
|
3475
3536
|
this.filterClauseList();
|
|
3476
3537
|
}
|
|
3477
3538
|
}
|
|
@@ -3497,9 +3558,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3497
3558
|
try {
|
|
3498
3559
|
this.enterOuterAlt(_localctx, 1);
|
|
3499
3560
|
{
|
|
3500
|
-
this.state =
|
|
3561
|
+
this.state = 760;
|
|
3501
3562
|
this.match(MalloyParser.HAVING);
|
|
3502
|
-
this.state =
|
|
3563
|
+
this.state = 761;
|
|
3503
3564
|
this.filterClauseList();
|
|
3504
3565
|
}
|
|
3505
3566
|
}
|
|
@@ -3527,39 +3588,39 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3527
3588
|
let _alt;
|
|
3528
3589
|
this.enterOuterAlt(_localctx, 1);
|
|
3529
3590
|
{
|
|
3530
|
-
this.state =
|
|
3591
|
+
this.state = 763;
|
|
3531
3592
|
this.exploreQueryDef();
|
|
3532
|
-
this.state =
|
|
3593
|
+
this.state = 770;
|
|
3533
3594
|
this._errHandler.sync(this);
|
|
3534
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
3595
|
+
_alt = this.interpreter.adaptivePredict(this._input, 69, this._ctx);
|
|
3535
3596
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
3536
3597
|
if (_alt === 1) {
|
|
3537
3598
|
{
|
|
3538
3599
|
{
|
|
3539
|
-
this.state =
|
|
3600
|
+
this.state = 765;
|
|
3540
3601
|
this._errHandler.sync(this);
|
|
3541
3602
|
_la = this._input.LA(1);
|
|
3542
3603
|
if (_la === MalloyParser.COMMA) {
|
|
3543
3604
|
{
|
|
3544
|
-
this.state =
|
|
3605
|
+
this.state = 764;
|
|
3545
3606
|
this.match(MalloyParser.COMMA);
|
|
3546
3607
|
}
|
|
3547
3608
|
}
|
|
3548
|
-
this.state =
|
|
3609
|
+
this.state = 767;
|
|
3549
3610
|
this.exploreQueryDef();
|
|
3550
3611
|
}
|
|
3551
3612
|
}
|
|
3552
3613
|
}
|
|
3553
|
-
this.state =
|
|
3614
|
+
this.state = 772;
|
|
3554
3615
|
this._errHandler.sync(this);
|
|
3555
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
3616
|
+
_alt = this.interpreter.adaptivePredict(this._input, 69, this._ctx);
|
|
3556
3617
|
}
|
|
3557
|
-
this.state =
|
|
3618
|
+
this.state = 774;
|
|
3558
3619
|
this._errHandler.sync(this);
|
|
3559
3620
|
_la = this._input.LA(1);
|
|
3560
3621
|
if (_la === MalloyParser.COMMA) {
|
|
3561
3622
|
{
|
|
3562
|
-
this.state =
|
|
3623
|
+
this.state = 773;
|
|
3563
3624
|
this.match(MalloyParser.COMMA);
|
|
3564
3625
|
}
|
|
3565
3626
|
}
|
|
@@ -3587,7 +3648,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3587
3648
|
try {
|
|
3588
3649
|
this.enterOuterAlt(_localctx, 1);
|
|
3589
3650
|
{
|
|
3590
|
-
this.state =
|
|
3651
|
+
this.state = 776;
|
|
3591
3652
|
this.id();
|
|
3592
3653
|
}
|
|
3593
3654
|
}
|
|
@@ -3614,25 +3675,25 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3614
3675
|
try {
|
|
3615
3676
|
this.enterOuterAlt(_localctx, 1);
|
|
3616
3677
|
{
|
|
3617
|
-
this.state =
|
|
3678
|
+
this.state = 781;
|
|
3618
3679
|
this._errHandler.sync(this);
|
|
3619
3680
|
_la = this._input.LA(1);
|
|
3620
3681
|
while (_la === MalloyParser.ANNOTATION) {
|
|
3621
3682
|
{
|
|
3622
3683
|
{
|
|
3623
|
-
this.state =
|
|
3684
|
+
this.state = 778;
|
|
3624
3685
|
this.match(MalloyParser.ANNOTATION);
|
|
3625
3686
|
}
|
|
3626
3687
|
}
|
|
3627
|
-
this.state =
|
|
3688
|
+
this.state = 783;
|
|
3628
3689
|
this._errHandler.sync(this);
|
|
3629
3690
|
_la = this._input.LA(1);
|
|
3630
3691
|
}
|
|
3631
|
-
this.state =
|
|
3692
|
+
this.state = 784;
|
|
3632
3693
|
this.exploreQueryNameDef();
|
|
3633
|
-
this.state =
|
|
3694
|
+
this.state = 785;
|
|
3634
3695
|
this.isDefine();
|
|
3635
|
-
this.state =
|
|
3696
|
+
this.state = 786;
|
|
3636
3697
|
this.vExpr();
|
|
3637
3698
|
}
|
|
3638
3699
|
}
|
|
@@ -3656,132 +3717,132 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3656
3717
|
let _localctx = new QueryStatementContext(this._ctx, this.state);
|
|
3657
3718
|
this.enterRule(_localctx, 144, MalloyParser.RULE_queryStatement);
|
|
3658
3719
|
try {
|
|
3659
|
-
this.state =
|
|
3720
|
+
this.state = 806;
|
|
3660
3721
|
this._errHandler.sync(this);
|
|
3661
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
3722
|
+
switch (this.interpreter.adaptivePredict(this._input, 72, this._ctx)) {
|
|
3662
3723
|
case 1:
|
|
3663
3724
|
this.enterOuterAlt(_localctx, 1);
|
|
3664
3725
|
{
|
|
3665
|
-
this.state =
|
|
3726
|
+
this.state = 788;
|
|
3666
3727
|
this.groupByStatement();
|
|
3667
3728
|
}
|
|
3668
3729
|
break;
|
|
3669
3730
|
case 2:
|
|
3670
3731
|
this.enterOuterAlt(_localctx, 2);
|
|
3671
3732
|
{
|
|
3672
|
-
this.state =
|
|
3733
|
+
this.state = 789;
|
|
3673
3734
|
this.declareStatement();
|
|
3674
3735
|
}
|
|
3675
3736
|
break;
|
|
3676
3737
|
case 3:
|
|
3677
3738
|
this.enterOuterAlt(_localctx, 3);
|
|
3678
3739
|
{
|
|
3679
|
-
this.state =
|
|
3740
|
+
this.state = 790;
|
|
3680
3741
|
this.queryJoinStatement();
|
|
3681
3742
|
}
|
|
3682
3743
|
break;
|
|
3683
3744
|
case 4:
|
|
3684
3745
|
this.enterOuterAlt(_localctx, 4);
|
|
3685
3746
|
{
|
|
3686
|
-
this.state =
|
|
3747
|
+
this.state = 791;
|
|
3687
3748
|
this.queryExtend();
|
|
3688
3749
|
}
|
|
3689
3750
|
break;
|
|
3690
3751
|
case 5:
|
|
3691
3752
|
this.enterOuterAlt(_localctx, 5);
|
|
3692
3753
|
{
|
|
3693
|
-
this.state =
|
|
3754
|
+
this.state = 792;
|
|
3694
3755
|
this.projectStatement();
|
|
3695
3756
|
}
|
|
3696
3757
|
break;
|
|
3697
3758
|
case 6:
|
|
3698
3759
|
this.enterOuterAlt(_localctx, 6);
|
|
3699
3760
|
{
|
|
3700
|
-
this.state =
|
|
3761
|
+
this.state = 793;
|
|
3701
3762
|
this.indexStatement();
|
|
3702
3763
|
}
|
|
3703
3764
|
break;
|
|
3704
3765
|
case 7:
|
|
3705
3766
|
this.enterOuterAlt(_localctx, 7);
|
|
3706
3767
|
{
|
|
3707
|
-
this.state =
|
|
3768
|
+
this.state = 794;
|
|
3708
3769
|
this.aggregateStatement();
|
|
3709
3770
|
}
|
|
3710
3771
|
break;
|
|
3711
3772
|
case 8:
|
|
3712
3773
|
this.enterOuterAlt(_localctx, 8);
|
|
3713
3774
|
{
|
|
3714
|
-
this.state =
|
|
3775
|
+
this.state = 795;
|
|
3715
3776
|
this.calculateStatement();
|
|
3716
3777
|
}
|
|
3717
3778
|
break;
|
|
3718
3779
|
case 9:
|
|
3719
3780
|
this.enterOuterAlt(_localctx, 9);
|
|
3720
3781
|
{
|
|
3721
|
-
this.state =
|
|
3782
|
+
this.state = 796;
|
|
3722
3783
|
this.topStatement();
|
|
3723
3784
|
}
|
|
3724
3785
|
break;
|
|
3725
3786
|
case 10:
|
|
3726
3787
|
this.enterOuterAlt(_localctx, 10);
|
|
3727
3788
|
{
|
|
3728
|
-
this.state =
|
|
3789
|
+
this.state = 797;
|
|
3729
3790
|
this.limitStatement();
|
|
3730
3791
|
}
|
|
3731
3792
|
break;
|
|
3732
3793
|
case 11:
|
|
3733
3794
|
this.enterOuterAlt(_localctx, 11);
|
|
3734
3795
|
{
|
|
3735
|
-
this.state =
|
|
3796
|
+
this.state = 798;
|
|
3736
3797
|
this.orderByStatement();
|
|
3737
3798
|
}
|
|
3738
3799
|
break;
|
|
3739
3800
|
case 12:
|
|
3740
3801
|
this.enterOuterAlt(_localctx, 12);
|
|
3741
3802
|
{
|
|
3742
|
-
this.state =
|
|
3803
|
+
this.state = 799;
|
|
3743
3804
|
this.whereStatement();
|
|
3744
3805
|
}
|
|
3745
3806
|
break;
|
|
3746
3807
|
case 13:
|
|
3747
3808
|
this.enterOuterAlt(_localctx, 13);
|
|
3748
3809
|
{
|
|
3749
|
-
this.state =
|
|
3810
|
+
this.state = 800;
|
|
3750
3811
|
this.havingStatement();
|
|
3751
3812
|
}
|
|
3752
3813
|
break;
|
|
3753
3814
|
case 14:
|
|
3754
3815
|
this.enterOuterAlt(_localctx, 14);
|
|
3755
3816
|
{
|
|
3756
|
-
this.state =
|
|
3817
|
+
this.state = 801;
|
|
3757
3818
|
this.nestStatement();
|
|
3758
3819
|
}
|
|
3759
3820
|
break;
|
|
3760
3821
|
case 15:
|
|
3761
3822
|
this.enterOuterAlt(_localctx, 15);
|
|
3762
3823
|
{
|
|
3763
|
-
this.state =
|
|
3824
|
+
this.state = 802;
|
|
3764
3825
|
this.sampleStatement();
|
|
3765
3826
|
}
|
|
3766
3827
|
break;
|
|
3767
3828
|
case 16:
|
|
3768
3829
|
this.enterOuterAlt(_localctx, 16);
|
|
3769
3830
|
{
|
|
3770
|
-
this.state =
|
|
3831
|
+
this.state = 803;
|
|
3771
3832
|
this.timezoneStatement();
|
|
3772
3833
|
}
|
|
3773
3834
|
break;
|
|
3774
3835
|
case 17:
|
|
3775
3836
|
this.enterOuterAlt(_localctx, 17);
|
|
3776
3837
|
{
|
|
3777
|
-
this.state =
|
|
3838
|
+
this.state = 804;
|
|
3778
3839
|
this.queryAnnotation();
|
|
3779
3840
|
}
|
|
3780
3841
|
break;
|
|
3781
3842
|
case 18:
|
|
3782
3843
|
this.enterOuterAlt(_localctx, 18);
|
|
3783
3844
|
{
|
|
3784
|
-
this.state =
|
|
3845
|
+
this.state = 805;
|
|
3785
3846
|
this.ignoredModelAnnotations();
|
|
3786
3847
|
}
|
|
3787
3848
|
break;
|
|
@@ -3809,7 +3870,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3809
3870
|
try {
|
|
3810
3871
|
this.enterOuterAlt(_localctx, 1);
|
|
3811
3872
|
{
|
|
3812
|
-
this.state =
|
|
3873
|
+
this.state = 808;
|
|
3813
3874
|
this.joinStatement();
|
|
3814
3875
|
}
|
|
3815
3876
|
}
|
|
@@ -3835,11 +3896,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3835
3896
|
try {
|
|
3836
3897
|
this.enterOuterAlt(_localctx, 1);
|
|
3837
3898
|
{
|
|
3838
|
-
this.state =
|
|
3899
|
+
this.state = 810;
|
|
3839
3900
|
this.tags();
|
|
3840
|
-
this.state =
|
|
3901
|
+
this.state = 811;
|
|
3841
3902
|
this.match(MalloyParser.GROUP_BY);
|
|
3842
|
-
this.state =
|
|
3903
|
+
this.state = 812;
|
|
3843
3904
|
this.queryFieldList();
|
|
3844
3905
|
}
|
|
3845
3906
|
}
|
|
@@ -3867,39 +3928,39 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3867
3928
|
let _alt;
|
|
3868
3929
|
this.enterOuterAlt(_localctx, 1);
|
|
3869
3930
|
{
|
|
3870
|
-
this.state =
|
|
3931
|
+
this.state = 814;
|
|
3871
3932
|
this.queryFieldEntry();
|
|
3872
|
-
this.state =
|
|
3933
|
+
this.state = 821;
|
|
3873
3934
|
this._errHandler.sync(this);
|
|
3874
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
3935
|
+
_alt = this.interpreter.adaptivePredict(this._input, 74, this._ctx);
|
|
3875
3936
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
3876
3937
|
if (_alt === 1) {
|
|
3877
3938
|
{
|
|
3878
3939
|
{
|
|
3879
|
-
this.state =
|
|
3940
|
+
this.state = 816;
|
|
3880
3941
|
this._errHandler.sync(this);
|
|
3881
3942
|
_la = this._input.LA(1);
|
|
3882
3943
|
if (_la === MalloyParser.COMMA) {
|
|
3883
3944
|
{
|
|
3884
|
-
this.state =
|
|
3945
|
+
this.state = 815;
|
|
3885
3946
|
this.match(MalloyParser.COMMA);
|
|
3886
3947
|
}
|
|
3887
3948
|
}
|
|
3888
|
-
this.state =
|
|
3949
|
+
this.state = 818;
|
|
3889
3950
|
this.queryFieldEntry();
|
|
3890
3951
|
}
|
|
3891
3952
|
}
|
|
3892
3953
|
}
|
|
3893
|
-
this.state =
|
|
3954
|
+
this.state = 823;
|
|
3894
3955
|
this._errHandler.sync(this);
|
|
3895
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
3956
|
+
_alt = this.interpreter.adaptivePredict(this._input, 74, this._ctx);
|
|
3896
3957
|
}
|
|
3897
|
-
this.state =
|
|
3958
|
+
this.state = 825;
|
|
3898
3959
|
this._errHandler.sync(this);
|
|
3899
3960
|
_la = this._input.LA(1);
|
|
3900
3961
|
if (_la === MalloyParser.COMMA) {
|
|
3901
3962
|
{
|
|
3902
|
-
this.state =
|
|
3963
|
+
this.state = 824;
|
|
3903
3964
|
this.match(MalloyParser.COMMA);
|
|
3904
3965
|
}
|
|
3905
3966
|
}
|
|
@@ -3925,20 +3986,20 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3925
3986
|
let _localctx = new QueryFieldEntryContext(this._ctx, this.state);
|
|
3926
3987
|
this.enterRule(_localctx, 152, MalloyParser.RULE_queryFieldEntry);
|
|
3927
3988
|
try {
|
|
3928
|
-
this.state =
|
|
3989
|
+
this.state = 829;
|
|
3929
3990
|
this._errHandler.sync(this);
|
|
3930
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
3991
|
+
switch (this.interpreter.adaptivePredict(this._input, 76, this._ctx)) {
|
|
3931
3992
|
case 1:
|
|
3932
3993
|
this.enterOuterAlt(_localctx, 1);
|
|
3933
3994
|
{
|
|
3934
|
-
this.state =
|
|
3995
|
+
this.state = 827;
|
|
3935
3996
|
this.taggedRef();
|
|
3936
3997
|
}
|
|
3937
3998
|
break;
|
|
3938
3999
|
case 2:
|
|
3939
4000
|
this.enterOuterAlt(_localctx, 2);
|
|
3940
4001
|
{
|
|
3941
|
-
this.state =
|
|
4002
|
+
this.state = 828;
|
|
3942
4003
|
this.fieldDef();
|
|
3943
4004
|
}
|
|
3944
4005
|
break;
|
|
@@ -3966,11 +4027,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3966
4027
|
try {
|
|
3967
4028
|
this.enterOuterAlt(_localctx, 1);
|
|
3968
4029
|
{
|
|
3969
|
-
this.state =
|
|
4030
|
+
this.state = 831;
|
|
3970
4031
|
this.tags();
|
|
3971
|
-
this.state =
|
|
4032
|
+
this.state = 832;
|
|
3972
4033
|
this.match(MalloyParser.NEST);
|
|
3973
|
-
this.state =
|
|
4034
|
+
this.state = 833;
|
|
3974
4035
|
this.nestedQueryList();
|
|
3975
4036
|
}
|
|
3976
4037
|
}
|
|
@@ -3998,39 +4059,39 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
3998
4059
|
let _alt;
|
|
3999
4060
|
this.enterOuterAlt(_localctx, 1);
|
|
4000
4061
|
{
|
|
4001
|
-
this.state =
|
|
4062
|
+
this.state = 835;
|
|
4002
4063
|
this.nestEntry();
|
|
4003
|
-
this.state =
|
|
4064
|
+
this.state = 842;
|
|
4004
4065
|
this._errHandler.sync(this);
|
|
4005
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
4066
|
+
_alt = this.interpreter.adaptivePredict(this._input, 78, this._ctx);
|
|
4006
4067
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
4007
4068
|
if (_alt === 1) {
|
|
4008
4069
|
{
|
|
4009
4070
|
{
|
|
4010
|
-
this.state =
|
|
4071
|
+
this.state = 837;
|
|
4011
4072
|
this._errHandler.sync(this);
|
|
4012
4073
|
_la = this._input.LA(1);
|
|
4013
4074
|
if (_la === MalloyParser.COMMA) {
|
|
4014
4075
|
{
|
|
4015
|
-
this.state =
|
|
4076
|
+
this.state = 836;
|
|
4016
4077
|
this.match(MalloyParser.COMMA);
|
|
4017
4078
|
}
|
|
4018
4079
|
}
|
|
4019
|
-
this.state =
|
|
4080
|
+
this.state = 839;
|
|
4020
4081
|
this.nestEntry();
|
|
4021
4082
|
}
|
|
4022
4083
|
}
|
|
4023
4084
|
}
|
|
4024
|
-
this.state =
|
|
4085
|
+
this.state = 844;
|
|
4025
4086
|
this._errHandler.sync(this);
|
|
4026
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
4087
|
+
_alt = this.interpreter.adaptivePredict(this._input, 78, this._ctx);
|
|
4027
4088
|
}
|
|
4028
|
-
this.state =
|
|
4089
|
+
this.state = 846;
|
|
4029
4090
|
this._errHandler.sync(this);
|
|
4030
4091
|
_la = this._input.LA(1);
|
|
4031
4092
|
if (_la === MalloyParser.COMMA) {
|
|
4032
4093
|
{
|
|
4033
|
-
this.state =
|
|
4094
|
+
this.state = 845;
|
|
4034
4095
|
this.match(MalloyParser.COMMA);
|
|
4035
4096
|
}
|
|
4036
4097
|
}
|
|
@@ -4057,25 +4118,25 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4057
4118
|
this.enterRule(_localctx, 158, MalloyParser.RULE_nestEntry);
|
|
4058
4119
|
let _la;
|
|
4059
4120
|
try {
|
|
4060
|
-
this.state =
|
|
4121
|
+
this.state = 859;
|
|
4061
4122
|
this._errHandler.sync(this);
|
|
4062
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
4123
|
+
switch (this.interpreter.adaptivePredict(this._input, 81, this._ctx)) {
|
|
4063
4124
|
case 1:
|
|
4064
4125
|
_localctx = new NestExistingContext(_localctx);
|
|
4065
4126
|
this.enterOuterAlt(_localctx, 1);
|
|
4066
4127
|
{
|
|
4067
|
-
this.state =
|
|
4128
|
+
this.state = 848;
|
|
4068
4129
|
this.tags();
|
|
4069
|
-
this.state =
|
|
4130
|
+
this.state = 849;
|
|
4070
4131
|
this.fieldPath();
|
|
4071
|
-
this.state =
|
|
4132
|
+
this.state = 852;
|
|
4072
4133
|
this._errHandler.sync(this);
|
|
4073
4134
|
_la = this._input.LA(1);
|
|
4074
4135
|
if (_la === MalloyParser.PLUS) {
|
|
4075
4136
|
{
|
|
4076
|
-
this.state =
|
|
4137
|
+
this.state = 850;
|
|
4077
4138
|
this.match(MalloyParser.PLUS);
|
|
4078
|
-
this.state =
|
|
4139
|
+
this.state = 851;
|
|
4079
4140
|
this.vExpr();
|
|
4080
4141
|
}
|
|
4081
4142
|
}
|
|
@@ -4085,13 +4146,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4085
4146
|
_localctx = new NestDefContext(_localctx);
|
|
4086
4147
|
this.enterOuterAlt(_localctx, 2);
|
|
4087
4148
|
{
|
|
4088
|
-
this.state =
|
|
4149
|
+
this.state = 854;
|
|
4089
4150
|
this.tags();
|
|
4090
|
-
this.state =
|
|
4151
|
+
this.state = 855;
|
|
4091
4152
|
this.queryName();
|
|
4092
|
-
this.state =
|
|
4153
|
+
this.state = 856;
|
|
4093
4154
|
this.isDefine();
|
|
4094
|
-
this.state =
|
|
4155
|
+
this.state = 857;
|
|
4095
4156
|
this.vExpr();
|
|
4096
4157
|
}
|
|
4097
4158
|
break;
|
|
@@ -4119,11 +4180,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4119
4180
|
try {
|
|
4120
4181
|
this.enterOuterAlt(_localctx, 1);
|
|
4121
4182
|
{
|
|
4122
|
-
this.state =
|
|
4183
|
+
this.state = 861;
|
|
4123
4184
|
this.tags();
|
|
4124
|
-
this.state =
|
|
4185
|
+
this.state = 862;
|
|
4125
4186
|
this.match(MalloyParser.AGGREGATE);
|
|
4126
|
-
this.state =
|
|
4187
|
+
this.state = 863;
|
|
4127
4188
|
this.queryFieldList();
|
|
4128
4189
|
}
|
|
4129
4190
|
}
|
|
@@ -4149,11 +4210,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4149
4210
|
try {
|
|
4150
4211
|
this.enterOuterAlt(_localctx, 1);
|
|
4151
4212
|
{
|
|
4152
|
-
this.state =
|
|
4213
|
+
this.state = 865;
|
|
4153
4214
|
this.tags();
|
|
4154
|
-
this.state =
|
|
4215
|
+
this.state = 866;
|
|
4155
4216
|
this.match(MalloyParser.CALCULATE);
|
|
4156
|
-
this.state =
|
|
4217
|
+
this.state = 867;
|
|
4157
4218
|
this.queryFieldList();
|
|
4158
4219
|
}
|
|
4159
4220
|
}
|
|
@@ -4180,9 +4241,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4180
4241
|
try {
|
|
4181
4242
|
this.enterOuterAlt(_localctx, 1);
|
|
4182
4243
|
{
|
|
4183
|
-
this.state =
|
|
4244
|
+
this.state = 869;
|
|
4184
4245
|
this.tags();
|
|
4185
|
-
this.state =
|
|
4246
|
+
this.state = 870;
|
|
4186
4247
|
_la = this._input.LA(1);
|
|
4187
4248
|
if (!(_la === MalloyParser.PROJECT || _la === MalloyParser.SELECT)) {
|
|
4188
4249
|
this._errHandler.recoverInline(this);
|
|
@@ -4194,7 +4255,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4194
4255
|
this._errHandler.reportMatch(this);
|
|
4195
4256
|
this.consume();
|
|
4196
4257
|
}
|
|
4197
|
-
this.state =
|
|
4258
|
+
this.state = 871;
|
|
4198
4259
|
this.fieldCollection();
|
|
4199
4260
|
}
|
|
4200
4261
|
}
|
|
@@ -4222,34 +4283,34 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4222
4283
|
let _alt;
|
|
4223
4284
|
this.enterOuterAlt(_localctx, 1);
|
|
4224
4285
|
{
|
|
4225
|
-
this.state =
|
|
4286
|
+
this.state = 873;
|
|
4226
4287
|
this.match(MalloyParser.PARTITION_BY);
|
|
4227
|
-
this.state =
|
|
4288
|
+
this.state = 874;
|
|
4228
4289
|
this.id();
|
|
4229
|
-
this.state =
|
|
4290
|
+
this.state = 879;
|
|
4230
4291
|
this._errHandler.sync(this);
|
|
4231
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
4292
|
+
_alt = this.interpreter.adaptivePredict(this._input, 82, this._ctx);
|
|
4232
4293
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
4233
4294
|
if (_alt === 1) {
|
|
4234
4295
|
{
|
|
4235
4296
|
{
|
|
4236
|
-
this.state =
|
|
4297
|
+
this.state = 875;
|
|
4237
4298
|
this.match(MalloyParser.COMMA);
|
|
4238
|
-
this.state =
|
|
4299
|
+
this.state = 876;
|
|
4239
4300
|
this.id();
|
|
4240
4301
|
}
|
|
4241
4302
|
}
|
|
4242
4303
|
}
|
|
4243
|
-
this.state =
|
|
4304
|
+
this.state = 881;
|
|
4244
4305
|
this._errHandler.sync(this);
|
|
4245
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
4306
|
+
_alt = this.interpreter.adaptivePredict(this._input, 82, this._ctx);
|
|
4246
4307
|
}
|
|
4247
|
-
this.state =
|
|
4308
|
+
this.state = 883;
|
|
4248
4309
|
this._errHandler.sync(this);
|
|
4249
4310
|
_la = this._input.LA(1);
|
|
4250
4311
|
if (_la === MalloyParser.COMMA) {
|
|
4251
4312
|
{
|
|
4252
|
-
this.state =
|
|
4313
|
+
this.state = 882;
|
|
4253
4314
|
this.match(MalloyParser.COMMA);
|
|
4254
4315
|
}
|
|
4255
4316
|
}
|
|
@@ -4277,9 +4338,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4277
4338
|
try {
|
|
4278
4339
|
this.enterOuterAlt(_localctx, 1);
|
|
4279
4340
|
{
|
|
4280
|
-
this.state =
|
|
4341
|
+
this.state = 885;
|
|
4281
4342
|
this.match(MalloyParser.ORDER_BY);
|
|
4282
|
-
this.state =
|
|
4343
|
+
this.state = 886;
|
|
4283
4344
|
this.ordering();
|
|
4284
4345
|
}
|
|
4285
4346
|
}
|
|
@@ -4307,39 +4368,39 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4307
4368
|
let _alt;
|
|
4308
4369
|
this.enterOuterAlt(_localctx, 1);
|
|
4309
4370
|
{
|
|
4310
|
-
this.state =
|
|
4371
|
+
this.state = 888;
|
|
4311
4372
|
this.orderBySpec();
|
|
4312
|
-
this.state =
|
|
4373
|
+
this.state = 895;
|
|
4313
4374
|
this._errHandler.sync(this);
|
|
4314
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
4375
|
+
_alt = this.interpreter.adaptivePredict(this._input, 85, this._ctx);
|
|
4315
4376
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
4316
4377
|
if (_alt === 1) {
|
|
4317
4378
|
{
|
|
4318
4379
|
{
|
|
4319
|
-
this.state =
|
|
4380
|
+
this.state = 890;
|
|
4320
4381
|
this._errHandler.sync(this);
|
|
4321
4382
|
_la = this._input.LA(1);
|
|
4322
4383
|
if (_la === MalloyParser.COMMA) {
|
|
4323
4384
|
{
|
|
4324
|
-
this.state =
|
|
4385
|
+
this.state = 889;
|
|
4325
4386
|
this.match(MalloyParser.COMMA);
|
|
4326
4387
|
}
|
|
4327
4388
|
}
|
|
4328
|
-
this.state =
|
|
4389
|
+
this.state = 892;
|
|
4329
4390
|
this.orderBySpec();
|
|
4330
4391
|
}
|
|
4331
4392
|
}
|
|
4332
4393
|
}
|
|
4333
|
-
this.state =
|
|
4394
|
+
this.state = 897;
|
|
4334
4395
|
this._errHandler.sync(this);
|
|
4335
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
4396
|
+
_alt = this.interpreter.adaptivePredict(this._input, 85, this._ctx);
|
|
4336
4397
|
}
|
|
4337
|
-
this.state =
|
|
4398
|
+
this.state = 899;
|
|
4338
4399
|
this._errHandler.sync(this);
|
|
4339
4400
|
_la = this._input.LA(1);
|
|
4340
4401
|
if (_la === MalloyParser.COMMA) {
|
|
4341
4402
|
{
|
|
4342
|
-
this.state =
|
|
4403
|
+
this.state = 898;
|
|
4343
4404
|
this.match(MalloyParser.COMMA);
|
|
4344
4405
|
}
|
|
4345
4406
|
}
|
|
@@ -4368,31 +4429,31 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4368
4429
|
try {
|
|
4369
4430
|
this.enterOuterAlt(_localctx, 1);
|
|
4370
4431
|
{
|
|
4371
|
-
this.state =
|
|
4432
|
+
this.state = 903;
|
|
4372
4433
|
this._errHandler.sync(this);
|
|
4373
4434
|
switch (this._input.LA(1)) {
|
|
4374
4435
|
case MalloyParser.INTEGER_LITERAL:
|
|
4375
4436
|
{
|
|
4376
|
-
this.state =
|
|
4437
|
+
this.state = 901;
|
|
4377
4438
|
this.match(MalloyParser.INTEGER_LITERAL);
|
|
4378
4439
|
}
|
|
4379
4440
|
break;
|
|
4380
4441
|
case MalloyParser.BQ_STRING:
|
|
4381
4442
|
case MalloyParser.IDENTIFIER:
|
|
4382
4443
|
{
|
|
4383
|
-
this.state =
|
|
4444
|
+
this.state = 902;
|
|
4384
4445
|
this.fieldName();
|
|
4385
4446
|
}
|
|
4386
4447
|
break;
|
|
4387
4448
|
default:
|
|
4388
4449
|
throw new NoViableAltException_1.NoViableAltException(this);
|
|
4389
4450
|
}
|
|
4390
|
-
this.state =
|
|
4451
|
+
this.state = 906;
|
|
4391
4452
|
this._errHandler.sync(this);
|
|
4392
4453
|
_la = this._input.LA(1);
|
|
4393
4454
|
if (_la === MalloyParser.ASC || _la === MalloyParser.DESC) {
|
|
4394
4455
|
{
|
|
4395
|
-
this.state =
|
|
4456
|
+
this.state = 905;
|
|
4396
4457
|
_la = this._input.LA(1);
|
|
4397
4458
|
if (!(_la === MalloyParser.ASC || _la === MalloyParser.DESC)) {
|
|
4398
4459
|
this._errHandler.recoverInline(this);
|
|
@@ -4430,9 +4491,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4430
4491
|
try {
|
|
4431
4492
|
this.enterOuterAlt(_localctx, 1);
|
|
4432
4493
|
{
|
|
4433
|
-
this.state =
|
|
4494
|
+
this.state = 908;
|
|
4434
4495
|
this.match(MalloyParser.LIMIT);
|
|
4435
|
-
this.state =
|
|
4496
|
+
this.state = 909;
|
|
4436
4497
|
this.match(MalloyParser.INTEGER_LITERAL);
|
|
4437
4498
|
}
|
|
4438
4499
|
}
|
|
@@ -4456,24 +4517,24 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4456
4517
|
let _localctx = new BySpecContext(this._ctx, this.state);
|
|
4457
4518
|
this.enterRule(_localctx, 176, MalloyParser.RULE_bySpec);
|
|
4458
4519
|
try {
|
|
4459
|
-
this.state =
|
|
4520
|
+
this.state = 915;
|
|
4460
4521
|
this._errHandler.sync(this);
|
|
4461
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
4522
|
+
switch (this.interpreter.adaptivePredict(this._input, 89, this._ctx)) {
|
|
4462
4523
|
case 1:
|
|
4463
4524
|
this.enterOuterAlt(_localctx, 1);
|
|
4464
4525
|
{
|
|
4465
|
-
this.state =
|
|
4526
|
+
this.state = 911;
|
|
4466
4527
|
this.match(MalloyParser.BY);
|
|
4467
|
-
this.state =
|
|
4528
|
+
this.state = 912;
|
|
4468
4529
|
this.fieldName();
|
|
4469
4530
|
}
|
|
4470
4531
|
break;
|
|
4471
4532
|
case 2:
|
|
4472
4533
|
this.enterOuterAlt(_localctx, 2);
|
|
4473
4534
|
{
|
|
4474
|
-
this.state =
|
|
4535
|
+
this.state = 913;
|
|
4475
4536
|
this.match(MalloyParser.BY);
|
|
4476
|
-
this.state =
|
|
4537
|
+
this.state = 914;
|
|
4477
4538
|
this.fieldExpr(0);
|
|
4478
4539
|
}
|
|
4479
4540
|
break;
|
|
@@ -4502,16 +4563,16 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4502
4563
|
try {
|
|
4503
4564
|
this.enterOuterAlt(_localctx, 1);
|
|
4504
4565
|
{
|
|
4505
|
-
this.state =
|
|
4566
|
+
this.state = 917;
|
|
4506
4567
|
this.match(MalloyParser.TOP);
|
|
4507
|
-
this.state =
|
|
4568
|
+
this.state = 918;
|
|
4508
4569
|
this.match(MalloyParser.INTEGER_LITERAL);
|
|
4509
|
-
this.state =
|
|
4570
|
+
this.state = 920;
|
|
4510
4571
|
this._errHandler.sync(this);
|
|
4511
4572
|
_la = this._input.LA(1);
|
|
4512
4573
|
if (_la === MalloyParser.BY) {
|
|
4513
4574
|
{
|
|
4514
|
-
this.state =
|
|
4575
|
+
this.state = 919;
|
|
4515
4576
|
this.bySpec();
|
|
4516
4577
|
}
|
|
4517
4578
|
}
|
|
@@ -4538,23 +4599,23 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4538
4599
|
this.enterRule(_localctx, 180, MalloyParser.RULE_indexElement);
|
|
4539
4600
|
let _la;
|
|
4540
4601
|
try {
|
|
4541
|
-
this.state =
|
|
4602
|
+
this.state = 928;
|
|
4542
4603
|
this._errHandler.sync(this);
|
|
4543
4604
|
switch (this._input.LA(1)) {
|
|
4544
4605
|
case MalloyParser.BQ_STRING:
|
|
4545
4606
|
case MalloyParser.IDENTIFIER:
|
|
4546
4607
|
this.enterOuterAlt(_localctx, 1);
|
|
4547
4608
|
{
|
|
4548
|
-
this.state =
|
|
4609
|
+
this.state = 922;
|
|
4549
4610
|
this.fieldPath();
|
|
4550
|
-
this.state =
|
|
4611
|
+
this.state = 925;
|
|
4551
4612
|
this._errHandler.sync(this);
|
|
4552
4613
|
_la = this._input.LA(1);
|
|
4553
4614
|
if (_la === MalloyParser.DOT) {
|
|
4554
4615
|
{
|
|
4555
|
-
this.state =
|
|
4616
|
+
this.state = 923;
|
|
4556
4617
|
this.match(MalloyParser.DOT);
|
|
4557
|
-
this.state =
|
|
4618
|
+
this.state = 924;
|
|
4558
4619
|
this.match(MalloyParser.STAR);
|
|
4559
4620
|
}
|
|
4560
4621
|
}
|
|
@@ -4563,7 +4624,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4563
4624
|
case MalloyParser.STAR:
|
|
4564
4625
|
this.enterOuterAlt(_localctx, 2);
|
|
4565
4626
|
{
|
|
4566
|
-
this.state =
|
|
4627
|
+
this.state = 927;
|
|
4567
4628
|
this.match(MalloyParser.STAR);
|
|
4568
4629
|
}
|
|
4569
4630
|
break;
|
|
@@ -4595,32 +4656,32 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4595
4656
|
let _alt;
|
|
4596
4657
|
this.enterOuterAlt(_localctx, 1);
|
|
4597
4658
|
{
|
|
4598
|
-
this.state =
|
|
4659
|
+
this.state = 930;
|
|
4599
4660
|
this.indexElement();
|
|
4600
|
-
this.state =
|
|
4661
|
+
this.state = 937;
|
|
4601
4662
|
this._errHandler.sync(this);
|
|
4602
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
4663
|
+
_alt = this.interpreter.adaptivePredict(this._input, 94, this._ctx);
|
|
4603
4664
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
4604
4665
|
if (_alt === 1) {
|
|
4605
4666
|
{
|
|
4606
4667
|
{
|
|
4607
|
-
this.state =
|
|
4668
|
+
this.state = 932;
|
|
4608
4669
|
this._errHandler.sync(this);
|
|
4609
4670
|
_la = this._input.LA(1);
|
|
4610
4671
|
if (_la === MalloyParser.COMMA) {
|
|
4611
4672
|
{
|
|
4612
|
-
this.state =
|
|
4673
|
+
this.state = 931;
|
|
4613
4674
|
this.match(MalloyParser.COMMA);
|
|
4614
4675
|
}
|
|
4615
4676
|
}
|
|
4616
|
-
this.state =
|
|
4677
|
+
this.state = 934;
|
|
4617
4678
|
this.indexElement();
|
|
4618
4679
|
}
|
|
4619
4680
|
}
|
|
4620
4681
|
}
|
|
4621
|
-
this.state =
|
|
4682
|
+
this.state = 939;
|
|
4622
4683
|
this._errHandler.sync(this);
|
|
4623
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
4684
|
+
_alt = this.interpreter.adaptivePredict(this._input, 94, this._ctx);
|
|
4624
4685
|
}
|
|
4625
4686
|
}
|
|
4626
4687
|
}
|
|
@@ -4647,18 +4708,18 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4647
4708
|
try {
|
|
4648
4709
|
this.enterOuterAlt(_localctx, 1);
|
|
4649
4710
|
{
|
|
4650
|
-
this.state =
|
|
4711
|
+
this.state = 940;
|
|
4651
4712
|
this.match(MalloyParser.INDEX);
|
|
4652
|
-
this.state =
|
|
4713
|
+
this.state = 941;
|
|
4653
4714
|
this.indexFields();
|
|
4654
|
-
this.state =
|
|
4715
|
+
this.state = 944;
|
|
4655
4716
|
this._errHandler.sync(this);
|
|
4656
4717
|
_la = this._input.LA(1);
|
|
4657
4718
|
if (_la === MalloyParser.BY) {
|
|
4658
4719
|
{
|
|
4659
|
-
this.state =
|
|
4720
|
+
this.state = 942;
|
|
4660
4721
|
this.match(MalloyParser.BY);
|
|
4661
|
-
this.state =
|
|
4722
|
+
this.state = 943;
|
|
4662
4723
|
this.fieldName();
|
|
4663
4724
|
}
|
|
4664
4725
|
}
|
|
@@ -4686,9 +4747,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4686
4747
|
try {
|
|
4687
4748
|
this.enterOuterAlt(_localctx, 1);
|
|
4688
4749
|
{
|
|
4689
|
-
this.state =
|
|
4750
|
+
this.state = 946;
|
|
4690
4751
|
this.match(MalloyParser.SAMPLE);
|
|
4691
|
-
this.state =
|
|
4752
|
+
this.state = 947;
|
|
4692
4753
|
this.sampleSpec();
|
|
4693
4754
|
}
|
|
4694
4755
|
}
|
|
@@ -4714,9 +4775,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4714
4775
|
try {
|
|
4715
4776
|
this.enterOuterAlt(_localctx, 1);
|
|
4716
4777
|
{
|
|
4717
|
-
this.state =
|
|
4778
|
+
this.state = 949;
|
|
4718
4779
|
this.match(MalloyParser.TIMEZONE);
|
|
4719
|
-
this.state =
|
|
4780
|
+
this.state = 950;
|
|
4720
4781
|
this.string();
|
|
4721
4782
|
}
|
|
4722
4783
|
}
|
|
@@ -4742,7 +4803,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4742
4803
|
try {
|
|
4743
4804
|
this.enterOuterAlt(_localctx, 1);
|
|
4744
4805
|
{
|
|
4745
|
-
this.state =
|
|
4806
|
+
this.state = 952;
|
|
4746
4807
|
this.match(MalloyParser.ANNOTATION);
|
|
4747
4808
|
}
|
|
4748
4809
|
}
|
|
@@ -4769,7 +4830,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4769
4830
|
try {
|
|
4770
4831
|
this.enterOuterAlt(_localctx, 1);
|
|
4771
4832
|
{
|
|
4772
|
-
this.state =
|
|
4833
|
+
this.state = 954;
|
|
4773
4834
|
_la = this._input.LA(1);
|
|
4774
4835
|
if (!(_la === MalloyParser.FALSE || _la === MalloyParser.TRUE || _la === MalloyParser.PERCENT_LITERAL || _la === MalloyParser.INTEGER_LITERAL)) {
|
|
4775
4836
|
this._errHandler.recoverInline(this);
|
|
@@ -4806,7 +4867,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4806
4867
|
try {
|
|
4807
4868
|
this.enterOuterAlt(_localctx, 1);
|
|
4808
4869
|
{
|
|
4809
|
-
this.state =
|
|
4870
|
+
this.state = 956;
|
|
4810
4871
|
_la = this._input.LA(1);
|
|
4811
4872
|
if (!(((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & ((1 << (MalloyParser.AVG - 38)) | (1 << (MalloyParser.COUNT - 38)) | (1 << (MalloyParser.MAX - 38)) | (1 << (MalloyParser.MIN - 38)))) !== 0) || _la === MalloyParser.SUM)) {
|
|
4812
4873
|
this._errHandler.recoverInline(this);
|
|
@@ -4843,7 +4904,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4843
4904
|
try {
|
|
4844
4905
|
this.enterOuterAlt(_localctx, 1);
|
|
4845
4906
|
{
|
|
4846
|
-
this.state =
|
|
4907
|
+
this.state = 958;
|
|
4847
4908
|
_la = this._input.LA(1);
|
|
4848
4909
|
if (!(_la === MalloyParser.BOOLEAN || _la === MalloyParser.DATE || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & ((1 << (MalloyParser.NUMBER - 73)) | (1 << (MalloyParser.STRING - 73)) | (1 << (MalloyParser.TIMESTAMP - 73)))) !== 0))) {
|
|
4849
4910
|
this._errHandler.recoverInline(this);
|
|
@@ -4880,7 +4941,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4880
4941
|
try {
|
|
4881
4942
|
this.enterOuterAlt(_localctx, 1);
|
|
4882
4943
|
{
|
|
4883
|
-
this.state =
|
|
4944
|
+
this.state = 960;
|
|
4884
4945
|
_la = this._input.LA(1);
|
|
4885
4946
|
if (!(((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & ((1 << (MalloyParser.LT - 118)) | (1 << (MalloyParser.GT - 118)) | (1 << (MalloyParser.EQ - 118)) | (1 << (MalloyParser.NE - 118)) | (1 << (MalloyParser.LTE - 118)) | (1 << (MalloyParser.GTE - 118)) | (1 << (MalloyParser.NOT_MATCH - 118)) | (1 << (MalloyParser.MATCH - 118)))) !== 0))) {
|
|
4886
4947
|
this._errHandler.recoverInline(this);
|
|
@@ -4914,21 +4975,21 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4914
4975
|
let _localctx = new StringContext(this._ctx, this.state);
|
|
4915
4976
|
this.enterRule(_localctx, 200, MalloyParser.RULE_string);
|
|
4916
4977
|
try {
|
|
4917
|
-
this.state =
|
|
4978
|
+
this.state = 964;
|
|
4918
4979
|
this._errHandler.sync(this);
|
|
4919
4980
|
switch (this._input.LA(1)) {
|
|
4920
4981
|
case MalloyParser.SQ_STRING:
|
|
4921
4982
|
case MalloyParser.DQ_STRING:
|
|
4922
4983
|
this.enterOuterAlt(_localctx, 1);
|
|
4923
4984
|
{
|
|
4924
|
-
this.state =
|
|
4985
|
+
this.state = 962;
|
|
4925
4986
|
this.shortString();
|
|
4926
4987
|
}
|
|
4927
4988
|
break;
|
|
4928
4989
|
case MalloyParser.SQL_BEGIN:
|
|
4929
4990
|
this.enterOuterAlt(_localctx, 2);
|
|
4930
4991
|
{
|
|
4931
|
-
this.state =
|
|
4992
|
+
this.state = 963;
|
|
4932
4993
|
this.sqlString();
|
|
4933
4994
|
}
|
|
4934
4995
|
break;
|
|
@@ -4959,7 +5020,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4959
5020
|
try {
|
|
4960
5021
|
this.enterOuterAlt(_localctx, 1);
|
|
4961
5022
|
{
|
|
4962
|
-
this.state =
|
|
5023
|
+
this.state = 966;
|
|
4963
5024
|
_la = this._input.LA(1);
|
|
4964
5025
|
if (!(_la === MalloyParser.SQ_STRING || _la === MalloyParser.DQ_STRING)) {
|
|
4965
5026
|
this._errHandler.recoverInline(this);
|
|
@@ -4996,7 +5057,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
4996
5057
|
try {
|
|
4997
5058
|
this.enterOuterAlt(_localctx, 1);
|
|
4998
5059
|
{
|
|
4999
|
-
this.state =
|
|
5060
|
+
this.state = 968;
|
|
5000
5061
|
_la = this._input.LA(1);
|
|
5001
5062
|
if (!(_la === MalloyParser.NUMERIC_LITERAL || _la === MalloyParser.INTEGER_LITERAL)) {
|
|
5002
5063
|
this._errHandler.recoverInline(this);
|
|
@@ -5031,7 +5092,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5031
5092
|
this.enterRule(_localctx, 206, MalloyParser.RULE_literal);
|
|
5032
5093
|
let _la;
|
|
5033
5094
|
try {
|
|
5034
|
-
this.state =
|
|
5095
|
+
this.state = 977;
|
|
5035
5096
|
this._errHandler.sync(this);
|
|
5036
5097
|
switch (this._input.LA(1)) {
|
|
5037
5098
|
case MalloyParser.SQ_STRING:
|
|
@@ -5040,7 +5101,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5040
5101
|
_localctx = new ExprStringContext(_localctx);
|
|
5041
5102
|
this.enterOuterAlt(_localctx, 1);
|
|
5042
5103
|
{
|
|
5043
|
-
this.state =
|
|
5104
|
+
this.state = 970;
|
|
5044
5105
|
this.string();
|
|
5045
5106
|
}
|
|
5046
5107
|
break;
|
|
@@ -5049,7 +5110,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5049
5110
|
_localctx = new ExprNumberContext(_localctx);
|
|
5050
5111
|
this.enterOuterAlt(_localctx, 2);
|
|
5051
5112
|
{
|
|
5052
|
-
this.state =
|
|
5113
|
+
this.state = 971;
|
|
5053
5114
|
this.numericLiteral();
|
|
5054
5115
|
}
|
|
5055
5116
|
break;
|
|
@@ -5063,7 +5124,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5063
5124
|
_localctx = new ExprTimeContext(_localctx);
|
|
5064
5125
|
this.enterOuterAlt(_localctx, 3);
|
|
5065
5126
|
{
|
|
5066
|
-
this.state =
|
|
5127
|
+
this.state = 972;
|
|
5067
5128
|
this.dateLiteral();
|
|
5068
5129
|
}
|
|
5069
5130
|
break;
|
|
@@ -5071,7 +5132,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5071
5132
|
_localctx = new ExprNULLContext(_localctx);
|
|
5072
5133
|
this.enterOuterAlt(_localctx, 4);
|
|
5073
5134
|
{
|
|
5074
|
-
this.state =
|
|
5135
|
+
this.state = 973;
|
|
5075
5136
|
this.match(MalloyParser.NULL);
|
|
5076
5137
|
}
|
|
5077
5138
|
break;
|
|
@@ -5080,7 +5141,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5080
5141
|
_localctx = new ExprBoolContext(_localctx);
|
|
5081
5142
|
this.enterOuterAlt(_localctx, 5);
|
|
5082
5143
|
{
|
|
5083
|
-
this.state =
|
|
5144
|
+
this.state = 974;
|
|
5084
5145
|
_la = this._input.LA(1);
|
|
5085
5146
|
if (!(_la === MalloyParser.FALSE || _la === MalloyParser.TRUE)) {
|
|
5086
5147
|
this._errHandler.recoverInline(this);
|
|
@@ -5098,7 +5159,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5098
5159
|
_localctx = new ExprRegexContext(_localctx);
|
|
5099
5160
|
this.enterOuterAlt(_localctx, 6);
|
|
5100
5161
|
{
|
|
5101
|
-
this.state =
|
|
5162
|
+
this.state = 975;
|
|
5102
5163
|
this.match(MalloyParser.HACKY_REGEX);
|
|
5103
5164
|
}
|
|
5104
5165
|
break;
|
|
@@ -5106,7 +5167,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5106
5167
|
_localctx = new ExprNowContext(_localctx);
|
|
5107
5168
|
this.enterOuterAlt(_localctx, 7);
|
|
5108
5169
|
{
|
|
5109
|
-
this.state =
|
|
5170
|
+
this.state = 976;
|
|
5110
5171
|
this.match(MalloyParser.NOW);
|
|
5111
5172
|
}
|
|
5112
5173
|
break;
|
|
@@ -5134,14 +5195,14 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5134
5195
|
let _localctx = new DateLiteralContext(this._ctx, this.state);
|
|
5135
5196
|
this.enterRule(_localctx, 208, MalloyParser.RULE_dateLiteral);
|
|
5136
5197
|
try {
|
|
5137
|
-
this.state =
|
|
5198
|
+
this.state = 986;
|
|
5138
5199
|
this._errHandler.sync(this);
|
|
5139
5200
|
switch (this._input.LA(1)) {
|
|
5140
5201
|
case MalloyParser.LITERAL_TIMESTAMP:
|
|
5141
5202
|
_localctx = new LiteralTimestampContext(_localctx);
|
|
5142
5203
|
this.enterOuterAlt(_localctx, 1);
|
|
5143
5204
|
{
|
|
5144
|
-
this.state =
|
|
5205
|
+
this.state = 979;
|
|
5145
5206
|
this.match(MalloyParser.LITERAL_TIMESTAMP);
|
|
5146
5207
|
}
|
|
5147
5208
|
break;
|
|
@@ -5149,7 +5210,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5149
5210
|
_localctx = new LiteralHourContext(_localctx);
|
|
5150
5211
|
this.enterOuterAlt(_localctx, 2);
|
|
5151
5212
|
{
|
|
5152
|
-
this.state =
|
|
5213
|
+
this.state = 980;
|
|
5153
5214
|
this.match(MalloyParser.LITERAL_HOUR);
|
|
5154
5215
|
}
|
|
5155
5216
|
break;
|
|
@@ -5157,7 +5218,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5157
5218
|
_localctx = new LiteralDayContext(_localctx);
|
|
5158
5219
|
this.enterOuterAlt(_localctx, 3);
|
|
5159
5220
|
{
|
|
5160
|
-
this.state =
|
|
5221
|
+
this.state = 981;
|
|
5161
5222
|
this.match(MalloyParser.LITERAL_DAY);
|
|
5162
5223
|
}
|
|
5163
5224
|
break;
|
|
@@ -5165,7 +5226,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5165
5226
|
_localctx = new LiteralWeekContext(_localctx);
|
|
5166
5227
|
this.enterOuterAlt(_localctx, 4);
|
|
5167
5228
|
{
|
|
5168
|
-
this.state =
|
|
5229
|
+
this.state = 982;
|
|
5169
5230
|
this.match(MalloyParser.LITERAL_WEEK);
|
|
5170
5231
|
}
|
|
5171
5232
|
break;
|
|
@@ -5173,7 +5234,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5173
5234
|
_localctx = new LiteralMonthContext(_localctx);
|
|
5174
5235
|
this.enterOuterAlt(_localctx, 5);
|
|
5175
5236
|
{
|
|
5176
|
-
this.state =
|
|
5237
|
+
this.state = 983;
|
|
5177
5238
|
this.match(MalloyParser.LITERAL_MONTH);
|
|
5178
5239
|
}
|
|
5179
5240
|
break;
|
|
@@ -5181,7 +5242,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5181
5242
|
_localctx = new LiteralQuarterContext(_localctx);
|
|
5182
5243
|
this.enterOuterAlt(_localctx, 6);
|
|
5183
5244
|
{
|
|
5184
|
-
this.state =
|
|
5245
|
+
this.state = 984;
|
|
5185
5246
|
this.match(MalloyParser.LITERAL_QUARTER);
|
|
5186
5247
|
}
|
|
5187
5248
|
break;
|
|
@@ -5189,7 +5250,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5189
5250
|
_localctx = new LiteralYearContext(_localctx);
|
|
5190
5251
|
this.enterOuterAlt(_localctx, 7);
|
|
5191
5252
|
{
|
|
5192
|
-
this.state =
|
|
5253
|
+
this.state = 985;
|
|
5193
5254
|
this.match(MalloyParser.LITERAL_YEAR);
|
|
5194
5255
|
}
|
|
5195
5256
|
break;
|
|
@@ -5219,7 +5280,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5219
5280
|
try {
|
|
5220
5281
|
this.enterOuterAlt(_localctx, 1);
|
|
5221
5282
|
{
|
|
5222
|
-
this.state =
|
|
5283
|
+
this.state = 988;
|
|
5223
5284
|
this.string();
|
|
5224
5285
|
}
|
|
5225
5286
|
}
|
|
@@ -5245,7 +5306,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5245
5306
|
try {
|
|
5246
5307
|
this.enterOuterAlt(_localctx, 1);
|
|
5247
5308
|
{
|
|
5248
|
-
this.state =
|
|
5309
|
+
this.state = 990;
|
|
5249
5310
|
this.string();
|
|
5250
5311
|
}
|
|
5251
5312
|
}
|
|
@@ -5272,7 +5333,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5272
5333
|
try {
|
|
5273
5334
|
this.enterOuterAlt(_localctx, 1);
|
|
5274
5335
|
{
|
|
5275
|
-
this.state =
|
|
5336
|
+
this.state = 992;
|
|
5276
5337
|
_la = this._input.LA(1);
|
|
5277
5338
|
if (!(_la === MalloyParser.BQ_STRING || _la === MalloyParser.IDENTIFIER)) {
|
|
5278
5339
|
this._errHandler.recoverInline(this);
|
|
@@ -5309,7 +5370,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5309
5370
|
try {
|
|
5310
5371
|
this.enterOuterAlt(_localctx, 1);
|
|
5311
5372
|
{
|
|
5312
|
-
this.state =
|
|
5373
|
+
this.state = 994;
|
|
5313
5374
|
_la = this._input.LA(1);
|
|
5314
5375
|
if (!(((((_la - 46)) & ~0x1F) === 0 && ((1 << (_la - 46)) & ((1 << (MalloyParser.DAY - 46)) | (1 << (MalloyParser.HOUR - 46)) | (1 << (MalloyParser.MINUTE - 46)) | (1 << (MalloyParser.MONTH - 46)) | (1 << (MalloyParser.QUARTER - 46)))) !== 0) || ((((_la - 79)) & ~0x1F) === 0 && ((1 << (_la - 79)) & ((1 << (MalloyParser.SECOND - 79)) | (1 << (MalloyParser.WEEK - 79)) | (1 << (MalloyParser.YEAR - 79)))) !== 0))) {
|
|
5315
5376
|
this._errHandler.recoverInline(this);
|
|
@@ -5346,7 +5407,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5346
5407
|
try {
|
|
5347
5408
|
this.enterOuterAlt(_localctx, 1);
|
|
5348
5409
|
{
|
|
5349
|
-
this.state =
|
|
5410
|
+
this.state = 996;
|
|
5350
5411
|
_la = this._input.LA(1);
|
|
5351
5412
|
if (!(_la === MalloyParser.ALL || _la === MalloyParser.EXCLUDE)) {
|
|
5352
5413
|
this._errHandler.recoverInline(this);
|
|
@@ -5380,7 +5441,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5380
5441
|
let _localctx = new MalloyOrSQLTypeContext(this._ctx, this.state);
|
|
5381
5442
|
this.enterRule(_localctx, 220, MalloyParser.RULE_malloyOrSQLType);
|
|
5382
5443
|
try {
|
|
5383
|
-
this.state =
|
|
5444
|
+
this.state = 1000;
|
|
5384
5445
|
this._errHandler.sync(this);
|
|
5385
5446
|
switch (this._input.LA(1)) {
|
|
5386
5447
|
case MalloyParser.BOOLEAN:
|
|
@@ -5390,7 +5451,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5390
5451
|
case MalloyParser.TIMESTAMP:
|
|
5391
5452
|
this.enterOuterAlt(_localctx, 1);
|
|
5392
5453
|
{
|
|
5393
|
-
this.state =
|
|
5454
|
+
this.state = 998;
|
|
5394
5455
|
this.malloyType();
|
|
5395
5456
|
}
|
|
5396
5457
|
break;
|
|
@@ -5399,7 +5460,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5399
5460
|
case MalloyParser.SQL_BEGIN:
|
|
5400
5461
|
this.enterOuterAlt(_localctx, 2);
|
|
5401
5462
|
{
|
|
5402
|
-
this.state =
|
|
5463
|
+
this.state = 999;
|
|
5403
5464
|
this.string();
|
|
5404
5465
|
}
|
|
5405
5466
|
break;
|
|
@@ -5438,15 +5499,15 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5438
5499
|
let _alt;
|
|
5439
5500
|
this.enterOuterAlt(_localctx, 1);
|
|
5440
5501
|
{
|
|
5441
|
-
this.state =
|
|
5502
|
+
this.state = 1085;
|
|
5442
5503
|
this._errHandler.sync(this);
|
|
5443
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
5504
|
+
switch (this.interpreter.adaptivePredict(this._input, 109, this._ctx)) {
|
|
5444
5505
|
case 1:
|
|
5445
5506
|
{
|
|
5446
5507
|
_localctx = new ExprFieldPathContext(_localctx);
|
|
5447
5508
|
this._ctx = _localctx;
|
|
5448
5509
|
_prevctx = _localctx;
|
|
5449
|
-
this.state =
|
|
5510
|
+
this.state = 1003;
|
|
5450
5511
|
this.fieldPath();
|
|
5451
5512
|
}
|
|
5452
5513
|
break;
|
|
@@ -5455,7 +5516,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5455
5516
|
_localctx = new ExprLiteralContext(_localctx);
|
|
5456
5517
|
this._ctx = _localctx;
|
|
5457
5518
|
_prevctx = _localctx;
|
|
5458
|
-
this.state =
|
|
5519
|
+
this.state = 1004;
|
|
5459
5520
|
this.literal();
|
|
5460
5521
|
}
|
|
5461
5522
|
break;
|
|
@@ -5464,9 +5525,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5464
5525
|
_localctx = new ExprMinusContext(_localctx);
|
|
5465
5526
|
this._ctx = _localctx;
|
|
5466
5527
|
_prevctx = _localctx;
|
|
5467
|
-
this.state =
|
|
5528
|
+
this.state = 1005;
|
|
5468
5529
|
this.match(MalloyParser.MINUS);
|
|
5469
|
-
this.state =
|
|
5530
|
+
this.state = 1006;
|
|
5470
5531
|
this.fieldExpr(22);
|
|
5471
5532
|
}
|
|
5472
5533
|
break;
|
|
@@ -5475,9 +5536,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5475
5536
|
_localctx = new ExprNotContext(_localctx);
|
|
5476
5537
|
this._ctx = _localctx;
|
|
5477
5538
|
_prevctx = _localctx;
|
|
5478
|
-
this.state =
|
|
5539
|
+
this.state = 1007;
|
|
5479
5540
|
this.match(MalloyParser.NOT);
|
|
5480
|
-
this.state =
|
|
5541
|
+
this.state = 1008;
|
|
5481
5542
|
this.fieldExpr(13);
|
|
5482
5543
|
}
|
|
5483
5544
|
break;
|
|
@@ -5486,17 +5547,17 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5486
5547
|
_localctx = new ExprCastContext(_localctx);
|
|
5487
5548
|
this._ctx = _localctx;
|
|
5488
5549
|
_prevctx = _localctx;
|
|
5489
|
-
this.state =
|
|
5550
|
+
this.state = 1009;
|
|
5490
5551
|
this.match(MalloyParser.CAST);
|
|
5491
|
-
this.state =
|
|
5552
|
+
this.state = 1010;
|
|
5492
5553
|
this.match(MalloyParser.OPAREN);
|
|
5493
|
-
this.state =
|
|
5554
|
+
this.state = 1011;
|
|
5494
5555
|
this.fieldExpr(0);
|
|
5495
|
-
this.state =
|
|
5556
|
+
this.state = 1012;
|
|
5496
5557
|
this.match(MalloyParser.AS);
|
|
5497
|
-
this.state =
|
|
5558
|
+
this.state = 1013;
|
|
5498
5559
|
this.malloyOrSQLType();
|
|
5499
|
-
this.state =
|
|
5560
|
+
this.state = 1014;
|
|
5500
5561
|
this.match(MalloyParser.CPAREN);
|
|
5501
5562
|
}
|
|
5502
5563
|
break;
|
|
@@ -5505,15 +5566,15 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5505
5566
|
_localctx = new ExprCountDisinctContext(_localctx);
|
|
5506
5567
|
this._ctx = _localctx;
|
|
5507
5568
|
_prevctx = _localctx;
|
|
5508
|
-
this.state =
|
|
5569
|
+
this.state = 1016;
|
|
5509
5570
|
this.match(MalloyParser.COUNT);
|
|
5510
|
-
this.state =
|
|
5571
|
+
this.state = 1017;
|
|
5511
5572
|
this.match(MalloyParser.OPAREN);
|
|
5512
|
-
this.state =
|
|
5573
|
+
this.state = 1018;
|
|
5513
5574
|
this.match(MalloyParser.DISTINCT);
|
|
5514
|
-
this.state =
|
|
5575
|
+
this.state = 1019;
|
|
5515
5576
|
this.fieldExpr(0);
|
|
5516
|
-
this.state =
|
|
5577
|
+
this.state = 1020;
|
|
5517
5578
|
this.match(MalloyParser.CPAREN);
|
|
5518
5579
|
}
|
|
5519
5580
|
break;
|
|
@@ -5522,22 +5583,22 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5522
5583
|
_localctx = new ExprPathlessAggregateContext(_localctx);
|
|
5523
5584
|
this._ctx = _localctx;
|
|
5524
5585
|
_prevctx = _localctx;
|
|
5525
|
-
this.state =
|
|
5586
|
+
this.state = 1024;
|
|
5526
5587
|
this._errHandler.sync(this);
|
|
5527
5588
|
_la = this._input.LA(1);
|
|
5528
5589
|
if (_la === MalloyParser.SOURCE_KW) {
|
|
5529
5590
|
{
|
|
5530
|
-
this.state =
|
|
5591
|
+
this.state = 1022;
|
|
5531
5592
|
this.match(MalloyParser.SOURCE_KW);
|
|
5532
|
-
this.state =
|
|
5593
|
+
this.state = 1023;
|
|
5533
5594
|
this.match(MalloyParser.DOT);
|
|
5534
5595
|
}
|
|
5535
5596
|
}
|
|
5536
|
-
this.state =
|
|
5597
|
+
this.state = 1026;
|
|
5537
5598
|
this.aggregate();
|
|
5538
|
-
this.state =
|
|
5599
|
+
this.state = 1027;
|
|
5539
5600
|
this.match(MalloyParser.OPAREN);
|
|
5540
|
-
this.state =
|
|
5601
|
+
this.state = 1030;
|
|
5541
5602
|
this._errHandler.sync(this);
|
|
5542
5603
|
switch (this._input.LA(1)) {
|
|
5543
5604
|
case MalloyParser.ALL:
|
|
@@ -5581,13 +5642,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5581
5642
|
case MalloyParser.INTEGER_LITERAL:
|
|
5582
5643
|
case MalloyParser.SQL_BEGIN:
|
|
5583
5644
|
{
|
|
5584
|
-
this.state =
|
|
5645
|
+
this.state = 1028;
|
|
5585
5646
|
this.fieldExpr(0);
|
|
5586
5647
|
}
|
|
5587
5648
|
break;
|
|
5588
5649
|
case MalloyParser.STAR:
|
|
5589
5650
|
{
|
|
5590
|
-
this.state =
|
|
5651
|
+
this.state = 1029;
|
|
5591
5652
|
this.match(MalloyParser.STAR);
|
|
5592
5653
|
}
|
|
5593
5654
|
break;
|
|
@@ -5596,7 +5657,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5596
5657
|
default:
|
|
5597
5658
|
break;
|
|
5598
5659
|
}
|
|
5599
|
-
this.state =
|
|
5660
|
+
this.state = 1032;
|
|
5600
5661
|
this.match(MalloyParser.CPAREN);
|
|
5601
5662
|
}
|
|
5602
5663
|
break;
|
|
@@ -5605,24 +5666,24 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5605
5666
|
_localctx = new ExprAggregateContext(_localctx);
|
|
5606
5667
|
this._ctx = _localctx;
|
|
5607
5668
|
_prevctx = _localctx;
|
|
5608
|
-
this.state =
|
|
5669
|
+
this.state = 1034;
|
|
5609
5670
|
this.fieldPath();
|
|
5610
|
-
this.state =
|
|
5671
|
+
this.state = 1035;
|
|
5611
5672
|
this.match(MalloyParser.DOT);
|
|
5612
|
-
this.state =
|
|
5673
|
+
this.state = 1036;
|
|
5613
5674
|
this.aggregate();
|
|
5614
|
-
this.state =
|
|
5675
|
+
this.state = 1037;
|
|
5615
5676
|
this.match(MalloyParser.OPAREN);
|
|
5616
|
-
this.state =
|
|
5677
|
+
this.state = 1039;
|
|
5617
5678
|
this._errHandler.sync(this);
|
|
5618
5679
|
_la = this._input.LA(1);
|
|
5619
5680
|
if (((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & ((1 << (MalloyParser.ALL - 34)) | (1 << (MalloyParser.AVG - 34)) | (1 << (MalloyParser.CAST - 34)) | (1 << (MalloyParser.COUNT - 34)) | (1 << (MalloyParser.DAY - 34)) | (1 << (MalloyParser.EXCLUDE - 34)) | (1 << (MalloyParser.FALSE - 34)) | (1 << (MalloyParser.HOUR - 34)))) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & ((1 << (MalloyParser.MAX - 66)) | (1 << (MalloyParser.MIN - 66)) | (1 << (MalloyParser.MINUTE - 66)) | (1 << (MalloyParser.MONTH - 66)) | (1 << (MalloyParser.NOT - 66)) | (1 << (MalloyParser.NOW - 66)) | (1 << (MalloyParser.NULL - 66)) | (1 << (MalloyParser.PICK - 66)) | (1 << (MalloyParser.QUARTER - 66)) | (1 << (MalloyParser.SECOND - 66)) | (1 << (MalloyParser.SOURCE_KW - 66)) | (1 << (MalloyParser.SUM - 66)) | (1 << (MalloyParser.TRUE - 66)) | (1 << (MalloyParser.WEEK - 66)) | (1 << (MalloyParser.YEAR - 66)) | (1 << (MalloyParser.HACKY_REGEX - 66)))) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & ((1 << (MalloyParser.SQ_STRING - 98)) | (1 << (MalloyParser.DQ_STRING - 98)) | (1 << (MalloyParser.BQ_STRING - 98)) | (1 << (MalloyParser.OPAREN - 98)) | (1 << (MalloyParser.MINUS - 98)))) !== 0) || ((((_la - 136)) & ~0x1F) === 0 && ((1 << (_la - 136)) & ((1 << (MalloyParser.LITERAL_TIMESTAMP - 136)) | (1 << (MalloyParser.LITERAL_HOUR - 136)) | (1 << (MalloyParser.LITERAL_DAY - 136)) | (1 << (MalloyParser.LITERAL_QUARTER - 136)) | (1 << (MalloyParser.LITERAL_MONTH - 136)) | (1 << (MalloyParser.LITERAL_WEEK - 136)) | (1 << (MalloyParser.LITERAL_YEAR - 136)) | (1 << (MalloyParser.IDENTIFIER - 136)) | (1 << (MalloyParser.NUMERIC_LITERAL - 136)) | (1 << (MalloyParser.INTEGER_LITERAL - 136)) | (1 << (MalloyParser.SQL_BEGIN - 136)))) !== 0)) {
|
|
5620
5681
|
{
|
|
5621
|
-
this.state =
|
|
5682
|
+
this.state = 1038;
|
|
5622
5683
|
this.fieldExpr(0);
|
|
5623
5684
|
}
|
|
5624
5685
|
}
|
|
5625
|
-
this.state =
|
|
5686
|
+
this.state = 1041;
|
|
5626
5687
|
this.match(MalloyParser.CPAREN);
|
|
5627
5688
|
}
|
|
5628
5689
|
break;
|
|
@@ -5631,11 +5692,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5631
5692
|
_localctx = new ExprExprContext(_localctx);
|
|
5632
5693
|
this._ctx = _localctx;
|
|
5633
5694
|
_prevctx = _localctx;
|
|
5634
|
-
this.state =
|
|
5695
|
+
this.state = 1043;
|
|
5635
5696
|
this.match(MalloyParser.OPAREN);
|
|
5636
|
-
this.state =
|
|
5697
|
+
this.state = 1044;
|
|
5637
5698
|
this.partialAllowedFieldExpr();
|
|
5638
|
-
this.state =
|
|
5699
|
+
this.state = 1045;
|
|
5639
5700
|
this.match(MalloyParser.CPAREN);
|
|
5640
5701
|
}
|
|
5641
5702
|
break;
|
|
@@ -5644,26 +5705,26 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5644
5705
|
_localctx = new ExprAggFuncContext(_localctx);
|
|
5645
5706
|
this._ctx = _localctx;
|
|
5646
5707
|
_prevctx = _localctx;
|
|
5647
|
-
this.state =
|
|
5708
|
+
this.state = 1047;
|
|
5648
5709
|
this.fieldPath();
|
|
5649
|
-
this.state =
|
|
5710
|
+
this.state = 1048;
|
|
5650
5711
|
this.match(MalloyParser.DOT);
|
|
5651
|
-
this.state =
|
|
5712
|
+
this.state = 1049;
|
|
5652
5713
|
this.id();
|
|
5653
|
-
this.state =
|
|
5714
|
+
this.state = 1050;
|
|
5654
5715
|
this.match(MalloyParser.OPAREN);
|
|
5655
5716
|
{
|
|
5656
|
-
this.state =
|
|
5717
|
+
this.state = 1052;
|
|
5657
5718
|
this._errHandler.sync(this);
|
|
5658
5719
|
_la = this._input.LA(1);
|
|
5659
5720
|
if (((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & ((1 << (MalloyParser.ALL - 34)) | (1 << (MalloyParser.AVG - 34)) | (1 << (MalloyParser.CAST - 34)) | (1 << (MalloyParser.COUNT - 34)) | (1 << (MalloyParser.DAY - 34)) | (1 << (MalloyParser.EXCLUDE - 34)) | (1 << (MalloyParser.FALSE - 34)) | (1 << (MalloyParser.HOUR - 34)))) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & ((1 << (MalloyParser.MAX - 66)) | (1 << (MalloyParser.MIN - 66)) | (1 << (MalloyParser.MINUTE - 66)) | (1 << (MalloyParser.MONTH - 66)) | (1 << (MalloyParser.NOT - 66)) | (1 << (MalloyParser.NOW - 66)) | (1 << (MalloyParser.NULL - 66)) | (1 << (MalloyParser.PICK - 66)) | (1 << (MalloyParser.QUARTER - 66)) | (1 << (MalloyParser.SECOND - 66)) | (1 << (MalloyParser.SOURCE_KW - 66)) | (1 << (MalloyParser.SUM - 66)) | (1 << (MalloyParser.TRUE - 66)) | (1 << (MalloyParser.WEEK - 66)) | (1 << (MalloyParser.YEAR - 66)) | (1 << (MalloyParser.HACKY_REGEX - 66)))) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & ((1 << (MalloyParser.SQ_STRING - 98)) | (1 << (MalloyParser.DQ_STRING - 98)) | (1 << (MalloyParser.BQ_STRING - 98)) | (1 << (MalloyParser.OPAREN - 98)) | (1 << (MalloyParser.MINUS - 98)))) !== 0) || ((((_la - 136)) & ~0x1F) === 0 && ((1 << (_la - 136)) & ((1 << (MalloyParser.LITERAL_TIMESTAMP - 136)) | (1 << (MalloyParser.LITERAL_HOUR - 136)) | (1 << (MalloyParser.LITERAL_DAY - 136)) | (1 << (MalloyParser.LITERAL_QUARTER - 136)) | (1 << (MalloyParser.LITERAL_MONTH - 136)) | (1 << (MalloyParser.LITERAL_WEEK - 136)) | (1 << (MalloyParser.LITERAL_YEAR - 136)) | (1 << (MalloyParser.IDENTIFIER - 136)) | (1 << (MalloyParser.NUMERIC_LITERAL - 136)) | (1 << (MalloyParser.INTEGER_LITERAL - 136)) | (1 << (MalloyParser.SQL_BEGIN - 136)))) !== 0)) {
|
|
5660
5721
|
{
|
|
5661
|
-
this.state =
|
|
5722
|
+
this.state = 1051;
|
|
5662
5723
|
this.argumentList();
|
|
5663
5724
|
}
|
|
5664
5725
|
}
|
|
5665
5726
|
}
|
|
5666
|
-
this.state =
|
|
5727
|
+
this.state = 1054;
|
|
5667
5728
|
this.match(MalloyParser.CPAREN);
|
|
5668
5729
|
}
|
|
5669
5730
|
break;
|
|
@@ -5672,28 +5733,28 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5672
5733
|
_localctx = new ExprFuncContext(_localctx);
|
|
5673
5734
|
this._ctx = _localctx;
|
|
5674
5735
|
_prevctx = _localctx;
|
|
5675
|
-
this.state =
|
|
5736
|
+
this.state = 1064;
|
|
5676
5737
|
this._errHandler.sync(this);
|
|
5677
5738
|
switch (this._input.LA(1)) {
|
|
5678
5739
|
case MalloyParser.BQ_STRING:
|
|
5679
5740
|
case MalloyParser.IDENTIFIER:
|
|
5680
5741
|
{
|
|
5681
5742
|
{
|
|
5682
|
-
this.state =
|
|
5743
|
+
this.state = 1056;
|
|
5683
5744
|
this.id();
|
|
5684
|
-
this.state =
|
|
5745
|
+
this.state = 1061;
|
|
5685
5746
|
this._errHandler.sync(this);
|
|
5686
5747
|
_la = this._input.LA(1);
|
|
5687
5748
|
if (_la === MalloyParser.EXCLAM) {
|
|
5688
5749
|
{
|
|
5689
|
-
this.state =
|
|
5750
|
+
this.state = 1057;
|
|
5690
5751
|
this.match(MalloyParser.EXCLAM);
|
|
5691
|
-
this.state =
|
|
5752
|
+
this.state = 1059;
|
|
5692
5753
|
this._errHandler.sync(this);
|
|
5693
5754
|
_la = this._input.LA(1);
|
|
5694
5755
|
if (_la === MalloyParser.BOOLEAN || _la === MalloyParser.DATE || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & ((1 << (MalloyParser.NUMBER - 73)) | (1 << (MalloyParser.STRING - 73)) | (1 << (MalloyParser.TIMESTAMP - 73)))) !== 0)) {
|
|
5695
5756
|
{
|
|
5696
|
-
this.state =
|
|
5757
|
+
this.state = 1058;
|
|
5697
5758
|
this.malloyType();
|
|
5698
5759
|
}
|
|
5699
5760
|
}
|
|
@@ -5711,27 +5772,27 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5711
5772
|
case MalloyParser.WEEK:
|
|
5712
5773
|
case MalloyParser.YEAR:
|
|
5713
5774
|
{
|
|
5714
|
-
this.state =
|
|
5775
|
+
this.state = 1063;
|
|
5715
5776
|
this.timeframe();
|
|
5716
5777
|
}
|
|
5717
5778
|
break;
|
|
5718
5779
|
default:
|
|
5719
5780
|
throw new NoViableAltException_1.NoViableAltException(this);
|
|
5720
5781
|
}
|
|
5721
|
-
this.state =
|
|
5782
|
+
this.state = 1066;
|
|
5722
5783
|
this.match(MalloyParser.OPAREN);
|
|
5723
5784
|
{
|
|
5724
|
-
this.state =
|
|
5785
|
+
this.state = 1068;
|
|
5725
5786
|
this._errHandler.sync(this);
|
|
5726
5787
|
_la = this._input.LA(1);
|
|
5727
5788
|
if (((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & ((1 << (MalloyParser.ALL - 34)) | (1 << (MalloyParser.AVG - 34)) | (1 << (MalloyParser.CAST - 34)) | (1 << (MalloyParser.COUNT - 34)) | (1 << (MalloyParser.DAY - 34)) | (1 << (MalloyParser.EXCLUDE - 34)) | (1 << (MalloyParser.FALSE - 34)) | (1 << (MalloyParser.HOUR - 34)))) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & ((1 << (MalloyParser.MAX - 66)) | (1 << (MalloyParser.MIN - 66)) | (1 << (MalloyParser.MINUTE - 66)) | (1 << (MalloyParser.MONTH - 66)) | (1 << (MalloyParser.NOT - 66)) | (1 << (MalloyParser.NOW - 66)) | (1 << (MalloyParser.NULL - 66)) | (1 << (MalloyParser.PICK - 66)) | (1 << (MalloyParser.QUARTER - 66)) | (1 << (MalloyParser.SECOND - 66)) | (1 << (MalloyParser.SOURCE_KW - 66)) | (1 << (MalloyParser.SUM - 66)) | (1 << (MalloyParser.TRUE - 66)) | (1 << (MalloyParser.WEEK - 66)) | (1 << (MalloyParser.YEAR - 66)) | (1 << (MalloyParser.HACKY_REGEX - 66)))) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & ((1 << (MalloyParser.SQ_STRING - 98)) | (1 << (MalloyParser.DQ_STRING - 98)) | (1 << (MalloyParser.BQ_STRING - 98)) | (1 << (MalloyParser.OPAREN - 98)) | (1 << (MalloyParser.MINUS - 98)))) !== 0) || ((((_la - 136)) & ~0x1F) === 0 && ((1 << (_la - 136)) & ((1 << (MalloyParser.LITERAL_TIMESTAMP - 136)) | (1 << (MalloyParser.LITERAL_HOUR - 136)) | (1 << (MalloyParser.LITERAL_DAY - 136)) | (1 << (MalloyParser.LITERAL_QUARTER - 136)) | (1 << (MalloyParser.LITERAL_MONTH - 136)) | (1 << (MalloyParser.LITERAL_WEEK - 136)) | (1 << (MalloyParser.LITERAL_YEAR - 136)) | (1 << (MalloyParser.IDENTIFIER - 136)) | (1 << (MalloyParser.NUMERIC_LITERAL - 136)) | (1 << (MalloyParser.INTEGER_LITERAL - 136)) | (1 << (MalloyParser.SQL_BEGIN - 136)))) !== 0)) {
|
|
5728
5789
|
{
|
|
5729
|
-
this.state =
|
|
5790
|
+
this.state = 1067;
|
|
5730
5791
|
this.argumentList();
|
|
5731
5792
|
}
|
|
5732
5793
|
}
|
|
5733
5794
|
}
|
|
5734
|
-
this.state =
|
|
5795
|
+
this.state = 1070;
|
|
5735
5796
|
this.match(MalloyParser.CPAREN);
|
|
5736
5797
|
}
|
|
5737
5798
|
break;
|
|
@@ -5740,7 +5801,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5740
5801
|
_localctx = new ExprPickContext(_localctx);
|
|
5741
5802
|
this._ctx = _localctx;
|
|
5742
5803
|
_prevctx = _localctx;
|
|
5743
|
-
this.state =
|
|
5804
|
+
this.state = 1072;
|
|
5744
5805
|
this.pickStatement();
|
|
5745
5806
|
}
|
|
5746
5807
|
break;
|
|
@@ -5749,37 +5810,37 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5749
5810
|
_localctx = new ExprUngroupContext(_localctx);
|
|
5750
5811
|
this._ctx = _localctx;
|
|
5751
5812
|
_prevctx = _localctx;
|
|
5752
|
-
this.state =
|
|
5813
|
+
this.state = 1073;
|
|
5753
5814
|
this.ungroup();
|
|
5754
|
-
this.state =
|
|
5815
|
+
this.state = 1074;
|
|
5755
5816
|
this.match(MalloyParser.OPAREN);
|
|
5756
|
-
this.state =
|
|
5817
|
+
this.state = 1075;
|
|
5757
5818
|
this.fieldExpr(0);
|
|
5758
|
-
this.state =
|
|
5819
|
+
this.state = 1080;
|
|
5759
5820
|
this._errHandler.sync(this);
|
|
5760
5821
|
_la = this._input.LA(1);
|
|
5761
5822
|
while (_la === MalloyParser.COMMA) {
|
|
5762
5823
|
{
|
|
5763
5824
|
{
|
|
5764
|
-
this.state =
|
|
5825
|
+
this.state = 1076;
|
|
5765
5826
|
this.match(MalloyParser.COMMA);
|
|
5766
|
-
this.state =
|
|
5827
|
+
this.state = 1077;
|
|
5767
5828
|
this.fieldName();
|
|
5768
5829
|
}
|
|
5769
5830
|
}
|
|
5770
|
-
this.state =
|
|
5831
|
+
this.state = 1082;
|
|
5771
5832
|
this._errHandler.sync(this);
|
|
5772
5833
|
_la = this._input.LA(1);
|
|
5773
5834
|
}
|
|
5774
|
-
this.state =
|
|
5835
|
+
this.state = 1083;
|
|
5775
5836
|
this.match(MalloyParser.CPAREN);
|
|
5776
5837
|
}
|
|
5777
5838
|
break;
|
|
5778
5839
|
}
|
|
5779
5840
|
this._ctx._stop = this._input.tryLT(-1);
|
|
5780
|
-
this.state =
|
|
5841
|
+
this.state = 1138;
|
|
5781
5842
|
this._errHandler.sync(this);
|
|
5782
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
5843
|
+
_alt = this.interpreter.adaptivePredict(this._input, 111, this._ctx);
|
|
5783
5844
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
5784
5845
|
if (_alt === 1) {
|
|
5785
5846
|
if (this._parseListeners != null) {
|
|
@@ -5787,18 +5848,18 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5787
5848
|
}
|
|
5788
5849
|
_prevctx = _localctx;
|
|
5789
5850
|
{
|
|
5790
|
-
this.state =
|
|
5851
|
+
this.state = 1136;
|
|
5791
5852
|
this._errHandler.sync(this);
|
|
5792
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
5853
|
+
switch (this.interpreter.adaptivePredict(this._input, 110, this._ctx)) {
|
|
5793
5854
|
case 1:
|
|
5794
5855
|
{
|
|
5795
5856
|
_localctx = new ExprMulDivContext(new FieldExprContext(_parentctx, _parentState));
|
|
5796
5857
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5797
|
-
this.state =
|
|
5858
|
+
this.state = 1087;
|
|
5798
5859
|
if (!(this.precpred(this._ctx, 21))) {
|
|
5799
5860
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 21)");
|
|
5800
5861
|
}
|
|
5801
|
-
this.state =
|
|
5862
|
+
this.state = 1088;
|
|
5802
5863
|
_la = this._input.LA(1);
|
|
5803
5864
|
if (!(((((_la - 126)) & ~0x1F) === 0 && ((1 << (_la - 126)) & ((1 << (MalloyParser.STAR - 126)) | (1 << (MalloyParser.SLASH - 126)) | (1 << (MalloyParser.PERCENT - 126)))) !== 0))) {
|
|
5804
5865
|
this._errHandler.recoverInline(this);
|
|
@@ -5810,7 +5871,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5810
5871
|
this._errHandler.reportMatch(this);
|
|
5811
5872
|
this.consume();
|
|
5812
5873
|
}
|
|
5813
|
-
this.state =
|
|
5874
|
+
this.state = 1089;
|
|
5814
5875
|
this.fieldExpr(22);
|
|
5815
5876
|
}
|
|
5816
5877
|
break;
|
|
@@ -5818,11 +5879,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5818
5879
|
{
|
|
5819
5880
|
_localctx = new ExprAddSubContext(new FieldExprContext(_parentctx, _parentState));
|
|
5820
5881
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5821
|
-
this.state =
|
|
5882
|
+
this.state = 1090;
|
|
5822
5883
|
if (!(this.precpred(this._ctx, 20))) {
|
|
5823
5884
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 20)");
|
|
5824
5885
|
}
|
|
5825
|
-
this.state =
|
|
5886
|
+
this.state = 1091;
|
|
5826
5887
|
_la = this._input.LA(1);
|
|
5827
5888
|
if (!(_la === MalloyParser.PLUS || _la === MalloyParser.MINUS)) {
|
|
5828
5889
|
this._errHandler.recoverInline(this);
|
|
@@ -5834,7 +5895,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5834
5895
|
this._errHandler.reportMatch(this);
|
|
5835
5896
|
this.consume();
|
|
5836
5897
|
}
|
|
5837
|
-
this.state =
|
|
5898
|
+
this.state = 1092;
|
|
5838
5899
|
this.fieldExpr(21);
|
|
5839
5900
|
}
|
|
5840
5901
|
break;
|
|
@@ -5842,13 +5903,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5842
5903
|
{
|
|
5843
5904
|
_localctx = new ExprRangeContext(new FieldExprContext(_parentctx, _parentState));
|
|
5844
5905
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5845
|
-
this.state =
|
|
5906
|
+
this.state = 1093;
|
|
5846
5907
|
if (!(this.precpred(this._ctx, 19))) {
|
|
5847
5908
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 19)");
|
|
5848
5909
|
}
|
|
5849
|
-
this.state =
|
|
5910
|
+
this.state = 1094;
|
|
5850
5911
|
this.match(MalloyParser.TO);
|
|
5851
|
-
this.state =
|
|
5912
|
+
this.state = 1095;
|
|
5852
5913
|
this.fieldExpr(20);
|
|
5853
5914
|
}
|
|
5854
5915
|
break;
|
|
@@ -5856,13 +5917,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5856
5917
|
{
|
|
5857
5918
|
_localctx = new ExprCompareContext(new FieldExprContext(_parentctx, _parentState));
|
|
5858
5919
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5859
|
-
this.state =
|
|
5920
|
+
this.state = 1096;
|
|
5860
5921
|
if (!(this.precpred(this._ctx, 15))) {
|
|
5861
5922
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 15)");
|
|
5862
5923
|
}
|
|
5863
|
-
this.state =
|
|
5924
|
+
this.state = 1097;
|
|
5864
5925
|
this.compareOp();
|
|
5865
|
-
this.state =
|
|
5926
|
+
this.state = 1098;
|
|
5866
5927
|
this.fieldExpr(16);
|
|
5867
5928
|
}
|
|
5868
5929
|
break;
|
|
@@ -5870,13 +5931,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5870
5931
|
{
|
|
5871
5932
|
_localctx = new ExprLogicalAndContext(new FieldExprContext(_parentctx, _parentState));
|
|
5872
5933
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5873
|
-
this.state =
|
|
5934
|
+
this.state = 1100;
|
|
5874
5935
|
if (!(this.precpred(this._ctx, 12))) {
|
|
5875
5936
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 12)");
|
|
5876
5937
|
}
|
|
5877
|
-
this.state =
|
|
5938
|
+
this.state = 1101;
|
|
5878
5939
|
this.match(MalloyParser.AND);
|
|
5879
|
-
this.state =
|
|
5940
|
+
this.state = 1102;
|
|
5880
5941
|
this.fieldExpr(13);
|
|
5881
5942
|
}
|
|
5882
5943
|
break;
|
|
@@ -5884,13 +5945,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5884
5945
|
{
|
|
5885
5946
|
_localctx = new ExprLogicalOrContext(new FieldExprContext(_parentctx, _parentState));
|
|
5886
5947
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5887
|
-
this.state =
|
|
5948
|
+
this.state = 1103;
|
|
5888
5949
|
if (!(this.precpred(this._ctx, 11))) {
|
|
5889
5950
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 11)");
|
|
5890
5951
|
}
|
|
5891
|
-
this.state =
|
|
5952
|
+
this.state = 1104;
|
|
5892
5953
|
this.match(MalloyParser.OR);
|
|
5893
|
-
this.state =
|
|
5954
|
+
this.state = 1105;
|
|
5894
5955
|
this.fieldExpr(12);
|
|
5895
5956
|
}
|
|
5896
5957
|
break;
|
|
@@ -5898,13 +5959,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5898
5959
|
{
|
|
5899
5960
|
_localctx = new ExprCoalesceContext(new FieldExprContext(_parentctx, _parentState));
|
|
5900
5961
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5901
|
-
this.state =
|
|
5962
|
+
this.state = 1106;
|
|
5902
5963
|
if (!(this.precpred(this._ctx, 10))) {
|
|
5903
5964
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 10)");
|
|
5904
5965
|
}
|
|
5905
|
-
this.state =
|
|
5966
|
+
this.state = 1107;
|
|
5906
5967
|
this.match(MalloyParser.DOUBLE_QMARK);
|
|
5907
|
-
this.state =
|
|
5968
|
+
this.state = 1108;
|
|
5908
5969
|
this.fieldExpr(11);
|
|
5909
5970
|
}
|
|
5910
5971
|
break;
|
|
@@ -5912,11 +5973,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5912
5973
|
{
|
|
5913
5974
|
_localctx = new ExprFieldPropsContext(new FieldExprContext(_parentctx, _parentState));
|
|
5914
5975
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5915
|
-
this.state =
|
|
5976
|
+
this.state = 1109;
|
|
5916
5977
|
if (!(this.precpred(this._ctx, 28))) {
|
|
5917
5978
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 28)");
|
|
5918
5979
|
}
|
|
5919
|
-
this.state =
|
|
5980
|
+
this.state = 1110;
|
|
5920
5981
|
this.fieldProperties();
|
|
5921
5982
|
}
|
|
5922
5983
|
break;
|
|
@@ -5924,11 +5985,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5924
5985
|
{
|
|
5925
5986
|
_localctx = new ExprDurationContext(new FieldExprContext(_parentctx, _parentState));
|
|
5926
5987
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5927
|
-
this.state =
|
|
5988
|
+
this.state = 1111;
|
|
5928
5989
|
if (!(this.precpred(this._ctx, 26))) {
|
|
5929
5990
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 26)");
|
|
5930
5991
|
}
|
|
5931
|
-
this.state =
|
|
5992
|
+
this.state = 1112;
|
|
5932
5993
|
this.timeframe();
|
|
5933
5994
|
}
|
|
5934
5995
|
break;
|
|
@@ -5936,13 +5997,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5936
5997
|
{
|
|
5937
5998
|
_localctx = new ExprTimeTruncContext(new FieldExprContext(_parentctx, _parentState));
|
|
5938
5999
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5939
|
-
this.state =
|
|
6000
|
+
this.state = 1113;
|
|
5940
6001
|
if (!(this.precpred(this._ctx, 25))) {
|
|
5941
6002
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 25)");
|
|
5942
6003
|
}
|
|
5943
|
-
this.state =
|
|
6004
|
+
this.state = 1114;
|
|
5944
6005
|
this.match(MalloyParser.DOT);
|
|
5945
|
-
this.state =
|
|
6006
|
+
this.state = 1115;
|
|
5946
6007
|
this.timeframe();
|
|
5947
6008
|
}
|
|
5948
6009
|
break;
|
|
@@ -5950,13 +6011,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5950
6011
|
{
|
|
5951
6012
|
_localctx = new ExprCastContext(new FieldExprContext(_parentctx, _parentState));
|
|
5952
6013
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5953
|
-
this.state =
|
|
6014
|
+
this.state = 1116;
|
|
5954
6015
|
if (!(this.precpred(this._ctx, 24))) {
|
|
5955
6016
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 24)");
|
|
5956
6017
|
}
|
|
5957
|
-
this.state =
|
|
6018
|
+
this.state = 1117;
|
|
5958
6019
|
this.match(MalloyParser.DOUBLECOLON);
|
|
5959
|
-
this.state =
|
|
6020
|
+
this.state = 1118;
|
|
5960
6021
|
this.malloyOrSQLType();
|
|
5961
6022
|
}
|
|
5962
6023
|
break;
|
|
@@ -5964,13 +6025,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5964
6025
|
{
|
|
5965
6026
|
_localctx = new ExprSafeCastContext(new FieldExprContext(_parentctx, _parentState));
|
|
5966
6027
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5967
|
-
this.state =
|
|
6028
|
+
this.state = 1119;
|
|
5968
6029
|
if (!(this.precpred(this._ctx, 23))) {
|
|
5969
6030
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 23)");
|
|
5970
6031
|
}
|
|
5971
|
-
this.state =
|
|
6032
|
+
this.state = 1120;
|
|
5972
6033
|
this.match(MalloyParser.TRIPLECOLON);
|
|
5973
|
-
this.state =
|
|
6034
|
+
this.state = 1121;
|
|
5974
6035
|
this.malloyOrSQLType();
|
|
5975
6036
|
}
|
|
5976
6037
|
break;
|
|
@@ -5979,15 +6040,15 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5979
6040
|
_localctx = new ExprForRangeContext(new FieldExprContext(_parentctx, _parentState));
|
|
5980
6041
|
_localctx._startAt = _prevctx;
|
|
5981
6042
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5982
|
-
this.state =
|
|
6043
|
+
this.state = 1122;
|
|
5983
6044
|
if (!(this.precpred(this._ctx, 18))) {
|
|
5984
6045
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 18)");
|
|
5985
6046
|
}
|
|
5986
|
-
this.state =
|
|
6047
|
+
this.state = 1123;
|
|
5987
6048
|
this.match(MalloyParser.FOR);
|
|
5988
|
-
this.state =
|
|
6049
|
+
this.state = 1124;
|
|
5989
6050
|
_localctx._duration = this.fieldExpr(0);
|
|
5990
|
-
this.state =
|
|
6051
|
+
this.state = 1125;
|
|
5991
6052
|
this.timeframe();
|
|
5992
6053
|
}
|
|
5993
6054
|
break;
|
|
@@ -5995,13 +6056,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
5995
6056
|
{
|
|
5996
6057
|
_localctx = new ExprAndTreeContext(new FieldExprContext(_parentctx, _parentState));
|
|
5997
6058
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
5998
|
-
this.state =
|
|
6059
|
+
this.state = 1127;
|
|
5999
6060
|
if (!(this.precpred(this._ctx, 17))) {
|
|
6000
6061
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 17)");
|
|
6001
6062
|
}
|
|
6002
|
-
this.state =
|
|
6063
|
+
this.state = 1128;
|
|
6003
6064
|
this.match(MalloyParser.AMPER);
|
|
6004
|
-
this.state =
|
|
6065
|
+
this.state = 1129;
|
|
6005
6066
|
this.partialAllowedFieldExpr();
|
|
6006
6067
|
}
|
|
6007
6068
|
break;
|
|
@@ -6009,13 +6070,13 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6009
6070
|
{
|
|
6010
6071
|
_localctx = new ExprOrTreeContext(new FieldExprContext(_parentctx, _parentState));
|
|
6011
6072
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
6012
|
-
this.state =
|
|
6073
|
+
this.state = 1130;
|
|
6013
6074
|
if (!(this.precpred(this._ctx, 16))) {
|
|
6014
6075
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 16)");
|
|
6015
6076
|
}
|
|
6016
|
-
this.state =
|
|
6077
|
+
this.state = 1131;
|
|
6017
6078
|
this.match(MalloyParser.BAR);
|
|
6018
|
-
this.state =
|
|
6079
|
+
this.state = 1132;
|
|
6019
6080
|
this.partialAllowedFieldExpr();
|
|
6020
6081
|
}
|
|
6021
6082
|
break;
|
|
@@ -6023,22 +6084,22 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6023
6084
|
{
|
|
6024
6085
|
_localctx = new ExprApplyContext(new FieldExprContext(_parentctx, _parentState));
|
|
6025
6086
|
this.pushNewRecursionContext(_localctx, _startState, MalloyParser.RULE_fieldExpr);
|
|
6026
|
-
this.state =
|
|
6087
|
+
this.state = 1133;
|
|
6027
6088
|
if (!(this.precpred(this._ctx, 14))) {
|
|
6028
6089
|
throw this.createFailedPredicateException("this.precpred(this._ctx, 14)");
|
|
6029
6090
|
}
|
|
6030
|
-
this.state =
|
|
6091
|
+
this.state = 1134;
|
|
6031
6092
|
this.match(MalloyParser.QMARK);
|
|
6032
|
-
this.state =
|
|
6093
|
+
this.state = 1135;
|
|
6033
6094
|
this.partialAllowedFieldExpr();
|
|
6034
6095
|
}
|
|
6035
6096
|
break;
|
|
6036
6097
|
}
|
|
6037
6098
|
}
|
|
6038
6099
|
}
|
|
6039
|
-
this.state =
|
|
6100
|
+
this.state = 1140;
|
|
6040
6101
|
this._errHandler.sync(this);
|
|
6041
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6102
|
+
_alt = this.interpreter.adaptivePredict(this._input, 111, this._ctx);
|
|
6042
6103
|
}
|
|
6043
6104
|
}
|
|
6044
6105
|
}
|
|
@@ -6063,42 +6124,42 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6063
6124
|
this.enterRule(_localctx, 224, MalloyParser.RULE_partialAllowedFieldExpr);
|
|
6064
6125
|
let _la;
|
|
6065
6126
|
try {
|
|
6066
|
-
this.state =
|
|
6127
|
+
this.state = 1152;
|
|
6067
6128
|
this._errHandler.sync(this);
|
|
6068
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
6129
|
+
switch (this.interpreter.adaptivePredict(this._input, 114, this._ctx)) {
|
|
6069
6130
|
case 1:
|
|
6070
6131
|
this.enterOuterAlt(_localctx, 1);
|
|
6071
6132
|
{
|
|
6072
|
-
this.state =
|
|
6133
|
+
this.state = 1141;
|
|
6073
6134
|
this.match(MalloyParser.OPAREN);
|
|
6074
|
-
this.state =
|
|
6135
|
+
this.state = 1143;
|
|
6075
6136
|
this._errHandler.sync(this);
|
|
6076
6137
|
_la = this._input.LA(1);
|
|
6077
6138
|
if (((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & ((1 << (MalloyParser.LT - 118)) | (1 << (MalloyParser.GT - 118)) | (1 << (MalloyParser.EQ - 118)) | (1 << (MalloyParser.NE - 118)) | (1 << (MalloyParser.LTE - 118)) | (1 << (MalloyParser.GTE - 118)) | (1 << (MalloyParser.NOT_MATCH - 118)) | (1 << (MalloyParser.MATCH - 118)))) !== 0)) {
|
|
6078
6139
|
{
|
|
6079
|
-
this.state =
|
|
6140
|
+
this.state = 1142;
|
|
6080
6141
|
this.compareOp();
|
|
6081
6142
|
}
|
|
6082
6143
|
}
|
|
6083
|
-
this.state =
|
|
6144
|
+
this.state = 1145;
|
|
6084
6145
|
this.fieldExpr(0);
|
|
6085
|
-
this.state =
|
|
6146
|
+
this.state = 1146;
|
|
6086
6147
|
this.match(MalloyParser.CPAREN);
|
|
6087
6148
|
}
|
|
6088
6149
|
break;
|
|
6089
6150
|
case 2:
|
|
6090
6151
|
this.enterOuterAlt(_localctx, 2);
|
|
6091
6152
|
{
|
|
6092
|
-
this.state =
|
|
6153
|
+
this.state = 1149;
|
|
6093
6154
|
this._errHandler.sync(this);
|
|
6094
6155
|
_la = this._input.LA(1);
|
|
6095
6156
|
if (((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & ((1 << (MalloyParser.LT - 118)) | (1 << (MalloyParser.GT - 118)) | (1 << (MalloyParser.EQ - 118)) | (1 << (MalloyParser.NE - 118)) | (1 << (MalloyParser.LTE - 118)) | (1 << (MalloyParser.GTE - 118)) | (1 << (MalloyParser.NOT_MATCH - 118)) | (1 << (MalloyParser.MATCH - 118)))) !== 0)) {
|
|
6096
6157
|
{
|
|
6097
|
-
this.state =
|
|
6158
|
+
this.state = 1148;
|
|
6098
6159
|
this.compareOp();
|
|
6099
6160
|
}
|
|
6100
6161
|
}
|
|
6101
|
-
this.state =
|
|
6162
|
+
this.state = 1151;
|
|
6102
6163
|
this.fieldExpr(0);
|
|
6103
6164
|
}
|
|
6104
6165
|
break;
|
|
@@ -6127,7 +6188,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6127
6188
|
let _alt;
|
|
6128
6189
|
this.enterOuterAlt(_localctx, 1);
|
|
6129
6190
|
{
|
|
6130
|
-
this.state =
|
|
6191
|
+
this.state = 1155;
|
|
6131
6192
|
this._errHandler.sync(this);
|
|
6132
6193
|
_alt = 1;
|
|
6133
6194
|
do {
|
|
@@ -6135,7 +6196,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6135
6196
|
case 1:
|
|
6136
6197
|
{
|
|
6137
6198
|
{
|
|
6138
|
-
this.state =
|
|
6199
|
+
this.state = 1154;
|
|
6139
6200
|
this.pick();
|
|
6140
6201
|
}
|
|
6141
6202
|
}
|
|
@@ -6143,18 +6204,18 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6143
6204
|
default:
|
|
6144
6205
|
throw new NoViableAltException_1.NoViableAltException(this);
|
|
6145
6206
|
}
|
|
6146
|
-
this.state =
|
|
6207
|
+
this.state = 1157;
|
|
6147
6208
|
this._errHandler.sync(this);
|
|
6148
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6209
|
+
_alt = this.interpreter.adaptivePredict(this._input, 115, this._ctx);
|
|
6149
6210
|
} while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER);
|
|
6150
|
-
this.state =
|
|
6211
|
+
this.state = 1161;
|
|
6151
6212
|
this._errHandler.sync(this);
|
|
6152
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
6213
|
+
switch (this.interpreter.adaptivePredict(this._input, 116, this._ctx)) {
|
|
6153
6214
|
case 1:
|
|
6154
6215
|
{
|
|
6155
|
-
this.state =
|
|
6216
|
+
this.state = 1159;
|
|
6156
6217
|
this.match(MalloyParser.ELSE);
|
|
6157
|
-
this.state =
|
|
6218
|
+
this.state = 1160;
|
|
6158
6219
|
_localctx._pickElse = this.fieldExpr(0);
|
|
6159
6220
|
}
|
|
6160
6221
|
break;
|
|
@@ -6184,20 +6245,20 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6184
6245
|
try {
|
|
6185
6246
|
this.enterOuterAlt(_localctx, 1);
|
|
6186
6247
|
{
|
|
6187
|
-
this.state =
|
|
6248
|
+
this.state = 1163;
|
|
6188
6249
|
this.match(MalloyParser.PICK);
|
|
6189
|
-
this.state =
|
|
6250
|
+
this.state = 1165;
|
|
6190
6251
|
this._errHandler.sync(this);
|
|
6191
6252
|
_la = this._input.LA(1);
|
|
6192
6253
|
if (((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & ((1 << (MalloyParser.ALL - 34)) | (1 << (MalloyParser.AVG - 34)) | (1 << (MalloyParser.CAST - 34)) | (1 << (MalloyParser.COUNT - 34)) | (1 << (MalloyParser.DAY - 34)) | (1 << (MalloyParser.EXCLUDE - 34)) | (1 << (MalloyParser.FALSE - 34)) | (1 << (MalloyParser.HOUR - 34)))) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & ((1 << (MalloyParser.MAX - 66)) | (1 << (MalloyParser.MIN - 66)) | (1 << (MalloyParser.MINUTE - 66)) | (1 << (MalloyParser.MONTH - 66)) | (1 << (MalloyParser.NOT - 66)) | (1 << (MalloyParser.NOW - 66)) | (1 << (MalloyParser.NULL - 66)) | (1 << (MalloyParser.PICK - 66)) | (1 << (MalloyParser.QUARTER - 66)) | (1 << (MalloyParser.SECOND - 66)) | (1 << (MalloyParser.SOURCE_KW - 66)) | (1 << (MalloyParser.SUM - 66)) | (1 << (MalloyParser.TRUE - 66)) | (1 << (MalloyParser.WEEK - 66)) | (1 << (MalloyParser.YEAR - 66)) | (1 << (MalloyParser.HACKY_REGEX - 66)))) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & ((1 << (MalloyParser.SQ_STRING - 98)) | (1 << (MalloyParser.DQ_STRING - 98)) | (1 << (MalloyParser.BQ_STRING - 98)) | (1 << (MalloyParser.OPAREN - 98)) | (1 << (MalloyParser.MINUS - 98)))) !== 0) || ((((_la - 136)) & ~0x1F) === 0 && ((1 << (_la - 136)) & ((1 << (MalloyParser.LITERAL_TIMESTAMP - 136)) | (1 << (MalloyParser.LITERAL_HOUR - 136)) | (1 << (MalloyParser.LITERAL_DAY - 136)) | (1 << (MalloyParser.LITERAL_QUARTER - 136)) | (1 << (MalloyParser.LITERAL_MONTH - 136)) | (1 << (MalloyParser.LITERAL_WEEK - 136)) | (1 << (MalloyParser.LITERAL_YEAR - 136)) | (1 << (MalloyParser.IDENTIFIER - 136)) | (1 << (MalloyParser.NUMERIC_LITERAL - 136)) | (1 << (MalloyParser.INTEGER_LITERAL - 136)) | (1 << (MalloyParser.SQL_BEGIN - 136)))) !== 0)) {
|
|
6193
6254
|
{
|
|
6194
|
-
this.state =
|
|
6255
|
+
this.state = 1164;
|
|
6195
6256
|
_localctx._pickValue = this.fieldExpr(0);
|
|
6196
6257
|
}
|
|
6197
6258
|
}
|
|
6198
|
-
this.state =
|
|
6259
|
+
this.state = 1167;
|
|
6199
6260
|
this.match(MalloyParser.WHEN);
|
|
6200
|
-
this.state =
|
|
6261
|
+
this.state = 1168;
|
|
6201
6262
|
_localctx._pickWhen = this.partialAllowedFieldExpr();
|
|
6202
6263
|
}
|
|
6203
6264
|
}
|
|
@@ -6225,32 +6286,32 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6225
6286
|
let _alt;
|
|
6226
6287
|
this.enterOuterAlt(_localctx, 1);
|
|
6227
6288
|
{
|
|
6228
|
-
this.state =
|
|
6289
|
+
this.state = 1170;
|
|
6229
6290
|
this.fieldExpr(0);
|
|
6230
|
-
this.state =
|
|
6291
|
+
this.state = 1175;
|
|
6231
6292
|
this._errHandler.sync(this);
|
|
6232
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6293
|
+
_alt = this.interpreter.adaptivePredict(this._input, 118, this._ctx);
|
|
6233
6294
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
6234
6295
|
if (_alt === 1) {
|
|
6235
6296
|
{
|
|
6236
6297
|
{
|
|
6237
|
-
this.state =
|
|
6298
|
+
this.state = 1171;
|
|
6238
6299
|
this.match(MalloyParser.COMMA);
|
|
6239
|
-
this.state =
|
|
6300
|
+
this.state = 1172;
|
|
6240
6301
|
this.fieldExpr(0);
|
|
6241
6302
|
}
|
|
6242
6303
|
}
|
|
6243
6304
|
}
|
|
6244
|
-
this.state =
|
|
6305
|
+
this.state = 1177;
|
|
6245
6306
|
this._errHandler.sync(this);
|
|
6246
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6307
|
+
_alt = this.interpreter.adaptivePredict(this._input, 118, this._ctx);
|
|
6247
6308
|
}
|
|
6248
|
-
this.state =
|
|
6309
|
+
this.state = 1179;
|
|
6249
6310
|
this._errHandler.sync(this);
|
|
6250
6311
|
_la = this._input.LA(1);
|
|
6251
6312
|
if (_la === MalloyParser.COMMA) {
|
|
6252
6313
|
{
|
|
6253
|
-
this.state =
|
|
6314
|
+
this.state = 1178;
|
|
6254
6315
|
this.match(MalloyParser.COMMA);
|
|
6255
6316
|
}
|
|
6256
6317
|
}
|
|
@@ -6280,32 +6341,32 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6280
6341
|
let _alt;
|
|
6281
6342
|
this.enterOuterAlt(_localctx, 1);
|
|
6282
6343
|
{
|
|
6283
|
-
this.state =
|
|
6344
|
+
this.state = 1181;
|
|
6284
6345
|
this.fieldName();
|
|
6285
|
-
this.state =
|
|
6346
|
+
this.state = 1188;
|
|
6286
6347
|
this._errHandler.sync(this);
|
|
6287
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6348
|
+
_alt = this.interpreter.adaptivePredict(this._input, 121, this._ctx);
|
|
6288
6349
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
6289
6350
|
if (_alt === 1) {
|
|
6290
6351
|
{
|
|
6291
6352
|
{
|
|
6292
|
-
this.state =
|
|
6353
|
+
this.state = 1183;
|
|
6293
6354
|
this._errHandler.sync(this);
|
|
6294
6355
|
_la = this._input.LA(1);
|
|
6295
6356
|
if (_la === MalloyParser.COMMA) {
|
|
6296
6357
|
{
|
|
6297
|
-
this.state =
|
|
6358
|
+
this.state = 1182;
|
|
6298
6359
|
this.match(MalloyParser.COMMA);
|
|
6299
6360
|
}
|
|
6300
6361
|
}
|
|
6301
|
-
this.state =
|
|
6362
|
+
this.state = 1185;
|
|
6302
6363
|
this.fieldName();
|
|
6303
6364
|
}
|
|
6304
6365
|
}
|
|
6305
6366
|
}
|
|
6306
|
-
this.state =
|
|
6367
|
+
this.state = 1190;
|
|
6307
6368
|
this._errHandler.sync(this);
|
|
6308
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6369
|
+
_alt = this.interpreter.adaptivePredict(this._input, 121, this._ctx);
|
|
6309
6370
|
}
|
|
6310
6371
|
}
|
|
6311
6372
|
}
|
|
@@ -6333,39 +6394,39 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6333
6394
|
let _alt;
|
|
6334
6395
|
this.enterOuterAlt(_localctx, 1);
|
|
6335
6396
|
{
|
|
6336
|
-
this.state =
|
|
6397
|
+
this.state = 1191;
|
|
6337
6398
|
this.collectionMember();
|
|
6338
|
-
this.state =
|
|
6399
|
+
this.state = 1198;
|
|
6339
6400
|
this._errHandler.sync(this);
|
|
6340
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6401
|
+
_alt = this.interpreter.adaptivePredict(this._input, 123, this._ctx);
|
|
6341
6402
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
6342
6403
|
if (_alt === 1) {
|
|
6343
6404
|
{
|
|
6344
6405
|
{
|
|
6345
|
-
this.state =
|
|
6406
|
+
this.state = 1193;
|
|
6346
6407
|
this._errHandler.sync(this);
|
|
6347
6408
|
_la = this._input.LA(1);
|
|
6348
6409
|
if (_la === MalloyParser.COMMA) {
|
|
6349
6410
|
{
|
|
6350
|
-
this.state =
|
|
6411
|
+
this.state = 1192;
|
|
6351
6412
|
this.match(MalloyParser.COMMA);
|
|
6352
6413
|
}
|
|
6353
6414
|
}
|
|
6354
|
-
this.state =
|
|
6415
|
+
this.state = 1195;
|
|
6355
6416
|
this.collectionMember();
|
|
6356
6417
|
}
|
|
6357
6418
|
}
|
|
6358
6419
|
}
|
|
6359
|
-
this.state =
|
|
6420
|
+
this.state = 1200;
|
|
6360
6421
|
this._errHandler.sync(this);
|
|
6361
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6422
|
+
_alt = this.interpreter.adaptivePredict(this._input, 123, this._ctx);
|
|
6362
6423
|
}
|
|
6363
|
-
this.state =
|
|
6424
|
+
this.state = 1202;
|
|
6364
6425
|
this._errHandler.sync(this);
|
|
6365
6426
|
_la = this._input.LA(1);
|
|
6366
6427
|
if (_la === MalloyParser.COMMA) {
|
|
6367
6428
|
{
|
|
6368
|
-
this.state =
|
|
6429
|
+
this.state = 1201;
|
|
6369
6430
|
this.match(MalloyParser.COMMA);
|
|
6370
6431
|
}
|
|
6371
6432
|
}
|
|
@@ -6394,25 +6455,25 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6394
6455
|
try {
|
|
6395
6456
|
this.enterOuterAlt(_localctx, 1);
|
|
6396
6457
|
{
|
|
6397
|
-
this.state =
|
|
6458
|
+
this.state = 1207;
|
|
6398
6459
|
this._errHandler.sync(this);
|
|
6399
6460
|
_la = this._input.LA(1);
|
|
6400
6461
|
if (_la === MalloyParser.BQ_STRING || _la === MalloyParser.IDENTIFIER) {
|
|
6401
6462
|
{
|
|
6402
|
-
this.state =
|
|
6463
|
+
this.state = 1204;
|
|
6403
6464
|
this.fieldPath();
|
|
6404
|
-
this.state =
|
|
6465
|
+
this.state = 1205;
|
|
6405
6466
|
this.match(MalloyParser.DOT);
|
|
6406
6467
|
}
|
|
6407
6468
|
}
|
|
6408
|
-
this.state =
|
|
6469
|
+
this.state = 1209;
|
|
6409
6470
|
this.match(MalloyParser.STAR);
|
|
6410
|
-
this.state =
|
|
6471
|
+
this.state = 1211;
|
|
6411
6472
|
this._errHandler.sync(this);
|
|
6412
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
6473
|
+
switch (this.interpreter.adaptivePredict(this._input, 126, this._ctx)) {
|
|
6413
6474
|
case 1:
|
|
6414
6475
|
{
|
|
6415
|
-
this.state =
|
|
6476
|
+
this.state = 1210;
|
|
6416
6477
|
this.starQualified();
|
|
6417
6478
|
}
|
|
6418
6479
|
break;
|
|
@@ -6442,29 +6503,29 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6442
6503
|
try {
|
|
6443
6504
|
this.enterOuterAlt(_localctx, 1);
|
|
6444
6505
|
{
|
|
6445
|
-
this.state = 1209;
|
|
6446
|
-
this.match(MalloyParser.OCURLY);
|
|
6447
6506
|
this.state = 1213;
|
|
6507
|
+
this.match(MalloyParser.OCURLY);
|
|
6508
|
+
this.state = 1217;
|
|
6448
6509
|
this._errHandler.sync(this);
|
|
6449
6510
|
_la = this._input.LA(1);
|
|
6450
6511
|
do {
|
|
6451
6512
|
{
|
|
6452
|
-
this.state =
|
|
6513
|
+
this.state = 1217;
|
|
6453
6514
|
this._errHandler.sync(this);
|
|
6454
6515
|
switch (this._input.LA(1)) {
|
|
6455
6516
|
case MalloyParser.EXCEPT:
|
|
6456
6517
|
{
|
|
6457
6518
|
{
|
|
6458
|
-
this.state =
|
|
6519
|
+
this.state = 1214;
|
|
6459
6520
|
this.match(MalloyParser.EXCEPT);
|
|
6460
|
-
this.state =
|
|
6521
|
+
this.state = 1215;
|
|
6461
6522
|
this.fieldNameList();
|
|
6462
6523
|
}
|
|
6463
6524
|
}
|
|
6464
6525
|
break;
|
|
6465
6526
|
case MalloyParser.COMMA:
|
|
6466
6527
|
{
|
|
6467
|
-
this.state =
|
|
6528
|
+
this.state = 1216;
|
|
6468
6529
|
this.match(MalloyParser.COMMA);
|
|
6469
6530
|
}
|
|
6470
6531
|
break;
|
|
@@ -6472,11 +6533,11 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6472
6533
|
throw new NoViableAltException_1.NoViableAltException(this);
|
|
6473
6534
|
}
|
|
6474
6535
|
}
|
|
6475
|
-
this.state =
|
|
6536
|
+
this.state = 1219;
|
|
6476
6537
|
this._errHandler.sync(this);
|
|
6477
6538
|
_la = this._input.LA(1);
|
|
6478
6539
|
} while (_la === MalloyParser.EXCEPT || _la === MalloyParser.COMMA);
|
|
6479
|
-
this.state =
|
|
6540
|
+
this.state = 1221;
|
|
6480
6541
|
this.match(MalloyParser.CCURLY);
|
|
6481
6542
|
}
|
|
6482
6543
|
}
|
|
@@ -6503,16 +6564,16 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6503
6564
|
try {
|
|
6504
6565
|
this.enterOuterAlt(_localctx, 1);
|
|
6505
6566
|
{
|
|
6506
|
-
this.state =
|
|
6567
|
+
this.state = 1223;
|
|
6507
6568
|
this.tags();
|
|
6508
|
-
this.state =
|
|
6569
|
+
this.state = 1224;
|
|
6509
6570
|
this.fieldPath();
|
|
6510
|
-
this.state =
|
|
6571
|
+
this.state = 1226;
|
|
6511
6572
|
this._errHandler.sync(this);
|
|
6512
6573
|
_la = this._input.LA(1);
|
|
6513
6574
|
if (_la === MalloyParser.DOT) {
|
|
6514
6575
|
{
|
|
6515
|
-
this.state =
|
|
6576
|
+
this.state = 1225;
|
|
6516
6577
|
this.refExpr();
|
|
6517
6578
|
}
|
|
6518
6579
|
}
|
|
@@ -6538,28 +6599,28 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6538
6599
|
let _localctx = new RefExprContext(this._ctx, this.state);
|
|
6539
6600
|
this.enterRule(_localctx, 242, MalloyParser.RULE_refExpr);
|
|
6540
6601
|
try {
|
|
6541
|
-
this.state =
|
|
6602
|
+
this.state = 1235;
|
|
6542
6603
|
this._errHandler.sync(this);
|
|
6543
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
6604
|
+
switch (this.interpreter.adaptivePredict(this._input, 130, this._ctx)) {
|
|
6544
6605
|
case 1:
|
|
6545
6606
|
this.enterOuterAlt(_localctx, 1);
|
|
6546
6607
|
{
|
|
6547
|
-
this.state =
|
|
6608
|
+
this.state = 1228;
|
|
6548
6609
|
this.match(MalloyParser.DOT);
|
|
6549
|
-
this.state =
|
|
6610
|
+
this.state = 1229;
|
|
6550
6611
|
this.timeframe();
|
|
6551
6612
|
}
|
|
6552
6613
|
break;
|
|
6553
6614
|
case 2:
|
|
6554
6615
|
this.enterOuterAlt(_localctx, 2);
|
|
6555
6616
|
{
|
|
6556
|
-
this.state =
|
|
6617
|
+
this.state = 1230;
|
|
6557
6618
|
this.match(MalloyParser.DOT);
|
|
6558
|
-
this.state =
|
|
6619
|
+
this.state = 1231;
|
|
6559
6620
|
this.aggregate();
|
|
6560
|
-
this.state =
|
|
6621
|
+
this.state = 1232;
|
|
6561
6622
|
this.match(MalloyParser.OPAREN);
|
|
6562
|
-
this.state =
|
|
6623
|
+
this.state = 1233;
|
|
6563
6624
|
this.match(MalloyParser.CPAREN);
|
|
6564
6625
|
}
|
|
6565
6626
|
break;
|
|
@@ -6585,27 +6646,27 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6585
6646
|
let _localctx = new CollectionMemberContext(this._ctx, this.state);
|
|
6586
6647
|
this.enterRule(_localctx, 244, MalloyParser.RULE_collectionMember);
|
|
6587
6648
|
try {
|
|
6588
|
-
this.state =
|
|
6649
|
+
this.state = 1240;
|
|
6589
6650
|
this._errHandler.sync(this);
|
|
6590
|
-
switch (this.interpreter.adaptivePredict(this._input,
|
|
6651
|
+
switch (this.interpreter.adaptivePredict(this._input, 131, this._ctx)) {
|
|
6591
6652
|
case 1:
|
|
6592
6653
|
this.enterOuterAlt(_localctx, 1);
|
|
6593
6654
|
{
|
|
6594
|
-
this.state =
|
|
6655
|
+
this.state = 1237;
|
|
6595
6656
|
this.taggedRef();
|
|
6596
6657
|
}
|
|
6597
6658
|
break;
|
|
6598
6659
|
case 2:
|
|
6599
6660
|
this.enterOuterAlt(_localctx, 2);
|
|
6600
6661
|
{
|
|
6601
|
-
this.state =
|
|
6662
|
+
this.state = 1238;
|
|
6602
6663
|
this.collectionWildCard();
|
|
6603
6664
|
}
|
|
6604
6665
|
break;
|
|
6605
6666
|
case 3:
|
|
6606
6667
|
this.enterOuterAlt(_localctx, 3);
|
|
6607
6668
|
{
|
|
6608
|
-
this.state =
|
|
6669
|
+
this.state = 1239;
|
|
6609
6670
|
this.fieldDef();
|
|
6610
6671
|
}
|
|
6611
6672
|
break;
|
|
@@ -6634,25 +6695,25 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6634
6695
|
let _alt;
|
|
6635
6696
|
this.enterOuterAlt(_localctx, 1);
|
|
6636
6697
|
{
|
|
6637
|
-
this.state =
|
|
6698
|
+
this.state = 1242;
|
|
6638
6699
|
this.fieldName();
|
|
6639
|
-
this.state =
|
|
6700
|
+
this.state = 1247;
|
|
6640
6701
|
this._errHandler.sync(this);
|
|
6641
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6702
|
+
_alt = this.interpreter.adaptivePredict(this._input, 132, this._ctx);
|
|
6642
6703
|
while (_alt !== 2 && _alt !== ATN_1.ATN.INVALID_ALT_NUMBER) {
|
|
6643
6704
|
if (_alt === 1) {
|
|
6644
6705
|
{
|
|
6645
6706
|
{
|
|
6646
|
-
this.state =
|
|
6707
|
+
this.state = 1243;
|
|
6647
6708
|
this.match(MalloyParser.DOT);
|
|
6648
|
-
this.state =
|
|
6709
|
+
this.state = 1244;
|
|
6649
6710
|
this.fieldName();
|
|
6650
6711
|
}
|
|
6651
6712
|
}
|
|
6652
6713
|
}
|
|
6653
|
-
this.state =
|
|
6714
|
+
this.state = 1249;
|
|
6654
6715
|
this._errHandler.sync(this);
|
|
6655
|
-
_alt = this.interpreter.adaptivePredict(this._input,
|
|
6716
|
+
_alt = this.interpreter.adaptivePredict(this._input, 132, this._ctx);
|
|
6656
6717
|
}
|
|
6657
6718
|
}
|
|
6658
6719
|
}
|
|
@@ -6678,7 +6739,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6678
6739
|
try {
|
|
6679
6740
|
this.enterOuterAlt(_localctx, 1);
|
|
6680
6741
|
{
|
|
6681
|
-
this.state =
|
|
6742
|
+
this.state = 1250;
|
|
6682
6743
|
this.id();
|
|
6683
6744
|
}
|
|
6684
6745
|
}
|
|
@@ -6704,7 +6765,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6704
6765
|
try {
|
|
6705
6766
|
this.enterOuterAlt(_localctx, 1);
|
|
6706
6767
|
{
|
|
6707
|
-
this.state =
|
|
6768
|
+
this.state = 1252;
|
|
6708
6769
|
this.id();
|
|
6709
6770
|
}
|
|
6710
6771
|
}
|
|
@@ -6730,9 +6791,9 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6730
6791
|
try {
|
|
6731
6792
|
this.enterOuterAlt(_localctx, 1);
|
|
6732
6793
|
{
|
|
6733
|
-
this.state =
|
|
6794
|
+
this.state = 1254;
|
|
6734
6795
|
this.fieldExpr(0);
|
|
6735
|
-
this.state =
|
|
6796
|
+
this.state = 1255;
|
|
6736
6797
|
this.match(MalloyParser.EOF);
|
|
6737
6798
|
}
|
|
6738
6799
|
}
|
|
@@ -6758,7 +6819,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6758
6819
|
try {
|
|
6759
6820
|
this.enterOuterAlt(_localctx, 1);
|
|
6760
6821
|
{
|
|
6761
|
-
this.state =
|
|
6822
|
+
this.state = 1257;
|
|
6762
6823
|
this.id();
|
|
6763
6824
|
}
|
|
6764
6825
|
}
|
|
@@ -6784,7 +6845,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6784
6845
|
try {
|
|
6785
6846
|
this.enterOuterAlt(_localctx, 1);
|
|
6786
6847
|
{
|
|
6787
|
-
this.state =
|
|
6848
|
+
this.state = 1259;
|
|
6788
6849
|
this.id();
|
|
6789
6850
|
}
|
|
6790
6851
|
}
|
|
@@ -6810,7 +6871,7 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6810
6871
|
try {
|
|
6811
6872
|
this.enterOuterAlt(_localctx, 1);
|
|
6812
6873
|
{
|
|
6813
|
-
this.state =
|
|
6874
|
+
this.state = 1261;
|
|
6814
6875
|
this.string();
|
|
6815
6876
|
}
|
|
6816
6877
|
}
|
|
@@ -6836,15 +6897,15 @@ class MalloyParser extends Parser_1.Parser {
|
|
|
6836
6897
|
try {
|
|
6837
6898
|
this.enterOuterAlt(_localctx, 1);
|
|
6838
6899
|
{
|
|
6839
|
-
this.state =
|
|
6900
|
+
this.state = 1263;
|
|
6840
6901
|
this.match(MalloyParser.SEMI);
|
|
6841
|
-
this.state =
|
|
6902
|
+
this.state = 1264;
|
|
6842
6903
|
this.match(MalloyParser.SEMI);
|
|
6843
|
-
this.state =
|
|
6904
|
+
this.state = 1265;
|
|
6844
6905
|
this.match(MalloyParser.OBRACK);
|
|
6845
|
-
this.state =
|
|
6906
|
+
this.state = 1266;
|
|
6846
6907
|
this.string();
|
|
6847
|
-
this.state =
|
|
6908
|
+
this.state = 1267;
|
|
6848
6909
|
this.match(MalloyParser.CBRACK);
|
|
6849
6910
|
}
|
|
6850
6911
|
}
|
|
@@ -7303,7 +7364,7 @@ MalloyParser._SYMBOLIC_NAMES = [
|
|
|
7303
7364
|
];
|
|
7304
7365
|
MalloyParser.VOCABULARY = new VocabularyImpl_1.VocabularyImpl(MalloyParser._LITERAL_NAMES, MalloyParser._SYMBOLIC_NAMES, []);
|
|
7305
7366
|
MalloyParser._serializedATNSegments = 3;
|
|
7306
|
-
MalloyParser._serializedATNSegment0 = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03\x9D\
|
|
7367
|
+
MalloyParser._serializedATNSegment0 = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03\x9D\u04F8\x04" +
|
|
7307
7368
|
"\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04" +
|
|
7308
7369
|
"\x07\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" +
|
|
7309
7370
|
"\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12" +
|
|
@@ -7365,48 +7426,48 @@ MalloyParser._serializedATNSegment0 = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\
|
|
|
7365
7426
|
"\v;\x03;\x03;\x05;\u02B4\n;\x03;\x05;\u02B7\n;\x03;\x03;\x05;\u02BB\n" +
|
|
7366
7427
|
";\x05;\u02BD\n;\x03<\x03<\x03=\x03=\x05=\u02C3\n=\x03>\x03>\x03>\x07>" +
|
|
7367
7428
|
"\u02C8\n>\f>\x0E>\u02CB\v>\x03>\x03>\x03?\x03?\x03?\x07?\u02D2\n?\f?\x0E" +
|
|
7368
|
-
"?\u02D5\v?\x03?\x05?\u02D8\n?\x03@\x03@\x05@\u02DC\n@\
|
|
7369
|
-
"
|
|
7370
|
-
"\fD\x0ED\
|
|
7371
|
-
"
|
|
7372
|
-
"\nG\x03H\x03H\x03I\x07I\
|
|
7373
|
-
"\
|
|
7374
|
-
"J\x03J\x03J\x03J\x03J\x05J\
|
|
7375
|
-
"
|
|
7376
|
-
"\nM\x03N\x03N\x05N\
|
|
7377
|
-
"
|
|
7378
|
-
"
|
|
7379
|
-
"\x03R\x03R\x03S\x03S\x03S\x03S\x03T\x03T\x03T\x03T\x03U\
|
|
7380
|
-
"U\x07U\
|
|
7381
|
-
"
|
|
7382
|
-
"\nW\x03X\x03X\x05X\
|
|
7383
|
-
"
|
|
7384
|
-
"\\\x05\\\
|
|
7385
|
-
"\x07]\
|
|
7386
|
-
"
|
|
7387
|
-
"
|
|
7388
|
-
"i\x03i\x03i\x03i\x05i\
|
|
7389
|
-
"j\
|
|
7390
|
-
"p\x05p\
|
|
7391
|
-
"q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x05q\
|
|
7392
|
-
"
|
|
7393
|
-
"q\x05q\
|
|
7394
|
-
"q\x05q\
|
|
7395
|
-
"q\x05q\
|
|
7396
|
-
"\x03q\x03q\x07q\
|
|
7429
|
+
"?\u02D5\v?\x03?\x05?\u02D8\n?\x03@\x03@\x05@\u02DC\n@\x03@\x03@\x05@\u02E0" +
|
|
7430
|
+
"\n@\x03A\x03A\x03A\x03B\x03B\x03C\x03C\x03C\x03C\x05C\u02EB\nC\x03D\x03" +
|
|
7431
|
+
"D\x03D\x07D\u02F0\nD\fD\x0ED\u02F3\vD\x03D\x05D\u02F6\nD\x03E\x03E\x03" +
|
|
7432
|
+
"E\x03F\x03F\x03F\x03G\x03G\x05G\u0300\nG\x03G\x07G\u0303\nG\fG\x0EG\u0306" +
|
|
7433
|
+
"\vG\x03G\x05G\u0309\nG\x03H\x03H\x03I\x07I\u030E\nI\fI\x0EI\u0311\vI\x03" +
|
|
7434
|
+
"I\x03I\x03I\x03I\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03" +
|
|
7435
|
+
"J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x05J\u0329\nJ\x03K\x03K\x03L\x03" +
|
|
7436
|
+
"L\x03L\x03L\x03M\x03M\x05M\u0333\nM\x03M\x07M\u0336\nM\fM\x0EM\u0339\v" +
|
|
7437
|
+
"M\x03M\x05M\u033C\nM\x03N\x03N\x05N\u0340\nN\x03O\x03O\x03O\x03O\x03P" +
|
|
7438
|
+
"\x03P\x05P\u0348\nP\x03P\x07P\u034B\nP\fP\x0EP\u034E\vP\x03P\x05P\u0351" +
|
|
7439
|
+
"\nP\x03Q\x03Q\x03Q\x03Q\x05Q\u0357\nQ\x03Q\x03Q\x03Q\x03Q\x03Q\x05Q\u035E" +
|
|
7440
|
+
"\nQ\x03R\x03R\x03R\x03R\x03S\x03S\x03S\x03S\x03T\x03T\x03T\x03T\x03U\x03" +
|
|
7441
|
+
"U\x03U\x03U\x07U\u0370\nU\fU\x0EU\u0373\vU\x03U\x05U\u0376\nU\x03V\x03" +
|
|
7442
|
+
"V\x03V\x03W\x03W\x05W\u037D\nW\x03W\x07W\u0380\nW\fW\x0EW\u0383\vW\x03" +
|
|
7443
|
+
"W\x05W\u0386\nW\x03X\x03X\x05X\u038A\nX\x03X\x05X\u038D\nX\x03Y\x03Y\x03" +
|
|
7444
|
+
"Y\x03Z\x03Z\x03Z\x03Z\x05Z\u0396\nZ\x03[\x03[\x03[\x05[\u039B\n[\x03\\" +
|
|
7445
|
+
"\x03\\\x03\\\x05\\\u03A0\n\\\x03\\\x05\\\u03A3\n\\\x03]\x03]\x05]\u03A7" +
|
|
7446
|
+
"\n]\x03]\x07]\u03AA\n]\f]\x0E]\u03AD\v]\x03^\x03^\x03^\x03^\x05^\u03B3" +
|
|
7447
|
+
"\n^\x03_\x03_\x03_\x03`\x03`\x03`\x03a\x03a\x03b\x03b\x03c\x03c\x03d\x03" +
|
|
7448
|
+
"d\x03e\x03e\x03f\x03f\x05f\u03C7\nf\x03g\x03g\x03h\x03h\x03i\x03i\x03" +
|
|
7449
|
+
"i\x03i\x03i\x03i\x03i\x05i\u03D4\ni\x03j\x03j\x03j\x03j\x03j\x03j\x03" +
|
|
7450
|
+
"j\x05j\u03DD\nj\x03k\x03k\x03l\x03l\x03m\x03m\x03n\x03n\x03o\x03o\x03" +
|
|
7451
|
+
"p\x03p\x05p\u03EB\np\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03" +
|
|
7452
|
+
"q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x05q\u0403" +
|
|
7453
|
+
"\nq\x03q\x03q\x03q\x03q\x05q\u0409\nq\x03q\x03q\x03q\x03q\x03q\x03q\x03" +
|
|
7454
|
+
"q\x05q\u0412\nq\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03" +
|
|
7455
|
+
"q\x05q\u041F\nq\x03q\x03q\x03q\x03q\x03q\x05q\u0426\nq\x05q\u0428\nq\x03" +
|
|
7456
|
+
"q\x05q\u042B\nq\x03q\x03q\x05q\u042F\nq\x03q\x03q\x03q\x03q\x03q\x03q" +
|
|
7457
|
+
"\x03q\x03q\x07q\u0439\nq\fq\x0Eq\u043C\vq\x03q\x03q\x05q\u0440\nq\x03" +
|
|
7397
7458
|
"q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03" +
|
|
7398
7459
|
"q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03" +
|
|
7399
7460
|
"q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03q\x03" +
|
|
7400
|
-
"q\x03q\x03q\x03q\x03q\x03q\x03q\x07q\
|
|
7401
|
-
"r\x05r\
|
|
7402
|
-
"s\x06s\
|
|
7403
|
-
"\nt\x03t\x03t\x03t\x03u\x03u\x03u\x07u\
|
|
7404
|
-
"\x05u\
|
|
7405
|
-
"\vv\x03w\x03w\x05w\
|
|
7406
|
-
"w\
|
|
7407
|
-
"y\x03y\x03y\x06y\
|
|
7408
|
-
"\
|
|
7409
|
-
"|\x05|\
|
|
7461
|
+
"q\x03q\x03q\x03q\x03q\x03q\x03q\x07q\u0473\nq\fq\x0Eq\u0476\vq\x03r\x03" +
|
|
7462
|
+
"r\x05r\u047A\nr\x03r\x03r\x03r\x03r\x05r\u0480\nr\x03r\x05r\u0483\nr\x03" +
|
|
7463
|
+
"s\x06s\u0486\ns\rs\x0Es\u0487\x03s\x03s\x05s\u048C\ns\x03t\x03t\x05t\u0490" +
|
|
7464
|
+
"\nt\x03t\x03t\x03t\x03u\x03u\x03u\x07u\u0498\nu\fu\x0Eu\u049B\vu\x03u" +
|
|
7465
|
+
"\x05u\u049E\nu\x03v\x03v\x05v\u04A2\nv\x03v\x07v\u04A5\nv\fv\x0Ev\u04A8" +
|
|
7466
|
+
"\vv\x03w\x03w\x05w\u04AC\nw\x03w\x07w\u04AF\nw\fw\x0Ew\u04B2\vw\x03w\x05" +
|
|
7467
|
+
"w\u04B5\nw\x03x\x03x\x03x\x05x\u04BA\nx\x03x\x03x\x05x\u04BE\nx\x03y\x03" +
|
|
7468
|
+
"y\x03y\x03y\x06y\u04C4\ny\ry\x0Ey\u04C5\x03y\x03y\x03z\x03z\x03z\x05z" +
|
|
7469
|
+
"\u04CD\nz\x03{\x03{\x03{\x03{\x03{\x03{\x03{\x05{\u04D6\n{\x03|\x03|\x03" +
|
|
7470
|
+
"|\x05|\u04DB\n|\x03}\x03}\x03}\x07}\u04E0\n}\f}\x0E}\u04E3\v}\x03~\x03" +
|
|
7410
7471
|
"~\x03\x7F\x03\x7F\x03\x80\x03\x80\x03\x80\x03\x81\x03\x81\x03\x82\x03" +
|
|
7411
7472
|
"\x82\x03\x83\x03\x83\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03" +
|
|
7412
7473
|
"\x84\x02\x02\x05df\xE0\x85\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02\x0E" +
|
|
@@ -7426,7 +7487,7 @@ MalloyParser._serializedATNSegment0 = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\
|
|
|
7426
7487
|
"\"\"\x06\x0288??CCPP\x04\x02\'\'11\x04\x02\x18\x18\x1D\x1D\x06\x0277[" +
|
|
7427
7488
|
"[\x92\x92\x94\x94\x06\x02((..DETT\x07\x02))//KKRRYY\x04\x02x}\x85\x86" +
|
|
7428
7489
|
"\x03\x02de\x03\x02\x93\x94\x04\x0277[[\x04\x02ff\x91\x91\t\x0200==FGO" +
|
|
7429
|
-
"OQQ]]``\x04\x02$$55\x05\x02\x80\x80\x82\x82\x87\x87\x03\x02~\x7F\x02\
|
|
7490
|
+
"OQQ]]``\x04\x02$$55\x05\x02\x80\x80\x82\x82\x87\x87\x03\x02~\x7F\x02\u0548" +
|
|
7430
7491
|
"\x02\u010C\x03\x02\x02\x02\x04\u0119\x03\x02\x02\x02\x06\u011B\x03\x02" +
|
|
7431
7492
|
"\x02\x02\b\u0124\x03\x02\x02\x02\n\u0126\x03\x02\x02\x02\f\u012C\x03\x02" +
|
|
7432
7493
|
"\x02\x02\x0E\u012F\x03\x02\x02\x02\x10\u0133\x03\x02\x02\x02\x12\u0137" +
|
|
@@ -7448,31 +7509,31 @@ MalloyParser._serializedATNSegment0 = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\
|
|
|
7448
7509
|
"\x02\x02l\u027D\x03\x02\x02\x02n\u0287\x03\x02\x02\x02p\u0294\x03\x02" +
|
|
7449
7510
|
"\x02\x02r\u0299\x03\x02\x02\x02t\u02BC\x03\x02\x02\x02v\u02BE\x03\x02" +
|
|
7450
7511
|
"\x02\x02x\u02C2\x03\x02\x02\x02z\u02C4\x03\x02\x02\x02|\u02CE\x03\x02" +
|
|
7451
|
-
"\x02\x02~\
|
|
7452
|
-
"\x02\x02\x02\x84\
|
|
7453
|
-
"\x03\x02\x02\x02\x8A\
|
|
7454
|
-
"\
|
|
7455
|
-
"\x02\x94\
|
|
7456
|
-
"\x02\x02\x02\x9A\
|
|
7457
|
-
"\x03\x02\x02\x02\xA0\
|
|
7458
|
-
"\
|
|
7459
|
-
"\x02\xAA\
|
|
7460
|
-
"\x02\x02\x02\xB0\
|
|
7461
|
-
"\x03\x02\x02\x02\xB6\
|
|
7462
|
-
"\
|
|
7463
|
-
"\x02\xC0\
|
|
7464
|
-
"\x02\x02\x02\xC6\
|
|
7465
|
-
"\x03\x02\x02\x02\xCC\
|
|
7466
|
-
"\
|
|
7467
|
-
"\x02\xD6\
|
|
7468
|
-
"\x02\x02\x02\xDC\
|
|
7469
|
-
"\x03\x02\x02\x02\xE2\
|
|
7470
|
-
"\
|
|
7471
|
-
"\x02\xEC\
|
|
7472
|
-
"\x02\x02\x02\xF2\
|
|
7473
|
-
"\x03\x02\x02\x02\xF8\
|
|
7474
|
-
"\
|
|
7475
|
-
"\x02\u0102\
|
|
7512
|
+
"\x02\x02~\u02DF\x03\x02\x02\x02\x80\u02E1\x03\x02\x02\x02\x82\u02E4\x03" +
|
|
7513
|
+
"\x02\x02\x02\x84\u02EA\x03\x02\x02\x02\x86\u02EC\x03\x02\x02\x02\x88\u02F7" +
|
|
7514
|
+
"\x03\x02\x02\x02\x8A\u02FA\x03\x02\x02\x02\x8C\u02FD\x03\x02\x02\x02\x8E" +
|
|
7515
|
+
"\u030A\x03\x02\x02\x02\x90\u030F\x03\x02\x02\x02\x92\u0328\x03\x02\x02" +
|
|
7516
|
+
"\x02\x94\u032A\x03\x02\x02\x02\x96\u032C\x03\x02\x02\x02\x98\u0330\x03" +
|
|
7517
|
+
"\x02\x02\x02\x9A\u033F\x03\x02\x02\x02\x9C\u0341\x03\x02\x02\x02\x9E\u0345" +
|
|
7518
|
+
"\x03\x02\x02\x02\xA0\u035D\x03\x02\x02\x02\xA2\u035F\x03\x02\x02\x02\xA4" +
|
|
7519
|
+
"\u0363\x03\x02\x02\x02\xA6\u0367\x03\x02\x02\x02\xA8\u036B\x03\x02\x02" +
|
|
7520
|
+
"\x02\xAA\u0377\x03\x02\x02\x02\xAC\u037A\x03\x02\x02\x02\xAE\u0389\x03" +
|
|
7521
|
+
"\x02\x02\x02\xB0\u038E\x03\x02\x02\x02\xB2\u0395\x03\x02\x02\x02\xB4\u0397" +
|
|
7522
|
+
"\x03\x02\x02\x02\xB6\u03A2\x03\x02\x02\x02\xB8\u03A4\x03\x02\x02\x02\xBA" +
|
|
7523
|
+
"\u03AE\x03\x02\x02\x02\xBC\u03B4\x03\x02\x02\x02\xBE\u03B7\x03\x02\x02" +
|
|
7524
|
+
"\x02\xC0\u03BA\x03\x02\x02\x02\xC2\u03BC\x03\x02\x02\x02\xC4\u03BE\x03" +
|
|
7525
|
+
"\x02\x02\x02\xC6\u03C0\x03\x02\x02\x02\xC8\u03C2\x03\x02\x02\x02\xCA\u03C6" +
|
|
7526
|
+
"\x03\x02\x02\x02\xCC\u03C8\x03\x02\x02\x02\xCE\u03CA\x03\x02\x02\x02\xD0" +
|
|
7527
|
+
"\u03D3\x03\x02\x02\x02\xD2\u03DC\x03\x02\x02\x02\xD4\u03DE\x03\x02\x02" +
|
|
7528
|
+
"\x02\xD6\u03E0\x03\x02\x02\x02\xD8\u03E2\x03\x02\x02\x02\xDA\u03E4\x03" +
|
|
7529
|
+
"\x02\x02\x02\xDC\u03E6\x03\x02\x02\x02\xDE\u03EA\x03\x02\x02\x02\xE0\u043F" +
|
|
7530
|
+
"\x03\x02\x02\x02\xE2\u0482\x03\x02\x02\x02\xE4\u0485\x03\x02\x02\x02\xE6" +
|
|
7531
|
+
"\u048D\x03\x02\x02\x02\xE8\u0494\x03\x02\x02\x02\xEA\u049F\x03\x02\x02" +
|
|
7532
|
+
"\x02\xEC\u04A9\x03\x02\x02\x02\xEE\u04B9\x03\x02\x02\x02\xF0\u04BF\x03" +
|
|
7533
|
+
"\x02\x02\x02\xF2\u04C9\x03\x02\x02\x02\xF4\u04D5\x03\x02\x02\x02\xF6\u04DA" +
|
|
7534
|
+
"\x03\x02\x02\x02\xF8\u04DC\x03\x02\x02\x02\xFA\u04E4\x03\x02\x02\x02\xFC" +
|
|
7535
|
+
"\u04E6\x03\x02\x02\x02\xFE\u04E8\x03\x02\x02\x02\u0100\u04EB\x03\x02\x02" +
|
|
7536
|
+
"\x02\u0102\u04ED\x03\x02\x02\x02\u0104\u04EF\x03\x02\x02\x02\u0106\u04F1" +
|
|
7476
7537
|
"\x03\x02\x02\x02\u0108\u010B\x05\x04\x03\x02\u0109\u010B\x07\x84\x02\x02" +
|
|
7477
7538
|
"\u010A\u0108\x03\x02\x02\x02\u010A\u0109\x03\x02\x02\x02\u010B\u010E\x03" +
|
|
7478
7539
|
"\x02\x02\x02\u010C\u010A\x03\x02\x02\x02\u010C\u010D\x03\x02\x02\x02\u010D" +
|
|
@@ -7541,401 +7602,404 @@ MalloyParser._serializedATNSegment0 = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\
|
|
|
7541
7602
|
"\x02\x02\x02\u019E\u019F\x03\x02\x02\x02\u019F\u01A0\x07m\x02\x02\u01A0" +
|
|
7542
7603
|
"3\x03\x02\x02\x02\u01A1\u01A2\x07V\x02\x02\u01A2\u01A3\x07l\x02\x02\u01A3" +
|
|
7543
7604
|
"\u01A4\x05\xD6l\x02\u01A4\u01A5\x07m\x02\x02\u01A5\u01AE\x03\x02\x02\x02" +
|
|
7544
|
-
"\u01A6
|
|
7545
|
-
MalloyParser._serializedATNSegment1 = "\
|
|
7546
|
-
"\
|
|
7547
|
-
"\
|
|
7548
|
-
"\x02\
|
|
7549
|
-
"\x1E\x02\u01B2\u01B7\x07p\x02\x02\u01B3
|
|
7550
|
-
"\
|
|
7551
|
-
"\
|
|
7552
|
-
"\x02\x02\x02\u01B8\
|
|
7553
|
-
"\
|
|
7554
|
-
"\x02\
|
|
7555
|
-
"\x02\x02\u01BF\
|
|
7556
|
-
"\
|
|
7557
|
-
"\
|
|
7558
|
-
"\
|
|
7559
|
-
"\
|
|
7560
|
-
"\x02\x02\x02\u01CB\
|
|
7561
|
-
"\
|
|
7562
|
-
"\x02\u01CF\
|
|
7563
|
-
"\
|
|
7564
|
-
"\
|
|
7565
|
-
"\x02\x02\
|
|
7566
|
-
"\xD8m\x02\
|
|
7567
|
-
"\
|
|
7568
|
-
"\
|
|
7569
|
-
"\x02\x02\u01E1\
|
|
7570
|
-
"\
|
|
7571
|
-
"\
|
|
7572
|
-
"\
|
|
7573
|
-
"
|
|
7574
|
-
"\
|
|
7575
|
-
"\
|
|
7576
|
-
"\
|
|
7577
|
-
"\
|
|
7578
|
-
"
|
|
7579
|
-
"\
|
|
7580
|
-
"\x02\x02\
|
|
7581
|
-
"\
|
|
7582
|
-
"\
|
|
7583
|
-
"\
|
|
7584
|
-
"\
|
|
7585
|
-
"\x02\x02\
|
|
7586
|
-
"\
|
|
7587
|
-
"\
|
|
7588
|
-
"\
|
|
7589
|
-
"\u0209\
|
|
7590
|
-
"\x02\x02\
|
|
7591
|
-
"\x03\x02\x02\x02\
|
|
7592
|
-
"\u0210\
|
|
7593
|
-
"
|
|
7594
|
-
"
|
|
7595
|
-
"\u0217\
|
|
7596
|
-
"\x02\
|
|
7597
|
-
"\x03\x02\x02\x02\u021C\
|
|
7598
|
-
"\
|
|
7599
|
-
"\x02\x02\u0220\
|
|
7600
|
-
"\
|
|
7601
|
-
"\x02\u0224\
|
|
7602
|
-
"\f\x07\x02\u0227\u0228\x05X-\x02\u0228
|
|
7603
|
-
"\x05\xE0q\x02\u022AW\x03\x02\x02\x02\u022B
|
|
7604
|
-
"\x02\x02\x02\u022D\u022E\x05\xD8m\x02\u022E
|
|
7605
|
-
"\x07\b\x02\x02\u0230\u0231\x05T+\x02\u0231
|
|
7606
|
-
"\x05\f\x07\x02\u0233\u0234\x07\x10\x02\x02
|
|
7607
|
-
"\u023F\x03\x02\x02\x02\u0236\u0237\x05\f\x07
|
|
7608
|
-
"\x02\u0238\
|
|
7609
|
-
"\f\x07\x02\u023B\u023C\x07\x0F\x02\x02\u023C
|
|
7610
|
-
"\
|
|
7611
|
-
"\u023E\
|
|
7612
|
-
"\x02\x02\u0241\
|
|
7613
|
-
"^0\x02\u0244\u0247\x05\x88E\x02\u0245\u0247\x05
|
|
7614
|
-
"
|
|
7615
|
-
"
|
|
7616
|
-
"\u024B\x07l\x02\x02\u024B\u024C\x05d3\x02\u024C
|
|
7617
|
-
"\u0251\x03\x02\x02\x02\u024E\u0251\x054\x1B\x02
|
|
7618
|
-
"\
|
|
7619
|
-
"\x02\x02\x02\u0250\
|
|
7620
|
-
"\
|
|
7621
|
-
"\
|
|
7622
|
-
"\
|
|
7623
|
-
"\
|
|
7624
|
-
"\x02\x02\
|
|
7625
|
-
"\
|
|
7626
|
-
"\x02\
|
|
7627
|
-
"\x1D\x02\u0263\u0264\x07l\x02\x02\u0264
|
|
7628
|
-
"
|
|
7629
|
-
"\
|
|
7630
|
-
"\x02\x02\
|
|
7631
|
-
"\
|
|
7632
|
-
"\
|
|
7633
|
-
"\x02\
|
|
7634
|
-
"
|
|
7635
|
-
"\
|
|
7636
|
-
"
|
|
7637
|
-
"\
|
|
7638
|
-
"\
|
|
7639
|
-
"\
|
|
7640
|
-
"\x02\x02\u0280\
|
|
7641
|
-
"\
|
|
7642
|
-
"\
|
|
7643
|
-
"\x02\x02\
|
|
7644
|
-
"\
|
|
7645
|
-
"\
|
|
7646
|
-
"\x02\x02\
|
|
7647
|
-
"\
|
|
7648
|
-
"\
|
|
7649
|
-
"\x02\x02\x02\
|
|
7650
|
-
"\
|
|
7651
|
-
"\
|
|
7652
|
-
"\
|
|
7653
|
-
"\x02\x02\u029E\
|
|
7654
|
-
"\
|
|
7655
|
-
"\u02A2\
|
|
7656
|
-
"\x02\x02\
|
|
7657
|
-
"\x03\x02\x02\x02\u02A7\
|
|
7658
|
-
"\
|
|
7659
|
-
"
|
|
7660
|
-
"\
|
|
7661
|
-
"\x02\x02\
|
|
7662
|
-
"\
|
|
7663
|
-
"\
|
|
7664
|
-
"\u02B6\
|
|
7665
|
-
"
|
|
7666
|
-
"\x03\x02\x02\x02\u02BB\
|
|
7667
|
-
"\u02BC\
|
|
7668
|
-
"
|
|
7669
|
-
"\
|
|
7670
|
-
"
|
|
7671
|
-
"\u02C8\
|
|
7672
|
-
"\x02\
|
|
7673
|
-
"\
|
|
7674
|
-
"\x02\x02\u02CC\u02CD\x07q\x02\x02\u02CD{\x03\x02\x02
|
|
7675
|
-
"~@\x02\u02CF\u02D0\x07v\x02\x02\u02D0\u02D2\x05
|
|
7676
|
-
"\x02\
|
|
7677
|
-
"\
|
|
7678
|
-
"\x02\x02\u02D6\u02D8\x07v\x02\x02\u02D7\u02D6\x03
|
|
7679
|
-
"\
|
|
7680
|
-
"\
|
|
7681
|
-
"\x02\u02DC\
|
|
7682
|
-
"\
|
|
7683
|
-
"\x03\x02\x02\x02\
|
|
7684
|
-
"\
|
|
7685
|
-
"\
|
|
7686
|
-
"\
|
|
7687
|
-
"\
|
|
7688
|
-
"\
|
|
7689
|
-
"\x02\x02\x02\
|
|
7690
|
-
"\
|
|
7691
|
-
"\x02\
|
|
7692
|
-
"\
|
|
7693
|
-
"\
|
|
7694
|
-
"\
|
|
7695
|
-
"\x02\
|
|
7696
|
-
"\x03\x02\x02\x02\
|
|
7697
|
-
"\
|
|
7698
|
-
"\x02\x02\x02\u0303\
|
|
7699
|
-
"\
|
|
7700
|
-
"\x02\
|
|
7701
|
-
"\
|
|
7702
|
-
"\
|
|
7703
|
-
"\x02\x02\
|
|
7704
|
-
"\
|
|
7705
|
-
"\
|
|
7706
|
-
"\x05\
|
|
7707
|
-
"\
|
|
7708
|
-
"\
|
|
7709
|
-
"
|
|
7710
|
-
"\
|
|
7711
|
-
"\
|
|
7712
|
-
"\u0324\
|
|
7713
|
-
"\
|
|
7714
|
-
"\
|
|
7715
|
-
"\x02\x02\
|
|
7716
|
-
"\
|
|
7717
|
-
"\x02\x02\
|
|
7718
|
-
"\
|
|
7719
|
-
"\
|
|
7720
|
-
"\
|
|
7721
|
-
"\x02\
|
|
7722
|
-
"\
|
|
7723
|
-
"\
|
|
7724
|
-
"\x02\x02\x02\
|
|
7725
|
-
"\
|
|
7726
|
-
"\x02\
|
|
7727
|
-
"
|
|
7728
|
-
"\
|
|
7729
|
-
"\
|
|
7730
|
-
"
|
|
7731
|
-
"\
|
|
7732
|
-
"\
|
|
7733
|
-
"\
|
|
7734
|
-
"\u0348\x03\x02\x02\x02\u034B\
|
|
7735
|
-
"\x02\
|
|
7736
|
-
"\
|
|
7737
|
-
"\
|
|
7738
|
-
"\
|
|
7739
|
-
"
|
|
7740
|
-
"\
|
|
7741
|
-
"\
|
|
7742
|
-
"\
|
|
7743
|
-
"\
|
|
7744
|
-
"\
|
|
7745
|
-
"\
|
|
7746
|
-
"\x02\x02\
|
|
7747
|
-
"\
|
|
7748
|
-
"\
|
|
7749
|
-
"\
|
|
7750
|
-
"\
|
|
7751
|
-
"\x02\
|
|
7752
|
-
"\x02\x02\x02\u0376\
|
|
7753
|
-
"\
|
|
7754
|
-
"\
|
|
7755
|
-
"\
|
|
7756
|
-
"\
|
|
7757
|
-
"\x02\
|
|
7758
|
-
"\x03\x02\x02\x02\
|
|
7759
|
-
"\
|
|
7760
|
-
"\x02\x02\x02\
|
|
7761
|
-
"\
|
|
7762
|
-
"\x02\
|
|
7763
|
-
"\
|
|
7764
|
-
"\
|
|
7765
|
-
"\x02\
|
|
7766
|
-
"\
|
|
7767
|
-
"\
|
|
7768
|
-
"\x02\
|
|
7769
|
-
"\
|
|
7770
|
-
"\
|
|
7771
|
-
"\x02\x02\
|
|
7772
|
-
"\
|
|
7773
|
-
"\x02\
|
|
7774
|
-
"\x03\x02\x02\x02\
|
|
7775
|
-
"\
|
|
7776
|
-
"\x02\x02\x02\u03AA\
|
|
7777
|
-
"\u03AD\
|
|
7778
|
-
"\x02\
|
|
7779
|
-
"\x07\
|
|
7780
|
-
"\
|
|
7781
|
-
"\
|
|
7782
|
-
"\x02\
|
|
7783
|
-
"\
|
|
7784
|
-
"\
|
|
7785
|
-
"\
|
|
7786
|
-
"\x02\
|
|
7787
|
-
"\x02\x02\
|
|
7788
|
-
"\
|
|
7789
|
-
"\
|
|
7790
|
-
"\
|
|
7791
|
-
"\
|
|
7792
|
-
"\
|
|
7793
|
-
"\
|
|
7794
|
-
"\
|
|
7795
|
-
"\
|
|
7796
|
-
"\
|
|
7797
|
-
"\
|
|
7798
|
-
"\
|
|
7799
|
-
"\
|
|
7800
|
-
"\
|
|
7801
|
-
"\x02\x02\
|
|
7802
|
-
"\
|
|
7803
|
-
"\
|
|
7804
|
-
"\
|
|
7805
|
-
"\
|
|
7806
|
-
"\
|
|
7807
|
-
"\
|
|
7808
|
-
"\
|
|
7809
|
-
"
|
|
7810
|
-
"\x07
|
|
7811
|
-
"\
|
|
7812
|
-
"\
|
|
7813
|
-
"\x02\x02\
|
|
7814
|
-
"\
|
|
7815
|
-
"\u0403\
|
|
7816
|
-
"\x02\x02\x02\u0404\
|
|
7817
|
-
"\
|
|
7818
|
-
"\
|
|
7819
|
-
"\x02\
|
|
7820
|
-
"\x03\x02\x02\x02\
|
|
7821
|
-
"\
|
|
7822
|
-
"\
|
|
7823
|
-
"\
|
|
7824
|
-
"\
|
|
7825
|
-
"\
|
|
7826
|
-
"
|
|
7827
|
-
"\
|
|
7828
|
-
"\
|
|
7829
|
-
"\x02\x02\
|
|
7830
|
-
"\
|
|
7831
|
-
"\x02\
|
|
7832
|
-
"\
|
|
7833
|
-
"\
|
|
7834
|
-
"\x02\x02\x02\u042E\
|
|
7835
|
-
"\
|
|
7836
|
-
"\
|
|
7837
|
-
"\
|
|
7838
|
-
"\
|
|
7839
|
-
"\
|
|
7840
|
-
"\
|
|
7841
|
-
"\
|
|
7842
|
-
"\x02\
|
|
7843
|
-
"\
|
|
7844
|
-
"\
|
|
7845
|
-
"\
|
|
7846
|
-
"\
|
|
7847
|
-
"
|
|
7848
|
-
"\
|
|
7849
|
-
"\
|
|
7850
|
-
"\
|
|
7851
|
-
"\
|
|
7852
|
-
"\
|
|
7853
|
-
"\
|
|
7854
|
-
MalloyParser._serializedATNSegment2 = "\
|
|
7855
|
-
"\x02\x02\
|
|
7856
|
-
"\f\
|
|
7857
|
-
"\
|
|
7858
|
-
"\
|
|
7859
|
-
"
|
|
7860
|
-
"\
|
|
7861
|
-
"\
|
|
7862
|
-
"\
|
|
7863
|
-
"\x05\xE2r\x02\
|
|
7864
|
-
"\u046E\
|
|
7865
|
-
"\
|
|
7866
|
-
"\
|
|
7867
|
-
"\x02\x02\
|
|
7868
|
-
"\
|
|
7869
|
-
"\x02\x02\
|
|
7870
|
-
"\
|
|
7871
|
-
"\x02\u0472\
|
|
7872
|
-
"\
|
|
7873
|
-
"\
|
|
7874
|
-
"
|
|
7875
|
-
"\x03\x02\x02\x02\u047B\
|
|
7876
|
-
"\
|
|
7877
|
-
"\
|
|
7878
|
-
"\u0480\x03\x02\x02\x02\
|
|
7879
|
-
"\x02\x02\
|
|
7880
|
-
"\u0486\
|
|
7881
|
-
"\u0487\
|
|
7882
|
-
"
|
|
7883
|
-
"\x03\x02\x02\x02\u048C\
|
|
7884
|
-
"\
|
|
7885
|
-
"
|
|
7886
|
-
"\
|
|
7887
|
-
"\
|
|
7888
|
-
"\x02\
|
|
7889
|
-
"\x03\x02\x02\x02\u049A\
|
|
7890
|
-
"\
|
|
7891
|
-
"\x02\x02\x02\u049E\
|
|
7892
|
-
"\
|
|
7893
|
-
"\x02\
|
|
7894
|
-
"\
|
|
7895
|
-
"\u04A6\x03\x02\x02\x02\u04A7\
|
|
7896
|
-
"\x02\x02\
|
|
7897
|
-
"\
|
|
7898
|
-
"\u04AD\
|
|
7899
|
-
"
|
|
7900
|
-
"\
|
|
7901
|
-
"\
|
|
7902
|
-
"\x02\x02\x02\
|
|
7903
|
-
"\
|
|
7904
|
-
"\x02\u04BA\
|
|
7905
|
-
"\
|
|
7906
|
-
"\
|
|
7907
|
-
"\
|
|
7908
|
-
"\
|
|
7909
|
-
"\
|
|
7910
|
-
"\
|
|
7911
|
-
"\x02\
|
|
7912
|
-
"\
|
|
7913
|
-
"\
|
|
7914
|
-
"\x02\u04D1\
|
|
7915
|
-
"\
|
|
7916
|
-
"\
|
|
7917
|
-
"\
|
|
7918
|
-
"
|
|
7919
|
-
"\
|
|
7920
|
-
"\
|
|
7921
|
-
"\
|
|
7922
|
-
"\
|
|
7923
|
-
"\
|
|
7924
|
-
"\x02\
|
|
7925
|
-
"\
|
|
7926
|
-
"\x02\
|
|
7927
|
-
"\
|
|
7928
|
-
"\
|
|
7929
|
-
"\
|
|
7930
|
-
"\
|
|
7931
|
-
"\
|
|
7932
|
-
"\
|
|
7933
|
-
"\
|
|
7934
|
-
"\
|
|
7935
|
-
"\
|
|
7936
|
-
"\
|
|
7937
|
-
"\
|
|
7938
|
-
"\
|
|
7605
|
+
"\u01A6";
|
|
7606
|
+
MalloyParser._serializedATNSegment1 = "\u01A7\x056\x1C\x02\u01A7\u01A8\x07w\x02\x02\u01A8\u01A9\x07V\x02\x02" +
|
|
7607
|
+
"\u01A9\u01AA\x07l\x02\x02\u01AA\u01AB\x05\xD4k\x02\u01AB\u01AC\x07m\x02" +
|
|
7608
|
+
"\x02\u01AC\u01AE\x03\x02\x02\x02\u01AD\u01A1\x03\x02\x02\x02\u01AD\u01A6" +
|
|
7609
|
+
"\x03\x02\x02\x02\u01AE5\x03\x02\x02\x02\u01AF\u01B0\x05\xD8m\x02\u01B0" +
|
|
7610
|
+
"7\x03\x02\x02\x02\u01B1\u01BC\x05:\x1E\x02\u01B2\u01B7\x07p\x02\x02\u01B3" +
|
|
7611
|
+
"\u01B6\x05\x92J\x02\u01B4\u01B6\x07\x84\x02\x02\u01B5\u01B3\x03\x02\x02" +
|
|
7612
|
+
"\x02\u01B5\u01B4\x03\x02\x02\x02\u01B6\u01B9\x03\x02\x02\x02\u01B7\u01B5" +
|
|
7613
|
+
"\x03\x02\x02\x02\u01B7\u01B8\x03\x02\x02\x02\u01B8\u01BA\x03\x02\x02\x02" +
|
|
7614
|
+
"\u01B9\u01B7\x03\x02\x02\x02\u01BA\u01BC\x07q\x02\x02\u01BB\u01B1\x03" +
|
|
7615
|
+
"\x02\x02\x02\u01BB\u01B2\x03\x02\x02\x02\u01BC9\x03\x02\x02\x02\u01BD" +
|
|
7616
|
+
"\u01BE\x07p\x02\x02\u01BE\u01BF\x07\x89\x02\x02\u01BF\u01C0\x05\xE0q\x02" +
|
|
7617
|
+
"\u01C0\u01C1\x07q\x02\x02\u01C1;\x03\x02\x02\x02\u01C2\u01C3\x05\xD8m" +
|
|
7618
|
+
"\x02\u01C3=\x03\x02\x02\x02\u01C4\u01CB\x05@!\x02\u01C5\u01C7\x07v\x02" +
|
|
7619
|
+
"\x02\u01C6\u01C5\x03\x02\x02\x02\u01C6\u01C7\x03\x02\x02\x02\u01C7\u01C8" +
|
|
7620
|
+
"\x03\x02\x02\x02\u01C8\u01CA\x05@!\x02\u01C9\u01C6\x03\x02\x02\x02\u01CA" +
|
|
7621
|
+
"\u01CD\x03\x02\x02\x02\u01CB\u01C9\x03\x02\x02\x02\u01CB\u01CC\x03\x02" +
|
|
7622
|
+
"\x02\x02\u01CC\u01CF\x03\x02\x02\x02\u01CD\u01CB\x03\x02\x02\x02\u01CE" +
|
|
7623
|
+
"\u01D0\x07v\x02\x02\u01CF\u01CE\x03\x02\x02\x02\u01CF\u01D0\x03\x02\x02" +
|
|
7624
|
+
"\x02\u01D0?\x03\x02\x02\x02\u01D1\u01D2\x05\f\x07\x02\u01D2\u01D3\x05" +
|
|
7625
|
+
"D#\x02\u01D3\u01D4\x05\x0E\b\x02\u01D4\u01D5\x05B\"\x02\u01D5A\x03\x02" +
|
|
7626
|
+
"\x02\x02\u01D6\u01D7\x05d3\x02\u01D7C\x03\x02\x02\x02\u01D8\u01D9\x05" +
|
|
7627
|
+
"\xD8m\x02\u01D9E\x03\x02\x02\x02\u01DA\u01DB\x05\xD8m\x02\u01DBG\x03\x02" +
|
|
7628
|
+
"\x02\x02\u01DC\u01E1\x07p\x02\x02\u01DD\u01E0\x05J&\x02\u01DE\u01E0\x07" +
|
|
7629
|
+
"\x84\x02\x02\u01DF\u01DD\x03\x02\x02\x02\u01DF\u01DE\x03\x02\x02\x02\u01E0" +
|
|
7630
|
+
"\u01E3\x03\x02\x02\x02\u01E1\u01DF\x03\x02\x02\x02\u01E1\u01E2\x03\x02" +
|
|
7631
|
+
"\x02\x02\u01E2\u01E4\x03\x02\x02\x02\u01E3\u01E1\x03\x02\x02\x02\u01E4" +
|
|
7632
|
+
"\u01E7\x07q\x02\x02\u01E5\u01E7\x05:\x1E\x02\u01E6\u01DC\x03\x02\x02\x02" +
|
|
7633
|
+
"\u01E6\u01E5\x03\x02\x02\x02\u01E7I\x03\x02\x02\x02\u01E8\u01FF\x05N(" +
|
|
7634
|
+
"\x02\u01E9\u01FF\x05L\'\x02\u01EA\u01FF\x05\\/\x02\u01EB\u01FF\x05^0\x02" +
|
|
7635
|
+
"\u01EC\u01FF\x05\x88E\x02\u01ED\u01EE\x07\x17\x02\x02\u01EE\u01FF\x05" +
|
|
7636
|
+
"\xFC\x7F\x02\u01EF\u01F0\x07\x1A\x02\x02\u01F0\u01FF\x05P)\x02\u01F1\u01F2" +
|
|
7637
|
+
"\t\x03\x02\x02\u01F2\u01FF\x05\xEAv\x02\u01F3\u01F4\x05\f\x07\x02\u01F4" +
|
|
7638
|
+
"\u01F5\t\x04\x02\x02\u01F5\u01F6\x05\x8CG\x02\u01F6\u01FF\x03\x02\x02" +
|
|
7639
|
+
"\x02\u01F7\u01FF\x05\xBE`\x02\u01F8\u01FA\x07h\x02\x02\u01F9\u01F8\x03" +
|
|
7640
|
+
"\x02\x02\x02\u01FA\u01FB\x03\x02\x02\x02\u01FB\u01F9\x03\x02\x02\x02\u01FB" +
|
|
7641
|
+
"\u01FC\x03\x02\x02\x02\u01FC\u01FF\x03\x02\x02\x02\u01FD\u01FF\x05(\x15" +
|
|
7642
|
+
"\x02\u01FE\u01E8\x03\x02\x02\x02\u01FE\u01E9\x03\x02\x02\x02\u01FE\u01EA" +
|
|
7643
|
+
"\x03\x02\x02\x02\u01FE\u01EB\x03\x02\x02\x02\u01FE\u01EC\x03\x02\x02\x02" +
|
|
7644
|
+
"\u01FE\u01ED\x03\x02\x02\x02\u01FE\u01EF\x03\x02\x02\x02\u01FE\u01F1\x03" +
|
|
7645
|
+
"\x02\x02\x02\u01FE\u01F3\x03\x02\x02\x02\u01FE\u01F7\x03\x02\x02\x02\u01FE" +
|
|
7646
|
+
"\u01F9\x03\x02\x02\x02\u01FE\u01FD\x03\x02\x02\x02\u01FFK\x03\x02\x02" +
|
|
7647
|
+
"\x02\u0200\u0201\x05\f\x07\x02\u0201\u0202\x07\x13\x02\x02\u0202\u0203" +
|
|
7648
|
+
"\x05T+\x02\u0203M\x03\x02\x02\x02\u0204\u0205\x05\f\x07\x02\u0205\u0206" +
|
|
7649
|
+
"\x07\t\x02\x02\u0206\u0207\x05T+\x02\u0207O\x03\x02\x02\x02\u0208\u020F" +
|
|
7650
|
+
"\x05R*\x02\u0209\u020B\x07v\x02\x02\u020A\u0209\x03\x02\x02\x02\u020A" +
|
|
7651
|
+
"\u020B\x03\x02\x02\x02\u020B\u020C\x03\x02\x02\x02\u020C\u020E\x05R*\x02" +
|
|
7652
|
+
"\u020D\u020A\x03\x02\x02\x02\u020E\u0211\x03\x02\x02\x02\u020F\u020D\x03" +
|
|
7653
|
+
"\x02\x02\x02\u020F\u0210\x03\x02\x02\x02\u0210\u0213\x03\x02\x02\x02\u0211" +
|
|
7654
|
+
"\u020F\x03\x02\x02\x02\u0212\u0214\x07v\x02\x02\u0213\u0212\x03\x02\x02" +
|
|
7655
|
+
"\x02\u0213\u0214\x03\x02\x02\x02\u0214Q\x03\x02\x02\x02\u0215\u0216\x05" +
|
|
7656
|
+
"\xFC\x7F\x02\u0216\u0217\x05\x0E\b\x02\u0217\u0218\x05\xFC\x7F\x02\u0218" +
|
|
7657
|
+
"S\x03\x02\x02\x02\u0219\u0220\x05V,\x02\u021A\u021C\x07v\x02\x02\u021B" +
|
|
7658
|
+
"\u021A\x03\x02\x02\x02\u021B\u021C\x03\x02\x02\x02\u021C\u021D\x03\x02" +
|
|
7659
|
+
"\x02\x02\u021D\u021F\x05V,\x02\u021E\u021B\x03\x02\x02\x02\u021F\u0222" +
|
|
7660
|
+
"\x03\x02\x02\x02\u0220\u021E\x03\x02\x02\x02\u0220\u0221\x03\x02\x02\x02" +
|
|
7661
|
+
"\u0221\u0224\x03\x02\x02\x02\u0222\u0220\x03\x02\x02\x02\u0223\u0225\x07" +
|
|
7662
|
+
"v\x02\x02\u0224\u0223\x03\x02\x02\x02\u0224\u0225\x03\x02\x02\x02\u0225" +
|
|
7663
|
+
"U\x03\x02\x02\x02\u0226\u0227\x05\f\x07\x02\u0227\u0228\x05X-\x02\u0228" +
|
|
7664
|
+
"\u0229\x05\x0E\b\x02\u0229\u022A\x05\xE0q\x02\u022AW\x03\x02\x02\x02\u022B" +
|
|
7665
|
+
"\u022C\x05\xD8m\x02\u022CY\x03\x02\x02\x02\u022D\u022E\x05\xD8m\x02\u022E" +
|
|
7666
|
+
"[\x03\x02\x02\x02\u022F\u0230\x07\b\x02\x02\u0230\u0231\x05T+\x02\u0231" +
|
|
7667
|
+
"]\x03\x02\x02\x02\u0232\u0233\x05\f\x07\x02\u0233\u0234\x07\x10\x02\x02" +
|
|
7668
|
+
"\u0234\u0235\x05n8\x02\u0235\u023F\x03\x02\x02\x02\u0236\u0237\x05\f\x07" +
|
|
7669
|
+
"\x02\u0237\u0238\x07\x11\x02\x02\u0238\u0239\x05n8\x02\u0239\u023F\x03" +
|
|
7670
|
+
"\x02\x02\x02\u023A\u023B\x05\f\x07\x02\u023B\u023C\x07\x0F\x02\x02\u023C" +
|
|
7671
|
+
"\u023D\x05n8\x02\u023D\u023F\x03\x02\x02\x02\u023E\u0232\x03\x02\x02\x02" +
|
|
7672
|
+
"\u023E\u0236\x03\x02\x02\x02\u023E\u023A\x03\x02\x02\x02\u023F_\x03\x02" +
|
|
7673
|
+
"\x02\x02\u0240\u0241\x07\v\x02\x02\u0241\u0242\x05l7\x02\u0242a\x03\x02" +
|
|
7674
|
+
"\x02\x02\u0243\u0247\x05^0\x02\u0244\u0247\x05\x88E\x02\u0245\u0247\x05" +
|
|
7675
|
+
"\\/\x02\u0246\u0243\x03\x02\x02\x02\u0246\u0244\x03\x02\x02\x02\u0246" +
|
|
7676
|
+
"\u0245\x03\x02\x02\x02\u0247c\x03\x02\x02\x02\u0248\u0249\b3\x01\x02\u0249" +
|
|
7677
|
+
"\u0251\x05\xD8m\x02\u024A\u024B\x07l\x02\x02\u024B\u024C\x05d3\x02\u024C" +
|
|
7678
|
+
"\u024D\x07m\x02\x02\u024D\u0251\x03\x02\x02\x02\u024E\u0251\x054\x1B\x02" +
|
|
7679
|
+
"\u024F\u0251\x052\x1A\x02\u0250\u0248\x03\x02\x02\x02\u0250\u024A\x03" +
|
|
7680
|
+
"\x02\x02\x02\u0250\u024E\x03\x02\x02\x02\u0250\u024F\x03\x02\x02\x02\u0251" +
|
|
7681
|
+
"\u025D\x03\x02\x02\x02\u0252\u0253\f\x07\x02\x02\u0253\u0254\x07~\x02" +
|
|
7682
|
+
"\x02\u0254\u025C\x05f4\x02\u0255\u0256\f\x06\x02\x02\u0256\u0257\x07j" +
|
|
7683
|
+
"\x02\x02\u0257\u025C\x05f4\x02\u0258\u0259\f\x05\x02\x02\u0259\u025A\x07" +
|
|
7684
|
+
"6\x02\x02\u025A\u025C\x05H%\x02\u025B\u0252\x03\x02\x02\x02\u025B\u0255" +
|
|
7685
|
+
"\x03\x02\x02\x02\u025B\u0258\x03\x02\x02\x02\u025C\u025F\x03\x02\x02\x02" +
|
|
7686
|
+
"\u025D\u025B\x03\x02\x02\x02\u025D\u025E\x03\x02\x02\x02\u025Ee\x03\x02" +
|
|
7687
|
+
"\x02\x02\u025F\u025D\x03\x02\x02\x02\u0260\u0261\b4\x01\x02\u0261\u0268" +
|
|
7688
|
+
"\x05\xF8}\x02\u0262\u0268\x058\x1D\x02\u0263\u0264\x07l\x02\x02\u0264" +
|
|
7689
|
+
"\u0265\x05h5\x02\u0265\u0266\x07m\x02\x02\u0266\u0268\x03\x02\x02\x02" +
|
|
7690
|
+
"\u0267\u0260\x03\x02\x02\x02\u0267\u0262\x03\x02\x02\x02\u0267\u0263\x03" +
|
|
7691
|
+
"\x02\x02\x02\u0268\u026E\x03\x02\x02\x02\u0269\u026A\f\x03\x02\x02\u026A" +
|
|
7692
|
+
"\u026B\x07~\x02\x02\u026B\u026D\x05f4\x04\u026C\u0269\x03\x02\x02\x02" +
|
|
7693
|
+
"\u026D\u0270\x03\x02\x02\x02\u026E\u026C\x03\x02\x02\x02\u026E\u026F\x03" +
|
|
7694
|
+
"\x02\x02\x02\u026Fg\x03\x02\x02\x02\u0270\u026E\x03\x02\x02\x02\u0271" +
|
|
7695
|
+
"\u0277\x05f4\x02\u0272\u0273\x05f4\x02\u0273\u0274\x07j\x02\x02\u0274" +
|
|
7696
|
+
"\u0275\x05h5\x02\u0275\u0277\x03\x02\x02\x02\u0276\u0271\x03\x02\x02\x02" +
|
|
7697
|
+
"\u0276\u0272\x03\x02\x02\x02\u0277i\x03\x02\x02\x02\u0278\u027C\x05N(" +
|
|
7698
|
+
"\x02\u0279\u027C\x05L\'\x02\u027A\u027C\x05^0\x02\u027B\u0278\x03\x02" +
|
|
7699
|
+
"\x02\x02\u027B\u0279\x03\x02\x02\x02\u027B\u027A\x03\x02\x02\x02\u027C" +
|
|
7700
|
+
"k\x03\x02\x02\x02\u027D\u0282\x07p\x02\x02\u027E\u0281\x05j6\x02\u027F" +
|
|
7701
|
+
"\u0281\x07\x84\x02\x02\u0280\u027E\x03\x02\x02\x02\u0280\u027F\x03\x02" +
|
|
7702
|
+
"\x02\x02\u0281\u0284\x03\x02\x02\x02\u0282\u0280\x03\x02\x02\x02\u0282" +
|
|
7703
|
+
"\u0283\x03\x02\x02\x02\u0283\u0285\x03\x02\x02\x02\u0284\u0282\x03\x02" +
|
|
7704
|
+
"\x02\x02\u0285\u0286\x07q\x02\x02\u0286m\x03\x02\x02\x02\u0287\u028E\x05" +
|
|
7705
|
+
"t;\x02\u0288\u028A\x07v\x02\x02\u0289\u0288\x03\x02\x02\x02\u0289\u028A" +
|
|
7706
|
+
"\x03\x02\x02\x02\u028A\u028B\x03\x02\x02\x02\u028B\u028D\x05t;\x02\u028C" +
|
|
7707
|
+
"\u0289\x03\x02\x02\x02\u028D\u0290\x03\x02\x02\x02\u028E\u028C\x03\x02" +
|
|
7708
|
+
"\x02\x02\u028E\u028F\x03\x02\x02\x02\u028F\u0292\x03\x02\x02\x02\u0290" +
|
|
7709
|
+
"\u028E\x03\x02\x02\x02\u0291\u0293\x07v\x02\x02\u0292\u0291\x03\x02\x02" +
|
|
7710
|
+
"\x02\u0292\u0293\x03\x02\x02\x02\u0293o\x03\x02\x02\x02\u0294\u0295\x05" +
|
|
7711
|
+
"\f\x07\x02\u0295\u0296\x07@\x02\x02\u0296\u0297\x05\f\x07\x02\u0297\u0298" +
|
|
7712
|
+
"\x05d3\x02\u0298q\x03\x02\x02\x02\u0299\u029A\t\x05\x02\x02\u029As\x03" +
|
|
7713
|
+
"\x02\x02\x02\u029B\u029D\x07h\x02\x02\u029C\u029B\x03\x02\x02\x02\u029D" +
|
|
7714
|
+
"\u02A0\x03\x02\x02\x02\u029E\u029C\x03\x02\x02\x02\u029E\u029F\x03\x02" +
|
|
7715
|
+
"\x02\x02\u029F\u02A1\x03\x02\x02\x02\u02A0\u029E\x03\x02\x02\x02\u02A1" +
|
|
7716
|
+
"\u02A3\x05Z.\x02\u02A2\u02A4\x05p9\x02\u02A3\u02A2\x03\x02\x02\x02\u02A3" +
|
|
7717
|
+
"\u02A4\x03\x02\x02\x02\u02A4\u02A6\x03\x02\x02\x02\u02A5\u02A7\x05r:\x02" +
|
|
7718
|
+
"\u02A6\u02A5\x03\x02\x02\x02\u02A6\u02A7\x03\x02\x02\x02\u02A7\u02A8\x03" +
|
|
7719
|
+
"\x02\x02\x02\u02A8\u02A9\x07_\x02\x02\u02A9\u02AA\x05\xE0q\x02\u02AA\u02BD" +
|
|
7720
|
+
"\x03\x02\x02\x02\u02AB\u02AD\x07h\x02\x02\u02AC\u02AB\x03\x02\x02\x02" +
|
|
7721
|
+
"\u02AD\u02B0\x03\x02\x02\x02\u02AE\u02AC\x03\x02\x02\x02\u02AE\u02AF\x03" +
|
|
7722
|
+
"\x02\x02\x02\u02AF\u02B1\x03\x02\x02\x02\u02B0\u02AE\x03\x02\x02\x02\u02B1" +
|
|
7723
|
+
"\u02B3\x05Z.\x02\u02B2\u02B4\x05p9\x02\u02B3\u02B2\x03\x02\x02\x02\u02B3" +
|
|
7724
|
+
"\u02B4\x03\x02\x02\x02\u02B4\u02BA\x03\x02\x02\x02\u02B5\u02B7\x05r:\x02" +
|
|
7725
|
+
"\u02B6\u02B5\x03\x02\x02\x02\u02B6\u02B7\x03\x02\x02\x02\u02B7\u02B8\x03" +
|
|
7726
|
+
"\x02\x02\x02\u02B8\u02B9\x07L\x02\x02\u02B9\u02BB\x05v<\x02\u02BA\u02B6" +
|
|
7727
|
+
"\x03\x02\x02\x02\u02BA\u02BB\x03\x02\x02\x02\u02BB\u02BD\x03\x02\x02\x02" +
|
|
7728
|
+
"\u02BC\u029E\x03\x02\x02\x02\u02BC\u02AE\x03\x02\x02\x02\u02BDu\x03\x02" +
|
|
7729
|
+
"\x02\x02\u02BE\u02BF\x05\xE0q\x02\u02BFw\x03\x02\x02\x02\u02C0\u02C3\x05" +
|
|
7730
|
+
"\x88E\x02\u02C1\u02C3\x05\x8AF\x02\u02C2\u02C0\x03\x02\x02\x02\u02C2\u02C1" +
|
|
7731
|
+
"\x03\x02\x02\x02\u02C3y\x03\x02\x02\x02\u02C4\u02C9\x07p\x02\x02\u02C5" +
|
|
7732
|
+
"\u02C8\x05\x84C\x02\u02C6\u02C8\x07\x84\x02\x02\u02C7\u02C5\x03\x02\x02" +
|
|
7733
|
+
"\x02\u02C7\u02C6\x03\x02\x02\x02\u02C8\u02CB\x03\x02\x02\x02\u02C9\u02C7" +
|
|
7734
|
+
"\x03\x02\x02\x02\u02C9\u02CA\x03\x02\x02\x02\u02CA\u02CC\x03\x02\x02\x02" +
|
|
7735
|
+
"\u02CB\u02C9\x03\x02\x02\x02\u02CC\u02CD\x07q\x02\x02\u02CD{\x03\x02\x02" +
|
|
7736
|
+
"\x02\u02CE\u02D3\x05~@\x02\u02CF\u02D0\x07v\x02\x02\u02D0\u02D2\x05~@" +
|
|
7737
|
+
"\x02\u02D1\u02CF\x03\x02\x02\x02\u02D2\u02D5\x03\x02\x02\x02\u02D3\u02D1" +
|
|
7738
|
+
"\x03\x02\x02\x02\u02D3\u02D4\x03\x02\x02\x02\u02D4\u02D7\x03\x02\x02\x02" +
|
|
7739
|
+
"\u02D5\u02D3\x03\x02\x02\x02\u02D6\u02D8\x07v\x02\x02\u02D7\u02D6\x03" +
|
|
7740
|
+
"\x02\x02\x02\u02D7\u02D8\x03\x02\x02\x02\u02D8}\x03\x02\x02\x02\u02D9" +
|
|
7741
|
+
"\u02DB\x05\xE0q\x02\u02DA\u02DC\t\x06\x02\x02\u02DB\u02DA\x03\x02\x02" +
|
|
7742
|
+
"\x02\u02DB\u02DC\x03\x02\x02\x02\u02DC\u02E0\x03\x02\x02\x02\u02DD\u02E0" +
|
|
7743
|
+
"\x07\'\x02\x02\u02DE\u02E0\x071\x02\x02\u02DF\u02D9\x03\x02\x02\x02\u02DF" +
|
|
7744
|
+
"\u02DD\x03\x02\x02\x02\u02DF\u02DE\x03\x02\x02\x02\u02E0\x7F\x03\x02\x02" +
|
|
7745
|
+
"\x02\u02E1\u02E2\x07\x15\x02\x02\u02E2\u02E3\x05|?\x02\u02E3\x81\x03\x02" +
|
|
7746
|
+
"\x02\x02\u02E4\u02E5\x05\xB0Y\x02\u02E5\x83\x03\x02\x02\x02\u02E6\u02EB" +
|
|
7747
|
+
"\x05\x88E\x02\u02E7\u02EB\x05\xA8U\x02\u02E8\u02EB\x05\x80A\x02\u02E9" +
|
|
7748
|
+
"\u02EB\x05\x82B\x02\u02EA\u02E6\x03\x02\x02\x02\u02EA\u02E7\x03\x02\x02" +
|
|
7749
|
+
"\x02\u02EA\u02E8\x03\x02\x02\x02\u02EA\u02E9\x03\x02\x02\x02\u02EB\x85" +
|
|
7750
|
+
"\x03\x02\x02\x02\u02EC\u02F1\x05\xE0q\x02\u02ED\u02EE\x07v\x02\x02\u02EE" +
|
|
7751
|
+
"\u02F0\x05\xE0q\x02\u02EF\u02ED\x03\x02\x02\x02\u02F0\u02F3\x03\x02\x02" +
|
|
7752
|
+
"\x02\u02F1\u02EF\x03\x02\x02\x02\u02F1\u02F2\x03\x02\x02\x02\u02F2\u02F5" +
|
|
7753
|
+
"\x03\x02\x02\x02\u02F3\u02F1\x03\x02\x02\x02\u02F4\u02F6\x07v\x02\x02" +
|
|
7754
|
+
"\u02F5\u02F4\x03\x02\x02\x02\u02F5\u02F6\x03\x02\x02\x02\u02F6\x87\x03" +
|
|
7755
|
+
"\x02\x02\x02\u02F7\u02F8\x07!\x02\x02\u02F8\u02F9\x05\x86D\x02\u02F9\x89" +
|
|
7756
|
+
"\x03\x02\x02\x02\u02FA\u02FB\x07\r\x02\x02\u02FB\u02FC\x05\x86D\x02\u02FC" +
|
|
7757
|
+
"\x8B\x03\x02\x02\x02\u02FD\u0304\x05\x90I\x02\u02FE\u0300\x07v\x02\x02" +
|
|
7758
|
+
"\u02FF\u02FE\x03\x02\x02\x02\u02FF\u0300\x03\x02\x02\x02\u0300\u0301\x03" +
|
|
7759
|
+
"\x02\x02\x02\u0301\u0303\x05\x90I\x02\u0302\u02FF\x03\x02\x02\x02\u0303" +
|
|
7760
|
+
"\u0306\x03\x02\x02\x02\u0304\u0302\x03\x02\x02\x02\u0304\u0305\x03\x02" +
|
|
7761
|
+
"\x02\x02\u0305\u0308\x03\x02\x02\x02\u0306\u0304\x03\x02\x02\x02\u0307" +
|
|
7762
|
+
"\u0309\x07v\x02\x02\u0308\u0307\x03\x02\x02\x02\u0308\u0309\x03\x02\x02" +
|
|
7763
|
+
"\x02\u0309\x8D\x03\x02\x02\x02\u030A\u030B\x05\xD8m\x02\u030B\x8F\x03" +
|
|
7764
|
+
"\x02\x02\x02\u030C\u030E\x07h\x02\x02\u030D\u030C\x03\x02\x02\x02\u030E" +
|
|
7765
|
+
"\u0311\x03\x02\x02\x02\u030F\u030D\x03\x02\x02\x02\u030F\u0310\x03\x02" +
|
|
7766
|
+
"\x02\x02\u0310\u0312\x03\x02\x02\x02\u0311\u030F\x03\x02\x02\x02\u0312" +
|
|
7767
|
+
"\u0313\x05\x8EH\x02\u0313\u0314\x05\x0E\b\x02\u0314\u0315\x05h5\x02\u0315" +
|
|
7768
|
+
"\x91\x03\x02\x02\x02\u0316\u0329\x05\x96L\x02\u0317\u0329\x05\\/\x02\u0318" +
|
|
7769
|
+
"\u0329\x05\x94K\x02\u0319\u0329\x05`1\x02\u031A\u0329\x05\xA6T\x02\u031B" +
|
|
7770
|
+
"\u0329\x05\xBA^\x02\u031C\u0329\x05\xA2R\x02\u031D\u0329\x05\xA4S\x02" +
|
|
7771
|
+
"\u031E\u0329\x05\xB4[\x02\u031F\u0329\x05\xB0Y\x02\u0320\u0329\x05\xAA" +
|
|
7772
|
+
"V\x02\u0321\u0329\x05\x88E\x02\u0322\u0329\x05\x8AF\x02\u0323\u0329\x05" +
|
|
7773
|
+
"\x9CO\x02\u0324\u0329\x05\xBC_\x02\u0325\u0329\x05\xBE`\x02\u0326\u0329" +
|
|
7774
|
+
"\x05\xC0a\x02\u0327\u0329\x05(\x15\x02\u0328\u0316\x03\x02\x02\x02\u0328" +
|
|
7775
|
+
"\u0317\x03\x02\x02\x02\u0328\u0318\x03\x02\x02\x02\u0328\u0319\x03\x02" +
|
|
7776
|
+
"\x02\x02\u0328\u031A\x03\x02\x02\x02\u0328\u031B\x03\x02\x02\x02\u0328" +
|
|
7777
|
+
"\u031C\x03\x02\x02\x02\u0328\u031D\x03\x02\x02\x02\u0328\u031E\x03\x02" +
|
|
7778
|
+
"\x02\x02\u0328\u031F\x03\x02\x02\x02\u0328\u0320\x03\x02\x02\x02\u0328" +
|
|
7779
|
+
"\u0321\x03\x02\x02\x02\u0328\u0322\x03\x02\x02\x02\u0328\u0323\x03\x02" +
|
|
7780
|
+
"\x02\x02\u0328\u0324\x03\x02\x02\x02\u0328\u0325\x03\x02\x02\x02\u0328" +
|
|
7781
|
+
"\u0326\x03\x02\x02\x02\u0328\u0327\x03\x02\x02\x02\u0329\x93\x03\x02\x02" +
|
|
7782
|
+
"\x02\u032A\u032B\x05^0\x02\u032B\x95\x03\x02\x02\x02\u032C\u032D\x05\f" +
|
|
7783
|
+
"\x07\x02\u032D\u032E\x07\f\x02\x02\u032E\u032F\x05\x98M\x02\u032F\x97" +
|
|
7784
|
+
"\x03\x02\x02\x02\u0330\u0337\x05\x9AN\x02\u0331\u0333\x07v\x02\x02\u0332" +
|
|
7785
|
+
"\u0331\x03\x02\x02\x02\u0332\u0333\x03\x02\x02\x02\u0333\u0334\x03\x02" +
|
|
7786
|
+
"\x02\x02\u0334\u0336\x05\x9AN\x02\u0335\u0332\x03\x02\x02\x02\u0336\u0339" +
|
|
7787
|
+
"\x03\x02\x02\x02\u0337\u0335\x03\x02\x02\x02\u0337\u0338\x03\x02\x02\x02" +
|
|
7788
|
+
"\u0338\u033B\x03\x02\x02\x02\u0339\u0337\x03\x02\x02\x02\u033A\u033C\x07" +
|
|
7789
|
+
"v\x02\x02\u033B\u033A\x03\x02\x02\x02\u033B\u033C\x03\x02\x02\x02\u033C" +
|
|
7790
|
+
"\x99\x03\x02\x02\x02\u033D\u0340\x05\xF2z\x02\u033E\u0340\x05V,\x02\u033F" +
|
|
7791
|
+
"\u033D\x03\x02\x02\x02\u033F\u033E\x03\x02\x02\x02\u0340\x9B\x03\x02\x02" +
|
|
7792
|
+
"\x02\u0341\u0342\x05\f\x07\x02\u0342\u0343\x07\x14\x02\x02\u0343\u0344" +
|
|
7793
|
+
"\x05\x9EP\x02\u0344\x9D\x03\x02\x02\x02\u0345\u034C\x05\xA0Q\x02\u0346" +
|
|
7794
|
+
"\u0348\x07v\x02\x02\u0347\u0346\x03\x02\x02\x02\u0347\u0348\x03\x02\x02" +
|
|
7795
|
+
"\x02\u0348\u0349\x03\x02\x02\x02\u0349\u034B\x05\xA0Q\x02\u034A\u0347" +
|
|
7796
|
+
"\x03\x02\x02\x02\u034B\u034E\x03\x02\x02\x02\u034C\u034A\x03\x02\x02\x02" +
|
|
7797
|
+
"\u034C\u034D\x03\x02\x02\x02\u034D\u0350\x03\x02\x02\x02\u034E\u034C\x03" +
|
|
7798
|
+
"\x02\x02\x02\u034F\u0351\x07v\x02\x02\u0350\u034F\x03\x02\x02\x02\u0350" +
|
|
7799
|
+
"\u0351\x03\x02\x02\x02\u0351\x9F\x03\x02\x02\x02\u0352\u0353\x05\f\x07" +
|
|
7800
|
+
"\x02\u0353\u0356\x05\xF8}\x02\u0354\u0355\x07~\x02\x02\u0355\u0357\x05" +
|
|
7801
|
+
"h5\x02\u0356\u0354\x03\x02\x02\x02\u0356\u0357\x03\x02\x02\x02\u0357\u035E" +
|
|
7802
|
+
"\x03\x02\x02\x02\u0358\u0359\x05\f\x07\x02\u0359\u035A\x05<\x1F\x02\u035A" +
|
|
7803
|
+
"\u035B\x05\x0E\b\x02\u035B\u035C\x05h5\x02\u035C\u035E\x03\x02\x02\x02" +
|
|
7804
|
+
"\u035D\u0352\x03\x02\x02\x02\u035D\u0358\x03\x02\x02\x02\u035E\xA1\x03" +
|
|
7805
|
+
"\x02\x02\x02\u035F\u0360\x05\f\x07\x02\u0360\u0361\x07\x04\x02\x02\u0361" +
|
|
7806
|
+
"\u0362\x05\x98M\x02\u0362\xA3\x03\x02\x02\x02\u0363\u0364\x05\f\x07\x02" +
|
|
7807
|
+
"\u0364\u0365\x07\x05\x02\x02\u0365\u0366\x05\x98M\x02\u0366\xA5\x03\x02" +
|
|
7808
|
+
"\x02\x02\u0367\u0368\x05\f\x07\x02\u0368\u0369\t\x07\x02\x02\u0369\u036A" +
|
|
7809
|
+
"\x05\xECw\x02\u036A\xA7\x03\x02\x02\x02\u036B\u036C\x07\x16\x02\x02\u036C" +
|
|
7810
|
+
"\u0371\x05\xD8m\x02\u036D\u036E\x07v\x02\x02\u036E\u0370\x05\xD8m\x02" +
|
|
7811
|
+
"\u036F\u036D\x03\x02\x02\x02\u0370\u0373\x03\x02\x02\x02\u0371\u036F\x03" +
|
|
7812
|
+
"\x02\x02\x02\u0371\u0372\x03\x02\x02\x02\u0372\u0375\x03\x02\x02\x02\u0373" +
|
|
7813
|
+
"\u0371\x03\x02\x02\x02\u0374\u0376\x07v\x02\x02\u0375\u0374\x03\x02\x02" +
|
|
7814
|
+
"\x02\u0375\u0376\x03\x02\x02\x02\u0376\xA9\x03\x02\x02\x02\u0377\u0378" +
|
|
7815
|
+
"\x07\x15\x02\x02\u0378\u0379\x05\xACW\x02\u0379\xAB\x03\x02\x02\x02\u037A" +
|
|
7816
|
+
"\u0381\x05\xAEX\x02\u037B\u037D\x07v\x02\x02\u037C\u037B\x03\x02\x02\x02" +
|
|
7817
|
+
"\u037C\u037D\x03\x02\x02\x02\u037D\u037E\x03\x02\x02\x02\u037E\u0380\x05" +
|
|
7818
|
+
"\xAEX\x02\u037F\u037C\x03\x02\x02\x02\u0380\u0383\x03\x02\x02\x02\u0381" +
|
|
7819
|
+
"\u037F\x03\x02\x02\x02\u0381\u0382\x03\x02\x02\x02\u0382\u0385\x03\x02" +
|
|
7820
|
+
"\x02\x02\u0383\u0381\x03\x02\x02\x02\u0384\u0386\x07v\x02\x02\u0385\u0384" +
|
|
7821
|
+
"\x03\x02\x02\x02\u0385\u0386\x03\x02\x02\x02\u0386\xAD\x03\x02\x02\x02" +
|
|
7822
|
+
"\u0387\u038A\x07\x94\x02\x02\u0388\u038A\x05\xFC\x7F\x02\u0389\u0387\x03" +
|
|
7823
|
+
"\x02\x02\x02\u0389\u0388\x03\x02\x02\x02\u038A\u038C\x03\x02\x02\x02\u038B" +
|
|
7824
|
+
"\u038D\t\x06\x02\x02\u038C\u038B\x03\x02\x02\x02\u038C\u038D\x03\x02\x02" +
|
|
7825
|
+
"\x02\u038D\xAF\x03\x02\x02\x02\u038E\u038F\x07\x12\x02\x02\u038F\u0390" +
|
|
7826
|
+
"\x07\x94\x02\x02\u0390\xB1\x03\x02\x02\x02\u0391\u0392\x07*\x02\x02\u0392" +
|
|
7827
|
+
"\u0396\x05\xFC\x7F\x02\u0393\u0394\x07*\x02\x02\u0394\u0396\x05\xE0q\x02" +
|
|
7828
|
+
"\u0395\u0391\x03\x02\x02\x02\u0395\u0393\x03\x02\x02\x02\u0396\xB3\x03" +
|
|
7829
|
+
"\x02\x02\x02\u0397\u0398\x07 \x02\x02\u0398\u039A\x07\x94\x02\x02\u0399" +
|
|
7830
|
+
"\u039B\x05\xB2Z\x02\u039A\u0399\x03\x02\x02\x02\u039A\u039B\x03\x02\x02" +
|
|
7831
|
+
"\x02\u039B\xB5\x03\x02\x02\x02\u039C\u039F\x05\xF8}\x02\u039D\u039E\x07" +
|
|
7832
|
+
"w\x02\x02\u039E\u03A0\x07\x80\x02\x02\u039F\u039D\x03\x02\x02\x02\u039F" +
|
|
7833
|
+
"\u03A0\x03\x02\x02\x02\u03A0\u03A3\x03\x02\x02\x02\u03A1\u03A3\x07\x80" +
|
|
7834
|
+
"\x02\x02\u03A2\u039C\x03\x02\x02\x02\u03A2\u03A1\x03\x02\x02\x02\u03A3" +
|
|
7835
|
+
"\xB7\x03\x02\x02\x02\u03A4\u03AB\x05\xB6\\\x02\u03A5\u03A7\x07v\x02\x02" +
|
|
7836
|
+
"\u03A6\u03A5\x03\x02\x02\x02\u03A6\u03A7\x03\x02\x02\x02\u03A7\u03A8\x03" +
|
|
7837
|
+
"\x02\x02\x02\u03A8\u03AA\x05\xB6\\\x02\u03A9\u03A6\x03\x02\x02\x02\u03AA" +
|
|
7838
|
+
"\u03AD\x03\x02\x02\x02\u03AB\u03A9\x03\x02\x02\x02\u03AB\u03AC\x03\x02" +
|
|
7839
|
+
"\x02\x02\u03AC\xB9\x03\x02\x02\x02\u03AD\u03AB\x03\x02\x02\x02\u03AE\u03AF" +
|
|
7840
|
+
"\x07\x0E\x02\x02\u03AF\u03B2\x05\xB8]\x02\u03B0\u03B1\x07*\x02\x02\u03B1" +
|
|
7841
|
+
"\u03B3\x05\xFC\x7F\x02\u03B2\u03B0\x03\x02\x02\x02\u03B2\u03B3\x03\x02" +
|
|
7842
|
+
"\x02\x02\u03B3\xBB\x03\x02\x02\x02\u03B4\u03B5\x07\x1C\x02\x02\u03B5\u03B6" +
|
|
7843
|
+
"\x05\xC2b\x02\u03B6\xBD\x03\x02\x02\x02\u03B7\u03B8\x07#\x02\x02\u03B8" +
|
|
7844
|
+
"\u03B9\x05\xCAf\x02\u03B9\xBF\x03\x02\x02\x02\u03BA\u03BB\x07h\x02\x02" +
|
|
7845
|
+
"\u03BB\xC1\x03\x02\x02\x02\u03BC\u03BD\t\b\x02\x02\u03BD\xC3\x03\x02\x02" +
|
|
7846
|
+
"\x02\u03BE\u03BF\t\t\x02\x02\u03BF\xC5\x03\x02\x02\x02\u03C0\u03C1\t\n" +
|
|
7847
|
+
"\x02\x02\u03C1\xC7\x03\x02\x02\x02\u03C2\u03C3\t\v\x02\x02\u03C3\xC9\x03" +
|
|
7848
|
+
"\x02\x02\x02\u03C4\u03C7\x05\xCCg\x02\u03C5\u03C7\x05\x18\r\x02\u03C6" +
|
|
7849
|
+
"\u03C4\x03\x02\x02\x02\u03C6\u03C5\x03\x02\x02\x02\u03C7\xCB\x03\x02\x02" +
|
|
7850
|
+
"\x02\u03C8\u03C9\t\f\x02\x02\u03C9\xCD\x03\x02\x02\x02\u03CA\u03CB\t\r" +
|
|
7851
|
+
"\x02\x02\u03CB\xCF\x03\x02\x02\x02\u03CC\u03D4\x05\xCAf\x02\u03CD\u03D4" +
|
|
7852
|
+
"\x05\xCEh\x02\u03CE\u03D4\x05\xD2j\x02\u03CF\u03D4\x07J\x02\x02\u03D0" +
|
|
7853
|
+
"\u03D4\t\x0E\x02\x02\u03D1\u03D4\x07c\x02\x02\u03D2\u03D4\x07I\x02\x02" +
|
|
7854
|
+
"\u03D3\u03CC\x03\x02\x02\x02\u03D3\u03CD\x03\x02\x02\x02\u03D3\u03CE\x03" +
|
|
7855
|
+
"\x02\x02\x02\u03D3\u03CF\x03\x02\x02\x02\u03D3\u03D0\x03\x02\x02\x02\u03D3" +
|
|
7856
|
+
"\u03D1\x03\x02\x02\x02\u03D3\u03D2\x03\x02\x02\x02\u03D4\xD1\x03\x02\x02" +
|
|
7857
|
+
"\x02\u03D5\u03DD\x07\x8A\x02\x02\u03D6\u03DD\x07\x8B\x02\x02\u03D7\u03DD" +
|
|
7858
|
+
"\x07\x8C\x02\x02\u03D8\u03DD\x07\x8F\x02\x02\u03D9\u03DD\x07\x8E\x02\x02" +
|
|
7859
|
+
"\u03DA\u03DD\x07\x8D\x02\x02\u03DB\u03DD\x07\x90\x02\x02\u03DC\u03D5\x03" +
|
|
7860
|
+
"\x02\x02\x02\u03DC\u03D6\x03\x02\x02\x02\u03DC\u03D7\x03\x02\x02\x02\u03DC" +
|
|
7861
|
+
"\u03D8\x03\x02\x02\x02\u03DC\u03D9\x03\x02\x02\x02\u03DC\u03DA\x03\x02" +
|
|
7862
|
+
"\x02\x02\u03DC\u03DB\x03\x02\x02\x02\u03DD\xD3\x03\x02\x02\x02\u03DE\u03DF" +
|
|
7863
|
+
"\x05\xCAf\x02\u03DF\xD5\x03\x02\x02\x02\u03E0\u03E1\x05\xCAf\x02\u03E1" +
|
|
7864
|
+
"\xD7\x03\x02\x02\x02\u03E2\u03E3\t\x0F\x02\x02\u03E3\xD9\x03\x02\x02\x02" +
|
|
7865
|
+
"\u03E4\u03E5\t\x10\x02\x02\u03E5\xDB\x03\x02\x02\x02\u03E6\u03E7\t\x11" +
|
|
7866
|
+
"\x02\x02\u03E7\xDD\x03\x02\x02\x02\u03E8\u03EB\x05\xC6d\x02\u03E9\u03EB" +
|
|
7867
|
+
"\x05\xCAf\x02\u03EA\u03E8\x03\x02\x02\x02\u03EA\u03E9\x03\x02\x02\x02" +
|
|
7868
|
+
"\u03EB\xDF\x03\x02\x02\x02\u03EC\u03ED\bq\x01\x02\u03ED\u0440\x05\xF8" +
|
|
7869
|
+
"}\x02\u03EE\u0440\x05\xD0i\x02\u03EF\u03F0\x07\x7F\x02\x02\u03F0\u0440" +
|
|
7870
|
+
"\x05\xE0q\x18\u03F1\u03F2\x07H\x02\x02\u03F2\u0440\x05\xE0q\x0F\u03F3" +
|
|
7871
|
+
"\u03F4\x07,\x02\x02\u03F4\u03F5\x07l\x02\x02\u03F5\u03F6\x05\xE0q\x02" +
|
|
7872
|
+
"\u03F6\u03F7\x07&\x02\x02\u03F7\u03F8\x05\xDEp\x02\u03F8\u03F9\x07m\x02" +
|
|
7873
|
+
"\x02\u03F9\u0440\x03\x02\x02\x02\u03FA\u03FB\x07.\x02\x02\u03FB\u03FC" +
|
|
7874
|
+
"\x07l\x02\x02\u03FC\u03FD\x072\x02\x02\u03FD\u03FE\x05\xE0q\x02\u03FE" +
|
|
7875
|
+
"\u03FF\x07m\x02\x02\u03FF\u0440\x03\x02\x02\x02\u0400\u0401\x07S\x02\x02" +
|
|
7876
|
+
"\u0401\u0403\x07w\x02\x02\u0402\u0400\x03\x02\x02\x02\u0402\u0403\x03" +
|
|
7877
|
+
"\x02\x02\x02\u0403\u0404\x03\x02\x02\x02\u0404\u0405\x05\xC4c\x02\u0405" +
|
|
7878
|
+
"\u0408\x07l\x02\x02\u0406\u0409\x05\xE0q\x02\u0407\u0409\x07\x80\x02\x02" +
|
|
7879
|
+
"\u0408\u0406\x03\x02\x02\x02\u0408\u0407\x03\x02\x02\x02\u0408\u0409\x03" +
|
|
7880
|
+
"\x02\x02\x02\u0409\u040A\x03\x02\x02\x02\u040A\u040B\x07m\x02\x02\u040B" +
|
|
7881
|
+
"\u0440\x03\x02\x02\x02\u040C\u040D\x05\xF8}\x02\u040D\u040E\x07w\x02\x02" +
|
|
7882
|
+
"\u040E\u040F\x05\xC4c\x02\u040F\u0411\x07l\x02\x02\u0410\u0412\x05\xE0" +
|
|
7883
|
+
"q\x02\u0411\u0410\x03\x02\x02\x02\u0411\u0412\x03\x02\x02\x02\u0412\u0413" +
|
|
7884
|
+
"\x03\x02\x02\x02\u0413\u0414\x07m\x02\x02\u0414\u0440\x03\x02\x02\x02" +
|
|
7885
|
+
"\u0415\u0416\x07l\x02\x02\u0416\u0417\x05\xE2r\x02\u0417\u0418\x07m\x02" +
|
|
7886
|
+
"\x02\u0418\u0440\x03\x02\x02\x02\u0419\u041A\x05\xF8}\x02\u041A\u041B" +
|
|
7887
|
+
"\x07w\x02\x02\u041B\u041C\x05\xD8m\x02\u041C\u041E\x07l\x02\x02\u041D" +
|
|
7888
|
+
"\u041F\x05\xE8u\x02\u041E\u041D\x03\x02\x02\x02\u041E\u041F\x03\x02\x02" +
|
|
7889
|
+
"\x02\u041F\u0420\x03\x02\x02\x02\u0420\u0421\x07m\x02\x02\u0421\u0440" +
|
|
7890
|
+
"\x03\x02\x02\x02\u0422\u0427\x05\xD8m\x02\u0423\u0425\x07t\x02\x02\u0424" +
|
|
7891
|
+
"\u0426\x05\xC6d\x02\u0425\u0424\x03\x02\x02\x02\u0425\u0426\x03\x02\x02" +
|
|
7892
|
+
"\x02\u0426\u0428\x03\x02\x02\x02\u0427\u0423\x03\x02\x02\x02\u0427\u0428" +
|
|
7893
|
+
"\x03\x02\x02\x02\u0428\u042B\x03\x02\x02\x02\u0429\u042B\x05\xDAn\x02" +
|
|
7894
|
+
"\u042A\u0422\x03\x02\x02\x02\u042A\u0429\x03\x02\x02\x02\u042B\u042C\x03" +
|
|
7895
|
+
"\x02\x02\x02\u042C\u042E\x07l\x02\x02\u042D\u042F\x05\xE8u\x02\u042E\u042D" +
|
|
7896
|
+
"\x03\x02\x02\x02\u042E\u042F\x03\x02\x02\x02\u042F\u0430\x03\x02\x02\x02" +
|
|
7897
|
+
"\u0430\u0431\x07m\x02\x02\u0431\u0440\x03\x02\x02\x02\u0432\u0440\x05" +
|
|
7898
|
+
"\xE4s\x02\u0433\u0434\x05\xDCo\x02\u0434\u0435\x07l\x02\x02\u0435\u043A" +
|
|
7899
|
+
"\x05\xE0q\x02\u0436\u0437\x07v\x02\x02\u0437\u0439\x05\xFC\x7F\x02\u0438" +
|
|
7900
|
+
"\u0436\x03\x02\x02\x02\u0439\u043C\x03\x02\x02\x02\u043A\u0438\x03\x02" +
|
|
7901
|
+
"\x02\x02\u043A\u043B\x03\x02\x02\x02\u043B\u043D\x03\x02\x02\x02\u043C" +
|
|
7902
|
+
"\u043A\x03\x02\x02\x02\u043D\u043E\x07m\x02\x02\u043E\u0440\x03\x02\x02" +
|
|
7903
|
+
"\x02\u043F\u03EC\x03\x02\x02\x02\u043F\u03EE\x03\x02\x02\x02\u043F\u03EF" +
|
|
7904
|
+
"\x03\x02\x02\x02\u043F\u03F1\x03\x02\x02\x02\u043F\u03F3\x03\x02\x02\x02" +
|
|
7905
|
+
"\u043F\u03FA\x03\x02\x02\x02\u043F\u0402\x03\x02\x02\x02\u043F\u040C\x03" +
|
|
7906
|
+
"\x02\x02\x02\u043F\u0415\x03\x02\x02\x02\u043F\u0419\x03\x02\x02\x02\u043F" +
|
|
7907
|
+
"\u042A\x03\x02\x02\x02\u043F\u0432\x03\x02\x02\x02\u043F\u0433\x03\x02" +
|
|
7908
|
+
"\x02\x02\u0440\u0474\x03\x02\x02\x02\u0441\u0442\f\x17\x02\x02\u0442\u0443" +
|
|
7909
|
+
"\t\x12\x02\x02\u0443\u0473\x05\xE0q\x18\u0444\u0445\f\x16\x02\x02\u0445" +
|
|
7910
|
+
"\u0446\t\x13\x02\x02\u0446\u0473\x05\xE0q\x17\u0447\u0448\f\x15\x02\x02" +
|
|
7911
|
+
"\u0448\u0449\x07Z\x02\x02\u0449\u0473\x05\xE0q\x16\u044A\u044B\f\x11\x02" +
|
|
7912
|
+
"\x02\u044B\u044C\x05\xC8e\x02\u044C\u044D\x05\xE0q\x12\u044D\u0473\x03" +
|
|
7913
|
+
"\x02\x02\x02\u044E\u044F\f\x0E\x02\x02\u044F\u0450\x07%\x02\x02\u0450" +
|
|
7914
|
+
"\u0473\x05\xE0q\x0F\u0451\u0452\f";
|
|
7915
|
+
MalloyParser._serializedATNSegment2 = "\r\x02\x02\u0452\u0453\x07M\x02\x02\u0453\u0473\x05\xE0q\x0E\u0454\u0455" +
|
|
7916
|
+
"\f\f\x02\x02\u0455\u0456\x07\x88\x02\x02\u0456\u0473\x05\xE0q\r\u0457" +
|
|
7917
|
+
"\u0458\f\x1E\x02\x02\u0458\u0473\x05z>\x02\u0459\u045A\f\x1C\x02\x02\u045A" +
|
|
7918
|
+
"\u0473\x05\xDAn\x02\u045B\u045C\f\x1B\x02\x02\u045C\u045D\x07w\x02\x02" +
|
|
7919
|
+
"\u045D\u0473\x05\xDAn\x02\u045E\u045F\f\x1A\x02\x02\u045F\u0460\x07r\x02" +
|
|
7920
|
+
"\x02\u0460\u0473\x05\xDEp\x02\u0461\u0462\f\x19\x02\x02\u0462\u0463\x07" +
|
|
7921
|
+
"s\x02\x02\u0463\u0473\x05\xDEp\x02\u0464\u0465\f\x14\x02\x02\u0465\u0466" +
|
|
7922
|
+
"\x079\x02\x02\u0466\u0467\x05\xE0q\x02\u0467\u0468\x05\xDAn\x02\u0468" +
|
|
7923
|
+
"\u0473\x03\x02\x02\x02\u0469\u046A\f\x13\x02\x02\u046A\u046B\x07i\x02" +
|
|
7924
|
+
"\x02\u046B\u0473\x05\xE2r\x02\u046C\u046D\f\x12\x02\x02\u046D\u046E\x07" +
|
|
7925
|
+
"\x83\x02\x02\u046E\u0473\x05\xE2r\x02\u046F\u0470\f\x10\x02\x02\u0470" +
|
|
7926
|
+
"\u0471\x07\x89\x02\x02\u0471\u0473\x05\xE2r\x02\u0472\u0441\x03\x02\x02" +
|
|
7927
|
+
"\x02\u0472\u0444\x03\x02\x02\x02\u0472\u0447\x03\x02\x02\x02\u0472\u044A" +
|
|
7928
|
+
"\x03\x02\x02\x02\u0472\u044E\x03\x02\x02\x02\u0472\u0451\x03\x02\x02\x02" +
|
|
7929
|
+
"\u0472\u0454\x03\x02\x02\x02\u0472\u0457\x03\x02\x02\x02\u0472\u0459\x03" +
|
|
7930
|
+
"\x02\x02\x02\u0472\u045B\x03\x02\x02\x02\u0472\u045E\x03\x02\x02\x02\u0472" +
|
|
7931
|
+
"\u0461\x03\x02\x02\x02\u0472\u0464\x03\x02\x02\x02\u0472\u0469\x03\x02" +
|
|
7932
|
+
"\x02\x02\u0472\u046C\x03\x02\x02\x02\u0472\u046F\x03\x02\x02\x02\u0473" +
|
|
7933
|
+
"\u0476\x03\x02\x02\x02\u0474\u0472\x03\x02\x02\x02\u0474\u0475\x03\x02" +
|
|
7934
|
+
"\x02\x02\u0475\xE1\x03\x02\x02\x02\u0476\u0474\x03\x02\x02\x02\u0477\u0479" +
|
|
7935
|
+
"\x07l\x02\x02\u0478\u047A\x05\xC8e\x02\u0479\u0478\x03\x02\x02\x02\u0479" +
|
|
7936
|
+
"\u047A\x03\x02\x02\x02\u047A\u047B\x03\x02\x02\x02\u047B\u047C\x05\xE0" +
|
|
7937
|
+
"q\x02\u047C\u047D\x07m\x02\x02\u047D\u0483\x03\x02\x02\x02\u047E\u0480" +
|
|
7938
|
+
"\x05\xC8e\x02\u047F\u047E\x03\x02\x02\x02\u047F\u0480\x03\x02\x02\x02" +
|
|
7939
|
+
"\u0480\u0481\x03\x02\x02\x02\u0481\u0483\x05\xE0q\x02\u0482\u0477\x03" +
|
|
7940
|
+
"\x02\x02\x02\u0482\u047F\x03\x02\x02\x02\u0483\xE3\x03\x02\x02\x02\u0484" +
|
|
7941
|
+
"\u0486\x05\xE6t\x02\u0485\u0484\x03\x02\x02\x02\u0486\u0487\x03\x02\x02" +
|
|
7942
|
+
"\x02\u0487\u0485\x03\x02\x02\x02\u0487\u0488\x03\x02\x02\x02\u0488\u048B" +
|
|
7943
|
+
"\x03\x02\x02\x02\u0489\u048A\x073\x02\x02\u048A\u048C\x05\xE0q\x02\u048B" +
|
|
7944
|
+
"\u0489\x03\x02\x02\x02\u048B\u048C\x03\x02\x02\x02\u048C\xE5\x03\x02\x02" +
|
|
7945
|
+
"\x02\u048D\u048F\x07N\x02\x02\u048E\u0490\x05\xE0q\x02\u048F\u048E\x03" +
|
|
7946
|
+
"\x02\x02\x02\u048F\u0490\x03\x02\x02\x02\u0490\u0491\x03\x02\x02\x02\u0491" +
|
|
7947
|
+
"\u0492\x07^\x02\x02\u0492\u0493\x05\xE2r\x02\u0493\xE7\x03\x02\x02\x02" +
|
|
7948
|
+
"\u0494\u0499\x05\xE0q\x02\u0495\u0496\x07v\x02\x02\u0496\u0498\x05\xE0" +
|
|
7949
|
+
"q\x02\u0497\u0495\x03\x02\x02\x02\u0498\u049B\x03\x02\x02\x02\u0499\u0497" +
|
|
7950
|
+
"\x03\x02\x02\x02\u0499\u049A\x03\x02\x02\x02\u049A\u049D\x03\x02\x02\x02" +
|
|
7951
|
+
"\u049B\u0499\x03\x02\x02\x02\u049C\u049E\x07v\x02\x02\u049D\u049C\x03" +
|
|
7952
|
+
"\x02\x02\x02\u049D\u049E\x03\x02\x02\x02\u049E\xE9\x03\x02\x02\x02\u049F" +
|
|
7953
|
+
"\u04A6\x05\xFC\x7F\x02\u04A0\u04A2\x07v\x02\x02\u04A1\u04A0\x03\x02\x02" +
|
|
7954
|
+
"\x02\u04A1\u04A2\x03\x02\x02\x02\u04A2\u04A3\x03\x02\x02\x02\u04A3\u04A5" +
|
|
7955
|
+
"\x05\xFC\x7F\x02\u04A4\u04A1\x03\x02\x02\x02\u04A5\u04A8\x03\x02\x02\x02" +
|
|
7956
|
+
"\u04A6\u04A4\x03\x02\x02\x02\u04A6\u04A7\x03\x02\x02\x02\u04A7\xEB\x03" +
|
|
7957
|
+
"\x02\x02\x02\u04A8\u04A6\x03\x02\x02\x02\u04A9\u04B0\x05\xF6|\x02\u04AA" +
|
|
7958
|
+
"\u04AC\x07v\x02\x02\u04AB\u04AA\x03\x02\x02\x02\u04AB\u04AC\x03\x02\x02" +
|
|
7959
|
+
"\x02\u04AC\u04AD\x03\x02\x02\x02\u04AD\u04AF\x05\xF6|\x02\u04AE\u04AB" +
|
|
7960
|
+
"\x03\x02\x02\x02\u04AF\u04B2\x03\x02\x02\x02\u04B0\u04AE\x03\x02\x02\x02" +
|
|
7961
|
+
"\u04B0\u04B1\x03\x02\x02\x02\u04B1\u04B4\x03\x02\x02\x02\u04B2\u04B0\x03" +
|
|
7962
|
+
"\x02\x02\x02\u04B3\u04B5\x07v\x02\x02\u04B4\u04B3\x03\x02\x02\x02\u04B4" +
|
|
7963
|
+
"\u04B5\x03\x02\x02\x02\u04B5\xED\x03\x02\x02\x02\u04B6\u04B7\x05\xF8}" +
|
|
7964
|
+
"\x02\u04B7\u04B8\x07w\x02\x02\u04B8\u04BA\x03\x02\x02\x02\u04B9\u04B6" +
|
|
7965
|
+
"\x03\x02\x02\x02\u04B9\u04BA\x03\x02\x02\x02\u04BA\u04BB\x03\x02\x02\x02" +
|
|
7966
|
+
"\u04BB\u04BD\x07\x80\x02\x02\u04BC\u04BE\x05\xF0y\x02\u04BD\u04BC\x03" +
|
|
7967
|
+
"\x02\x02\x02\u04BD\u04BE\x03\x02\x02\x02\u04BE\xEF\x03\x02\x02\x02\u04BF" +
|
|
7968
|
+
"\u04C3\x07p\x02\x02\u04C0\u04C1\x07\n\x02\x02\u04C1\u04C4\x05\xEAv\x02" +
|
|
7969
|
+
"\u04C2\u04C4\x07v\x02\x02\u04C3\u04C0\x03\x02\x02\x02\u04C3\u04C2\x03" +
|
|
7970
|
+
"\x02\x02\x02\u04C4\u04C5\x03\x02\x02\x02\u04C5\u04C3\x03\x02\x02\x02\u04C5" +
|
|
7971
|
+
"\u04C6\x03\x02\x02\x02\u04C6\u04C7\x03\x02\x02\x02\u04C7\u04C8\x07q\x02" +
|
|
7972
|
+
"\x02\u04C8\xF1\x03\x02\x02\x02\u04C9\u04CA\x05\f\x07\x02\u04CA\u04CC\x05" +
|
|
7973
|
+
"\xF8}\x02\u04CB\u04CD\x05\xF4{\x02\u04CC\u04CB\x03\x02\x02\x02\u04CC\u04CD" +
|
|
7974
|
+
"\x03\x02\x02\x02\u04CD\xF3\x03\x02\x02\x02\u04CE\u04CF\x07w\x02\x02\u04CF" +
|
|
7975
|
+
"\u04D6\x05\xDAn\x02\u04D0\u04D1\x07w\x02\x02\u04D1\u04D2\x05\xC4c\x02" +
|
|
7976
|
+
"\u04D2\u04D3\x07l\x02\x02\u04D3\u04D4\x07m\x02\x02\u04D4\u04D6\x03\x02" +
|
|
7977
|
+
"\x02\x02\u04D5\u04CE\x03\x02\x02\x02\u04D5\u04D0\x03\x02\x02\x02\u04D6" +
|
|
7978
|
+
"\xF5\x03\x02\x02\x02\u04D7\u04DB\x05\xF2z\x02\u04D8\u04DB\x05\xEEx\x02" +
|
|
7979
|
+
"\u04D9\u04DB\x05V,\x02\u04DA\u04D7\x03\x02\x02\x02\u04DA\u04D8\x03\x02" +
|
|
7980
|
+
"\x02\x02\u04DA\u04D9\x03\x02\x02\x02\u04DB\xF7\x03\x02\x02\x02\u04DC\u04E1" +
|
|
7981
|
+
"\x05\xFC\x7F\x02\u04DD\u04DE\x07w\x02\x02\u04DE\u04E0\x05\xFC\x7F\x02" +
|
|
7982
|
+
"\u04DF\u04DD\x03\x02\x02\x02\u04E0\u04E3\x03\x02\x02\x02\u04E1\u04DF\x03" +
|
|
7983
|
+
"\x02\x02\x02\u04E1\u04E2\x03\x02\x02\x02\u04E2\xF9\x03\x02\x02\x02\u04E3" +
|
|
7984
|
+
"\u04E1\x03\x02\x02\x02\u04E4\u04E5\x05\xD8m\x02\u04E5\xFB\x03\x02\x02" +
|
|
7985
|
+
"\x02\u04E6\u04E7\x05\xD8m\x02\u04E7\xFD\x03\x02\x02\x02\u04E8\u04E9\x05" +
|
|
7986
|
+
"\xE0q\x02\u04E9\u04EA\x07\x02\x02\x03\u04EA\xFF\x03\x02\x02\x02\u04EB" +
|
|
7987
|
+
"\u04EC\x05\xD8m\x02\u04EC\u0101\x03\x02\x02\x02\u04ED\u04EE\x05\xD8m\x02" +
|
|
7988
|
+
"\u04EE\u0103\x03\x02\x02\x02\u04EF\u04F0\x05\xCAf\x02\u04F0\u0105\x03" +
|
|
7989
|
+
"\x02\x02\x02\u04F1\u04F2\x07\x84\x02\x02\u04F2\u04F3\x07\x84\x02\x02\u04F3" +
|
|
7990
|
+
"\u04F4\x07n\x02\x02\u04F4\u04F5\x05\xCAf\x02\u04F5\u04F6\x07o\x02\x02" +
|
|
7991
|
+
"\u04F6\u0107\x03\x02\x02\x02\x87\u010A\u010C\u0119\u0124\u012C\u0140\u0148" +
|
|
7992
|
+
"\u014E\u0159\u0163\u016C\u0173\u0178\u017D\u0183\u0188\u018C\u019D\u01AD" +
|
|
7993
|
+
"\u01B5\u01B7\u01BB\u01C6\u01CB\u01CF\u01DF\u01E1\u01E6\u01FB\u01FE\u020A" +
|
|
7994
|
+
"\u020F\u0213\u021B\u0220\u0224\u023E\u0246\u0250\u025B\u025D\u0267\u026E" +
|
|
7995
|
+
"\u0276\u027B\u0280\u0282\u0289\u028E\u0292\u029E\u02A3\u02A6\u02AE\u02B3" +
|
|
7996
|
+
"\u02B6\u02BA\u02BC\u02C2\u02C7\u02C9\u02D3\u02D7\u02DB\u02DF\u02EA\u02F1" +
|
|
7997
|
+
"\u02F5\u02FF\u0304\u0308\u030F\u0328\u0332\u0337\u033B\u033F\u0347\u034C" +
|
|
7998
|
+
"\u0350\u0356\u035D\u0371\u0375\u037C\u0381\u0385\u0389\u038C\u0395\u039A" +
|
|
7999
|
+
"\u039F\u03A2\u03A6\u03AB\u03B2\u03C6\u03D3\u03DC\u03EA\u0402\u0408\u0411" +
|
|
8000
|
+
"\u041E\u0425\u0427\u042A\u042E\u043A\u043F\u0472\u0474\u0479\u047F\u0482" +
|
|
8001
|
+
"\u0487\u048B\u048F\u0499\u049D\u04A1\u04A6\u04AB\u04B0\u04B4\u04B9\u04BD" +
|
|
8002
|
+
"\u04C3\u04C5\u04CC\u04D5\u04DA\u04E1";
|
|
7939
8003
|
MalloyParser._serializedATN = Utils.join([
|
|
7940
8004
|
MalloyParser._serializedATNSegment0,
|
|
7941
8005
|
MalloyParser._serializedATNSegment1,
|
|
@@ -11271,7 +11335,7 @@ class AggregateOrderingContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
11271
11335
|
exports.AggregateOrderingContext = AggregateOrderingContext;
|
|
11272
11336
|
class AggregateOrderBySpecContext extends ParserRuleContext_1.ParserRuleContext {
|
|
11273
11337
|
fieldExpr() {
|
|
11274
|
-
return this.
|
|
11338
|
+
return this.tryGetRuleContext(0, FieldExprContext);
|
|
11275
11339
|
}
|
|
11276
11340
|
ASC() { return this.tryGetToken(MalloyParser.ASC, 0); }
|
|
11277
11341
|
DESC() { return this.tryGetToken(MalloyParser.DESC, 0); }
|