@danielx/civet 0.6.9 → 0.6.11

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/main.mjs CHANGED
@@ -428,7 +428,7 @@ var require_lib = __commonJS({
428
428
  if (glob?.type === "PropertyGlob") {
429
429
  let prefix = children.slice(0, i);
430
430
  const parts = [];
431
- let hoistDec, refAssignment = [];
431
+ let hoistDec, refAssignment;
432
432
  if (prefix.length > 1) {
433
433
  const ref = {
434
434
  type: "Ref",
@@ -485,10 +485,9 @@ var require_lib = __commonJS({
485
485
  });
486
486
  }
487
487
  }
488
- const object = {
488
+ let object = {
489
489
  type: "ObjectExpression",
490
490
  children: [
491
- ...refAssignment,
492
491
  glob.object.children[0],
493
492
  ...parts,
494
493
  glob.object.children.at(-1)
@@ -496,6 +495,13 @@ var require_lib = __commonJS({
496
495
  properties: parts,
497
496
  hoistDec
498
497
  };
498
+ if (refAssignment) {
499
+ object = {
500
+ type: "ParenthesizedExpression",
501
+ children: ["(", ...refAssignment, object, ")"],
502
+ expression: object
503
+ };
504
+ }
499
505
  if (i === children.length - 1)
500
506
  return object;
501
507
  return processCallMemberExpression({
@@ -1122,6 +1128,10 @@ var require_lib = __commonJS({
1122
1128
  case "CallExpression":
1123
1129
  case "MemberExpression":
1124
1130
  case "ParenthesizedExpression":
1131
+ case "DebuggerExpression":
1132
+ case "SwitchExpression":
1133
+ case "ThrowExpression":
1134
+ case "TryExpression":
1125
1135
  return expression;
1126
1136
  default:
1127
1137
  return {
@@ -1165,7 +1175,9 @@ var require_lib = __commonJS({
1165
1175
  }
1166
1176
  function convertMethodToFunction(method) {
1167
1177
  const { signature, block } = method;
1168
- let { modifier } = signature;
1178
+ let { modifier, optional } = signature;
1179
+ if (optional)
1180
+ return;
1169
1181
  if (modifier) {
1170
1182
  if (modifier.get || modifier.set) {
1171
1183
  return;
@@ -1330,7 +1342,7 @@ var require_lib = __commonJS({
1330
1342
  };
1331
1343
  }
1332
1344
  function implicitFunctionBlock(f) {
1333
- if (f.abstract || f.block)
1345
+ if (f.abstract || f.block || f.signature?.optional)
1334
1346
  return;
1335
1347
  const { name, parent } = f;
1336
1348
  const expressions = parent?.expressions ?? parent?.elements;
@@ -3348,6 +3360,7 @@ ${input.slice(result.pos)}
3348
3360
  In,
3349
3361
  LetOrConst,
3350
3362
  Const,
3363
+ Is,
3351
3364
  LetOrConstOrVar,
3352
3365
  Loop,
3353
3366
  New,
@@ -3566,179 +3579,204 @@ ${input.slice(result.pos)}
3566
3579
  var $L6 = $L("++");
3567
3580
  var $L7 = $L("--");
3568
3581
  var $L8 = $L("=>");
3569
- var $L9 = $L(" ");
3570
- var $L10 = $L(":");
3571
- var $L11 = $L("implements");
3572
- var $L12 = $L("<:");
3573
- var $L13 = $L("#");
3574
- var $L14 = $L("super");
3575
- var $L15 = $L("import");
3576
- var $L16 = $L("!");
3577
- var $L17 = $L("^");
3578
- var $L18 = $L("-");
3579
- var $L19 = $L("import.meta");
3580
- var $L20 = $L("return.value");
3581
- var $L21 = $L(",");
3582
- var $L22 = $L("->");
3583
- var $L23 = $L("}");
3584
- var $L24 = $L("null");
3585
- var $L25 = $L("true");
3586
- var $L26 = $L("false");
3587
- var $L27 = $L("yes");
3588
- var $L28 = $L("on");
3589
- var $L29 = $L("no");
3590
- var $L30 = $L("off");
3591
- var $L31 = $L(">");
3592
- var $L32 = $L("]");
3593
- var $L33 = $L("**=");
3594
- var $L34 = $L("*=");
3595
- var $L35 = $L("/=");
3596
- var $L36 = $L("%=");
3597
- var $L37 = $L("+=");
3598
- var $L38 = $L("-=");
3599
- var $L39 = $L("<<=");
3600
- var $L40 = $L(">>>=");
3601
- var $L41 = $L(">>=");
3602
- var $L42 = $L("&&=");
3603
- var $L43 = $L("&=");
3604
- var $L44 = $L("^=");
3605
- var $L45 = $L("||=");
3606
- var $L46 = $L("|=");
3607
- var $L47 = $L("??=");
3608
- var $L48 = $L("?=");
3609
- var $L49 = $L("and=");
3610
- var $L50 = $L("or=");
3611
- var $L51 = $L("not");
3612
- var $L52 = $L("**");
3613
- var $L53 = $L("*");
3614
- var $L54 = $L("/");
3615
- var $L55 = $L("%%");
3616
- var $L56 = $L("%");
3617
- var $L57 = $L("+");
3618
- var $L58 = $L("<=");
3619
- var $L59 = $L(">=");
3620
- var $L60 = $L("<?");
3621
- var $L61 = $L("!<?");
3622
- var $L62 = $L("<<");
3623
- var $L63 = $L(">>>");
3624
- var $L64 = $L(">>");
3625
- var $L65 = $L("!==");
3626
- var $L66 = $L("!=");
3627
- var $L67 = $L("isnt");
3628
- var $L68 = $L("===");
3629
- var $L69 = $L("==");
3630
- var $L70 = $L("and");
3631
- var $L71 = $L("&&");
3632
- var $L72 = $L("of");
3633
- var $L73 = $L("or");
3634
- var $L74 = $L("||");
3635
- var $L75 = $L("^^");
3636
- var $L76 = $L("xor");
3637
- var $L77 = $L("xnor");
3638
- var $L78 = $L("??");
3639
- var $L79 = $L("instanceof");
3640
- var $L80 = $L("in");
3641
- var $L81 = $L("is");
3642
- var $L82 = $L("&");
3643
- var $L83 = $L("|");
3644
- var $L84 = $L(";");
3645
- var $L85 = $L("$:");
3646
- var $L86 = $L("own");
3647
- var $L87 = $L("break");
3648
- var $L88 = $L("continue");
3649
- var $L89 = $L("debugger");
3650
- var $L90 = $L("assert");
3651
- var $L91 = $L(":=");
3652
- var $L92 = $L(".=");
3653
- var $L93 = $L("/*");
3654
- var $L94 = $L("*/");
3655
- var $L95 = $L("\\");
3656
- var $L96 = $L("[");
3657
- var $L97 = $L("`");
3658
- var $L98 = $L("abstract");
3659
- var $L99 = $L("as");
3660
- var $L100 = $L("@");
3661
- var $L101 = $L("@@");
3662
- var $L102 = $L("async");
3663
- var $L103 = $L("await");
3664
- var $L104 = $L("by");
3665
- var $L105 = $L("case");
3666
- var $L106 = $L("catch");
3667
- var $L107 = $L("class");
3668
- var $L108 = $L(")");
3669
- var $L109 = $L("#{");
3670
- var $L110 = $L("declare");
3671
- var $L111 = $L("default");
3672
- var $L112 = $L("delete");
3673
- var $L113 = $L("do");
3674
- var $L114 = $L("..");
3675
- var $L115 = $L("...");
3676
- var $L116 = $L("::");
3677
- var $L117 = $L('"');
3678
- var $L118 = $L("else");
3679
- var $L119 = $L("export");
3680
- var $L120 = $L("extends");
3681
- var $L121 = $L("finally");
3682
- var $L122 = $L("for");
3683
- var $L123 = $L("from");
3684
- var $L124 = $L("function");
3685
- var $L125 = $L("get");
3686
- var $L126 = $L("set");
3687
- var $L127 = $L("if");
3688
- var $L128 = $L("let");
3689
- var $L129 = $L("const");
3690
- var $L130 = $L("loop");
3691
- var $L131 = $L("new");
3692
- var $L132 = $L("<");
3693
- var $L133 = $L("{");
3694
- var $L134 = $L("operator");
3695
- var $L135 = $L("public");
3696
- var $L136 = $L("private");
3697
- var $L137 = $L("protected");
3698
- var $L138 = $L("||>");
3699
- var $L139 = $L("|>=");
3700
- var $L140 = $L("|>");
3701
- var $L141 = $L("readonly");
3702
- var $L142 = $L("return");
3703
- var $L143 = $L("satisfies");
3704
- var $L144 = $L("'");
3705
- var $L145 = $L("static");
3706
- var $L146 = $L("${");
3707
- var $L147 = $L("switch");
3708
- var $L148 = $L("target");
3709
- var $L149 = $L("then");
3710
- var $L150 = $L("this");
3711
- var $L151 = $L("throw");
3712
- var $L152 = $L('"""');
3713
- var $L153 = $L("'''");
3714
- var $L154 = $L("///");
3715
- var $L155 = $L("```");
3716
- var $L156 = $L("try");
3717
- var $L157 = $L("typeof");
3718
- var $L158 = $L("unless");
3719
- var $L159 = $L("until");
3720
- var $L160 = $L("var");
3721
- var $L161 = $L("void");
3722
- var $L162 = $L("when");
3723
- var $L163 = $L("while");
3724
- var $L164 = $L("yield");
3725
- var $L165 = $L("/>");
3726
- var $L166 = $L("</");
3727
- var $L167 = $L("<>");
3728
- var $L168 = $L("</>");
3729
- var $L169 = $L("<!--");
3730
- var $L170 = $L("-->");
3731
- var $L171 = $L("type");
3732
- var $L172 = $L("enum");
3733
- var $L173 = $L("interface");
3734
- var $L174 = $L("global");
3735
- var $L175 = $L("module");
3736
- var $L176 = $L("namespace");
3737
- var $L177 = $L("asserts");
3738
- var $L178 = $L("keyof");
3739
- var $L179 = $L("infer");
3740
- var $L180 = $L("[]");
3741
- var $L181 = $L("civet");
3582
+ var $L9 = $L("\u21D2");
3583
+ var $L10 = $L(" ");
3584
+ var $L11 = $L(":");
3585
+ var $L12 = $L("implements");
3586
+ var $L13 = $L("<:");
3587
+ var $L14 = $L("#");
3588
+ var $L15 = $L("super");
3589
+ var $L16 = $L("import");
3590
+ var $L17 = $L("!");
3591
+ var $L18 = $L("^");
3592
+ var $L19 = $L("-");
3593
+ var $L20 = $L("import.meta");
3594
+ var $L21 = $L("return.value");
3595
+ var $L22 = $L(",");
3596
+ var $L23 = $L("->");
3597
+ var $L24 = $L("\u2192");
3598
+ var $L25 = $L("}");
3599
+ var $L26 = $L("null");
3600
+ var $L27 = $L("true");
3601
+ var $L28 = $L("false");
3602
+ var $L29 = $L("yes");
3603
+ var $L30 = $L("on");
3604
+ var $L31 = $L("no");
3605
+ var $L32 = $L("off");
3606
+ var $L33 = $L(">");
3607
+ var $L34 = $L("]");
3608
+ var $L35 = $L("**=");
3609
+ var $L36 = $L("*=");
3610
+ var $L37 = $L("/=");
3611
+ var $L38 = $L("%=");
3612
+ var $L39 = $L("+=");
3613
+ var $L40 = $L("-=");
3614
+ var $L41 = $L("<<=");
3615
+ var $L42 = $L(">>>=");
3616
+ var $L43 = $L(">>=");
3617
+ var $L44 = $L("&&=");
3618
+ var $L45 = $L("&=");
3619
+ var $L46 = $L("^=");
3620
+ var $L47 = $L("||=");
3621
+ var $L48 = $L("|=");
3622
+ var $L49 = $L("??=");
3623
+ var $L50 = $L("?=");
3624
+ var $L51 = $L("and=");
3625
+ var $L52 = $L("or=");
3626
+ var $L53 = $L("**");
3627
+ var $L54 = $L("*");
3628
+ var $L55 = $L("/");
3629
+ var $L56 = $L("%%");
3630
+ var $L57 = $L("%");
3631
+ var $L58 = $L("+");
3632
+ var $L59 = $L("<=");
3633
+ var $L60 = $L("\u2264");
3634
+ var $L61 = $L(">=");
3635
+ var $L62 = $L("\u2265");
3636
+ var $L63 = $L("<?");
3637
+ var $L64 = $L("!<?");
3638
+ var $L65 = $L("<<");
3639
+ var $L66 = $L("\xAB");
3640
+ var $L67 = $L(">>>");
3641
+ var $L68 = $L("\u22D9");
3642
+ var $L69 = $L(">>");
3643
+ var $L70 = $L("\xBB");
3644
+ var $L71 = $L("!==");
3645
+ var $L72 = $L("\u2262");
3646
+ var $L73 = $L("!=");
3647
+ var $L74 = $L("\u2260");
3648
+ var $L75 = $L("isnt");
3649
+ var $L76 = $L("===");
3650
+ var $L77 = $L("\u2263");
3651
+ var $L78 = $L("\u2A76");
3652
+ var $L79 = $L("==");
3653
+ var $L80 = $L("\u2261");
3654
+ var $L81 = $L("\u2A75");
3655
+ var $L82 = $L("and");
3656
+ var $L83 = $L("&&");
3657
+ var $L84 = $L("of");
3658
+ var $L85 = $L("or");
3659
+ var $L86 = $L("||");
3660
+ var $L87 = $L("\u2016");
3661
+ var $L88 = $L("^^");
3662
+ var $L89 = $L("xor");
3663
+ var $L90 = $L("xnor");
3664
+ var $L91 = $L("??");
3665
+ var $L92 = $L("\u2047");
3666
+ var $L93 = $L("instanceof");
3667
+ var $L94 = $L("\u2208");
3668
+ var $L95 = $L("\u220B");
3669
+ var $L96 = $L("\u220C");
3670
+ var $L97 = $L("\u2209");
3671
+ var $L98 = $L("&");
3672
+ var $L99 = $L("|");
3673
+ var $L100 = $L(";");
3674
+ var $L101 = $L("$:");
3675
+ var $L102 = $L("own");
3676
+ var $L103 = $L("break");
3677
+ var $L104 = $L("continue");
3678
+ var $L105 = $L("debugger");
3679
+ var $L106 = $L("assert");
3680
+ var $L107 = $L(":=");
3681
+ var $L108 = $L("\u2254");
3682
+ var $L109 = $L(".=");
3683
+ var $L110 = $L("/*");
3684
+ var $L111 = $L("*/");
3685
+ var $L112 = $L("\\");
3686
+ var $L113 = $L("[");
3687
+ var $L114 = $L("`");
3688
+ var $L115 = $L("abstract");
3689
+ var $L116 = $L("as");
3690
+ var $L117 = $L("@");
3691
+ var $L118 = $L("@@");
3692
+ var $L119 = $L("async");
3693
+ var $L120 = $L("await");
3694
+ var $L121 = $L("by");
3695
+ var $L122 = $L("case");
3696
+ var $L123 = $L("catch");
3697
+ var $L124 = $L("class");
3698
+ var $L125 = $L(")");
3699
+ var $L126 = $L("#{");
3700
+ var $L127 = $L("declare");
3701
+ var $L128 = $L("default");
3702
+ var $L129 = $L("delete");
3703
+ var $L130 = $L("do");
3704
+ var $L131 = $L("..");
3705
+ var $L132 = $L("\u2025");
3706
+ var $L133 = $L("...");
3707
+ var $L134 = $L("\u2026");
3708
+ var $L135 = $L("::");
3709
+ var $L136 = $L('"');
3710
+ var $L137 = $L("else");
3711
+ var $L138 = $L("export");
3712
+ var $L139 = $L("extends");
3713
+ var $L140 = $L("finally");
3714
+ var $L141 = $L("for");
3715
+ var $L142 = $L("from");
3716
+ var $L143 = $L("function");
3717
+ var $L144 = $L("get");
3718
+ var $L145 = $L("set");
3719
+ var $L146 = $L("if");
3720
+ var $L147 = $L("in");
3721
+ var $L148 = $L("let");
3722
+ var $L149 = $L("const");
3723
+ var $L150 = $L("is");
3724
+ var $L151 = $L("loop");
3725
+ var $L152 = $L("new");
3726
+ var $L153 = $L("not");
3727
+ var $L154 = $L("<");
3728
+ var $L155 = $L("{");
3729
+ var $L156 = $L("operator");
3730
+ var $L157 = $L("public");
3731
+ var $L158 = $L("private");
3732
+ var $L159 = $L("protected");
3733
+ var $L160 = $L("||>");
3734
+ var $L161 = $L("|\u25B7");
3735
+ var $L162 = $L("|>=");
3736
+ var $L163 = $L("\u25B7=");
3737
+ var $L164 = $L("|>");
3738
+ var $L165 = $L("\u25B7");
3739
+ var $L166 = $L("readonly");
3740
+ var $L167 = $L("return");
3741
+ var $L168 = $L("satisfies");
3742
+ var $L169 = $L("'");
3743
+ var $L170 = $L("static");
3744
+ var $L171 = $L("${");
3745
+ var $L172 = $L("switch");
3746
+ var $L173 = $L("target");
3747
+ var $L174 = $L("then");
3748
+ var $L175 = $L("this");
3749
+ var $L176 = $L("throw");
3750
+ var $L177 = $L('"""');
3751
+ var $L178 = $L("'''");
3752
+ var $L179 = $L("///");
3753
+ var $L180 = $L("```");
3754
+ var $L181 = $L("try");
3755
+ var $L182 = $L("typeof");
3756
+ var $L183 = $L("unless");
3757
+ var $L184 = $L("until");
3758
+ var $L185 = $L("var");
3759
+ var $L186 = $L("void");
3760
+ var $L187 = $L("when");
3761
+ var $L188 = $L("while");
3762
+ var $L189 = $L("yield");
3763
+ var $L190 = $L("/>");
3764
+ var $L191 = $L("</");
3765
+ var $L192 = $L("<>");
3766
+ var $L193 = $L("</>");
3767
+ var $L194 = $L("<!--");
3768
+ var $L195 = $L("-->");
3769
+ var $L196 = $L("type");
3770
+ var $L197 = $L("enum");
3771
+ var $L198 = $L("interface");
3772
+ var $L199 = $L("global");
3773
+ var $L200 = $L("module");
3774
+ var $L201 = $L("namespace");
3775
+ var $L202 = $L("asserts");
3776
+ var $L203 = $L("keyof");
3777
+ var $L204 = $L("infer");
3778
+ var $L205 = $L("[]");
3779
+ var $L206 = $L("civet");
3742
3780
  var $R0 = $R(new RegExp("(as|of|satisfies|then|when|implements|xor|xnor)(?!\\p{ID_Continue}|[\\u200C\\u200D$])", "suy"));
3743
3781
  var $R1 = $R(new RegExp("[0-9]", "suy"));
3744
3782
  var $R2 = $R(new RegExp("[)}]", "suy"));
@@ -4267,8 +4305,15 @@ ${input.slice(result.pos)}
4267
4305
  var ForbiddenImplicitCalls$2 = $S(ClassImplicitCallForbidden, $C(Class, AtAt));
4268
4306
  var ForbiddenImplicitCalls$3 = $S(Identifier, $EXPECT($L2, fail, 'ForbiddenImplicitCalls "="'), Whitespace);
4269
4307
  var ForbiddenImplicitCalls$4 = $TS($S(Identifier, $N($EXPECT($L3, fail, 'ForbiddenImplicitCalls "("'))), function($skip, $loc, $0, $1, $2) {
4270
- if (module.operators.has($1.name))
4271
- return $1;
4308
+ var id = $1;
4309
+ if (module.operators.has(id.name))
4310
+ return $0;
4311
+ return $skip;
4312
+ });
4313
+ var ForbiddenImplicitCalls$5 = $TS($S(Not, $E(_), Identifier), function($skip, $loc, $0, $1, $2, $3) {
4314
+ var id = $3;
4315
+ if (module.operators.has(id.name))
4316
+ return $0;
4272
4317
  return $skip;
4273
4318
  });
4274
4319
  function ForbiddenImplicitCalls(state) {
@@ -4282,12 +4327,12 @@ ${input.slice(result.pos)}
4282
4327
  }
4283
4328
  }
4284
4329
  if (state.tokenize) {
4285
- const result = $TOKEN("ForbiddenImplicitCalls", state, ForbiddenImplicitCalls$0(state) || ForbiddenImplicitCalls$1(state) || ForbiddenImplicitCalls$2(state) || ForbiddenImplicitCalls$3(state) || ForbiddenImplicitCalls$4(state));
4330
+ const result = $TOKEN("ForbiddenImplicitCalls", state, ForbiddenImplicitCalls$0(state) || ForbiddenImplicitCalls$1(state) || ForbiddenImplicitCalls$2(state) || ForbiddenImplicitCalls$3(state) || ForbiddenImplicitCalls$4(state) || ForbiddenImplicitCalls$5(state));
4286
4331
  if (state.events)
4287
4332
  state.events.exit?.("ForbiddenImplicitCalls", state, result, eventData);
4288
4333
  return result;
4289
4334
  } else {
4290
- const result = ForbiddenImplicitCalls$0(state) || ForbiddenImplicitCalls$1(state) || ForbiddenImplicitCalls$2(state) || ForbiddenImplicitCalls$3(state) || ForbiddenImplicitCalls$4(state);
4335
+ const result = ForbiddenImplicitCalls$0(state) || ForbiddenImplicitCalls$1(state) || ForbiddenImplicitCalls$2(state) || ForbiddenImplicitCalls$3(state) || ForbiddenImplicitCalls$4(state) || ForbiddenImplicitCalls$5(state);
4291
4336
  if (state.events)
4292
4337
  state.events.exit?.("ForbiddenImplicitCalls", state, result, eventData);
4293
4338
  return result;
@@ -5094,11 +5139,11 @@ ${input.slice(result.pos)}
5094
5139
  return result;
5095
5140
  }
5096
5141
  }
5097
- var FatArrow$0 = $TS($S($E(_), $EXPECT($L8, fail, 'FatArrow "=>"')), function($skip, $loc, $0, $1, $2) {
5142
+ var FatArrow$0 = $TS($S($E(_), $C($EXPECT($L8, fail, 'FatArrow "=>"'), $EXPECT($L9, fail, 'FatArrow "\u21D2"'))), function($skip, $loc, $0, $1, $2) {
5098
5143
  var ws = $1;
5099
5144
  if (!ws)
5100
5145
  return " =>";
5101
- return $0;
5146
+ return [$1, "=>"];
5102
5147
  });
5103
5148
  function FatArrow(state) {
5104
5149
  let eventData;
@@ -5178,7 +5223,7 @@ ${input.slice(result.pos)}
5178
5223
  }
5179
5224
  }
5180
5225
  var TernaryRest$0 = NestedTernaryRest;
5181
- var TernaryRest$1 = $TS($S($N(CoffeeBinaryExistentialEnabled), $Y($EXPECT($L9, fail, 'TernaryRest " "')), $E(_), QuestionMark, ExtendedExpression, __, Colon, ExtendedExpression), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8) {
5226
+ var TernaryRest$1 = $TS($S($N(CoffeeBinaryExistentialEnabled), $Y($EXPECT($L10, fail, 'TernaryRest " "')), $E(_), QuestionMark, ExtendedExpression, __, Colon, ExtendedExpression), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8) {
5182
5227
  return $0.slice(2);
5183
5228
  });
5184
5229
  function TernaryRest(state) {
@@ -5448,7 +5493,7 @@ ${input.slice(result.pos)}
5448
5493
  return result;
5449
5494
  }
5450
5495
  }
5451
- var ClassExpression$0 = $S($E(Decorators), $E($S(Abstract, __)), Class, $N($EXPECT($L10, fail, 'ClassExpression ":"')), $E(ClassBinding), $E(ClassHeritage), ClassBody);
5496
+ var ClassExpression$0 = $S($E(Decorators), $E($S(Abstract, __)), Class, $N($EXPECT($L11, fail, 'ClassExpression ":"')), $E(ClassBinding), $E(ClassHeritage), ClassBody);
5452
5497
  function ClassExpression(state) {
5453
5498
  let eventData;
5454
5499
  if (state.events) {
@@ -5543,7 +5588,7 @@ ${input.slice(result.pos)}
5543
5588
  return result;
5544
5589
  }
5545
5590
  }
5546
- var ExtendsToken$0 = $TS($S(Loc, __, OpenAngleBracket, $E($EXPECT($L9, fail, 'ExtendsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5591
+ var ExtendsToken$0 = $TS($S(Loc, __, OpenAngleBracket, $E($EXPECT($L10, fail, 'ExtendsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5547
5592
  var l = $1;
5548
5593
  var ws = $2;
5549
5594
  var lt = $3;
@@ -5637,7 +5682,7 @@ ${input.slice(result.pos)}
5637
5682
  return result;
5638
5683
  }
5639
5684
  }
5640
- var ImplementsToken$0 = $TS($S(Loc, __, ImplementsShorthand, $E($EXPECT($L9, fail, 'ImplementsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5685
+ var ImplementsToken$0 = $TS($S(Loc, __, ImplementsShorthand, $E($EXPECT($L10, fail, 'ImplementsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5641
5686
  var l = $1;
5642
5687
  var ws = $2;
5643
5688
  var token = $3;
@@ -5647,7 +5692,7 @@ ${input.slice(result.pos)}
5647
5692
  }
5648
5693
  return { children };
5649
5694
  });
5650
- var ImplementsToken$1 = $TS($S(__, $EXPECT($L11, fail, 'ImplementsToken "implements"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
5695
+ var ImplementsToken$1 = $TS($S(__, $EXPECT($L12, fail, 'ImplementsToken "implements"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
5651
5696
  $2 = { $loc, token: $2 };
5652
5697
  return [$1, $2];
5653
5698
  });
@@ -5673,7 +5718,7 @@ ${input.slice(result.pos)}
5673
5718
  return result;
5674
5719
  }
5675
5720
  }
5676
- var ImplementsShorthand$0 = $TV($EXPECT($L12, fail, 'ImplementsShorthand "<:"'), function($skip, $loc, $0, $1) {
5721
+ var ImplementsShorthand$0 = $TV($EXPECT($L13, fail, 'ImplementsShorthand "<:"'), function($skip, $loc, $0, $1) {
5677
5722
  return { $loc, token: "implements " };
5678
5723
  });
5679
5724
  function ImplementsShorthand(state) {
@@ -6087,7 +6132,7 @@ ${input.slice(result.pos)}
6087
6132
  }
6088
6133
  }
6089
6134
  var ThisLiteral$0 = This;
6090
- var ThisLiteral$1 = $TS($S(AtThis, $TEXT($S($E($EXPECT($L13, fail, 'ThisLiteral "#"')), IdentifierName))), function($skip, $loc, $0, $1, $2) {
6135
+ var ThisLiteral$1 = $TS($S(AtThis, $TEXT($S($E($EXPECT($L14, fail, 'ThisLiteral "#"')), IdentifierName))), function($skip, $loc, $0, $1, $2) {
6091
6136
  var at = $1;
6092
6137
  var id = $2;
6093
6138
  return [at, ".", id];
@@ -6141,7 +6186,7 @@ ${input.slice(result.pos)}
6141
6186
  return result;
6142
6187
  }
6143
6188
  }
6144
- var LeftHandSideExpression$0 = $S($P($S(New, $N($C($EXPECT($L5, fail, 'LeftHandSideExpression "."'), $EXPECT($L10, fail, 'LeftHandSideExpression ":"'))), __)), CallExpression, $E(TypeArguments));
6189
+ var LeftHandSideExpression$0 = $S($P($S(New, $N($C($EXPECT($L5, fail, 'LeftHandSideExpression "."'), $EXPECT($L11, fail, 'LeftHandSideExpression ":"'))), __)), CallExpression, $E(TypeArguments));
6145
6190
  var LeftHandSideExpression$1 = CallExpression;
6146
6191
  function LeftHandSideExpression(state) {
6147
6192
  let eventData;
@@ -6165,14 +6210,14 @@ ${input.slice(result.pos)}
6165
6210
  return result;
6166
6211
  }
6167
6212
  }
6168
- var CallExpression$0 = $TS($S($EXPECT($L14, fail, 'CallExpression "super"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6213
+ var CallExpression$0 = $TS($S($EXPECT($L15, fail, 'CallExpression "super"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6169
6214
  var rest = $3;
6170
6215
  return processCallMemberExpression({
6171
6216
  type: "CallExpression",
6172
6217
  children: [$1, ...$2, ...rest.flat()]
6173
6218
  });
6174
6219
  });
6175
- var CallExpression$1 = $TS($S($EXPECT($L15, fail, 'CallExpression "import"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6220
+ var CallExpression$1 = $TS($S($EXPECT($L16, fail, 'CallExpression "import"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6176
6221
  var rest = $3;
6177
6222
  return processCallMemberExpression({
6178
6223
  type: "CallExpression",
@@ -6300,7 +6345,7 @@ ${input.slice(result.pos)}
6300
6345
  return result;
6301
6346
  }
6302
6347
  }
6303
- var NonNullAssertion$0 = $T($S($EXPECT($L16, fail, 'NonNullAssertion "!"'), $N($EXPECT($L17, fail, 'NonNullAssertion "^"'))), function(value) {
6348
+ var NonNullAssertion$0 = $T($S($EXPECT($L17, fail, 'NonNullAssertion "!"'), $N($EXPECT($L18, fail, 'NonNullAssertion "^"'))), function(value) {
6304
6349
  return { "type": "NonNullAssertion", "ts": true, "children": value[0] };
6305
6350
  });
6306
6351
  function NonNullAssertion(state) {
@@ -6440,7 +6485,7 @@ ${input.slice(result.pos)}
6440
6485
  ]
6441
6486
  };
6442
6487
  });
6443
- var MemberBracketContent$3 = $TS($S(Dot, $EXPECT($L18, fail, 'MemberBracketContent "-"'), IntegerLiteral), function($skip, $loc, $0, $1, $2, $3) {
6488
+ var MemberBracketContent$3 = $TS($S(Dot, $EXPECT($L19, fail, 'MemberBracketContent "-"'), IntegerLiteral), function($skip, $loc, $0, $1, $2, $3) {
6444
6489
  var dot = $1;
6445
6490
  var neg = $2;
6446
6491
  var num = $3;
@@ -6660,8 +6705,8 @@ ${input.slice(result.pos)}
6660
6705
  return result;
6661
6706
  }
6662
6707
  }
6663
- var SuperProperty$0 = $S($EXPECT($L14, fail, 'SuperProperty "super"'), MemberBracketContent);
6664
- var SuperProperty$1 = $S($EXPECT($L14, fail, 'SuperProperty "super"'), $N($C(QuestionMark, NonNullAssertion)), PropertyAccess);
6708
+ var SuperProperty$0 = $S($EXPECT($L15, fail, 'SuperProperty "super"'), MemberBracketContent);
6709
+ var SuperProperty$1 = $S($EXPECT($L15, fail, 'SuperProperty "super"'), $N($C(QuestionMark, NonNullAssertion)), PropertyAccess);
6665
6710
  function SuperProperty(state) {
6666
6711
  let eventData;
6667
6712
  if (state.events) {
@@ -6685,7 +6730,7 @@ ${input.slice(result.pos)}
6685
6730
  }
6686
6731
  }
6687
6732
  var MetaProperty$0 = $S(New, Dot, Target);
6688
- var MetaProperty$1 = $TS($S($EXPECT($L19, fail, 'MetaProperty "import.meta"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
6733
+ var MetaProperty$1 = $TS($S($EXPECT($L20, fail, 'MetaProperty "import.meta"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
6689
6734
  return { $loc, token: $1 };
6690
6735
  });
6691
6736
  var MetaProperty$2 = ReturnValue;
@@ -6711,7 +6756,7 @@ ${input.slice(result.pos)}
6711
6756
  return result;
6712
6757
  }
6713
6758
  }
6714
- var ReturnValue$0 = $TV($C($S($EXPECT($L20, fail, 'ReturnValue "return.value"'), NonIdContinue), $S(Return, $Y(AfterReturnShorthand))), function($skip, $loc, $0, $1) {
6759
+ var ReturnValue$0 = $TV($C($S($EXPECT($L21, fail, 'ReturnValue "return.value"'), NonIdContinue), $S(Return, $Y(AfterReturnShorthand))), function($skip, $loc, $0, $1) {
6715
6760
  return { type: "ReturnValue", children: [$1[0]] };
6716
6761
  });
6717
6762
  function ReturnValue(state) {
@@ -7047,7 +7092,7 @@ ${input.slice(result.pos)}
7047
7092
  return result;
7048
7093
  }
7049
7094
  }
7050
- var PinPattern$0 = $TS($S($EXPECT($L17, fail, 'PinPattern "^"'), Identifier), function($skip, $loc, $0, $1, $2) {
7095
+ var PinPattern$0 = $TS($S($EXPECT($L18, fail, 'PinPattern "^"'), Identifier), function($skip, $loc, $0, $1, $2) {
7051
7096
  var identifier = $2;
7052
7097
  return {
7053
7098
  type: "PinPattern",
@@ -7420,7 +7465,7 @@ ${input.slice(result.pos)}
7420
7465
  names: value.names
7421
7466
  };
7422
7467
  });
7423
- var BindingProperty$2 = $TS($S($E(_), $E($EXPECT($L17, fail, 'BindingProperty "^"')), BindingIdentifier, $E(Initializer)), function($skip, $loc, $0, $1, $2, $3, $4) {
7468
+ var BindingProperty$2 = $TS($S($E(_), $E($EXPECT($L18, fail, 'BindingProperty "^"')), BindingIdentifier, $E(Initializer)), function($skip, $loc, $0, $1, $2, $3, $4) {
7424
7469
  var ws = $1;
7425
7470
  var pin = $2;
7426
7471
  var binding = $3;
@@ -7594,7 +7639,7 @@ ${input.slice(result.pos)}
7594
7639
  children: [ws, binding]
7595
7640
  };
7596
7641
  });
7597
- var BindingElement$2 = $TV($Y($S($E(_), $EXPECT($L21, fail, 'BindingElement ","'))), function($skip, $loc, $0, $1) {
7642
+ var BindingElement$2 = $TV($Y($S($E(_), $EXPECT($L22, fail, 'BindingElement ","'))), function($skip, $loc, $0, $1) {
7598
7643
  return {
7599
7644
  children: [{
7600
7645
  type: "ElisionElement",
@@ -8132,8 +8177,8 @@ ${input.slice(result.pos)}
8132
8177
  return result;
8133
8178
  }
8134
8179
  }
8135
- var Arrow$0 = $TV($EXPECT($L22, fail, 'Arrow "->"'), function($skip, $loc, $0, $1) {
8136
- return { $loc, token: $1 };
8180
+ var Arrow$0 = $TV($C($EXPECT($L23, fail, 'Arrow "->"'), $EXPECT($L24, fail, 'Arrow "\u2192"')), function($skip, $loc, $0, $1) {
8181
+ return { $loc, token: "->" };
8137
8182
  });
8138
8183
  function Arrow(state) {
8139
8184
  let eventData;
@@ -8598,7 +8643,7 @@ ${input.slice(result.pos)}
8598
8643
  children: [$1, expressions]
8599
8644
  };
8600
8645
  });
8601
- var BracedContent$2 = $TV($Y($S(__, $EXPECT($L23, fail, 'BracedContent "}"'))), function($skip, $loc, $0, $1) {
8646
+ var BracedContent$2 = $TV($Y($S(__, $EXPECT($L25, fail, 'BracedContent "}"'))), function($skip, $loc, $0, $1) {
8602
8647
  const expressions = [];
8603
8648
  return {
8604
8649
  type: "BlockStatement",
@@ -8779,7 +8824,7 @@ ${input.slice(result.pos)}
8779
8824
  return result;
8780
8825
  }
8781
8826
  }
8782
- var NullLiteral$0 = $TS($S($EXPECT($L24, fail, 'NullLiteral "null"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8827
+ var NullLiteral$0 = $TS($S($EXPECT($L26, fail, 'NullLiteral "null"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8783
8828
  return { $loc, token: $1 };
8784
8829
  });
8785
8830
  function NullLiteral(state) {
@@ -8807,7 +8852,7 @@ ${input.slice(result.pos)}
8807
8852
  var BooleanLiteral$0 = $T($S(CoffeeBooleansEnabled, CoffeeScriptBooleanLiteral), function(value) {
8808
8853
  return value[1];
8809
8854
  });
8810
- var BooleanLiteral$1 = $TS($S($C($EXPECT($L25, fail, 'BooleanLiteral "true"'), $EXPECT($L26, fail, 'BooleanLiteral "false"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8855
+ var BooleanLiteral$1 = $TS($S($C($EXPECT($L27, fail, 'BooleanLiteral "true"'), $EXPECT($L28, fail, 'BooleanLiteral "false"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8811
8856
  return { $loc, token: $1 };
8812
8857
  });
8813
8858
  function BooleanLiteral(state) {
@@ -8832,10 +8877,10 @@ ${input.slice(result.pos)}
8832
8877
  return result;
8833
8878
  }
8834
8879
  }
8835
- var CoffeeScriptBooleanLiteral$0 = $TS($S($C($EXPECT($L27, fail, 'CoffeeScriptBooleanLiteral "yes"'), $EXPECT($L28, fail, 'CoffeeScriptBooleanLiteral "on"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8880
+ var CoffeeScriptBooleanLiteral$0 = $TS($S($C($EXPECT($L29, fail, 'CoffeeScriptBooleanLiteral "yes"'), $EXPECT($L30, fail, 'CoffeeScriptBooleanLiteral "on"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8836
8881
  return { $loc, token: "true" };
8837
8882
  });
8838
- var CoffeeScriptBooleanLiteral$1 = $TS($S($C($EXPECT($L29, fail, 'CoffeeScriptBooleanLiteral "no"'), $EXPECT($L30, fail, 'CoffeeScriptBooleanLiteral "off"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8883
+ var CoffeeScriptBooleanLiteral$1 = $TS($S($C($EXPECT($L31, fail, 'CoffeeScriptBooleanLiteral "no"'), $EXPECT($L32, fail, 'CoffeeScriptBooleanLiteral "off"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8839
8884
  return { $loc, token: "false" };
8840
8885
  });
8841
8886
  function CoffeeScriptBooleanLiteral(state) {
@@ -8941,7 +8986,7 @@ ${input.slice(result.pos)}
8941
8986
  return result;
8942
8987
  }
8943
8988
  }
8944
- var UpcomingAssignment$0 = $Y($S(__, $EXPECT($L2, fail, 'UpcomingAssignment "="'), $N($C($EXPECT($L2, fail, 'UpcomingAssignment "="'), $EXPECT($L31, fail, 'UpcomingAssignment ">"')))));
8989
+ var UpcomingAssignment$0 = $Y($S(__, $EXPECT($L2, fail, 'UpcomingAssignment "="'), $N($C($EXPECT($L2, fail, 'UpcomingAssignment "="'), $EXPECT($L33, fail, 'UpcomingAssignment ">"')))));
8945
8990
  function UpcomingAssignment(state) {
8946
8991
  let eventData;
8947
8992
  if (state.events) {
@@ -9207,7 +9252,7 @@ ${input.slice(result.pos)}
9207
9252
  }
9208
9253
  }
9209
9254
  var ArrayElementDelimiter$0 = $S(__, Comma);
9210
- var ArrayElementDelimiter$1 = $Y($S(__, $EXPECT($L32, fail, 'ArrayElementDelimiter "]"')));
9255
+ var ArrayElementDelimiter$1 = $Y($S(__, $EXPECT($L34, fail, 'ArrayElementDelimiter "]"')));
9211
9256
  var ArrayElementDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
9212
9257
  return value[1];
9213
9258
  });
@@ -9687,7 +9732,7 @@ ${input.slice(result.pos)}
9687
9732
  }
9688
9733
  }
9689
9734
  var ObjectPropertyDelimiter$0 = $S($E(_), Comma);
9690
- var ObjectPropertyDelimiter$1 = $Y($S(__, $EXPECT($L23, fail, 'ObjectPropertyDelimiter "}"')));
9735
+ var ObjectPropertyDelimiter$1 = $Y($S(__, $EXPECT($L25, fail, 'ObjectPropertyDelimiter "}"')));
9691
9736
  var ObjectPropertyDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
9692
9737
  return value[1];
9693
9738
  });
@@ -10019,7 +10064,7 @@ ${input.slice(result.pos)}
10019
10064
  expression
10020
10065
  };
10021
10066
  });
10022
- var ComputedPropertyName$2 = $TS($S(InsertOpenBracket, $EXPECT($L18, fail, 'ComputedPropertyName "-"'), NumericLiteral, InsertCloseBracket), function($skip, $loc, $0, $1, $2, $3, $4) {
10067
+ var ComputedPropertyName$2 = $TS($S(InsertOpenBracket, $EXPECT($L19, fail, 'ComputedPropertyName "-"'), NumericLiteral, InsertCloseBracket), function($skip, $loc, $0, $1, $2, $3, $4) {
10023
10068
  return {
10024
10069
  type: "ComputedPropertyName",
10025
10070
  children: $0
@@ -10236,20 +10281,24 @@ ${input.slice(result.pos)}
10236
10281
  parameters
10237
10282
  };
10238
10283
  });
10239
- var MethodSignature$1 = $TS($S($E(MethodModifier), ClassElementName, $E(_), NonEmptyParameters, $E(ReturnTypeSuffix)), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
10284
+ var MethodSignature$1 = $TS($S($E(MethodModifier), ClassElementName, $E(_), $E(QuestionMark), $E(_), NonEmptyParameters, $E(ReturnTypeSuffix)), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7) {
10240
10285
  var modifier = $1;
10241
10286
  var name = $2;
10242
- var parameters = $4;
10243
- var returnType = $5;
10287
+ var optional = $4;
10288
+ var parameters = $6;
10289
+ var returnType = $7;
10244
10290
  if (name.name) {
10245
10291
  name = name.name;
10246
10292
  } else if (name.token) {
10247
10293
  name = name.token.match(/^(?:"|')/) ? name.token.slice(1, -1) : name.token;
10248
10294
  }
10295
+ if (optional)
10296
+ $0[3] = optional = { ...optional, ts: true };
10249
10297
  return {
10250
10298
  type: "MethodSignature",
10251
10299
  children: $0,
10252
10300
  name,
10301
+ optional,
10253
10302
  modifier,
10254
10303
  returnType,
10255
10304
  parameters
@@ -10301,7 +10350,7 @@ ${input.slice(result.pos)}
10301
10350
  return result;
10302
10351
  }
10303
10352
  }
10304
- var PrivateIdentifier$0 = $TV($TEXT($S($EXPECT($L13, fail, 'PrivateIdentifier "#"'), IdentifierName)), function($skip, $loc, $0, $1) {
10353
+ var PrivateIdentifier$0 = $TV($TEXT($S($EXPECT($L14, fail, 'PrivateIdentifier "#"'), IdentifierName)), function($skip, $loc, $0, $1) {
10305
10354
  return {
10306
10355
  type: "Identifier",
10307
10356
  name: $0,
@@ -10432,22 +10481,22 @@ ${input.slice(result.pos)}
10432
10481
  return result;
10433
10482
  }
10434
10483
  }
10435
- var AssignmentOpSymbol$0 = $EXPECT($L33, fail, 'AssignmentOpSymbol "**="');
10436
- var AssignmentOpSymbol$1 = $EXPECT($L34, fail, 'AssignmentOpSymbol "*="');
10437
- var AssignmentOpSymbol$2 = $EXPECT($L35, fail, 'AssignmentOpSymbol "/="');
10438
- var AssignmentOpSymbol$3 = $EXPECT($L36, fail, 'AssignmentOpSymbol "%="');
10439
- var AssignmentOpSymbol$4 = $EXPECT($L37, fail, 'AssignmentOpSymbol "+="');
10440
- var AssignmentOpSymbol$5 = $EXPECT($L38, fail, 'AssignmentOpSymbol "-="');
10441
- var AssignmentOpSymbol$6 = $EXPECT($L39, fail, 'AssignmentOpSymbol "<<="');
10442
- var AssignmentOpSymbol$7 = $EXPECT($L40, fail, 'AssignmentOpSymbol ">>>="');
10443
- var AssignmentOpSymbol$8 = $EXPECT($L41, fail, 'AssignmentOpSymbol ">>="');
10444
- var AssignmentOpSymbol$9 = $EXPECT($L42, fail, 'AssignmentOpSymbol "&&="');
10445
- var AssignmentOpSymbol$10 = $EXPECT($L43, fail, 'AssignmentOpSymbol "&="');
10446
- var AssignmentOpSymbol$11 = $EXPECT($L44, fail, 'AssignmentOpSymbol "^="');
10447
- var AssignmentOpSymbol$12 = $EXPECT($L45, fail, 'AssignmentOpSymbol "||="');
10448
- var AssignmentOpSymbol$13 = $EXPECT($L46, fail, 'AssignmentOpSymbol "|="');
10449
- var AssignmentOpSymbol$14 = $EXPECT($L47, fail, 'AssignmentOpSymbol "??="');
10450
- var AssignmentOpSymbol$15 = $T($EXPECT($L48, fail, 'AssignmentOpSymbol "?="'), function(value) {
10484
+ var AssignmentOpSymbol$0 = $EXPECT($L35, fail, 'AssignmentOpSymbol "**="');
10485
+ var AssignmentOpSymbol$1 = $EXPECT($L36, fail, 'AssignmentOpSymbol "*="');
10486
+ var AssignmentOpSymbol$2 = $EXPECT($L37, fail, 'AssignmentOpSymbol "/="');
10487
+ var AssignmentOpSymbol$3 = $EXPECT($L38, fail, 'AssignmentOpSymbol "%="');
10488
+ var AssignmentOpSymbol$4 = $EXPECT($L39, fail, 'AssignmentOpSymbol "+="');
10489
+ var AssignmentOpSymbol$5 = $EXPECT($L40, fail, 'AssignmentOpSymbol "-="');
10490
+ var AssignmentOpSymbol$6 = $EXPECT($L41, fail, 'AssignmentOpSymbol "<<="');
10491
+ var AssignmentOpSymbol$7 = $EXPECT($L42, fail, 'AssignmentOpSymbol ">>>="');
10492
+ var AssignmentOpSymbol$8 = $EXPECT($L43, fail, 'AssignmentOpSymbol ">>="');
10493
+ var AssignmentOpSymbol$9 = $EXPECT($L44, fail, 'AssignmentOpSymbol "&&="');
10494
+ var AssignmentOpSymbol$10 = $EXPECT($L45, fail, 'AssignmentOpSymbol "&="');
10495
+ var AssignmentOpSymbol$11 = $EXPECT($L46, fail, 'AssignmentOpSymbol "^="');
10496
+ var AssignmentOpSymbol$12 = $EXPECT($L47, fail, 'AssignmentOpSymbol "||="');
10497
+ var AssignmentOpSymbol$13 = $EXPECT($L48, fail, 'AssignmentOpSymbol "|="');
10498
+ var AssignmentOpSymbol$14 = $EXPECT($L49, fail, 'AssignmentOpSymbol "??="');
10499
+ var AssignmentOpSymbol$15 = $T($EXPECT($L50, fail, 'AssignmentOpSymbol "?="'), function(value) {
10451
10500
  return "??=";
10452
10501
  });
10453
10502
  var AssignmentOpSymbol$16 = $T($S($EXPECT($L2, fail, 'AssignmentOpSymbol "="'), $N($EXPECT($L2, fail, 'AssignmentOpSymbol "="'))), function(value) {
@@ -10478,10 +10527,10 @@ ${input.slice(result.pos)}
10478
10527
  return result;
10479
10528
  }
10480
10529
  }
10481
- var CoffeeWordAssignmentOp$0 = $T($EXPECT($L49, fail, 'CoffeeWordAssignmentOp "and="'), function(value) {
10530
+ var CoffeeWordAssignmentOp$0 = $T($EXPECT($L51, fail, 'CoffeeWordAssignmentOp "and="'), function(value) {
10482
10531
  return "&&=";
10483
10532
  });
10484
- var CoffeeWordAssignmentOp$1 = $T($EXPECT($L50, fail, 'CoffeeWordAssignmentOp "or="'), function(value) {
10533
+ var CoffeeWordAssignmentOp$1 = $T($EXPECT($L52, fail, 'CoffeeWordAssignmentOp "or="'), function(value) {
10485
10534
  return "||=";
10486
10535
  });
10487
10536
  function CoffeeWordAssignmentOp(state) {
@@ -10520,8 +10569,8 @@ ${input.slice(result.pos)}
10520
10569
  special: true
10521
10570
  };
10522
10571
  });
10523
- var BinaryOp$2 = $TS($S($EXPECT($L51, fail, 'BinaryOp "not"'), NonIdContinue, __, Identifier), function($skip, $loc, $0, $1, $2, $3, $4) {
10524
- var id = $4;
10572
+ var BinaryOp$2 = $TS($S(Not, __, Identifier), function($skip, $loc, $0, $1, $2, $3) {
10573
+ var id = $3;
10525
10574
  if (!module.operators.has(id.name))
10526
10575
  return $skip;
10527
10576
  return {
@@ -10552,21 +10601,27 @@ ${input.slice(result.pos)}
10552
10601
  return result;
10553
10602
  }
10554
10603
  }
10555
- var BinaryOpSymbol$0 = $EXPECT($L52, fail, 'BinaryOpSymbol "**"');
10556
- var BinaryOpSymbol$1 = $EXPECT($L53, fail, 'BinaryOpSymbol "*"');
10557
- var BinaryOpSymbol$2 = $EXPECT($L54, fail, 'BinaryOpSymbol "/"');
10558
- var BinaryOpSymbol$3 = $TV($EXPECT($L55, fail, 'BinaryOpSymbol "%%"'), function($skip, $loc, $0, $1) {
10604
+ var BinaryOpSymbol$0 = $EXPECT($L53, fail, 'BinaryOpSymbol "**"');
10605
+ var BinaryOpSymbol$1 = $EXPECT($L54, fail, 'BinaryOpSymbol "*"');
10606
+ var BinaryOpSymbol$2 = $EXPECT($L55, fail, 'BinaryOpSymbol "/"');
10607
+ var BinaryOpSymbol$3 = $TV($EXPECT($L56, fail, 'BinaryOpSymbol "%%"'), function($skip, $loc, $0, $1) {
10559
10608
  return {
10560
10609
  call: module.getRef("modulo"),
10561
10610
  special: true
10562
10611
  };
10563
10612
  });
10564
- var BinaryOpSymbol$4 = $EXPECT($L56, fail, 'BinaryOpSymbol "%"');
10565
- var BinaryOpSymbol$5 = $EXPECT($L57, fail, 'BinaryOpSymbol "+"');
10566
- var BinaryOpSymbol$6 = $EXPECT($L18, fail, 'BinaryOpSymbol "-"');
10567
- var BinaryOpSymbol$7 = $EXPECT($L58, fail, 'BinaryOpSymbol "<="');
10568
- var BinaryOpSymbol$8 = $EXPECT($L59, fail, 'BinaryOpSymbol ">="');
10569
- var BinaryOpSymbol$9 = $TV($EXPECT($L60, fail, 'BinaryOpSymbol "<?"'), function($skip, $loc, $0, $1) {
10613
+ var BinaryOpSymbol$4 = $EXPECT($L57, fail, 'BinaryOpSymbol "%"');
10614
+ var BinaryOpSymbol$5 = $EXPECT($L58, fail, 'BinaryOpSymbol "+"');
10615
+ var BinaryOpSymbol$6 = $EXPECT($L19, fail, 'BinaryOpSymbol "-"');
10616
+ var BinaryOpSymbol$7 = $EXPECT($L59, fail, 'BinaryOpSymbol "<="');
10617
+ var BinaryOpSymbol$8 = $T($EXPECT($L60, fail, 'BinaryOpSymbol "\u2264"'), function(value) {
10618
+ return "<=";
10619
+ });
10620
+ var BinaryOpSymbol$9 = $EXPECT($L61, fail, 'BinaryOpSymbol ">="');
10621
+ var BinaryOpSymbol$10 = $T($EXPECT($L62, fail, 'BinaryOpSymbol "\u2265"'), function(value) {
10622
+ return ">=";
10623
+ });
10624
+ var BinaryOpSymbol$11 = $TV($EXPECT($L63, fail, 'BinaryOpSymbol "<?"'), function($skip, $loc, $0, $1) {
10570
10625
  return {
10571
10626
  $loc,
10572
10627
  token: "instanceof",
@@ -10574,7 +10629,7 @@ ${input.slice(result.pos)}
10574
10629
  special: true
10575
10630
  };
10576
10631
  });
10577
- var BinaryOpSymbol$10 = $TV($EXPECT($L61, fail, 'BinaryOpSymbol "!<?"'), function($skip, $loc, $0, $1) {
10632
+ var BinaryOpSymbol$12 = $TV($EXPECT($L64, fail, 'BinaryOpSymbol "!<?"'), function($skip, $loc, $0, $1) {
10578
10633
  return {
10579
10634
  $loc,
10580
10635
  token: "instanceof",
@@ -10583,58 +10638,79 @@ ${input.slice(result.pos)}
10583
10638
  negated: true
10584
10639
  };
10585
10640
  });
10586
- var BinaryOpSymbol$11 = $EXPECT($L62, fail, 'BinaryOpSymbol "<<"');
10587
- var BinaryOpSymbol$12 = $TR($EXPECT($R7, fail, "BinaryOpSymbol /<(?!\\p{ID_Start}|[_$])/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10641
+ var BinaryOpSymbol$13 = $EXPECT($L65, fail, 'BinaryOpSymbol "<<"');
10642
+ var BinaryOpSymbol$14 = $T($EXPECT($L66, fail, 'BinaryOpSymbol "\xAB"'), function(value) {
10643
+ return "<<";
10644
+ });
10645
+ var BinaryOpSymbol$15 = $TR($EXPECT($R7, fail, "BinaryOpSymbol /<(?!\\p{ID_Start}|[_$])/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10588
10646
  return "<";
10589
10647
  });
10590
- var BinaryOpSymbol$13 = $EXPECT($L63, fail, 'BinaryOpSymbol ">>>"');
10591
- var BinaryOpSymbol$14 = $EXPECT($L64, fail, 'BinaryOpSymbol ">>"');
10592
- var BinaryOpSymbol$15 = $EXPECT($L31, fail, 'BinaryOpSymbol ">"');
10593
- var BinaryOpSymbol$16 = $EXPECT($L65, fail, 'BinaryOpSymbol "!=="');
10594
- var BinaryOpSymbol$17 = $TV($EXPECT($L66, fail, 'BinaryOpSymbol "!="'), function($skip, $loc, $0, $1) {
10648
+ var BinaryOpSymbol$16 = $EXPECT($L67, fail, 'BinaryOpSymbol ">>>"');
10649
+ var BinaryOpSymbol$17 = $T($EXPECT($L68, fail, 'BinaryOpSymbol "\u22D9"'), function(value) {
10650
+ return ">>>";
10651
+ });
10652
+ var BinaryOpSymbol$18 = $EXPECT($L69, fail, 'BinaryOpSymbol ">>"');
10653
+ var BinaryOpSymbol$19 = $T($EXPECT($L70, fail, 'BinaryOpSymbol "\xBB"'), function(value) {
10654
+ return ">>";
10655
+ });
10656
+ var BinaryOpSymbol$20 = $EXPECT($L33, fail, 'BinaryOpSymbol ">"');
10657
+ var BinaryOpSymbol$21 = $EXPECT($L71, fail, 'BinaryOpSymbol "!=="');
10658
+ var BinaryOpSymbol$22 = $T($EXPECT($L72, fail, 'BinaryOpSymbol "\u2262"'), function(value) {
10659
+ return "!==";
10660
+ });
10661
+ var BinaryOpSymbol$23 = $TV($C($EXPECT($L73, fail, 'BinaryOpSymbol "!="'), $EXPECT($L74, fail, 'BinaryOpSymbol "\u2260"')), function($skip, $loc, $0, $1) {
10595
10662
  if (module.config.coffeeEq)
10596
10663
  return "!==";
10597
- return $1;
10664
+ return "!=";
10598
10665
  });
10599
- var BinaryOpSymbol$18 = $TS($S($EXPECT($L67, fail, 'BinaryOpSymbol "isnt"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10666
+ var BinaryOpSymbol$24 = $TS($S($EXPECT($L75, fail, 'BinaryOpSymbol "isnt"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10600
10667
  if (module.config.coffeeIsnt)
10601
10668
  return "!==";
10602
10669
  return $skip;
10603
10670
  });
10604
- var BinaryOpSymbol$19 = $EXPECT($L68, fail, 'BinaryOpSymbol "==="');
10605
- var BinaryOpSymbol$20 = $TV($EXPECT($L69, fail, 'BinaryOpSymbol "=="'), function($skip, $loc, $0, $1) {
10671
+ var BinaryOpSymbol$25 = $EXPECT($L76, fail, 'BinaryOpSymbol "==="');
10672
+ var BinaryOpSymbol$26 = $T($C($EXPECT($L77, fail, 'BinaryOpSymbol "\u2263"'), $EXPECT($L78, fail, 'BinaryOpSymbol "\u2A76"')), function(value) {
10673
+ return "===";
10674
+ });
10675
+ var BinaryOpSymbol$27 = $TV($C($EXPECT($L79, fail, 'BinaryOpSymbol "=="'), $EXPECT($L80, fail, 'BinaryOpSymbol "\u2261"'), $EXPECT($L81, fail, 'BinaryOpSymbol "\u2A75"')), function($skip, $loc, $0, $1) {
10606
10676
  if (module.config.coffeeEq)
10607
10677
  return "===";
10608
- return $1;
10678
+ return "==";
10609
10679
  });
10610
- var BinaryOpSymbol$21 = $T($S($EXPECT($L70, fail, 'BinaryOpSymbol "and"'), NonIdContinue), function(value) {
10680
+ var BinaryOpSymbol$28 = $T($S($EXPECT($L82, fail, 'BinaryOpSymbol "and"'), NonIdContinue), function(value) {
10611
10681
  return "&&";
10612
10682
  });
10613
- var BinaryOpSymbol$22 = $EXPECT($L71, fail, 'BinaryOpSymbol "&&"');
10614
- var BinaryOpSymbol$23 = $T($S(CoffeeOfEnabled, $EXPECT($L72, fail, 'BinaryOpSymbol "of"'), NonIdContinue), function(value) {
10683
+ var BinaryOpSymbol$29 = $EXPECT($L83, fail, 'BinaryOpSymbol "&&"');
10684
+ var BinaryOpSymbol$30 = $T($S(CoffeeOfEnabled, $EXPECT($L84, fail, 'BinaryOpSymbol "of"'), NonIdContinue), function(value) {
10615
10685
  return "in";
10616
10686
  });
10617
- var BinaryOpSymbol$24 = $T($S($EXPECT($L73, fail, 'BinaryOpSymbol "or"'), NonIdContinue), function(value) {
10687
+ var BinaryOpSymbol$31 = $T($S($EXPECT($L85, fail, 'BinaryOpSymbol "or"'), NonIdContinue), function(value) {
10688
+ return "||";
10689
+ });
10690
+ var BinaryOpSymbol$32 = $EXPECT($L86, fail, 'BinaryOpSymbol "||"');
10691
+ var BinaryOpSymbol$33 = $T($EXPECT($L87, fail, 'BinaryOpSymbol "\u2016"'), function(value) {
10618
10692
  return "||";
10619
10693
  });
10620
- var BinaryOpSymbol$25 = $EXPECT($L74, fail, 'BinaryOpSymbol "||"');
10621
- var BinaryOpSymbol$26 = $TV($C($EXPECT($L75, fail, 'BinaryOpSymbol "^^"'), $S($EXPECT($L76, fail, 'BinaryOpSymbol "xor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10694
+ var BinaryOpSymbol$34 = $TV($C($EXPECT($L88, fail, 'BinaryOpSymbol "^^"'), $S($EXPECT($L89, fail, 'BinaryOpSymbol "xor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10622
10695
  return {
10623
10696
  call: module.getRef("xor"),
10624
10697
  special: true
10625
10698
  };
10626
10699
  });
10627
- var BinaryOpSymbol$27 = $TV($C($EXPECT($R8, fail, "BinaryOpSymbol /!\\^\\^?/"), $S($EXPECT($L77, fail, 'BinaryOpSymbol "xnor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10700
+ var BinaryOpSymbol$35 = $TV($C($EXPECT($R8, fail, "BinaryOpSymbol /!\\^\\^?/"), $S($EXPECT($L90, fail, 'BinaryOpSymbol "xnor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10628
10701
  return {
10629
10702
  call: module.getRef("xnor"),
10630
10703
  special: true
10631
10704
  };
10632
10705
  });
10633
- var BinaryOpSymbol$28 = $EXPECT($L78, fail, 'BinaryOpSymbol "??"');
10634
- var BinaryOpSymbol$29 = $T($S(CoffeeBinaryExistentialEnabled, $EXPECT($L4, fail, 'BinaryOpSymbol "?"')), function(value) {
10706
+ var BinaryOpSymbol$36 = $EXPECT($L91, fail, 'BinaryOpSymbol "??"');
10707
+ var BinaryOpSymbol$37 = $T($EXPECT($L92, fail, 'BinaryOpSymbol "\u2047"'), function(value) {
10635
10708
  return "??";
10636
10709
  });
10637
- var BinaryOpSymbol$30 = $TS($S($EXPECT($L79, fail, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10710
+ var BinaryOpSymbol$38 = $T($S(CoffeeBinaryExistentialEnabled, $EXPECT($L4, fail, 'BinaryOpSymbol "?"')), function(value) {
10711
+ return "??";
10712
+ });
10713
+ var BinaryOpSymbol$39 = $TS($S($EXPECT($L93, fail, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10638
10714
  return {
10639
10715
  $loc,
10640
10716
  token: $1,
@@ -10642,7 +10718,7 @@ ${input.slice(result.pos)}
10642
10718
  special: true
10643
10719
  };
10644
10720
  });
10645
- var BinaryOpSymbol$31 = $TS($S($EXPECT($L51, fail, 'BinaryOpSymbol "not"'), NonIdContinue, __, $EXPECT($L79, fail, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
10721
+ var BinaryOpSymbol$40 = $TS($S(Not, __, $EXPECT($L93, fail, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4) {
10646
10722
  return {
10647
10723
  $loc,
10648
10724
  token: "instanceof",
@@ -10651,7 +10727,7 @@ ${input.slice(result.pos)}
10651
10727
  negated: true
10652
10728
  };
10653
10729
  });
10654
- var BinaryOpSymbol$32 = $TV($C($S($N(CoffeeOfEnabled), $EXPECT($L51, fail, 'BinaryOpSymbol "not"'), NonIdContinue, __, $EXPECT($L80, fail, 'BinaryOpSymbol "in"'), NonIdContinue), $S(CoffeeOfEnabled, $EXPECT($L51, fail, 'BinaryOpSymbol "not"'), NonIdContinue, __, $EXPECT($L72, fail, 'BinaryOpSymbol "of"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10730
+ var BinaryOpSymbol$41 = $TV($C($S($N(CoffeeOfEnabled), Not, __, In), $S(CoffeeOfEnabled, Not, __, $EXPECT($L84, fail, 'BinaryOpSymbol "of"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10655
10731
  return {
10656
10732
  $loc,
10657
10733
  token: "in",
@@ -10659,7 +10735,7 @@ ${input.slice(result.pos)}
10659
10735
  negated: true
10660
10736
  };
10661
10737
  });
10662
- var BinaryOpSymbol$33 = $TS($S($EXPECT($L81, fail, 'BinaryOpSymbol "is"'), NonIdContinue, __, $EXPECT($L80, fail, 'BinaryOpSymbol "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
10738
+ var BinaryOpSymbol$42 = $TV($C($S(Is, __, In), $EXPECT($L94, fail, 'BinaryOpSymbol "\u2208"')), function($skip, $loc, $0, $1) {
10663
10739
  return {
10664
10740
  method: "includes",
10665
10741
  relational: true,
@@ -10667,7 +10743,22 @@ ${input.slice(result.pos)}
10667
10743
  special: true
10668
10744
  };
10669
10745
  });
10670
- var BinaryOpSymbol$34 = $TS($S(CoffeeOfEnabled, $EXPECT($L80, fail, 'BinaryOpSymbol "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
10746
+ var BinaryOpSymbol$43 = $TV($EXPECT($L95, fail, 'BinaryOpSymbol "\u220B"'), function($skip, $loc, $0, $1) {
10747
+ return {
10748
+ method: "includes",
10749
+ relational: true,
10750
+ special: true
10751
+ };
10752
+ });
10753
+ var BinaryOpSymbol$44 = $TV($EXPECT($L96, fail, 'BinaryOpSymbol "\u220C"'), function($skip, $loc, $0, $1) {
10754
+ return {
10755
+ method: "includes",
10756
+ relational: true,
10757
+ special: true,
10758
+ negated: true
10759
+ };
10760
+ });
10761
+ var BinaryOpSymbol$45 = $TS($S(CoffeeOfEnabled, In), function($skip, $loc, $0, $1, $2) {
10671
10762
  return {
10672
10763
  call: [module.getRef("indexOf"), ".call"],
10673
10764
  relational: true,
@@ -10676,7 +10767,7 @@ ${input.slice(result.pos)}
10676
10767
  special: true
10677
10768
  };
10678
10769
  });
10679
- var BinaryOpSymbol$35 = $TS($S($EXPECT($L81, fail, 'BinaryOpSymbol "is"'), NonIdContinue, __, $EXPECT($L51, fail, 'BinaryOpSymbol "not"'), NonIdContinue, __, $EXPECT($L80, fail, 'BinaryOpSymbol "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8) {
10770
+ var BinaryOpSymbol$46 = $TV($C($S(Is, __, Not, __, In), $EXPECT($L97, fail, 'BinaryOpSymbol "\u2209"')), function($skip, $loc, $0, $1) {
10680
10771
  return {
10681
10772
  method: "includes",
10682
10773
  relational: true,
@@ -10685,7 +10776,7 @@ ${input.slice(result.pos)}
10685
10776
  negated: true
10686
10777
  };
10687
10778
  });
10688
- var BinaryOpSymbol$36 = $TS($S(CoffeeOfEnabled, $EXPECT($L51, fail, 'BinaryOpSymbol "not"'), NonIdContinue, __, $EXPECT($L80, fail, 'BinaryOpSymbol "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
10779
+ var BinaryOpSymbol$47 = $TS($S(CoffeeOfEnabled, Not, __, In), function($skip, $loc, $0, $1, $2, $3, $4) {
10689
10780
  return {
10690
10781
  call: [module.getRef("indexOf"), ".call"],
10691
10782
  relational: true,
@@ -10694,7 +10785,7 @@ ${input.slice(result.pos)}
10694
10785
  special: true
10695
10786
  };
10696
10787
  });
10697
- var BinaryOpSymbol$37 = $TS($S($N(CoffeeNotEnabled), $EXPECT($L81, fail, 'BinaryOpSymbol "is"'), NonIdContinue, __, $EXPECT($L51, fail, 'BinaryOpSymbol "not"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
10788
+ var BinaryOpSymbol$48 = $TS($S($N(CoffeeNotEnabled), Is, __, Not), function($skip, $loc, $0, $1, $2, $3, $4) {
10698
10789
  if (module.config.objectIs) {
10699
10790
  return {
10700
10791
  call: module.getRef("is"),
@@ -10706,7 +10797,7 @@ ${input.slice(result.pos)}
10706
10797
  }
10707
10798
  return "!==";
10708
10799
  });
10709
- var BinaryOpSymbol$38 = $TS($S($EXPECT($L81, fail, 'BinaryOpSymbol "is"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10800
+ var BinaryOpSymbol$49 = $TS($S(Is), function($skip, $loc, $0, $1) {
10710
10801
  if (module.config.objectIs) {
10711
10802
  return {
10712
10803
  call: module.getRef("is"),
@@ -10717,12 +10808,12 @@ ${input.slice(result.pos)}
10717
10808
  }
10718
10809
  return "===";
10719
10810
  });
10720
- var BinaryOpSymbol$39 = $TS($S($EXPECT($L80, fail, 'BinaryOpSymbol "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10721
- return $1;
10811
+ var BinaryOpSymbol$50 = $TS($S(In), function($skip, $loc, $0, $1) {
10812
+ return "in";
10722
10813
  });
10723
- var BinaryOpSymbol$40 = $EXPECT($L82, fail, 'BinaryOpSymbol "&"');
10724
- var BinaryOpSymbol$41 = $EXPECT($L17, fail, 'BinaryOpSymbol "^"');
10725
- var BinaryOpSymbol$42 = $EXPECT($L83, fail, 'BinaryOpSymbol "|"');
10814
+ var BinaryOpSymbol$51 = $EXPECT($L98, fail, 'BinaryOpSymbol "&"');
10815
+ var BinaryOpSymbol$52 = $EXPECT($L18, fail, 'BinaryOpSymbol "^"');
10816
+ var BinaryOpSymbol$53 = $EXPECT($L99, fail, 'BinaryOpSymbol "|"');
10726
10817
  function BinaryOpSymbol(state) {
10727
10818
  let eventData;
10728
10819
  if (state.events) {
@@ -10734,19 +10825,19 @@ ${input.slice(result.pos)}
10734
10825
  }
10735
10826
  }
10736
10827
  if (state.tokenize) {
10737
- const result = $TOKEN("BinaryOpSymbol", state, BinaryOpSymbol$0(state) || BinaryOpSymbol$1(state) || BinaryOpSymbol$2(state) || BinaryOpSymbol$3(state) || BinaryOpSymbol$4(state) || BinaryOpSymbol$5(state) || BinaryOpSymbol$6(state) || BinaryOpSymbol$7(state) || BinaryOpSymbol$8(state) || BinaryOpSymbol$9(state) || BinaryOpSymbol$10(state) || BinaryOpSymbol$11(state) || BinaryOpSymbol$12(state) || BinaryOpSymbol$13(state) || BinaryOpSymbol$14(state) || BinaryOpSymbol$15(state) || BinaryOpSymbol$16(state) || BinaryOpSymbol$17(state) || BinaryOpSymbol$18(state) || BinaryOpSymbol$19(state) || BinaryOpSymbol$20(state) || BinaryOpSymbol$21(state) || BinaryOpSymbol$22(state) || BinaryOpSymbol$23(state) || BinaryOpSymbol$24(state) || BinaryOpSymbol$25(state) || BinaryOpSymbol$26(state) || BinaryOpSymbol$27(state) || BinaryOpSymbol$28(state) || BinaryOpSymbol$29(state) || BinaryOpSymbol$30(state) || BinaryOpSymbol$31(state) || BinaryOpSymbol$32(state) || BinaryOpSymbol$33(state) || BinaryOpSymbol$34(state) || BinaryOpSymbol$35(state) || BinaryOpSymbol$36(state) || BinaryOpSymbol$37(state) || BinaryOpSymbol$38(state) || BinaryOpSymbol$39(state) || BinaryOpSymbol$40(state) || BinaryOpSymbol$41(state) || BinaryOpSymbol$42(state));
10828
+ const result = $TOKEN("BinaryOpSymbol", state, BinaryOpSymbol$0(state) || BinaryOpSymbol$1(state) || BinaryOpSymbol$2(state) || BinaryOpSymbol$3(state) || BinaryOpSymbol$4(state) || BinaryOpSymbol$5(state) || BinaryOpSymbol$6(state) || BinaryOpSymbol$7(state) || BinaryOpSymbol$8(state) || BinaryOpSymbol$9(state) || BinaryOpSymbol$10(state) || BinaryOpSymbol$11(state) || BinaryOpSymbol$12(state) || BinaryOpSymbol$13(state) || BinaryOpSymbol$14(state) || BinaryOpSymbol$15(state) || BinaryOpSymbol$16(state) || BinaryOpSymbol$17(state) || BinaryOpSymbol$18(state) || BinaryOpSymbol$19(state) || BinaryOpSymbol$20(state) || BinaryOpSymbol$21(state) || BinaryOpSymbol$22(state) || BinaryOpSymbol$23(state) || BinaryOpSymbol$24(state) || BinaryOpSymbol$25(state) || BinaryOpSymbol$26(state) || BinaryOpSymbol$27(state) || BinaryOpSymbol$28(state) || BinaryOpSymbol$29(state) || BinaryOpSymbol$30(state) || BinaryOpSymbol$31(state) || BinaryOpSymbol$32(state) || BinaryOpSymbol$33(state) || BinaryOpSymbol$34(state) || BinaryOpSymbol$35(state) || BinaryOpSymbol$36(state) || BinaryOpSymbol$37(state) || BinaryOpSymbol$38(state) || BinaryOpSymbol$39(state) || BinaryOpSymbol$40(state) || BinaryOpSymbol$41(state) || BinaryOpSymbol$42(state) || BinaryOpSymbol$43(state) || BinaryOpSymbol$44(state) || BinaryOpSymbol$45(state) || BinaryOpSymbol$46(state) || BinaryOpSymbol$47(state) || BinaryOpSymbol$48(state) || BinaryOpSymbol$49(state) || BinaryOpSymbol$50(state) || BinaryOpSymbol$51(state) || BinaryOpSymbol$52(state) || BinaryOpSymbol$53(state));
10738
10829
  if (state.events)
10739
10830
  state.events.exit?.("BinaryOpSymbol", state, result, eventData);
10740
10831
  return result;
10741
10832
  } else {
10742
- const result = BinaryOpSymbol$0(state) || BinaryOpSymbol$1(state) || BinaryOpSymbol$2(state) || BinaryOpSymbol$3(state) || BinaryOpSymbol$4(state) || BinaryOpSymbol$5(state) || BinaryOpSymbol$6(state) || BinaryOpSymbol$7(state) || BinaryOpSymbol$8(state) || BinaryOpSymbol$9(state) || BinaryOpSymbol$10(state) || BinaryOpSymbol$11(state) || BinaryOpSymbol$12(state) || BinaryOpSymbol$13(state) || BinaryOpSymbol$14(state) || BinaryOpSymbol$15(state) || BinaryOpSymbol$16(state) || BinaryOpSymbol$17(state) || BinaryOpSymbol$18(state) || BinaryOpSymbol$19(state) || BinaryOpSymbol$20(state) || BinaryOpSymbol$21(state) || BinaryOpSymbol$22(state) || BinaryOpSymbol$23(state) || BinaryOpSymbol$24(state) || BinaryOpSymbol$25(state) || BinaryOpSymbol$26(state) || BinaryOpSymbol$27(state) || BinaryOpSymbol$28(state) || BinaryOpSymbol$29(state) || BinaryOpSymbol$30(state) || BinaryOpSymbol$31(state) || BinaryOpSymbol$32(state) || BinaryOpSymbol$33(state) || BinaryOpSymbol$34(state) || BinaryOpSymbol$35(state) || BinaryOpSymbol$36(state) || BinaryOpSymbol$37(state) || BinaryOpSymbol$38(state) || BinaryOpSymbol$39(state) || BinaryOpSymbol$40(state) || BinaryOpSymbol$41(state) || BinaryOpSymbol$42(state);
10833
+ const result = BinaryOpSymbol$0(state) || BinaryOpSymbol$1(state) || BinaryOpSymbol$2(state) || BinaryOpSymbol$3(state) || BinaryOpSymbol$4(state) || BinaryOpSymbol$5(state) || BinaryOpSymbol$6(state) || BinaryOpSymbol$7(state) || BinaryOpSymbol$8(state) || BinaryOpSymbol$9(state) || BinaryOpSymbol$10(state) || BinaryOpSymbol$11(state) || BinaryOpSymbol$12(state) || BinaryOpSymbol$13(state) || BinaryOpSymbol$14(state) || BinaryOpSymbol$15(state) || BinaryOpSymbol$16(state) || BinaryOpSymbol$17(state) || BinaryOpSymbol$18(state) || BinaryOpSymbol$19(state) || BinaryOpSymbol$20(state) || BinaryOpSymbol$21(state) || BinaryOpSymbol$22(state) || BinaryOpSymbol$23(state) || BinaryOpSymbol$24(state) || BinaryOpSymbol$25(state) || BinaryOpSymbol$26(state) || BinaryOpSymbol$27(state) || BinaryOpSymbol$28(state) || BinaryOpSymbol$29(state) || BinaryOpSymbol$30(state) || BinaryOpSymbol$31(state) || BinaryOpSymbol$32(state) || BinaryOpSymbol$33(state) || BinaryOpSymbol$34(state) || BinaryOpSymbol$35(state) || BinaryOpSymbol$36(state) || BinaryOpSymbol$37(state) || BinaryOpSymbol$38(state) || BinaryOpSymbol$39(state) || BinaryOpSymbol$40(state) || BinaryOpSymbol$41(state) || BinaryOpSymbol$42(state) || BinaryOpSymbol$43(state) || BinaryOpSymbol$44(state) || BinaryOpSymbol$45(state) || BinaryOpSymbol$46(state) || BinaryOpSymbol$47(state) || BinaryOpSymbol$48(state) || BinaryOpSymbol$49(state) || BinaryOpSymbol$50(state) || BinaryOpSymbol$51(state) || BinaryOpSymbol$52(state) || BinaryOpSymbol$53(state);
10743
10834
  if (state.events)
10744
10835
  state.events.exit?.("BinaryOpSymbol", state, result, eventData);
10745
10836
  return result;
10746
10837
  }
10747
10838
  }
10748
- var Xor$0 = $EXPECT($L75, fail, 'Xor "^^"');
10749
- var Xor$1 = $S($EXPECT($L76, fail, 'Xor "xor"'), NonIdContinue);
10839
+ var Xor$0 = $EXPECT($L88, fail, 'Xor "^^"');
10840
+ var Xor$1 = $S($EXPECT($L89, fail, 'Xor "xor"'), NonIdContinue);
10750
10841
  function Xor(state) {
10751
10842
  let eventData;
10752
10843
  if (state.events) {
@@ -10770,7 +10861,7 @@ ${input.slice(result.pos)}
10770
10861
  }
10771
10862
  }
10772
10863
  var Xnor$0 = $R$0($EXPECT($R8, fail, "Xnor /!\\^\\^?/"));
10773
- var Xnor$1 = $EXPECT($L77, fail, 'Xnor "xnor"');
10864
+ var Xnor$1 = $EXPECT($L90, fail, 'Xnor "xnor"');
10774
10865
  function Xnor(state) {
10775
10866
  let eventData;
10776
10867
  if (state.events) {
@@ -10797,8 +10888,10 @@ ${input.slice(result.pos)}
10797
10888
  return { $loc, token: $0 };
10798
10889
  });
10799
10890
  var UnaryOp$1 = AwaitOp;
10800
- var UnaryOp$2 = $S($C(Delete, Void, Typeof), $N($EXPECT($L10, fail, 'UnaryOp ":"')), $E(_));
10801
- var UnaryOp$3 = Not;
10891
+ var UnaryOp$2 = $S($C(Delete, Void, Typeof), $N($EXPECT($L11, fail, 'UnaryOp ":"')), $E(_));
10892
+ var UnaryOp$3 = $T($S(Not, $E($EXPECT($L10, fail, 'UnaryOp " "')), $E(_)), function(value) {
10893
+ return [value[0], value[2]];
10894
+ });
10802
10895
  function UnaryOp(state) {
10803
10896
  let eventData;
10804
10897
  if (state.events) {
@@ -11056,7 +11149,7 @@ ${input.slice(result.pos)}
11056
11149
  return result;
11057
11150
  }
11058
11151
  }
11059
- var EmptyStatement$0 = $TS($S($E(_), $Y($EXPECT($L84, fail, 'EmptyStatement ";"'))), function($skip, $loc, $0, $1, $2) {
11152
+ var EmptyStatement$0 = $TS($S($E(_), $Y($EXPECT($L100, fail, 'EmptyStatement ";"'))), function($skip, $loc, $0, $1, $2) {
11060
11153
  return { type: "EmptyStatement", children: $1 || [] };
11061
11154
  });
11062
11155
  function EmptyStatement(state) {
@@ -11135,7 +11228,7 @@ ${input.slice(result.pos)}
11135
11228
  var w = $3;
11136
11229
  return [id, colon, w];
11137
11230
  });
11138
- var Label$1 = $S($EXPECT($L85, fail, 'Label "$:"'), Whitespace);
11231
+ var Label$1 = $S($EXPECT($L101, fail, 'Label "$:"'), Whitespace);
11139
11232
  function Label(state) {
11140
11233
  let eventData;
11141
11234
  if (state.events) {
@@ -12119,7 +12212,7 @@ ${input.slice(result.pos)}
12119
12212
  return result;
12120
12213
  }
12121
12214
  }
12122
- var CoffeeForDeclaration$0 = $TS($S($E($S(__, $EXPECT($L86, fail, 'CoffeeForDeclaration "own"'), NonIdContinue)), ForBinding), function($skip, $loc, $0, $1, $2) {
12215
+ var CoffeeForDeclaration$0 = $TS($S($E($S(__, $EXPECT($L102, fail, 'CoffeeForDeclaration "own"'), NonIdContinue)), ForBinding), function($skip, $loc, $0, $1, $2) {
12123
12216
  var own = $1;
12124
12217
  var binding = $2;
12125
12218
  return {
@@ -12747,7 +12840,7 @@ ${input.slice(result.pos)}
12747
12840
  return result;
12748
12841
  }
12749
12842
  }
12750
- var TryStatement$0 = $TS($S(Try, $N($EXPECT($L10, fail, 'TryStatement ":"')), NoPostfixBracedOrEmptyBlock, $E(CatchClause), $E(FinallyClause)), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
12843
+ var TryStatement$0 = $TS($S(Try, $N($EXPECT($L11, fail, 'TryStatement ":"')), NoPostfixBracedOrEmptyBlock, $E(CatchClause), $E(FinallyClause)), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
12751
12844
  var t = $1;
12752
12845
  var b = $3;
12753
12846
  var c = $4;
@@ -13662,7 +13755,7 @@ ${input.slice(result.pos)}
13662
13755
  var KeywordStatement$2 = $T($S(Debugger), function(value) {
13663
13756
  return { "type": "DebuggerStatement", "children": value };
13664
13757
  });
13665
- var KeywordStatement$3 = $T($S(Return, $N($C($EXPECT($L10, fail, 'KeywordStatement ":"'), $EXPECT($L5, fail, 'KeywordStatement "."'), AfterReturnShorthand)), $E(MaybeNestedExpression)), function(value) {
13758
+ var KeywordStatement$3 = $T($S(Return, $N($C($EXPECT($L11, fail, 'KeywordStatement ":"'), $EXPECT($L5, fail, 'KeywordStatement "."'), AfterReturnShorthand)), $E(MaybeNestedExpression)), function(value) {
13666
13759
  var expression = value[2];
13667
13760
  return { "type": "ReturnStatement", "expression": expression, "children": value };
13668
13761
  });
@@ -13691,7 +13784,7 @@ ${input.slice(result.pos)}
13691
13784
  return result;
13692
13785
  }
13693
13786
  }
13694
- var Break$0 = $TS($S($EXPECT($L87, fail, 'Break "break"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13787
+ var Break$0 = $TS($S($EXPECT($L103, fail, 'Break "break"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13695
13788
  return { $loc, token: $1 };
13696
13789
  });
13697
13790
  function Break(state) {
@@ -13716,7 +13809,7 @@ ${input.slice(result.pos)}
13716
13809
  return result;
13717
13810
  }
13718
13811
  }
13719
- var Continue$0 = $TS($S($EXPECT($L88, fail, 'Continue "continue"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13812
+ var Continue$0 = $TS($S($EXPECT($L104, fail, 'Continue "continue"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13720
13813
  return { $loc, token: $1 };
13721
13814
  });
13722
13815
  function Continue(state) {
@@ -13741,7 +13834,7 @@ ${input.slice(result.pos)}
13741
13834
  return result;
13742
13835
  }
13743
13836
  }
13744
- var Debugger$0 = $TS($S($EXPECT($L89, fail, 'Debugger "debugger"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13837
+ var Debugger$0 = $TS($S($EXPECT($L105, fail, 'Debugger "debugger"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13745
13838
  return { $loc, token: $1 };
13746
13839
  });
13747
13840
  function Debugger(state) {
@@ -14047,7 +14140,7 @@ ${input.slice(result.pos)}
14047
14140
  return result;
14048
14141
  }
14049
14142
  }
14050
- var ImportAssertion$0 = $S($E(_), $EXPECT($L90, fail, 'ImportAssertion "assert"'), NonIdContinue, $E(_), ObjectLiteral);
14143
+ var ImportAssertion$0 = $S($E(_), $EXPECT($L106, fail, 'ImportAssertion "assert"'), NonIdContinue, $E(_), ObjectLiteral);
14051
14144
  function ImportAssertion(state) {
14052
14145
  let eventData;
14053
14146
  if (state.events) {
@@ -14150,7 +14243,7 @@ ${input.slice(result.pos)}
14150
14243
  }
14151
14244
  }
14152
14245
  var ImportAsToken$0 = $S(__, As);
14153
- var ImportAsToken$1 = $TS($S(Loc, __, Colon, $E($EXPECT($L9, fail, 'ImportAsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
14246
+ var ImportAsToken$1 = $TS($S(Loc, __, Colon, $E($EXPECT($L10, fail, 'ImportAsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
14154
14247
  var l = $1;
14155
14248
  var ws = $2;
14156
14249
  var c = $3;
@@ -14619,7 +14712,7 @@ ${input.slice(result.pos)}
14619
14712
  return result;
14620
14713
  }
14621
14714
  }
14622
- var ConstAssignment$0 = $TV($EXPECT($L91, fail, 'ConstAssignment ":="'), function($skip, $loc, $0, $1) {
14715
+ var ConstAssignment$0 = $TV($C($EXPECT($L107, fail, 'ConstAssignment ":="'), $EXPECT($L108, fail, 'ConstAssignment "\u2254"')), function($skip, $loc, $0, $1) {
14623
14716
  return { $loc, token: "=" };
14624
14717
  });
14625
14718
  function ConstAssignment(state) {
@@ -14644,7 +14737,7 @@ ${input.slice(result.pos)}
14644
14737
  return result;
14645
14738
  }
14646
14739
  }
14647
- var LetAssignment$0 = $TV($EXPECT($L92, fail, 'LetAssignment ".="'), function($skip, $loc, $0, $1) {
14740
+ var LetAssignment$0 = $TV($EXPECT($L109, fail, 'LetAssignment ".="'), function($skip, $loc, $0, $1) {
14648
14741
  return { $loc, token: "=" };
14649
14742
  });
14650
14743
  function LetAssignment(state) {
@@ -15351,7 +15444,7 @@ ${input.slice(result.pos)}
15351
15444
  }
15352
15445
  }
15353
15446
  var RegularExpressionLiteral$0 = HeregexLiteral;
15354
- var RegularExpressionLiteral$1 = $TV($TEXT($S($EXPECT($L54, fail, 'RegularExpressionLiteral "/"'), RegularExpressionBody, $EXPECT($L54, fail, 'RegularExpressionLiteral "/"'), RegularExpressionFlags)), function($skip, $loc, $0, $1) {
15447
+ var RegularExpressionLiteral$1 = $TV($TEXT($S($EXPECT($L55, fail, 'RegularExpressionLiteral "/"'), RegularExpressionBody, $EXPECT($L55, fail, 'RegularExpressionLiteral "/"'), RegularExpressionFlags)), function($skip, $loc, $0, $1) {
15355
15448
  return { type: "RegularExpressionLiteral", $loc, token: $1 };
15356
15449
  });
15357
15450
  function RegularExpressionLiteral(state) {
@@ -15918,7 +16011,7 @@ ${input.slice(result.pos)}
15918
16011
  return result;
15919
16012
  }
15920
16013
  }
15921
- var JSMultiLineComment$0 = $TV($TEXT($S($EXPECT($L93, fail, 'JSMultiLineComment "/*"'), $Q($S($N($EXPECT($L94, fail, 'JSMultiLineComment "*/"')), $EXPECT($R42, fail, "JSMultiLineComment /./"))), $EXPECT($L94, fail, 'JSMultiLineComment "*/"'))), function($skip, $loc, $0, $1) {
16014
+ var JSMultiLineComment$0 = $TV($TEXT($S($EXPECT($L110, fail, 'JSMultiLineComment "/*"'), $Q($S($N($EXPECT($L111, fail, 'JSMultiLineComment "*/"')), $EXPECT($R42, fail, "JSMultiLineComment /./"))), $EXPECT($L111, fail, 'JSMultiLineComment "*/"'))), function($skip, $loc, $0, $1) {
15922
16015
  return { type: "Comment", $loc, token: $1 };
15923
16016
  });
15924
16017
  function JSMultiLineComment(state) {
@@ -16017,7 +16110,7 @@ ${input.slice(result.pos)}
16017
16110
  return result;
16018
16111
  }
16019
16112
  }
16020
- var InlineComment$0 = $TV($TEXT($S($EXPECT($L93, fail, 'InlineComment "/*"'), $TEXT($Q($S($N($EXPECT($L94, fail, 'InlineComment "*/"')), $EXPECT($R46, fail, "InlineComment /[^\\r\\n]/")))), $EXPECT($L94, fail, 'InlineComment "*/"'))), function($skip, $loc, $0, $1) {
16113
+ var InlineComment$0 = $TV($TEXT($S($EXPECT($L110, fail, 'InlineComment "/*"'), $TEXT($Q($S($N($EXPECT($L111, fail, 'InlineComment "*/"')), $EXPECT($R46, fail, "InlineComment /[^\\r\\n]/")))), $EXPECT($L111, fail, 'InlineComment "*/"'))), function($skip, $loc, $0, $1) {
16021
16114
  return { $loc, token: $1 };
16022
16115
  });
16023
16116
  function InlineComment(state) {
@@ -16114,7 +16207,7 @@ ${input.slice(result.pos)}
16114
16207
  var NonNewlineWhitespace$0 = $TR($EXPECT($R47, fail, "NonNewlineWhitespace /[ \\t]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
16115
16208
  return { $loc, token: $0 };
16116
16209
  });
16117
- var NonNewlineWhitespace$1 = $T($S(CoffeeLineContinuationEnabled, $EXPECT($L95, fail, 'NonNewlineWhitespace "\\\\\\\\"'), EOL), function(value) {
16210
+ var NonNewlineWhitespace$1 = $T($S(CoffeeLineContinuationEnabled, $EXPECT($L112, fail, 'NonNewlineWhitespace "\\\\\\\\"'), EOL), function(value) {
16118
16211
  return "";
16119
16212
  });
16120
16213
  function NonNewlineWhitespace(state) {
@@ -16266,7 +16359,7 @@ ${input.slice(result.pos)}
16266
16359
  }
16267
16360
  }
16268
16361
  var StatementDelimiter$0 = SemicolonDelimiter;
16269
- var StatementDelimiter$1 = $S($Y($S(Samedent, $C($EXPECT($L3, fail, 'StatementDelimiter "("'), $EXPECT($L96, fail, 'StatementDelimiter "["'), $EXPECT($L97, fail, 'StatementDelimiter "`"'), $EXPECT($L57, fail, 'StatementDelimiter "+"'), $EXPECT($L18, fail, 'StatementDelimiter "-"'), $EXPECT($L53, fail, 'StatementDelimiter "*"'), $EXPECT($L54, fail, 'StatementDelimiter "/"'), ObjectLiteral, Arrow, FatArrow, $S(Function, $E($S($E(_), Star)), $E(_), $EXPECT($L3, fail, 'StatementDelimiter "("'))))), InsertSemicolon);
16362
+ var StatementDelimiter$1 = $S($Y($S(Samedent, $C($EXPECT($L3, fail, 'StatementDelimiter "("'), $EXPECT($L113, fail, 'StatementDelimiter "["'), $EXPECT($L114, fail, 'StatementDelimiter "`"'), $EXPECT($L58, fail, 'StatementDelimiter "+"'), $EXPECT($L19, fail, 'StatementDelimiter "-"'), $EXPECT($L54, fail, 'StatementDelimiter "*"'), $EXPECT($L55, fail, 'StatementDelimiter "/"'), ObjectLiteral, Arrow, FatArrow, $S(Function, $E($S($E(_), Star)), $E(_), $EXPECT($L3, fail, 'StatementDelimiter "("'))))), InsertSemicolon);
16270
16363
  var StatementDelimiter$2 = $Y(EOS);
16271
16364
  function StatementDelimiter(state) {
16272
16365
  let eventData;
@@ -16366,7 +16459,7 @@ ${input.slice(result.pos)}
16366
16459
  return result;
16367
16460
  }
16368
16461
  }
16369
- var Abstract$0 = $TV($TEXT($S($EXPECT($L98, fail, 'Abstract "abstract"'), NonIdContinue, $E($EXPECT($L9, fail, 'Abstract " "')))), function($skip, $loc, $0, $1) {
16462
+ var Abstract$0 = $TV($TEXT($S($EXPECT($L115, fail, 'Abstract "abstract"'), NonIdContinue, $E($EXPECT($L10, fail, 'Abstract " "')))), function($skip, $loc, $0, $1) {
16370
16463
  return { $loc, token: $1, ts: true };
16371
16464
  });
16372
16465
  function Abstract(state) {
@@ -16391,7 +16484,7 @@ ${input.slice(result.pos)}
16391
16484
  return result;
16392
16485
  }
16393
16486
  }
16394
- var Ampersand$0 = $TV($EXPECT($L82, fail, 'Ampersand "&"'), function($skip, $loc, $0, $1) {
16487
+ var Ampersand$0 = $TV($EXPECT($L98, fail, 'Ampersand "&"'), function($skip, $loc, $0, $1) {
16395
16488
  return { $loc, token: $1 };
16396
16489
  });
16397
16490
  function Ampersand(state) {
@@ -16416,7 +16509,7 @@ ${input.slice(result.pos)}
16416
16509
  return result;
16417
16510
  }
16418
16511
  }
16419
- var As$0 = $TS($S($EXPECT($L99, fail, 'As "as"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16512
+ var As$0 = $TS($S($EXPECT($L116, fail, 'As "as"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16420
16513
  return { $loc, token: $1 };
16421
16514
  });
16422
16515
  function As(state) {
@@ -16441,7 +16534,7 @@ ${input.slice(result.pos)}
16441
16534
  return result;
16442
16535
  }
16443
16536
  }
16444
- var At$0 = $TV($EXPECT($L100, fail, 'At "@"'), function($skip, $loc, $0, $1) {
16537
+ var At$0 = $TV($EXPECT($L117, fail, 'At "@"'), function($skip, $loc, $0, $1) {
16445
16538
  return { $loc, token: $1 };
16446
16539
  });
16447
16540
  function At(state) {
@@ -16466,7 +16559,7 @@ ${input.slice(result.pos)}
16466
16559
  return result;
16467
16560
  }
16468
16561
  }
16469
- var AtAt$0 = $TV($EXPECT($L101, fail, 'AtAt "@@"'), function($skip, $loc, $0, $1) {
16562
+ var AtAt$0 = $TV($EXPECT($L118, fail, 'AtAt "@@"'), function($skip, $loc, $0, $1) {
16470
16563
  return { $loc, token: "@" };
16471
16564
  });
16472
16565
  function AtAt(state) {
@@ -16491,7 +16584,7 @@ ${input.slice(result.pos)}
16491
16584
  return result;
16492
16585
  }
16493
16586
  }
16494
- var Async$0 = $TS($S($EXPECT($L102, fail, 'Async "async"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16587
+ var Async$0 = $TS($S($EXPECT($L119, fail, 'Async "async"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16495
16588
  return { $loc, token: $1, type: "Async" };
16496
16589
  });
16497
16590
  function Async(state) {
@@ -16516,7 +16609,7 @@ ${input.slice(result.pos)}
16516
16609
  return result;
16517
16610
  }
16518
16611
  }
16519
- var Await$0 = $TS($S($EXPECT($L103, fail, 'Await "await"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16612
+ var Await$0 = $TS($S($EXPECT($L120, fail, 'Await "await"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16520
16613
  return { $loc, token: $1, type: "Await" };
16521
16614
  });
16522
16615
  function Await(state) {
@@ -16541,7 +16634,7 @@ ${input.slice(result.pos)}
16541
16634
  return result;
16542
16635
  }
16543
16636
  }
16544
- var Backtick$0 = $TV($EXPECT($L97, fail, 'Backtick "`"'), function($skip, $loc, $0, $1) {
16637
+ var Backtick$0 = $TV($EXPECT($L114, fail, 'Backtick "`"'), function($skip, $loc, $0, $1) {
16545
16638
  return { $loc, token: $1 };
16546
16639
  });
16547
16640
  function Backtick(state) {
@@ -16566,7 +16659,7 @@ ${input.slice(result.pos)}
16566
16659
  return result;
16567
16660
  }
16568
16661
  }
16569
- var By$0 = $TS($S($EXPECT($L104, fail, 'By "by"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16662
+ var By$0 = $TS($S($EXPECT($L121, fail, 'By "by"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16570
16663
  return { $loc, token: $1 };
16571
16664
  });
16572
16665
  function By(state) {
@@ -16591,7 +16684,7 @@ ${input.slice(result.pos)}
16591
16684
  return result;
16592
16685
  }
16593
16686
  }
16594
- var Case$0 = $TS($S($EXPECT($L105, fail, 'Case "case"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16687
+ var Case$0 = $TS($S($EXPECT($L122, fail, 'Case "case"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16595
16688
  return { $loc, token: $1 };
16596
16689
  });
16597
16690
  function Case(state) {
@@ -16616,7 +16709,7 @@ ${input.slice(result.pos)}
16616
16709
  return result;
16617
16710
  }
16618
16711
  }
16619
- var Catch$0 = $TS($S($EXPECT($L106, fail, 'Catch "catch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16712
+ var Catch$0 = $TS($S($EXPECT($L123, fail, 'Catch "catch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16620
16713
  return { $loc, token: $1 };
16621
16714
  });
16622
16715
  function Catch(state) {
@@ -16641,7 +16734,7 @@ ${input.slice(result.pos)}
16641
16734
  return result;
16642
16735
  }
16643
16736
  }
16644
- var Class$0 = $TS($S($EXPECT($L107, fail, 'Class "class"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16737
+ var Class$0 = $TS($S($EXPECT($L124, fail, 'Class "class"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16645
16738
  return { $loc, token: $1 };
16646
16739
  });
16647
16740
  function Class(state) {
@@ -16666,7 +16759,7 @@ ${input.slice(result.pos)}
16666
16759
  return result;
16667
16760
  }
16668
16761
  }
16669
- var CloseBrace$0 = $TV($EXPECT($L23, fail, 'CloseBrace "}"'), function($skip, $loc, $0, $1) {
16762
+ var CloseBrace$0 = $TV($EXPECT($L25, fail, 'CloseBrace "}"'), function($skip, $loc, $0, $1) {
16670
16763
  return { $loc, token: $1 };
16671
16764
  });
16672
16765
  function CloseBrace(state) {
@@ -16691,7 +16784,7 @@ ${input.slice(result.pos)}
16691
16784
  return result;
16692
16785
  }
16693
16786
  }
16694
- var CloseBracket$0 = $TV($EXPECT($L32, fail, 'CloseBracket "]"'), function($skip, $loc, $0, $1) {
16787
+ var CloseBracket$0 = $TV($EXPECT($L34, fail, 'CloseBracket "]"'), function($skip, $loc, $0, $1) {
16695
16788
  return { $loc, token: $1 };
16696
16789
  });
16697
16790
  function CloseBracket(state) {
@@ -16716,7 +16809,7 @@ ${input.slice(result.pos)}
16716
16809
  return result;
16717
16810
  }
16718
16811
  }
16719
- var CloseParen$0 = $TV($EXPECT($L108, fail, 'CloseParen ")"'), function($skip, $loc, $0, $1) {
16812
+ var CloseParen$0 = $TV($EXPECT($L125, fail, 'CloseParen ")"'), function($skip, $loc, $0, $1) {
16720
16813
  return { $loc, token: $1 };
16721
16814
  });
16722
16815
  function CloseParen(state) {
@@ -16741,7 +16834,7 @@ ${input.slice(result.pos)}
16741
16834
  return result;
16742
16835
  }
16743
16836
  }
16744
- var CoffeeSubstitutionStart$0 = $TV($EXPECT($L109, fail, 'CoffeeSubstitutionStart "#{"'), function($skip, $loc, $0, $1) {
16837
+ var CoffeeSubstitutionStart$0 = $TV($EXPECT($L126, fail, 'CoffeeSubstitutionStart "#{"'), function($skip, $loc, $0, $1) {
16745
16838
  return { $loc, token: "${" };
16746
16839
  });
16747
16840
  function CoffeeSubstitutionStart(state) {
@@ -16766,7 +16859,7 @@ ${input.slice(result.pos)}
16766
16859
  return result;
16767
16860
  }
16768
16861
  }
16769
- var Colon$0 = $TS($S($EXPECT($L10, fail, 'Colon ":"'), $N($EXPECT($L2, fail, 'Colon "="'))), function($skip, $loc, $0, $1, $2) {
16862
+ var Colon$0 = $TS($S($EXPECT($L11, fail, 'Colon ":"'), $N($EXPECT($L2, fail, 'Colon "="'))), function($skip, $loc, $0, $1, $2) {
16770
16863
  return { $loc, token: $1 };
16771
16864
  });
16772
16865
  function Colon(state) {
@@ -16791,7 +16884,7 @@ ${input.slice(result.pos)}
16791
16884
  return result;
16792
16885
  }
16793
16886
  }
16794
- var Comma$0 = $TV($EXPECT($L21, fail, 'Comma ","'), function($skip, $loc, $0, $1) {
16887
+ var Comma$0 = $TV($EXPECT($L22, fail, 'Comma ","'), function($skip, $loc, $0, $1) {
16795
16888
  return { $loc, token: $1 };
16796
16889
  });
16797
16890
  function Comma(state) {
@@ -16816,7 +16909,7 @@ ${input.slice(result.pos)}
16816
16909
  return result;
16817
16910
  }
16818
16911
  }
16819
- var ConstructorShorthand$0 = $TV($EXPECT($L100, fail, 'ConstructorShorthand "@"'), function($skip, $loc, $0, $1) {
16912
+ var ConstructorShorthand$0 = $TV($EXPECT($L117, fail, 'ConstructorShorthand "@"'), function($skip, $loc, $0, $1) {
16820
16913
  return { $loc, token: "constructor" };
16821
16914
  });
16822
16915
  function ConstructorShorthand(state) {
@@ -16841,7 +16934,7 @@ ${input.slice(result.pos)}
16841
16934
  return result;
16842
16935
  }
16843
16936
  }
16844
- var Declare$0 = $TS($S($EXPECT($L110, fail, 'Declare "declare"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16937
+ var Declare$0 = $TS($S($EXPECT($L127, fail, 'Declare "declare"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16845
16938
  return { $loc, token: $1 };
16846
16939
  });
16847
16940
  function Declare(state) {
@@ -16866,7 +16959,7 @@ ${input.slice(result.pos)}
16866
16959
  return result;
16867
16960
  }
16868
16961
  }
16869
- var Default$0 = $TS($S($EXPECT($L111, fail, 'Default "default"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16962
+ var Default$0 = $TS($S($EXPECT($L128, fail, 'Default "default"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16870
16963
  return { $loc, token: $1 };
16871
16964
  });
16872
16965
  function Default(state) {
@@ -16891,7 +16984,7 @@ ${input.slice(result.pos)}
16891
16984
  return result;
16892
16985
  }
16893
16986
  }
16894
- var Delete$0 = $TS($S($EXPECT($L112, fail, 'Delete "delete"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16987
+ var Delete$0 = $TS($S($EXPECT($L129, fail, 'Delete "delete"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16895
16988
  return { $loc, token: $1 };
16896
16989
  });
16897
16990
  function Delete(state) {
@@ -16916,7 +17009,7 @@ ${input.slice(result.pos)}
16916
17009
  return result;
16917
17010
  }
16918
17011
  }
16919
- var Do$0 = $TS($S($EXPECT($L113, fail, 'Do "do"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17012
+ var Do$0 = $TS($S($EXPECT($L130, fail, 'Do "do"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16920
17013
  return { $loc, token: $1 };
16921
17014
  });
16922
17015
  function Do(state) {
@@ -16966,9 +17059,12 @@ ${input.slice(result.pos)}
16966
17059
  return result;
16967
17060
  }
16968
17061
  }
16969
- var DotDot$0 = $TS($S($EXPECT($L114, fail, 'DotDot ".."'), $N($EXPECT($L5, fail, 'DotDot "."'))), function($skip, $loc, $0, $1, $2) {
17062
+ var DotDot$0 = $TS($S($EXPECT($L131, fail, 'DotDot ".."'), $N($EXPECT($L5, fail, 'DotDot "."'))), function($skip, $loc, $0, $1, $2) {
16970
17063
  return { $loc, token: $1 };
16971
17064
  });
17065
+ var DotDot$1 = $TV($EXPECT($L132, fail, 'DotDot "\u2025"'), function($skip, $loc, $0, $1) {
17066
+ return { $loc, token: ".." };
17067
+ });
16972
17068
  function DotDot(state) {
16973
17069
  let eventData;
16974
17070
  if (state.events) {
@@ -16980,20 +17076,23 @@ ${input.slice(result.pos)}
16980
17076
  }
16981
17077
  }
16982
17078
  if (state.tokenize) {
16983
- const result = $TOKEN("DotDot", state, DotDot$0(state));
17079
+ const result = $TOKEN("DotDot", state, DotDot$0(state) || DotDot$1(state));
16984
17080
  if (state.events)
16985
17081
  state.events.exit?.("DotDot", state, result, eventData);
16986
17082
  return result;
16987
17083
  } else {
16988
- const result = DotDot$0(state);
17084
+ const result = DotDot$0(state) || DotDot$1(state);
16989
17085
  if (state.events)
16990
17086
  state.events.exit?.("DotDot", state, result, eventData);
16991
17087
  return result;
16992
17088
  }
16993
17089
  }
16994
- var DotDotDot$0 = $TV($EXPECT($L115, fail, 'DotDotDot "..."'), function($skip, $loc, $0, $1) {
17090
+ var DotDotDot$0 = $TV($EXPECT($L133, fail, 'DotDotDot "..."'), function($skip, $loc, $0, $1) {
16995
17091
  return { $loc, token: $1 };
16996
17092
  });
17093
+ var DotDotDot$1 = $TV($EXPECT($L134, fail, 'DotDotDot "\u2026"'), function($skip, $loc, $0, $1) {
17094
+ return { $loc, token: "..." };
17095
+ });
16997
17096
  function DotDotDot(state) {
16998
17097
  let eventData;
16999
17098
  if (state.events) {
@@ -17005,18 +17104,18 @@ ${input.slice(result.pos)}
17005
17104
  }
17006
17105
  }
17007
17106
  if (state.tokenize) {
17008
- const result = $TOKEN("DotDotDot", state, DotDotDot$0(state));
17107
+ const result = $TOKEN("DotDotDot", state, DotDotDot$0(state) || DotDotDot$1(state));
17009
17108
  if (state.events)
17010
17109
  state.events.exit?.("DotDotDot", state, result, eventData);
17011
17110
  return result;
17012
17111
  } else {
17013
- const result = DotDotDot$0(state);
17112
+ const result = DotDotDot$0(state) || DotDotDot$1(state);
17014
17113
  if (state.events)
17015
17114
  state.events.exit?.("DotDotDot", state, result, eventData);
17016
17115
  return result;
17017
17116
  }
17018
17117
  }
17019
- var DoubleColon$0 = $TV($EXPECT($L116, fail, 'DoubleColon "::"'), function($skip, $loc, $0, $1) {
17118
+ var DoubleColon$0 = $TV($EXPECT($L135, fail, 'DoubleColon "::"'), function($skip, $loc, $0, $1) {
17020
17119
  return { $loc, token: $1 };
17021
17120
  });
17022
17121
  function DoubleColon(state) {
@@ -17041,7 +17140,7 @@ ${input.slice(result.pos)}
17041
17140
  return result;
17042
17141
  }
17043
17142
  }
17044
- var DoubleQuote$0 = $TV($EXPECT($L117, fail, 'DoubleQuote "\\\\\\""'), function($skip, $loc, $0, $1) {
17143
+ var DoubleQuote$0 = $TV($EXPECT($L136, fail, 'DoubleQuote "\\\\\\""'), function($skip, $loc, $0, $1) {
17045
17144
  return { $loc, token: $1 };
17046
17145
  });
17047
17146
  function DoubleQuote(state) {
@@ -17066,7 +17165,7 @@ ${input.slice(result.pos)}
17066
17165
  return result;
17067
17166
  }
17068
17167
  }
17069
- var Else$0 = $TS($S($EXPECT($L118, fail, 'Else "else"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17168
+ var Else$0 = $TS($S($EXPECT($L137, fail, 'Else "else"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17070
17169
  return { $loc, token: $1 };
17071
17170
  });
17072
17171
  function Else(state) {
@@ -17116,7 +17215,7 @@ ${input.slice(result.pos)}
17116
17215
  return result;
17117
17216
  }
17118
17217
  }
17119
- var Export$0 = $TS($S($EXPECT($L119, fail, 'Export "export"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17218
+ var Export$0 = $TS($S($EXPECT($L138, fail, 'Export "export"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17120
17219
  return { $loc, token: $1 };
17121
17220
  });
17122
17221
  function Export(state) {
@@ -17141,7 +17240,7 @@ ${input.slice(result.pos)}
17141
17240
  return result;
17142
17241
  }
17143
17242
  }
17144
- var Extends$0 = $TS($S($EXPECT($L120, fail, 'Extends "extends"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17243
+ var Extends$0 = $TS($S($EXPECT($L139, fail, 'Extends "extends"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17145
17244
  return { $loc, token: $1 };
17146
17245
  });
17147
17246
  function Extends(state) {
@@ -17166,7 +17265,7 @@ ${input.slice(result.pos)}
17166
17265
  return result;
17167
17266
  }
17168
17267
  }
17169
- var Finally$0 = $TS($S($EXPECT($L121, fail, 'Finally "finally"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17268
+ var Finally$0 = $TS($S($EXPECT($L140, fail, 'Finally "finally"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17170
17269
  return { $loc, token: $1 };
17171
17270
  });
17172
17271
  function Finally(state) {
@@ -17191,7 +17290,7 @@ ${input.slice(result.pos)}
17191
17290
  return result;
17192
17291
  }
17193
17292
  }
17194
- var For$0 = $TS($S($EXPECT($L122, fail, 'For "for"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17293
+ var For$0 = $TS($S($EXPECT($L141, fail, 'For "for"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17195
17294
  return { $loc, token: $1 };
17196
17295
  });
17197
17296
  function For(state) {
@@ -17216,7 +17315,7 @@ ${input.slice(result.pos)}
17216
17315
  return result;
17217
17316
  }
17218
17317
  }
17219
- var From$0 = $TS($S($EXPECT($L123, fail, 'From "from"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17318
+ var From$0 = $TS($S($EXPECT($L142, fail, 'From "from"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17220
17319
  return { $loc, token: $1 };
17221
17320
  });
17222
17321
  function From(state) {
@@ -17241,7 +17340,7 @@ ${input.slice(result.pos)}
17241
17340
  return result;
17242
17341
  }
17243
17342
  }
17244
- var Function$0 = $TS($S($EXPECT($L124, fail, 'Function "function"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17343
+ var Function$0 = $TS($S($EXPECT($L143, fail, 'Function "function"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17245
17344
  return { $loc, token: $1 };
17246
17345
  });
17247
17346
  function Function(state) {
@@ -17266,7 +17365,7 @@ ${input.slice(result.pos)}
17266
17365
  return result;
17267
17366
  }
17268
17367
  }
17269
- var GetOrSet$0 = $TS($S($C($EXPECT($L125, fail, 'GetOrSet "get"'), $EXPECT($L126, fail, 'GetOrSet "set"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17368
+ var GetOrSet$0 = $TS($S($C($EXPECT($L144, fail, 'GetOrSet "get"'), $EXPECT($L145, fail, 'GetOrSet "set"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17270
17369
  return { $loc, token: $1, type: "GetOrSet" };
17271
17370
  });
17272
17371
  function GetOrSet(state) {
@@ -17291,7 +17390,7 @@ ${input.slice(result.pos)}
17291
17390
  return result;
17292
17391
  }
17293
17392
  }
17294
- var If$0 = $TV($TEXT($S($EXPECT($L127, fail, 'If "if"'), NonIdContinue, $E($EXPECT($L9, fail, 'If " "')))), function($skip, $loc, $0, $1) {
17393
+ var If$0 = $TV($TEXT($S($EXPECT($L146, fail, 'If "if"'), NonIdContinue, $E($EXPECT($L10, fail, 'If " "')))), function($skip, $loc, $0, $1) {
17295
17394
  return { $loc, token: $1 };
17296
17395
  });
17297
17396
  function If(state) {
@@ -17316,7 +17415,7 @@ ${input.slice(result.pos)}
17316
17415
  return result;
17317
17416
  }
17318
17417
  }
17319
- var Import$0 = $TS($S($EXPECT($L15, fail, 'Import "import"'), $Y($EXPECT($R49, fail, "Import /\\s/"))), function($skip, $loc, $0, $1, $2) {
17418
+ var Import$0 = $TS($S($EXPECT($L16, fail, 'Import "import"'), $Y($EXPECT($R49, fail, "Import /\\s/"))), function($skip, $loc, $0, $1, $2) {
17320
17419
  return { $loc, token: $1 };
17321
17420
  });
17322
17421
  function Import(state) {
@@ -17341,7 +17440,7 @@ ${input.slice(result.pos)}
17341
17440
  return result;
17342
17441
  }
17343
17442
  }
17344
- var In$0 = $TS($S($EXPECT($L80, fail, 'In "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17443
+ var In$0 = $TS($S($EXPECT($L147, fail, 'In "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17345
17444
  return { $loc, token: $1 };
17346
17445
  });
17347
17446
  function In(state) {
@@ -17366,7 +17465,7 @@ ${input.slice(result.pos)}
17366
17465
  return result;
17367
17466
  }
17368
17467
  }
17369
- var LetOrConst$0 = $TS($S($C($EXPECT($L128, fail, 'LetOrConst "let"'), $EXPECT($L129, fail, 'LetOrConst "const"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17468
+ var LetOrConst$0 = $TS($S($C($EXPECT($L148, fail, 'LetOrConst "let"'), $EXPECT($L149, fail, 'LetOrConst "const"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17370
17469
  return { $loc, token: $1 };
17371
17470
  });
17372
17471
  function LetOrConst(state) {
@@ -17391,7 +17490,7 @@ ${input.slice(result.pos)}
17391
17490
  return result;
17392
17491
  }
17393
17492
  }
17394
- var Const$0 = $TS($S($EXPECT($L129, fail, 'Const "const"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17493
+ var Const$0 = $TS($S($EXPECT($L149, fail, 'Const "const"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17395
17494
  return { $loc, token: $1 };
17396
17495
  });
17397
17496
  function Const(state) {
@@ -17416,6 +17515,31 @@ ${input.slice(result.pos)}
17416
17515
  return result;
17417
17516
  }
17418
17517
  }
17518
+ var Is$0 = $TS($S($EXPECT($L150, fail, 'Is "is"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17519
+ return { $loc, token: $1 };
17520
+ });
17521
+ function Is(state) {
17522
+ let eventData;
17523
+ if (state.events) {
17524
+ const result = state.events.enter?.("Is", state);
17525
+ if (result) {
17526
+ if (result.cache)
17527
+ return result.cache;
17528
+ eventData = result.data;
17529
+ }
17530
+ }
17531
+ if (state.tokenize) {
17532
+ const result = $TOKEN("Is", state, Is$0(state));
17533
+ if (state.events)
17534
+ state.events.exit?.("Is", state, result, eventData);
17535
+ return result;
17536
+ } else {
17537
+ const result = Is$0(state);
17538
+ if (state.events)
17539
+ state.events.exit?.("Is", state, result, eventData);
17540
+ return result;
17541
+ }
17542
+ }
17419
17543
  var LetOrConstOrVar$0 = LetOrConst;
17420
17544
  var LetOrConstOrVar$1 = Var;
17421
17545
  function LetOrConstOrVar(state) {
@@ -17440,7 +17564,7 @@ ${input.slice(result.pos)}
17440
17564
  return result;
17441
17565
  }
17442
17566
  }
17443
- var Loop$0 = $TS($S($EXPECT($L130, fail, 'Loop "loop"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17567
+ var Loop$0 = $TS($S($EXPECT($L151, fail, 'Loop "loop"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17444
17568
  return { $loc, token: "while(true)" };
17445
17569
  });
17446
17570
  function Loop(state) {
@@ -17465,7 +17589,7 @@ ${input.slice(result.pos)}
17465
17589
  return result;
17466
17590
  }
17467
17591
  }
17468
- var New$0 = $TS($S($EXPECT($L131, fail, 'New "new"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17592
+ var New$0 = $TS($S($EXPECT($L152, fail, 'New "new"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17469
17593
  return { $loc, token: $1 };
17470
17594
  });
17471
17595
  function New(state) {
@@ -17490,7 +17614,7 @@ ${input.slice(result.pos)}
17490
17614
  return result;
17491
17615
  }
17492
17616
  }
17493
- var Not$0 = $TS($S(CoffeeNotEnabled, $EXPECT($L51, fail, 'Not "not"'), NonIdContinue, $E($EXPECT($L9, fail, 'Not " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
17617
+ var Not$0 = $TS($S($EXPECT($L153, fail, 'Not "not"'), NonIdContinue, $N($S($E(_), $EXPECT($L11, fail, 'Not ":"')))), function($skip, $loc, $0, $1, $2, $3) {
17494
17618
  return { $loc, token: "!" };
17495
17619
  });
17496
17620
  function Not(state) {
@@ -17515,7 +17639,7 @@ ${input.slice(result.pos)}
17515
17639
  return result;
17516
17640
  }
17517
17641
  }
17518
- var Of$0 = $TS($S($EXPECT($L72, fail, 'Of "of"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17642
+ var Of$0 = $TS($S($EXPECT($L84, fail, 'Of "of"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17519
17643
  return { $loc, token: $1 };
17520
17644
  });
17521
17645
  function Of(state) {
@@ -17540,7 +17664,7 @@ ${input.slice(result.pos)}
17540
17664
  return result;
17541
17665
  }
17542
17666
  }
17543
- var OpenAngleBracket$0 = $TV($EXPECT($L132, fail, 'OpenAngleBracket "<"'), function($skip, $loc, $0, $1) {
17667
+ var OpenAngleBracket$0 = $TV($EXPECT($L154, fail, 'OpenAngleBracket "<"'), function($skip, $loc, $0, $1) {
17544
17668
  return { $loc, token: $1 };
17545
17669
  });
17546
17670
  function OpenAngleBracket(state) {
@@ -17565,7 +17689,7 @@ ${input.slice(result.pos)}
17565
17689
  return result;
17566
17690
  }
17567
17691
  }
17568
- var OpenBrace$0 = $TV($EXPECT($L133, fail, 'OpenBrace "{"'), function($skip, $loc, $0, $1) {
17692
+ var OpenBrace$0 = $TV($EXPECT($L155, fail, 'OpenBrace "{"'), function($skip, $loc, $0, $1) {
17569
17693
  return { $loc, token: $1 };
17570
17694
  });
17571
17695
  function OpenBrace(state) {
@@ -17590,7 +17714,7 @@ ${input.slice(result.pos)}
17590
17714
  return result;
17591
17715
  }
17592
17716
  }
17593
- var OpenBracket$0 = $TV($EXPECT($L96, fail, 'OpenBracket "["'), function($skip, $loc, $0, $1) {
17717
+ var OpenBracket$0 = $TV($EXPECT($L113, fail, 'OpenBracket "["'), function($skip, $loc, $0, $1) {
17594
17718
  return { $loc, token: $1 };
17595
17719
  });
17596
17720
  function OpenBracket(state) {
@@ -17640,7 +17764,7 @@ ${input.slice(result.pos)}
17640
17764
  return result;
17641
17765
  }
17642
17766
  }
17643
- var Operator$0 = $TS($S($EXPECT($L134, fail, 'Operator "operator"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17767
+ var Operator$0 = $TS($S($EXPECT($L156, fail, 'Operator "operator"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17644
17768
  return { $loc, token: $1 };
17645
17769
  });
17646
17770
  function Operator(state) {
@@ -17665,7 +17789,7 @@ ${input.slice(result.pos)}
17665
17789
  return result;
17666
17790
  }
17667
17791
  }
17668
- var Public$0 = $TS($S($EXPECT($L135, fail, 'Public "public"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17792
+ var Public$0 = $TS($S($EXPECT($L157, fail, 'Public "public"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17669
17793
  return { $loc, token: $1 };
17670
17794
  });
17671
17795
  function Public(state) {
@@ -17690,7 +17814,7 @@ ${input.slice(result.pos)}
17690
17814
  return result;
17691
17815
  }
17692
17816
  }
17693
- var Private$0 = $TS($S($EXPECT($L136, fail, 'Private "private"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17817
+ var Private$0 = $TS($S($EXPECT($L158, fail, 'Private "private"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17694
17818
  return { $loc, token: $1 };
17695
17819
  });
17696
17820
  function Private(state) {
@@ -17715,7 +17839,7 @@ ${input.slice(result.pos)}
17715
17839
  return result;
17716
17840
  }
17717
17841
  }
17718
- var Protected$0 = $TS($S($EXPECT($L137, fail, 'Protected "protected"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17842
+ var Protected$0 = $TS($S($EXPECT($L159, fail, 'Protected "protected"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17719
17843
  return { $loc, token: $1 };
17720
17844
  });
17721
17845
  function Protected(state) {
@@ -17740,14 +17864,14 @@ ${input.slice(result.pos)}
17740
17864
  return result;
17741
17865
  }
17742
17866
  }
17743
- var Pipe$0 = $TV($EXPECT($L138, fail, 'Pipe "||>"'), function($skip, $loc, $0, $1) {
17744
- return { $loc, token: $1 };
17867
+ var Pipe$0 = $TV($C($EXPECT($L160, fail, 'Pipe "||>"'), $EXPECT($L161, fail, 'Pipe "|\u25B7"')), function($skip, $loc, $0, $1) {
17868
+ return { $loc, token: "||>" };
17745
17869
  });
17746
- var Pipe$1 = $TV($EXPECT($L139, fail, 'Pipe "|>="'), function($skip, $loc, $0, $1) {
17747
- return { $loc, token: $1 };
17870
+ var Pipe$1 = $TV($C($EXPECT($L162, fail, 'Pipe "|>="'), $EXPECT($L163, fail, 'Pipe "\u25B7="')), function($skip, $loc, $0, $1) {
17871
+ return { $loc, token: "|>=" };
17748
17872
  });
17749
- var Pipe$2 = $TV($EXPECT($L140, fail, 'Pipe "|>"'), function($skip, $loc, $0, $1) {
17750
- return { $loc, token: $1 };
17873
+ var Pipe$2 = $TV($C($EXPECT($L164, fail, 'Pipe "|>"'), $EXPECT($L165, fail, 'Pipe "\u25B7"')), function($skip, $loc, $0, $1) {
17874
+ return { $loc, token: "|>" };
17751
17875
  });
17752
17876
  function Pipe(state) {
17753
17877
  let eventData;
@@ -17796,7 +17920,7 @@ ${input.slice(result.pos)}
17796
17920
  return result;
17797
17921
  }
17798
17922
  }
17799
- var Readonly$0 = $TS($S($EXPECT($L141, fail, 'Readonly "readonly"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17923
+ var Readonly$0 = $TS($S($EXPECT($L166, fail, 'Readonly "readonly"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17800
17924
  return { $loc, token: $1, ts: true };
17801
17925
  });
17802
17926
  function Readonly(state) {
@@ -17821,7 +17945,7 @@ ${input.slice(result.pos)}
17821
17945
  return result;
17822
17946
  }
17823
17947
  }
17824
- var Return$0 = $TS($S($EXPECT($L142, fail, 'Return "return"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17948
+ var Return$0 = $TS($S($EXPECT($L167, fail, 'Return "return"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17825
17949
  return { $loc, token: $1 };
17826
17950
  });
17827
17951
  function Return(state) {
@@ -17846,7 +17970,7 @@ ${input.slice(result.pos)}
17846
17970
  return result;
17847
17971
  }
17848
17972
  }
17849
- var Satisfies$0 = $TS($S($EXPECT($L143, fail, 'Satisfies "satisfies"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17973
+ var Satisfies$0 = $TS($S($EXPECT($L168, fail, 'Satisfies "satisfies"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17850
17974
  return { $loc, token: $1 };
17851
17975
  });
17852
17976
  function Satisfies(state) {
@@ -17871,7 +17995,7 @@ ${input.slice(result.pos)}
17871
17995
  return result;
17872
17996
  }
17873
17997
  }
17874
- var Semicolon$0 = $TV($EXPECT($L84, fail, 'Semicolon ";"'), function($skip, $loc, $0, $1) {
17998
+ var Semicolon$0 = $TV($EXPECT($L100, fail, 'Semicolon ";"'), function($skip, $loc, $0, $1) {
17875
17999
  return { $loc, token: $1 };
17876
18000
  });
17877
18001
  function Semicolon(state) {
@@ -17896,7 +18020,7 @@ ${input.slice(result.pos)}
17896
18020
  return result;
17897
18021
  }
17898
18022
  }
17899
- var SingleQuote$0 = $TV($EXPECT($L144, fail, `SingleQuote "'"`), function($skip, $loc, $0, $1) {
18023
+ var SingleQuote$0 = $TV($EXPECT($L169, fail, `SingleQuote "'"`), function($skip, $loc, $0, $1) {
17900
18024
  return { $loc, token: $1 };
17901
18025
  });
17902
18026
  function SingleQuote(state) {
@@ -17921,7 +18045,7 @@ ${input.slice(result.pos)}
17921
18045
  return result;
17922
18046
  }
17923
18047
  }
17924
- var Star$0 = $TV($EXPECT($L53, fail, 'Star "*"'), function($skip, $loc, $0, $1) {
18048
+ var Star$0 = $TV($EXPECT($L54, fail, 'Star "*"'), function($skip, $loc, $0, $1) {
17925
18049
  return { $loc, token: $1 };
17926
18050
  });
17927
18051
  function Star(state) {
@@ -17946,10 +18070,10 @@ ${input.slice(result.pos)}
17946
18070
  return result;
17947
18071
  }
17948
18072
  }
17949
- var Static$0 = $TS($S($EXPECT($L145, fail, 'Static "static"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18073
+ var Static$0 = $TS($S($EXPECT($L170, fail, 'Static "static"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17950
18074
  return { $loc, token: $1 };
17951
18075
  });
17952
- var Static$1 = $TS($S($EXPECT($L100, fail, 'Static "@"'), $N($C($EXPECT($L3, fail, 'Static "("'), $EXPECT($L100, fail, 'Static "@"')))), function($skip, $loc, $0, $1, $2) {
18076
+ var Static$1 = $TS($S($EXPECT($L117, fail, 'Static "@"'), $N($C($EXPECT($L3, fail, 'Static "("'), $EXPECT($L117, fail, 'Static "@"')))), function($skip, $loc, $0, $1, $2) {
17953
18077
  return { $loc, token: "static " };
17954
18078
  });
17955
18079
  function Static(state) {
@@ -17974,7 +18098,7 @@ ${input.slice(result.pos)}
17974
18098
  return result;
17975
18099
  }
17976
18100
  }
17977
- var SubstitutionStart$0 = $TV($EXPECT($L146, fail, 'SubstitutionStart "${"'), function($skip, $loc, $0, $1) {
18101
+ var SubstitutionStart$0 = $TV($EXPECT($L171, fail, 'SubstitutionStart "${"'), function($skip, $loc, $0, $1) {
17978
18102
  return { $loc, token: $1 };
17979
18103
  });
17980
18104
  function SubstitutionStart(state) {
@@ -17999,7 +18123,7 @@ ${input.slice(result.pos)}
17999
18123
  return result;
18000
18124
  }
18001
18125
  }
18002
- var Switch$0 = $TS($S($EXPECT($L147, fail, 'Switch "switch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18126
+ var Switch$0 = $TS($S($EXPECT($L172, fail, 'Switch "switch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18003
18127
  return { $loc, token: $1 };
18004
18128
  });
18005
18129
  function Switch(state) {
@@ -18024,7 +18148,7 @@ ${input.slice(result.pos)}
18024
18148
  return result;
18025
18149
  }
18026
18150
  }
18027
- var Target$0 = $TS($S($EXPECT($L148, fail, 'Target "target"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18151
+ var Target$0 = $TS($S($EXPECT($L173, fail, 'Target "target"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18028
18152
  return { $loc, token: $1 };
18029
18153
  });
18030
18154
  function Target(state) {
@@ -18049,7 +18173,7 @@ ${input.slice(result.pos)}
18049
18173
  return result;
18050
18174
  }
18051
18175
  }
18052
- var Then$0 = $TS($S(__, $EXPECT($L149, fail, 'Then "then"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
18176
+ var Then$0 = $TS($S(__, $EXPECT($L174, fail, 'Then "then"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
18053
18177
  return { $loc, token: "" };
18054
18178
  });
18055
18179
  function Then(state) {
@@ -18074,7 +18198,7 @@ ${input.slice(result.pos)}
18074
18198
  return result;
18075
18199
  }
18076
18200
  }
18077
- var This$0 = $TS($S($EXPECT($L150, fail, 'This "this"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18201
+ var This$0 = $TS($S($EXPECT($L175, fail, 'This "this"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18078
18202
  return { $loc, token: $1 };
18079
18203
  });
18080
18204
  function This(state) {
@@ -18099,7 +18223,7 @@ ${input.slice(result.pos)}
18099
18223
  return result;
18100
18224
  }
18101
18225
  }
18102
- var Throw$0 = $TS($S($EXPECT($L151, fail, 'Throw "throw"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18226
+ var Throw$0 = $TS($S($EXPECT($L176, fail, 'Throw "throw"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18103
18227
  return { $loc, token: $1 };
18104
18228
  });
18105
18229
  function Throw(state) {
@@ -18124,7 +18248,7 @@ ${input.slice(result.pos)}
18124
18248
  return result;
18125
18249
  }
18126
18250
  }
18127
- var TripleDoubleQuote$0 = $TV($EXPECT($L152, fail, 'TripleDoubleQuote "\\\\\\"\\\\\\"\\\\\\""'), function($skip, $loc, $0, $1) {
18251
+ var TripleDoubleQuote$0 = $TV($EXPECT($L177, fail, 'TripleDoubleQuote "\\\\\\"\\\\\\"\\\\\\""'), function($skip, $loc, $0, $1) {
18128
18252
  return { $loc, token: "`" };
18129
18253
  });
18130
18254
  function TripleDoubleQuote(state) {
@@ -18149,7 +18273,7 @@ ${input.slice(result.pos)}
18149
18273
  return result;
18150
18274
  }
18151
18275
  }
18152
- var TripleSingleQuote$0 = $TV($EXPECT($L153, fail, `TripleSingleQuote "'''"`), function($skip, $loc, $0, $1) {
18276
+ var TripleSingleQuote$0 = $TV($EXPECT($L178, fail, `TripleSingleQuote "'''"`), function($skip, $loc, $0, $1) {
18153
18277
  return { $loc, token: "`" };
18154
18278
  });
18155
18279
  function TripleSingleQuote(state) {
@@ -18174,7 +18298,7 @@ ${input.slice(result.pos)}
18174
18298
  return result;
18175
18299
  }
18176
18300
  }
18177
- var TripleSlash$0 = $TV($EXPECT($L154, fail, 'TripleSlash "///"'), function($skip, $loc, $0, $1) {
18301
+ var TripleSlash$0 = $TV($EXPECT($L179, fail, 'TripleSlash "///"'), function($skip, $loc, $0, $1) {
18178
18302
  return { $loc, token: "/" };
18179
18303
  });
18180
18304
  function TripleSlash(state) {
@@ -18199,7 +18323,7 @@ ${input.slice(result.pos)}
18199
18323
  return result;
18200
18324
  }
18201
18325
  }
18202
- var TripleTick$0 = $TV($EXPECT($L155, fail, 'TripleTick "```"'), function($skip, $loc, $0, $1) {
18326
+ var TripleTick$0 = $TV($EXPECT($L180, fail, 'TripleTick "```"'), function($skip, $loc, $0, $1) {
18203
18327
  return { $loc, token: "`" };
18204
18328
  });
18205
18329
  function TripleTick(state) {
@@ -18224,7 +18348,7 @@ ${input.slice(result.pos)}
18224
18348
  return result;
18225
18349
  }
18226
18350
  }
18227
- var Try$0 = $TS($S($EXPECT($L156, fail, 'Try "try"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18351
+ var Try$0 = $TS($S($EXPECT($L181, fail, 'Try "try"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18228
18352
  return { $loc, token: $1 };
18229
18353
  });
18230
18354
  function Try(state) {
@@ -18249,7 +18373,7 @@ ${input.slice(result.pos)}
18249
18373
  return result;
18250
18374
  }
18251
18375
  }
18252
- var Typeof$0 = $TS($S($EXPECT($L157, fail, 'Typeof "typeof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18376
+ var Typeof$0 = $TS($S($EXPECT($L182, fail, 'Typeof "typeof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18253
18377
  return { $loc, token: $1 };
18254
18378
  });
18255
18379
  function Typeof(state) {
@@ -18274,7 +18398,7 @@ ${input.slice(result.pos)}
18274
18398
  return result;
18275
18399
  }
18276
18400
  }
18277
- var Unless$0 = $TS($S($EXPECT($L158, fail, 'Unless "unless"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18401
+ var Unless$0 = $TS($S($EXPECT($L183, fail, 'Unless "unless"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18278
18402
  return { $loc, token: $1 };
18279
18403
  });
18280
18404
  function Unless(state) {
@@ -18299,7 +18423,7 @@ ${input.slice(result.pos)}
18299
18423
  return result;
18300
18424
  }
18301
18425
  }
18302
- var Until$0 = $TS($S($EXPECT($L159, fail, 'Until "until"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18426
+ var Until$0 = $TS($S($EXPECT($L184, fail, 'Until "until"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18303
18427
  return { $loc, token: $1 };
18304
18428
  });
18305
18429
  function Until(state) {
@@ -18324,7 +18448,7 @@ ${input.slice(result.pos)}
18324
18448
  return result;
18325
18449
  }
18326
18450
  }
18327
- var Var$0 = $TS($S($EXPECT($L160, fail, 'Var "var"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18451
+ var Var$0 = $TS($S($EXPECT($L185, fail, 'Var "var"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18328
18452
  return { $loc, token: $1 };
18329
18453
  });
18330
18454
  function Var(state) {
@@ -18349,7 +18473,7 @@ ${input.slice(result.pos)}
18349
18473
  return result;
18350
18474
  }
18351
18475
  }
18352
- var Void$0 = $TS($S($EXPECT($L161, fail, 'Void "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18476
+ var Void$0 = $TS($S($EXPECT($L186, fail, 'Void "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18353
18477
  return { $loc, token: $1 };
18354
18478
  });
18355
18479
  function Void(state) {
@@ -18374,7 +18498,7 @@ ${input.slice(result.pos)}
18374
18498
  return result;
18375
18499
  }
18376
18500
  }
18377
- var When$0 = $TS($S($EXPECT($L162, fail, 'When "when"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18501
+ var When$0 = $TS($S($EXPECT($L187, fail, 'When "when"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18378
18502
  return { $loc, token: "case" };
18379
18503
  });
18380
18504
  function When(state) {
@@ -18399,7 +18523,7 @@ ${input.slice(result.pos)}
18399
18523
  return result;
18400
18524
  }
18401
18525
  }
18402
- var While$0 = $TS($S($EXPECT($L163, fail, 'While "while"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18526
+ var While$0 = $TS($S($EXPECT($L188, fail, 'While "while"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18403
18527
  return { $loc, token: $1 };
18404
18528
  });
18405
18529
  function While(state) {
@@ -18424,7 +18548,7 @@ ${input.slice(result.pos)}
18424
18548
  return result;
18425
18549
  }
18426
18550
  }
18427
- var Yield$0 = $TS($S($EXPECT($L164, fail, 'Yield "yield"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18551
+ var Yield$0 = $TS($S($EXPECT($L189, fail, 'Yield "yield"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18428
18552
  return { $loc, token: $1, type: "Yield" };
18429
18553
  });
18430
18554
  function Yield(state) {
@@ -18569,7 +18693,7 @@ ${input.slice(result.pos)}
18569
18693
  return result;
18570
18694
  }
18571
18695
  }
18572
- var JSXSelfClosingElement$0 = $TS($S($EXPECT($L132, fail, 'JSXSelfClosingElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L165, fail, 'JSXSelfClosingElement "/>"')), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
18696
+ var JSXSelfClosingElement$0 = $TS($S($EXPECT($L154, fail, 'JSXSelfClosingElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L190, fail, 'JSXSelfClosingElement "/>"')), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
18573
18697
  return { type: "JSXElement", children: $0, tag: $2 };
18574
18698
  });
18575
18699
  function JSXSelfClosingElement(state) {
@@ -18645,7 +18769,7 @@ ${input.slice(result.pos)}
18645
18769
  return result;
18646
18770
  }
18647
18771
  }
18648
- var JSXOpeningElement$0 = $S($EXPECT($L132, fail, 'JSXOpeningElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L31, fail, 'JSXOpeningElement ">"'));
18772
+ var JSXOpeningElement$0 = $S($EXPECT($L154, fail, 'JSXOpeningElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L33, fail, 'JSXOpeningElement ">"'));
18649
18773
  function JSXOpeningElement(state) {
18650
18774
  let eventData;
18651
18775
  if (state.events) {
@@ -18697,7 +18821,7 @@ ${input.slice(result.pos)}
18697
18821
  return result;
18698
18822
  }
18699
18823
  }
18700
- var JSXClosingElement$0 = $S($EXPECT($L166, fail, 'JSXClosingElement "</"'), $E(Whitespace), JSXElementName, $E(Whitespace), $EXPECT($L31, fail, 'JSXClosingElement ">"'));
18824
+ var JSXClosingElement$0 = $S($EXPECT($L191, fail, 'JSXClosingElement "</"'), $E(Whitespace), JSXElementName, $E(Whitespace), $EXPECT($L33, fail, 'JSXClosingElement ">"'));
18701
18825
  function JSXClosingElement(state) {
18702
18826
  let eventData;
18703
18827
  if (state.events) {
@@ -18735,7 +18859,7 @@ ${input.slice(result.pos)}
18735
18859
  ];
18736
18860
  return { type: "JSXFragment", children: parts, jsxChildren: children.jsxChildren };
18737
18861
  });
18738
- var JSXFragment$1 = $TS($S(CoffeeJSXEnabled, $EXPECT($L167, fail, 'JSXFragment "<>"'), $E(JSXChildren), $E(Whitespace), JSXClosingFragment), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
18862
+ var JSXFragment$1 = $TS($S(CoffeeJSXEnabled, $EXPECT($L192, fail, 'JSXFragment "<>"'), $E(JSXChildren), $E(Whitespace), JSXClosingFragment), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
18739
18863
  var children = $3;
18740
18864
  $0 = $0.slice(1);
18741
18865
  return {
@@ -18766,7 +18890,7 @@ ${input.slice(result.pos)}
18766
18890
  return result;
18767
18891
  }
18768
18892
  }
18769
- var PushJSXOpeningFragment$0 = $TV($EXPECT($L167, fail, 'PushJSXOpeningFragment "<>"'), function($skip, $loc, $0, $1) {
18893
+ var PushJSXOpeningFragment$0 = $TV($EXPECT($L192, fail, 'PushJSXOpeningFragment "<>"'), function($skip, $loc, $0, $1) {
18770
18894
  module.JSXTagStack.push("");
18771
18895
  return $1;
18772
18896
  });
@@ -18820,7 +18944,7 @@ ${input.slice(result.pos)}
18820
18944
  return result;
18821
18945
  }
18822
18946
  }
18823
- var JSXClosingFragment$0 = $EXPECT($L168, fail, 'JSXClosingFragment "</>"');
18947
+ var JSXClosingFragment$0 = $EXPECT($L193, fail, 'JSXClosingFragment "</>"');
18824
18948
  function JSXClosingFragment(state) {
18825
18949
  let eventData;
18826
18950
  if (state.events) {
@@ -18843,7 +18967,7 @@ ${input.slice(result.pos)}
18843
18967
  return result;
18844
18968
  }
18845
18969
  }
18846
- var JSXElementName$0 = $TV($Y($S($C($EXPECT($L13, fail, 'JSXElementName "#"'), Dot), JSXShorthandString)), function($skip, $loc, $0, $1) {
18970
+ var JSXElementName$0 = $TV($Y($S($C($EXPECT($L14, fail, 'JSXElementName "#"'), Dot), JSXShorthandString)), function($skip, $loc, $0, $1) {
18847
18971
  return module.config.defaultElement;
18848
18972
  });
18849
18973
  var JSXElementName$1 = $TEXT($S(JSXIdentifierName, $C($S(Colon, JSXIdentifierName), $Q($S(Dot, JSXIdentifierName)))));
@@ -19070,7 +19194,7 @@ ${input.slice(result.pos)}
19070
19194
  }
19071
19195
  return $skip;
19072
19196
  });
19073
- var JSXAttribute$5 = $TS($S($EXPECT($L13, fail, 'JSXAttribute "#"'), JSXShorthandString), function($skip, $loc, $0, $1, $2) {
19197
+ var JSXAttribute$5 = $TS($S($EXPECT($L14, fail, 'JSXAttribute "#"'), JSXShorthandString), function($skip, $loc, $0, $1, $2) {
19074
19198
  return [" ", "id=", $2];
19075
19199
  });
19076
19200
  var JSXAttribute$6 = $TS($S(Dot, JSXShorthandString), function($skip, $loc, $0, $1, $2) {
@@ -19400,7 +19524,7 @@ ${input.slice(result.pos)}
19400
19524
  return result;
19401
19525
  }
19402
19526
  }
19403
- var InlineJSXCallExpression$0 = $TS($S($EXPECT($L14, fail, 'InlineJSXCallExpression "super"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
19527
+ var InlineJSXCallExpression$0 = $TS($S($EXPECT($L15, fail, 'InlineJSXCallExpression "super"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
19404
19528
  var args = $2;
19405
19529
  var rest = $3;
19406
19530
  return processCallMemberExpression({
@@ -19412,7 +19536,7 @@ ${input.slice(result.pos)}
19412
19536
  ]
19413
19537
  });
19414
19538
  });
19415
- var InlineJSXCallExpression$1 = $TS($S($EXPECT($L15, fail, 'InlineJSXCallExpression "import"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
19539
+ var InlineJSXCallExpression$1 = $TS($S($EXPECT($L16, fail, 'InlineJSXCallExpression "import"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
19416
19540
  var args = $2;
19417
19541
  var rest = $3;
19418
19542
  return processCallMemberExpression({
@@ -19660,7 +19784,7 @@ ${input.slice(result.pos)}
19660
19784
  }
19661
19785
  return $skip;
19662
19786
  });
19663
- var JSXNestedChildren$1 = $TV($Y($C(JSXEOS, $EXPECT($L23, fail, 'JSXNestedChildren "}"'), JSXClosingElement, JSXClosingFragment)), function($skip, $loc, $0, $1) {
19787
+ var JSXNestedChildren$1 = $TV($Y($C(JSXEOS, $EXPECT($L25, fail, 'JSXNestedChildren "}"'), JSXClosingElement, JSXClosingFragment)), function($skip, $loc, $0, $1) {
19664
19788
  return { children: [], jsxChildren: [] };
19665
19789
  });
19666
19790
  function JSXNestedChildren(state) {
@@ -19789,7 +19913,7 @@ ${input.slice(result.pos)}
19789
19913
  return result;
19790
19914
  }
19791
19915
  }
19792
- var JSXComment$0 = $TS($S($EXPECT($L169, fail, 'JSXComment "<!--"'), JSXCommentContent, $EXPECT($L170, fail, 'JSXComment "-->"')), function($skip, $loc, $0, $1, $2, $3) {
19916
+ var JSXComment$0 = $TS($S($EXPECT($L194, fail, 'JSXComment "<!--"'), JSXCommentContent, $EXPECT($L195, fail, 'JSXComment "-->"')), function($skip, $loc, $0, $1, $2, $3) {
19793
19917
  return ["{/*", $2, "*/}"];
19794
19918
  });
19795
19919
  function JSXComment(state) {
@@ -20092,7 +20216,7 @@ ${input.slice(result.pos)}
20092
20216
  return result;
20093
20217
  }
20094
20218
  }
20095
- var TypeKeyword$0 = $TS($S($EXPECT($L171, fail, 'TypeKeyword "type"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20219
+ var TypeKeyword$0 = $TS($S($EXPECT($L196, fail, 'TypeKeyword "type"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20096
20220
  return { $loc, token: $1 };
20097
20221
  });
20098
20222
  function TypeKeyword(state) {
@@ -20117,7 +20241,7 @@ ${input.slice(result.pos)}
20117
20241
  return result;
20118
20242
  }
20119
20243
  }
20120
- var Enum$0 = $TS($S($EXPECT($L172, fail, 'Enum "enum"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20244
+ var Enum$0 = $TS($S($EXPECT($L197, fail, 'Enum "enum"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20121
20245
  return { $loc, token: $1 };
20122
20246
  });
20123
20247
  function Enum(state) {
@@ -20142,7 +20266,7 @@ ${input.slice(result.pos)}
20142
20266
  return result;
20143
20267
  }
20144
20268
  }
20145
- var Interface$0 = $TS($S($EXPECT($L173, fail, 'Interface "interface"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20269
+ var Interface$0 = $TS($S($EXPECT($L198, fail, 'Interface "interface"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20146
20270
  return { $loc, token: $1 };
20147
20271
  });
20148
20272
  function Interface(state) {
@@ -20167,7 +20291,7 @@ ${input.slice(result.pos)}
20167
20291
  return result;
20168
20292
  }
20169
20293
  }
20170
- var Global$0 = $TS($S($EXPECT($L174, fail, 'Global "global"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20294
+ var Global$0 = $TS($S($EXPECT($L199, fail, 'Global "global"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20171
20295
  return { $loc, token: $1 };
20172
20296
  });
20173
20297
  function Global(state) {
@@ -20192,7 +20316,7 @@ ${input.slice(result.pos)}
20192
20316
  return result;
20193
20317
  }
20194
20318
  }
20195
- var Module$0 = $TS($S($EXPECT($L175, fail, 'Module "module"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20319
+ var Module$0 = $TS($S($EXPECT($L200, fail, 'Module "module"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20196
20320
  return { $loc, token: $1 };
20197
20321
  });
20198
20322
  function Module(state) {
@@ -20217,7 +20341,7 @@ ${input.slice(result.pos)}
20217
20341
  return result;
20218
20342
  }
20219
20343
  }
20220
- var Namespace$0 = $TS($S($EXPECT($L176, fail, 'Namespace "namespace"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20344
+ var Namespace$0 = $TS($S($EXPECT($L201, fail, 'Namespace "namespace"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20221
20345
  return { $loc, token: $1 };
20222
20346
  });
20223
20347
  function Namespace(state) {
@@ -20885,7 +21009,7 @@ ${input.slice(result.pos)}
20885
21009
  return result;
20886
21010
  }
20887
21011
  }
20888
- var ReturnTypeSuffix$0 = $TS($S($E(_), Colon, $E($S(__, $EXPECT($L177, fail, 'ReturnTypeSuffix "asserts"'), NonIdContinue)), TypePredicate), function($skip, $loc, $0, $1, $2, $3, $4) {
21012
+ var ReturnTypeSuffix$0 = $TS($S($E(_), Colon, $E($S(__, $EXPECT($L202, fail, 'ReturnTypeSuffix "asserts"'), NonIdContinue)), TypePredicate), function($skip, $loc, $0, $1, $2, $3, $4) {
20889
21013
  var asserts = $3;
20890
21014
  var t = $4;
20891
21015
  if (asserts) {
@@ -20924,7 +21048,7 @@ ${input.slice(result.pos)}
20924
21048
  return result;
20925
21049
  }
20926
21050
  }
20927
- var TypePredicate$0 = $TS($S(Type, $E($S(__, $EXPECT($L81, fail, 'TypePredicate "is"'), NonIdContinue, Type))), function($skip, $loc, $0, $1, $2) {
21051
+ var TypePredicate$0 = $TS($S(Type, $E($S(__, $EXPECT($L150, fail, 'TypePredicate "is"'), NonIdContinue, Type))), function($skip, $loc, $0, $1, $2) {
20928
21052
  var lhs = $1;
20929
21053
  var rhs = $2;
20930
21054
  if (!rhs)
@@ -20981,10 +21105,17 @@ ${input.slice(result.pos)}
20981
21105
  return result;
20982
21106
  }
20983
21107
  }
20984
- var TypeBinary$0 = $TS($S(TypeUnary, $Q($S(__, TypeBinaryOp, __, TypeUnary))), function($skip, $loc, $0, $1, $2) {
20985
- if ($2.length)
20986
- return $0;
20987
- return $1;
21108
+ var TypeBinary$0 = $TS($S($E($S(__, TypeBinaryOp, __)), TypeUnary, $Q($S(__, TypeBinaryOp, __, TypeUnary))), function($skip, $loc, $0, $1, $2, $3) {
21109
+ var optionalPrefix = $1;
21110
+ var t = $2;
21111
+ var ops = $3;
21112
+ if (!ops.length && !optionalPrefix)
21113
+ return t;
21114
+ if (!ops.length)
21115
+ return [optionalPrefix, t];
21116
+ if (!optionalPrefix)
21117
+ return [t, ...ops];
21118
+ return [optionalPrefix, t, ops];
20988
21119
  });
20989
21120
  function TypeBinary(state) {
20990
21121
  let eventData;
@@ -21059,10 +21190,10 @@ ${input.slice(result.pos)}
21059
21190
  return result;
21060
21191
  }
21061
21192
  }
21062
- var TypeUnaryOp$0 = $S($EXPECT($L178, fail, 'TypeUnaryOp "keyof"'), NonIdContinue);
21063
- var TypeUnaryOp$1 = $S($EXPECT($L157, fail, 'TypeUnaryOp "typeof"'), NonIdContinue);
21064
- var TypeUnaryOp$2 = $S($EXPECT($L179, fail, 'TypeUnaryOp "infer"'), NonIdContinue);
21065
- var TypeUnaryOp$3 = $S($EXPECT($L141, fail, 'TypeUnaryOp "readonly"'), NonIdContinue);
21193
+ var TypeUnaryOp$0 = $S($EXPECT($L203, fail, 'TypeUnaryOp "keyof"'), NonIdContinue);
21194
+ var TypeUnaryOp$1 = $S($EXPECT($L182, fail, 'TypeUnaryOp "typeof"'), NonIdContinue);
21195
+ var TypeUnaryOp$2 = $S($EXPECT($L204, fail, 'TypeUnaryOp "infer"'), NonIdContinue);
21196
+ var TypeUnaryOp$3 = $S($EXPECT($L166, fail, 'TypeUnaryOp "readonly"'), NonIdContinue);
21066
21197
  function TypeUnaryOp(state) {
21067
21198
  let eventData;
21068
21199
  if (state.events) {
@@ -21153,8 +21284,8 @@ ${input.slice(result.pos)}
21153
21284
  return result;
21154
21285
  }
21155
21286
  }
21156
- var ImportType$0 = $S($EXPECT($L15, fail, 'ImportType "import"'), OpenParen, __, StringLiteral, __, CloseParen, $E($S(Dot, IdentifierName)), $E(TypeArguments));
21157
- var ImportType$1 = $S($EXPECT($L15, fail, 'ImportType "import"'), InsertOpenParen, Trimmed_, StringLiteral, InsertCloseParen);
21287
+ var ImportType$0 = $S($EXPECT($L16, fail, 'ImportType "import"'), OpenParen, __, StringLiteral, __, CloseParen, $E($S(Dot, IdentifierName)), $E(TypeArguments));
21288
+ var ImportType$1 = $S($EXPECT($L16, fail, 'ImportType "import"'), InsertOpenParen, Trimmed_, StringLiteral, InsertCloseParen);
21158
21289
  function ImportType(state) {
21159
21290
  let eventData;
21160
21291
  if (state.events) {
@@ -21308,7 +21439,7 @@ ${input.slice(result.pos)}
21308
21439
  return result;
21309
21440
  }
21310
21441
  }
21311
- var TypeConditional$0 = $TS($S(TypeBinary, $E($S(__, $EXPECT($L120, fail, 'TypeConditional "extends"'), NonIdContinue, Type, $E($S(__, QuestionMark, Type, __, Colon, Type))))), function($skip, $loc, $0, $1, $2) {
21442
+ var TypeConditional$0 = $TS($S(TypeBinary, $E($S(__, $EXPECT($L139, fail, 'TypeConditional "extends"'), NonIdContinue, Type, $E($S(__, QuestionMark, Type, __, Colon, Type))))), function($skip, $loc, $0, $1, $2) {
21312
21443
  if ($2)
21313
21444
  return $0;
21314
21445
  return $1;
@@ -21440,10 +21571,10 @@ ${input.slice(result.pos)}
21440
21571
  }
21441
21572
  var TypeLiteral$0 = TypeTemplateLiteral;
21442
21573
  var TypeLiteral$1 = Literal;
21443
- var TypeLiteral$2 = $TS($S($EXPECT($L161, fail, 'TypeLiteral "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
21574
+ var TypeLiteral$2 = $TS($S($EXPECT($L186, fail, 'TypeLiteral "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
21444
21575
  return { type: "VoidType", $loc, token: $1 };
21445
21576
  });
21446
- var TypeLiteral$3 = $TV($EXPECT($L180, fail, 'TypeLiteral "[]"'), function($skip, $loc, $0, $1) {
21577
+ var TypeLiteral$3 = $TV($EXPECT($L205, fail, 'TypeLiteral "[]"'), function($skip, $loc, $0, $1) {
21447
21578
  return { $loc, token: "[]" };
21448
21579
  });
21449
21580
  function TypeLiteral(state) {
@@ -21518,7 +21649,7 @@ ${input.slice(result.pos)}
21518
21649
  var InlineInterfacePropertyDelimiter$1 = $T($S($Y($S($C(IndentedFurther, $E(_)), InlineBasicInterfaceProperty)), InsertComma), function(value) {
21519
21650
  return value[1];
21520
21651
  });
21521
- var InlineInterfacePropertyDelimiter$2 = $Y($S(__, $C($EXPECT($L10, fail, 'InlineInterfacePropertyDelimiter ":"'), $EXPECT($L108, fail, 'InlineInterfacePropertyDelimiter ")"'), $EXPECT($L32, fail, 'InlineInterfacePropertyDelimiter "]"'), $EXPECT($L23, fail, 'InlineInterfacePropertyDelimiter "}"'))));
21652
+ var InlineInterfacePropertyDelimiter$2 = $Y($S(__, $C($EXPECT($L11, fail, 'InlineInterfacePropertyDelimiter ":"'), $EXPECT($L125, fail, 'InlineInterfacePropertyDelimiter ")"'), $EXPECT($L34, fail, 'InlineInterfacePropertyDelimiter "]"'), $EXPECT($L25, fail, 'InlineInterfacePropertyDelimiter "}"'))));
21522
21653
  var InlineInterfacePropertyDelimiter$3 = $Y(EOS);
21523
21654
  function InlineInterfacePropertyDelimiter(state) {
21524
21655
  let eventData;
@@ -21542,10 +21673,10 @@ ${input.slice(result.pos)}
21542
21673
  return result;
21543
21674
  }
21544
21675
  }
21545
- var TypeBinaryOp$0 = $TV($EXPECT($L83, fail, 'TypeBinaryOp "|"'), function($skip, $loc, $0, $1) {
21676
+ var TypeBinaryOp$0 = $TV($EXPECT($L99, fail, 'TypeBinaryOp "|"'), function($skip, $loc, $0, $1) {
21546
21677
  return { $loc, token: "|" };
21547
21678
  });
21548
- var TypeBinaryOp$1 = $TV($EXPECT($L82, fail, 'TypeBinaryOp "&"'), function($skip, $loc, $0, $1) {
21679
+ var TypeBinaryOp$1 = $TV($EXPECT($L98, fail, 'TypeBinaryOp "&"'), function($skip, $loc, $0, $1) {
21549
21680
  return { $loc, token: "&" };
21550
21681
  });
21551
21682
  function TypeBinaryOp(state) {
@@ -21570,8 +21701,8 @@ ${input.slice(result.pos)}
21570
21701
  return result;
21571
21702
  }
21572
21703
  }
21573
- var FunctionType$0 = $TS($S(Parameters, __, TypeArrowFunction, $E(Type)), function($skip, $loc, $0, $1, $2, $3, $4) {
21574
- var type = $4;
21704
+ var FunctionType$0 = $TS($S($E($S(New, $E(_))), Parameters, __, TypeArrowFunction, $E(Type)), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
21705
+ var type = $5;
21575
21706
  if (type) {
21576
21707
  return $0;
21577
21708
  }
@@ -21599,10 +21730,7 @@ ${input.slice(result.pos)}
21599
21730
  return result;
21600
21731
  }
21601
21732
  }
21602
- var TypeArrowFunction$0 = $TV($EXPECT($L8, fail, 'TypeArrowFunction "=>"'), function($skip, $loc, $0, $1) {
21603
- return { $loc, token: "=>" };
21604
- });
21605
- var TypeArrowFunction$1 = $TV($EXPECT($L22, fail, 'TypeArrowFunction "->"'), function($skip, $loc, $0, $1) {
21733
+ var TypeArrowFunction$0 = $TV($C($EXPECT($L8, fail, 'TypeArrowFunction "=>"'), $EXPECT($L9, fail, 'TypeArrowFunction "\u21D2"'), $EXPECT($L23, fail, 'TypeArrowFunction "->"'), $EXPECT($L24, fail, 'TypeArrowFunction "\u2192"')), function($skip, $loc, $0, $1) {
21606
21734
  return { $loc, token: "=>" };
21607
21735
  });
21608
21736
  function TypeArrowFunction(state) {
@@ -21616,18 +21744,18 @@ ${input.slice(result.pos)}
21616
21744
  }
21617
21745
  }
21618
21746
  if (state.tokenize) {
21619
- const result = $TOKEN("TypeArrowFunction", state, TypeArrowFunction$0(state) || TypeArrowFunction$1(state));
21747
+ const result = $TOKEN("TypeArrowFunction", state, TypeArrowFunction$0(state));
21620
21748
  if (state.events)
21621
21749
  state.events.exit?.("TypeArrowFunction", state, result, eventData);
21622
21750
  return result;
21623
21751
  } else {
21624
- const result = TypeArrowFunction$0(state) || TypeArrowFunction$1(state);
21752
+ const result = TypeArrowFunction$0(state);
21625
21753
  if (state.events)
21626
21754
  state.events.exit?.("TypeArrowFunction", state, result, eventData);
21627
21755
  return result;
21628
21756
  }
21629
21757
  }
21630
- var TypeArguments$0 = $TS($S($EXPECT($L132, fail, 'TypeArguments "<"'), $P(TypeArgument), __, $EXPECT($L31, fail, 'TypeArguments ">"')), function($skip, $loc, $0, $1, $2, $3, $4) {
21758
+ var TypeArguments$0 = $TS($S($EXPECT($L154, fail, 'TypeArguments "<"'), $P(TypeArgument), __, $EXPECT($L33, fail, 'TypeArguments ">"')), function($skip, $loc, $0, $1, $2, $3, $4) {
21631
21759
  return { ts: true, children: $0 };
21632
21760
  });
21633
21761
  function TypeArguments(state) {
@@ -21698,7 +21826,7 @@ ${input.slice(result.pos)}
21698
21826
  return result;
21699
21827
  }
21700
21828
  }
21701
- var TypeParameters$0 = $TS($S($E(_), $EXPECT($L132, fail, 'TypeParameters "<"'), $P(TypeParameter), __, $EXPECT($L31, fail, 'TypeParameters ">"')), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
21829
+ var TypeParameters$0 = $TS($S($E(_), $EXPECT($L154, fail, 'TypeParameters "<"'), $P(TypeParameter), __, $EXPECT($L33, fail, 'TypeParameters ">"')), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
21702
21830
  var parameters = $3;
21703
21831
  return {
21704
21832
  type: "TypeParameters",
@@ -21729,7 +21857,7 @@ ${input.slice(result.pos)}
21729
21857
  return result;
21730
21858
  }
21731
21859
  }
21732
- var TypeParameter$0 = $S(__, $E($S($EXPECT($L129, fail, 'TypeParameter "const"'), $E(_))), Identifier, $E(TypeConstraint), $E(TypeInitializer), TypeParameterDelimiter);
21860
+ var TypeParameter$0 = $S(__, $E($S($EXPECT($L149, fail, 'TypeParameter "const"'), $E(_))), Identifier, $E(TypeConstraint), $E(TypeInitializer), TypeParameterDelimiter);
21733
21861
  function TypeParameter(state) {
21734
21862
  let eventData;
21735
21863
  if (state.events) {
@@ -21752,7 +21880,7 @@ ${input.slice(result.pos)}
21752
21880
  return result;
21753
21881
  }
21754
21882
  }
21755
- var TypeConstraint$0 = $S(__, $EXPECT($L120, fail, 'TypeConstraint "extends"'), NonIdContinue, Type);
21883
+ var TypeConstraint$0 = $S(__, $EXPECT($L139, fail, 'TypeConstraint "extends"'), NonIdContinue, Type);
21756
21884
  function TypeConstraint(state) {
21757
21885
  let eventData;
21758
21886
  if (state.events) {
@@ -21799,7 +21927,7 @@ ${input.slice(result.pos)}
21799
21927
  }
21800
21928
  }
21801
21929
  var TypeParameterDelimiter$0 = $S($Q(_), Comma);
21802
- var TypeParameterDelimiter$1 = $Y($S(__, $EXPECT($L31, fail, 'TypeParameterDelimiter ">"')));
21930
+ var TypeParameterDelimiter$1 = $Y($S(__, $EXPECT($L33, fail, 'TypeParameterDelimiter ">"')));
21803
21931
  var TypeParameterDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
21804
21932
  return value[1];
21805
21933
  });
@@ -21903,7 +22031,7 @@ ${input.slice(result.pos)}
21903
22031
  return result;
21904
22032
  }
21905
22033
  }
21906
- var CivetPrologueContent$0 = $TS($S($EXPECT($L181, fail, 'CivetPrologueContent "civet"'), NonIdContinue, $Q(CivetOption), $EXPECT($R62, fail, "CivetPrologueContent /[\\s]*/")), function($skip, $loc, $0, $1, $2, $3, $4) {
22034
+ var CivetPrologueContent$0 = $TS($S($EXPECT($L206, fail, 'CivetPrologueContent "civet"'), NonIdContinue, $Q(CivetOption), $EXPECT($R62, fail, "CivetPrologueContent /[\\s]*/")), function($skip, $loc, $0, $1, $2, $3, $4) {
21907
22035
  var options = $3;
21908
22036
  return {
21909
22037
  type: "CivetPrologue",