@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/browser.js CHANGED
@@ -431,7 +431,7 @@ var Civet = (() => {
431
431
  if (glob?.type === "PropertyGlob") {
432
432
  let prefix = children.slice(0, i);
433
433
  const parts = [];
434
- let hoistDec, refAssignment = [];
434
+ let hoistDec, refAssignment;
435
435
  if (prefix.length > 1) {
436
436
  const ref = {
437
437
  type: "Ref",
@@ -488,10 +488,9 @@ var Civet = (() => {
488
488
  });
489
489
  }
490
490
  }
491
- const object = {
491
+ let object = {
492
492
  type: "ObjectExpression",
493
493
  children: [
494
- ...refAssignment,
495
494
  glob.object.children[0],
496
495
  ...parts,
497
496
  glob.object.children.at(-1)
@@ -499,6 +498,13 @@ var Civet = (() => {
499
498
  properties: parts,
500
499
  hoistDec
501
500
  };
501
+ if (refAssignment) {
502
+ object = {
503
+ type: "ParenthesizedExpression",
504
+ children: ["(", ...refAssignment, object, ")"],
505
+ expression: object
506
+ };
507
+ }
502
508
  if (i === children.length - 1)
503
509
  return object;
504
510
  return processCallMemberExpression({
@@ -1125,6 +1131,10 @@ var Civet = (() => {
1125
1131
  case "CallExpression":
1126
1132
  case "MemberExpression":
1127
1133
  case "ParenthesizedExpression":
1134
+ case "DebuggerExpression":
1135
+ case "SwitchExpression":
1136
+ case "ThrowExpression":
1137
+ case "TryExpression":
1128
1138
  return expression;
1129
1139
  default:
1130
1140
  return {
@@ -1168,7 +1178,9 @@ var Civet = (() => {
1168
1178
  }
1169
1179
  function convertMethodToFunction(method) {
1170
1180
  const { signature, block } = method;
1171
- let { modifier } = signature;
1181
+ let { modifier, optional } = signature;
1182
+ if (optional)
1183
+ return;
1172
1184
  if (modifier) {
1173
1185
  if (modifier.get || modifier.set) {
1174
1186
  return;
@@ -1333,7 +1345,7 @@ var Civet = (() => {
1333
1345
  };
1334
1346
  }
1335
1347
  function implicitFunctionBlock(f) {
1336
- if (f.abstract || f.block)
1348
+ if (f.abstract || f.block || f.signature?.optional)
1337
1349
  return;
1338
1350
  const { name, parent } = f;
1339
1351
  const expressions = parent?.expressions ?? parent?.elements;
@@ -3351,6 +3363,7 @@ ${input.slice(result.pos)}
3351
3363
  In,
3352
3364
  LetOrConst,
3353
3365
  Const,
3366
+ Is,
3354
3367
  LetOrConstOrVar,
3355
3368
  Loop,
3356
3369
  New,
@@ -3569,179 +3582,204 @@ ${input.slice(result.pos)}
3569
3582
  var $L6 = $L("++");
3570
3583
  var $L7 = $L("--");
3571
3584
  var $L8 = $L("=>");
3572
- var $L9 = $L(" ");
3573
- var $L10 = $L(":");
3574
- var $L11 = $L("implements");
3575
- var $L12 = $L("<:");
3576
- var $L13 = $L("#");
3577
- var $L14 = $L("super");
3578
- var $L15 = $L("import");
3579
- var $L16 = $L("!");
3580
- var $L17 = $L("^");
3581
- var $L18 = $L("-");
3582
- var $L19 = $L("import.meta");
3583
- var $L20 = $L("return.value");
3584
- var $L21 = $L(",");
3585
- var $L22 = $L("->");
3586
- var $L23 = $L("}");
3587
- var $L24 = $L("null");
3588
- var $L25 = $L("true");
3589
- var $L26 = $L("false");
3590
- var $L27 = $L("yes");
3591
- var $L28 = $L("on");
3592
- var $L29 = $L("no");
3593
- var $L30 = $L("off");
3594
- var $L31 = $L(">");
3595
- var $L32 = $L("]");
3596
- var $L33 = $L("**=");
3597
- var $L34 = $L("*=");
3598
- var $L35 = $L("/=");
3599
- var $L36 = $L("%=");
3600
- var $L37 = $L("+=");
3601
- var $L38 = $L("-=");
3602
- var $L39 = $L("<<=");
3603
- var $L40 = $L(">>>=");
3604
- var $L41 = $L(">>=");
3605
- var $L42 = $L("&&=");
3606
- var $L43 = $L("&=");
3607
- var $L44 = $L("^=");
3608
- var $L45 = $L("||=");
3609
- var $L46 = $L("|=");
3610
- var $L47 = $L("??=");
3611
- var $L48 = $L("?=");
3612
- var $L49 = $L("and=");
3613
- var $L50 = $L("or=");
3614
- var $L51 = $L("not");
3615
- var $L52 = $L("**");
3616
- var $L53 = $L("*");
3617
- var $L54 = $L("/");
3618
- var $L55 = $L("%%");
3619
- var $L56 = $L("%");
3620
- var $L57 = $L("+");
3621
- var $L58 = $L("<=");
3622
- var $L59 = $L(">=");
3623
- var $L60 = $L("<?");
3624
- var $L61 = $L("!<?");
3625
- var $L62 = $L("<<");
3626
- var $L63 = $L(">>>");
3627
- var $L64 = $L(">>");
3628
- var $L65 = $L("!==");
3629
- var $L66 = $L("!=");
3630
- var $L67 = $L("isnt");
3631
- var $L68 = $L("===");
3632
- var $L69 = $L("==");
3633
- var $L70 = $L("and");
3634
- var $L71 = $L("&&");
3635
- var $L72 = $L("of");
3636
- var $L73 = $L("or");
3637
- var $L74 = $L("||");
3638
- var $L75 = $L("^^");
3639
- var $L76 = $L("xor");
3640
- var $L77 = $L("xnor");
3641
- var $L78 = $L("??");
3642
- var $L79 = $L("instanceof");
3643
- var $L80 = $L("in");
3644
- var $L81 = $L("is");
3645
- var $L82 = $L("&");
3646
- var $L83 = $L("|");
3647
- var $L84 = $L(";");
3648
- var $L85 = $L("$:");
3649
- var $L86 = $L("own");
3650
- var $L87 = $L("break");
3651
- var $L88 = $L("continue");
3652
- var $L89 = $L("debugger");
3653
- var $L90 = $L("assert");
3654
- var $L91 = $L(":=");
3655
- var $L92 = $L(".=");
3656
- var $L93 = $L("/*");
3657
- var $L94 = $L("*/");
3658
- var $L95 = $L("\\");
3659
- var $L96 = $L("[");
3660
- var $L97 = $L("`");
3661
- var $L98 = $L("abstract");
3662
- var $L99 = $L("as");
3663
- var $L100 = $L("@");
3664
- var $L101 = $L("@@");
3665
- var $L102 = $L("async");
3666
- var $L103 = $L("await");
3667
- var $L104 = $L("by");
3668
- var $L105 = $L("case");
3669
- var $L106 = $L("catch");
3670
- var $L107 = $L("class");
3671
- var $L108 = $L(")");
3672
- var $L109 = $L("#{");
3673
- var $L110 = $L("declare");
3674
- var $L111 = $L("default");
3675
- var $L112 = $L("delete");
3676
- var $L113 = $L("do");
3677
- var $L114 = $L("..");
3678
- var $L115 = $L("...");
3679
- var $L116 = $L("::");
3680
- var $L117 = $L('"');
3681
- var $L118 = $L("else");
3682
- var $L119 = $L("export");
3683
- var $L120 = $L("extends");
3684
- var $L121 = $L("finally");
3685
- var $L122 = $L("for");
3686
- var $L123 = $L("from");
3687
- var $L124 = $L("function");
3688
- var $L125 = $L("get");
3689
- var $L126 = $L("set");
3690
- var $L127 = $L("if");
3691
- var $L128 = $L("let");
3692
- var $L129 = $L("const");
3693
- var $L130 = $L("loop");
3694
- var $L131 = $L("new");
3695
- var $L132 = $L("<");
3696
- var $L133 = $L("{");
3697
- var $L134 = $L("operator");
3698
- var $L135 = $L("public");
3699
- var $L136 = $L("private");
3700
- var $L137 = $L("protected");
3701
- var $L138 = $L("||>");
3702
- var $L139 = $L("|>=");
3703
- var $L140 = $L("|>");
3704
- var $L141 = $L("readonly");
3705
- var $L142 = $L("return");
3706
- var $L143 = $L("satisfies");
3707
- var $L144 = $L("'");
3708
- var $L145 = $L("static");
3709
- var $L146 = $L("${");
3710
- var $L147 = $L("switch");
3711
- var $L148 = $L("target");
3712
- var $L149 = $L("then");
3713
- var $L150 = $L("this");
3714
- var $L151 = $L("throw");
3715
- var $L152 = $L('"""');
3716
- var $L153 = $L("'''");
3717
- var $L154 = $L("///");
3718
- var $L155 = $L("```");
3719
- var $L156 = $L("try");
3720
- var $L157 = $L("typeof");
3721
- var $L158 = $L("unless");
3722
- var $L159 = $L("until");
3723
- var $L160 = $L("var");
3724
- var $L161 = $L("void");
3725
- var $L162 = $L("when");
3726
- var $L163 = $L("while");
3727
- var $L164 = $L("yield");
3728
- var $L165 = $L("/>");
3729
- var $L166 = $L("</");
3730
- var $L167 = $L("<>");
3731
- var $L168 = $L("</>");
3732
- var $L169 = $L("<!--");
3733
- var $L170 = $L("-->");
3734
- var $L171 = $L("type");
3735
- var $L172 = $L("enum");
3736
- var $L173 = $L("interface");
3737
- var $L174 = $L("global");
3738
- var $L175 = $L("module");
3739
- var $L176 = $L("namespace");
3740
- var $L177 = $L("asserts");
3741
- var $L178 = $L("keyof");
3742
- var $L179 = $L("infer");
3743
- var $L180 = $L("[]");
3744
- var $L181 = $L("civet");
3585
+ var $L9 = $L("\u21D2");
3586
+ var $L10 = $L(" ");
3587
+ var $L11 = $L(":");
3588
+ var $L12 = $L("implements");
3589
+ var $L13 = $L("<:");
3590
+ var $L14 = $L("#");
3591
+ var $L15 = $L("super");
3592
+ var $L16 = $L("import");
3593
+ var $L17 = $L("!");
3594
+ var $L18 = $L("^");
3595
+ var $L19 = $L("-");
3596
+ var $L20 = $L("import.meta");
3597
+ var $L21 = $L("return.value");
3598
+ var $L22 = $L(",");
3599
+ var $L23 = $L("->");
3600
+ var $L24 = $L("\u2192");
3601
+ var $L25 = $L("}");
3602
+ var $L26 = $L("null");
3603
+ var $L27 = $L("true");
3604
+ var $L28 = $L("false");
3605
+ var $L29 = $L("yes");
3606
+ var $L30 = $L("on");
3607
+ var $L31 = $L("no");
3608
+ var $L32 = $L("off");
3609
+ var $L33 = $L(">");
3610
+ var $L34 = $L("]");
3611
+ var $L35 = $L("**=");
3612
+ var $L36 = $L("*=");
3613
+ var $L37 = $L("/=");
3614
+ var $L38 = $L("%=");
3615
+ var $L39 = $L("+=");
3616
+ var $L40 = $L("-=");
3617
+ var $L41 = $L("<<=");
3618
+ var $L42 = $L(">>>=");
3619
+ var $L43 = $L(">>=");
3620
+ var $L44 = $L("&&=");
3621
+ var $L45 = $L("&=");
3622
+ var $L46 = $L("^=");
3623
+ var $L47 = $L("||=");
3624
+ var $L48 = $L("|=");
3625
+ var $L49 = $L("??=");
3626
+ var $L50 = $L("?=");
3627
+ var $L51 = $L("and=");
3628
+ var $L52 = $L("or=");
3629
+ var $L53 = $L("**");
3630
+ var $L54 = $L("*");
3631
+ var $L55 = $L("/");
3632
+ var $L56 = $L("%%");
3633
+ var $L57 = $L("%");
3634
+ var $L58 = $L("+");
3635
+ var $L59 = $L("<=");
3636
+ var $L60 = $L("\u2264");
3637
+ var $L61 = $L(">=");
3638
+ var $L62 = $L("\u2265");
3639
+ var $L63 = $L("<?");
3640
+ var $L64 = $L("!<?");
3641
+ var $L65 = $L("<<");
3642
+ var $L66 = $L("\xAB");
3643
+ var $L67 = $L(">>>");
3644
+ var $L68 = $L("\u22D9");
3645
+ var $L69 = $L(">>");
3646
+ var $L70 = $L("\xBB");
3647
+ var $L71 = $L("!==");
3648
+ var $L72 = $L("\u2262");
3649
+ var $L73 = $L("!=");
3650
+ var $L74 = $L("\u2260");
3651
+ var $L75 = $L("isnt");
3652
+ var $L76 = $L("===");
3653
+ var $L77 = $L("\u2263");
3654
+ var $L78 = $L("\u2A76");
3655
+ var $L79 = $L("==");
3656
+ var $L80 = $L("\u2261");
3657
+ var $L81 = $L("\u2A75");
3658
+ var $L82 = $L("and");
3659
+ var $L83 = $L("&&");
3660
+ var $L84 = $L("of");
3661
+ var $L85 = $L("or");
3662
+ var $L86 = $L("||");
3663
+ var $L87 = $L("\u2016");
3664
+ var $L88 = $L("^^");
3665
+ var $L89 = $L("xor");
3666
+ var $L90 = $L("xnor");
3667
+ var $L91 = $L("??");
3668
+ var $L92 = $L("\u2047");
3669
+ var $L93 = $L("instanceof");
3670
+ var $L94 = $L("\u2208");
3671
+ var $L95 = $L("\u220B");
3672
+ var $L96 = $L("\u220C");
3673
+ var $L97 = $L("\u2209");
3674
+ var $L98 = $L("&");
3675
+ var $L99 = $L("|");
3676
+ var $L100 = $L(";");
3677
+ var $L101 = $L("$:");
3678
+ var $L102 = $L("own");
3679
+ var $L103 = $L("break");
3680
+ var $L104 = $L("continue");
3681
+ var $L105 = $L("debugger");
3682
+ var $L106 = $L("assert");
3683
+ var $L107 = $L(":=");
3684
+ var $L108 = $L("\u2254");
3685
+ var $L109 = $L(".=");
3686
+ var $L110 = $L("/*");
3687
+ var $L111 = $L("*/");
3688
+ var $L112 = $L("\\");
3689
+ var $L113 = $L("[");
3690
+ var $L114 = $L("`");
3691
+ var $L115 = $L("abstract");
3692
+ var $L116 = $L("as");
3693
+ var $L117 = $L("@");
3694
+ var $L118 = $L("@@");
3695
+ var $L119 = $L("async");
3696
+ var $L120 = $L("await");
3697
+ var $L121 = $L("by");
3698
+ var $L122 = $L("case");
3699
+ var $L123 = $L("catch");
3700
+ var $L124 = $L("class");
3701
+ var $L125 = $L(")");
3702
+ var $L126 = $L("#{");
3703
+ var $L127 = $L("declare");
3704
+ var $L128 = $L("default");
3705
+ var $L129 = $L("delete");
3706
+ var $L130 = $L("do");
3707
+ var $L131 = $L("..");
3708
+ var $L132 = $L("\u2025");
3709
+ var $L133 = $L("...");
3710
+ var $L134 = $L("\u2026");
3711
+ var $L135 = $L("::");
3712
+ var $L136 = $L('"');
3713
+ var $L137 = $L("else");
3714
+ var $L138 = $L("export");
3715
+ var $L139 = $L("extends");
3716
+ var $L140 = $L("finally");
3717
+ var $L141 = $L("for");
3718
+ var $L142 = $L("from");
3719
+ var $L143 = $L("function");
3720
+ var $L144 = $L("get");
3721
+ var $L145 = $L("set");
3722
+ var $L146 = $L("if");
3723
+ var $L147 = $L("in");
3724
+ var $L148 = $L("let");
3725
+ var $L149 = $L("const");
3726
+ var $L150 = $L("is");
3727
+ var $L151 = $L("loop");
3728
+ var $L152 = $L("new");
3729
+ var $L153 = $L("not");
3730
+ var $L154 = $L("<");
3731
+ var $L155 = $L("{");
3732
+ var $L156 = $L("operator");
3733
+ var $L157 = $L("public");
3734
+ var $L158 = $L("private");
3735
+ var $L159 = $L("protected");
3736
+ var $L160 = $L("||>");
3737
+ var $L161 = $L("|\u25B7");
3738
+ var $L162 = $L("|>=");
3739
+ var $L163 = $L("\u25B7=");
3740
+ var $L164 = $L("|>");
3741
+ var $L165 = $L("\u25B7");
3742
+ var $L166 = $L("readonly");
3743
+ var $L167 = $L("return");
3744
+ var $L168 = $L("satisfies");
3745
+ var $L169 = $L("'");
3746
+ var $L170 = $L("static");
3747
+ var $L171 = $L("${");
3748
+ var $L172 = $L("switch");
3749
+ var $L173 = $L("target");
3750
+ var $L174 = $L("then");
3751
+ var $L175 = $L("this");
3752
+ var $L176 = $L("throw");
3753
+ var $L177 = $L('"""');
3754
+ var $L178 = $L("'''");
3755
+ var $L179 = $L("///");
3756
+ var $L180 = $L("```");
3757
+ var $L181 = $L("try");
3758
+ var $L182 = $L("typeof");
3759
+ var $L183 = $L("unless");
3760
+ var $L184 = $L("until");
3761
+ var $L185 = $L("var");
3762
+ var $L186 = $L("void");
3763
+ var $L187 = $L("when");
3764
+ var $L188 = $L("while");
3765
+ var $L189 = $L("yield");
3766
+ var $L190 = $L("/>");
3767
+ var $L191 = $L("</");
3768
+ var $L192 = $L("<>");
3769
+ var $L193 = $L("</>");
3770
+ var $L194 = $L("<!--");
3771
+ var $L195 = $L("-->");
3772
+ var $L196 = $L("type");
3773
+ var $L197 = $L("enum");
3774
+ var $L198 = $L("interface");
3775
+ var $L199 = $L("global");
3776
+ var $L200 = $L("module");
3777
+ var $L201 = $L("namespace");
3778
+ var $L202 = $L("asserts");
3779
+ var $L203 = $L("keyof");
3780
+ var $L204 = $L("infer");
3781
+ var $L205 = $L("[]");
3782
+ var $L206 = $L("civet");
3745
3783
  var $R0 = $R(new RegExp("(as|of|satisfies|then|when|implements|xor|xnor)(?!\\p{ID_Continue}|[\\u200C\\u200D$])", "suy"));
3746
3784
  var $R1 = $R(new RegExp("[0-9]", "suy"));
3747
3785
  var $R2 = $R(new RegExp("[)}]", "suy"));
@@ -4270,8 +4308,15 @@ ${input.slice(result.pos)}
4270
4308
  var ForbiddenImplicitCalls$2 = $S(ClassImplicitCallForbidden, $C(Class, AtAt));
4271
4309
  var ForbiddenImplicitCalls$3 = $S(Identifier, $EXPECT($L2, fail, 'ForbiddenImplicitCalls "="'), Whitespace);
4272
4310
  var ForbiddenImplicitCalls$4 = $TS($S(Identifier, $N($EXPECT($L3, fail, 'ForbiddenImplicitCalls "("'))), function($skip, $loc, $0, $1, $2) {
4273
- if (module.operators.has($1.name))
4274
- return $1;
4311
+ var id = $1;
4312
+ if (module.operators.has(id.name))
4313
+ return $0;
4314
+ return $skip;
4315
+ });
4316
+ var ForbiddenImplicitCalls$5 = $TS($S(Not, $E(_), Identifier), function($skip, $loc, $0, $1, $2, $3) {
4317
+ var id = $3;
4318
+ if (module.operators.has(id.name))
4319
+ return $0;
4275
4320
  return $skip;
4276
4321
  });
4277
4322
  function ForbiddenImplicitCalls(state) {
@@ -4285,12 +4330,12 @@ ${input.slice(result.pos)}
4285
4330
  }
4286
4331
  }
4287
4332
  if (state.tokenize) {
4288
- const result = $TOKEN("ForbiddenImplicitCalls", state, ForbiddenImplicitCalls$0(state) || ForbiddenImplicitCalls$1(state) || ForbiddenImplicitCalls$2(state) || ForbiddenImplicitCalls$3(state) || ForbiddenImplicitCalls$4(state));
4333
+ const result = $TOKEN("ForbiddenImplicitCalls", state, ForbiddenImplicitCalls$0(state) || ForbiddenImplicitCalls$1(state) || ForbiddenImplicitCalls$2(state) || ForbiddenImplicitCalls$3(state) || ForbiddenImplicitCalls$4(state) || ForbiddenImplicitCalls$5(state));
4289
4334
  if (state.events)
4290
4335
  state.events.exit?.("ForbiddenImplicitCalls", state, result, eventData);
4291
4336
  return result;
4292
4337
  } else {
4293
- const result = ForbiddenImplicitCalls$0(state) || ForbiddenImplicitCalls$1(state) || ForbiddenImplicitCalls$2(state) || ForbiddenImplicitCalls$3(state) || ForbiddenImplicitCalls$4(state);
4338
+ const result = ForbiddenImplicitCalls$0(state) || ForbiddenImplicitCalls$1(state) || ForbiddenImplicitCalls$2(state) || ForbiddenImplicitCalls$3(state) || ForbiddenImplicitCalls$4(state) || ForbiddenImplicitCalls$5(state);
4294
4339
  if (state.events)
4295
4340
  state.events.exit?.("ForbiddenImplicitCalls", state, result, eventData);
4296
4341
  return result;
@@ -5097,11 +5142,11 @@ ${input.slice(result.pos)}
5097
5142
  return result;
5098
5143
  }
5099
5144
  }
5100
- var FatArrow$0 = $TS($S($E(_), $EXPECT($L8, fail, 'FatArrow "=>"')), function($skip, $loc, $0, $1, $2) {
5145
+ var FatArrow$0 = $TS($S($E(_), $C($EXPECT($L8, fail, 'FatArrow "=>"'), $EXPECT($L9, fail, 'FatArrow "\u21D2"'))), function($skip, $loc, $0, $1, $2) {
5101
5146
  var ws = $1;
5102
5147
  if (!ws)
5103
5148
  return " =>";
5104
- return $0;
5149
+ return [$1, "=>"];
5105
5150
  });
5106
5151
  function FatArrow(state) {
5107
5152
  let eventData;
@@ -5181,7 +5226,7 @@ ${input.slice(result.pos)}
5181
5226
  }
5182
5227
  }
5183
5228
  var TernaryRest$0 = NestedTernaryRest;
5184
- 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) {
5229
+ 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) {
5185
5230
  return $0.slice(2);
5186
5231
  });
5187
5232
  function TernaryRest(state) {
@@ -5451,7 +5496,7 @@ ${input.slice(result.pos)}
5451
5496
  return result;
5452
5497
  }
5453
5498
  }
5454
- var ClassExpression$0 = $S($E(Decorators), $E($S(Abstract, __)), Class, $N($EXPECT($L10, fail, 'ClassExpression ":"')), $E(ClassBinding), $E(ClassHeritage), ClassBody);
5499
+ var ClassExpression$0 = $S($E(Decorators), $E($S(Abstract, __)), Class, $N($EXPECT($L11, fail, 'ClassExpression ":"')), $E(ClassBinding), $E(ClassHeritage), ClassBody);
5455
5500
  function ClassExpression(state) {
5456
5501
  let eventData;
5457
5502
  if (state.events) {
@@ -5546,7 +5591,7 @@ ${input.slice(result.pos)}
5546
5591
  return result;
5547
5592
  }
5548
5593
  }
5549
- var ExtendsToken$0 = $TS($S(Loc, __, OpenAngleBracket, $E($EXPECT($L9, fail, 'ExtendsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5594
+ var ExtendsToken$0 = $TS($S(Loc, __, OpenAngleBracket, $E($EXPECT($L10, fail, 'ExtendsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5550
5595
  var l = $1;
5551
5596
  var ws = $2;
5552
5597
  var lt = $3;
@@ -5640,7 +5685,7 @@ ${input.slice(result.pos)}
5640
5685
  return result;
5641
5686
  }
5642
5687
  }
5643
- var ImplementsToken$0 = $TS($S(Loc, __, ImplementsShorthand, $E($EXPECT($L9, fail, 'ImplementsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5688
+ var ImplementsToken$0 = $TS($S(Loc, __, ImplementsShorthand, $E($EXPECT($L10, fail, 'ImplementsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5644
5689
  var l = $1;
5645
5690
  var ws = $2;
5646
5691
  var token = $3;
@@ -5650,7 +5695,7 @@ ${input.slice(result.pos)}
5650
5695
  }
5651
5696
  return { children };
5652
5697
  });
5653
- var ImplementsToken$1 = $TS($S(__, $EXPECT($L11, fail, 'ImplementsToken "implements"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
5698
+ var ImplementsToken$1 = $TS($S(__, $EXPECT($L12, fail, 'ImplementsToken "implements"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
5654
5699
  $2 = { $loc, token: $2 };
5655
5700
  return [$1, $2];
5656
5701
  });
@@ -5676,7 +5721,7 @@ ${input.slice(result.pos)}
5676
5721
  return result;
5677
5722
  }
5678
5723
  }
5679
- var ImplementsShorthand$0 = $TV($EXPECT($L12, fail, 'ImplementsShorthand "<:"'), function($skip, $loc, $0, $1) {
5724
+ var ImplementsShorthand$0 = $TV($EXPECT($L13, fail, 'ImplementsShorthand "<:"'), function($skip, $loc, $0, $1) {
5680
5725
  return { $loc, token: "implements " };
5681
5726
  });
5682
5727
  function ImplementsShorthand(state) {
@@ -6090,7 +6135,7 @@ ${input.slice(result.pos)}
6090
6135
  }
6091
6136
  }
6092
6137
  var ThisLiteral$0 = This;
6093
- var ThisLiteral$1 = $TS($S(AtThis, $TEXT($S($E($EXPECT($L13, fail, 'ThisLiteral "#"')), IdentifierName))), function($skip, $loc, $0, $1, $2) {
6138
+ var ThisLiteral$1 = $TS($S(AtThis, $TEXT($S($E($EXPECT($L14, fail, 'ThisLiteral "#"')), IdentifierName))), function($skip, $loc, $0, $1, $2) {
6094
6139
  var at = $1;
6095
6140
  var id = $2;
6096
6141
  return [at, ".", id];
@@ -6144,7 +6189,7 @@ ${input.slice(result.pos)}
6144
6189
  return result;
6145
6190
  }
6146
6191
  }
6147
- var LeftHandSideExpression$0 = $S($P($S(New, $N($C($EXPECT($L5, fail, 'LeftHandSideExpression "."'), $EXPECT($L10, fail, 'LeftHandSideExpression ":"'))), __)), CallExpression, $E(TypeArguments));
6192
+ var LeftHandSideExpression$0 = $S($P($S(New, $N($C($EXPECT($L5, fail, 'LeftHandSideExpression "."'), $EXPECT($L11, fail, 'LeftHandSideExpression ":"'))), __)), CallExpression, $E(TypeArguments));
6148
6193
  var LeftHandSideExpression$1 = CallExpression;
6149
6194
  function LeftHandSideExpression(state) {
6150
6195
  let eventData;
@@ -6168,14 +6213,14 @@ ${input.slice(result.pos)}
6168
6213
  return result;
6169
6214
  }
6170
6215
  }
6171
- var CallExpression$0 = $TS($S($EXPECT($L14, fail, 'CallExpression "super"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6216
+ var CallExpression$0 = $TS($S($EXPECT($L15, fail, 'CallExpression "super"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6172
6217
  var rest = $3;
6173
6218
  return processCallMemberExpression({
6174
6219
  type: "CallExpression",
6175
6220
  children: [$1, ...$2, ...rest.flat()]
6176
6221
  });
6177
6222
  });
6178
- var CallExpression$1 = $TS($S($EXPECT($L15, fail, 'CallExpression "import"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6223
+ var CallExpression$1 = $TS($S($EXPECT($L16, fail, 'CallExpression "import"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6179
6224
  var rest = $3;
6180
6225
  return processCallMemberExpression({
6181
6226
  type: "CallExpression",
@@ -6303,7 +6348,7 @@ ${input.slice(result.pos)}
6303
6348
  return result;
6304
6349
  }
6305
6350
  }
6306
- var NonNullAssertion$0 = $T($S($EXPECT($L16, fail, 'NonNullAssertion "!"'), $N($EXPECT($L17, fail, 'NonNullAssertion "^"'))), function(value) {
6351
+ var NonNullAssertion$0 = $T($S($EXPECT($L17, fail, 'NonNullAssertion "!"'), $N($EXPECT($L18, fail, 'NonNullAssertion "^"'))), function(value) {
6307
6352
  return { "type": "NonNullAssertion", "ts": true, "children": value[0] };
6308
6353
  });
6309
6354
  function NonNullAssertion(state) {
@@ -6443,7 +6488,7 @@ ${input.slice(result.pos)}
6443
6488
  ]
6444
6489
  };
6445
6490
  });
6446
- var MemberBracketContent$3 = $TS($S(Dot, $EXPECT($L18, fail, 'MemberBracketContent "-"'), IntegerLiteral), function($skip, $loc, $0, $1, $2, $3) {
6491
+ var MemberBracketContent$3 = $TS($S(Dot, $EXPECT($L19, fail, 'MemberBracketContent "-"'), IntegerLiteral), function($skip, $loc, $0, $1, $2, $3) {
6447
6492
  var dot = $1;
6448
6493
  var neg = $2;
6449
6494
  var num = $3;
@@ -6663,8 +6708,8 @@ ${input.slice(result.pos)}
6663
6708
  return result;
6664
6709
  }
6665
6710
  }
6666
- var SuperProperty$0 = $S($EXPECT($L14, fail, 'SuperProperty "super"'), MemberBracketContent);
6667
- var SuperProperty$1 = $S($EXPECT($L14, fail, 'SuperProperty "super"'), $N($C(QuestionMark, NonNullAssertion)), PropertyAccess);
6711
+ var SuperProperty$0 = $S($EXPECT($L15, fail, 'SuperProperty "super"'), MemberBracketContent);
6712
+ var SuperProperty$1 = $S($EXPECT($L15, fail, 'SuperProperty "super"'), $N($C(QuestionMark, NonNullAssertion)), PropertyAccess);
6668
6713
  function SuperProperty(state) {
6669
6714
  let eventData;
6670
6715
  if (state.events) {
@@ -6688,7 +6733,7 @@ ${input.slice(result.pos)}
6688
6733
  }
6689
6734
  }
6690
6735
  var MetaProperty$0 = $S(New, Dot, Target);
6691
- var MetaProperty$1 = $TS($S($EXPECT($L19, fail, 'MetaProperty "import.meta"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
6736
+ var MetaProperty$1 = $TS($S($EXPECT($L20, fail, 'MetaProperty "import.meta"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
6692
6737
  return { $loc, token: $1 };
6693
6738
  });
6694
6739
  var MetaProperty$2 = ReturnValue;
@@ -6714,7 +6759,7 @@ ${input.slice(result.pos)}
6714
6759
  return result;
6715
6760
  }
6716
6761
  }
6717
- var ReturnValue$0 = $TV($C($S($EXPECT($L20, fail, 'ReturnValue "return.value"'), NonIdContinue), $S(Return, $Y(AfterReturnShorthand))), function($skip, $loc, $0, $1) {
6762
+ var ReturnValue$0 = $TV($C($S($EXPECT($L21, fail, 'ReturnValue "return.value"'), NonIdContinue), $S(Return, $Y(AfterReturnShorthand))), function($skip, $loc, $0, $1) {
6718
6763
  return { type: "ReturnValue", children: [$1[0]] };
6719
6764
  });
6720
6765
  function ReturnValue(state) {
@@ -7050,7 +7095,7 @@ ${input.slice(result.pos)}
7050
7095
  return result;
7051
7096
  }
7052
7097
  }
7053
- var PinPattern$0 = $TS($S($EXPECT($L17, fail, 'PinPattern "^"'), Identifier), function($skip, $loc, $0, $1, $2) {
7098
+ var PinPattern$0 = $TS($S($EXPECT($L18, fail, 'PinPattern "^"'), Identifier), function($skip, $loc, $0, $1, $2) {
7054
7099
  var identifier = $2;
7055
7100
  return {
7056
7101
  type: "PinPattern",
@@ -7423,7 +7468,7 @@ ${input.slice(result.pos)}
7423
7468
  names: value.names
7424
7469
  };
7425
7470
  });
7426
- var BindingProperty$2 = $TS($S($E(_), $E($EXPECT($L17, fail, 'BindingProperty "^"')), BindingIdentifier, $E(Initializer)), function($skip, $loc, $0, $1, $2, $3, $4) {
7471
+ var BindingProperty$2 = $TS($S($E(_), $E($EXPECT($L18, fail, 'BindingProperty "^"')), BindingIdentifier, $E(Initializer)), function($skip, $loc, $0, $1, $2, $3, $4) {
7427
7472
  var ws = $1;
7428
7473
  var pin = $2;
7429
7474
  var binding = $3;
@@ -7597,7 +7642,7 @@ ${input.slice(result.pos)}
7597
7642
  children: [ws, binding]
7598
7643
  };
7599
7644
  });
7600
- var BindingElement$2 = $TV($Y($S($E(_), $EXPECT($L21, fail, 'BindingElement ","'))), function($skip, $loc, $0, $1) {
7645
+ var BindingElement$2 = $TV($Y($S($E(_), $EXPECT($L22, fail, 'BindingElement ","'))), function($skip, $loc, $0, $1) {
7601
7646
  return {
7602
7647
  children: [{
7603
7648
  type: "ElisionElement",
@@ -8135,8 +8180,8 @@ ${input.slice(result.pos)}
8135
8180
  return result;
8136
8181
  }
8137
8182
  }
8138
- var Arrow$0 = $TV($EXPECT($L22, fail, 'Arrow "->"'), function($skip, $loc, $0, $1) {
8139
- return { $loc, token: $1 };
8183
+ var Arrow$0 = $TV($C($EXPECT($L23, fail, 'Arrow "->"'), $EXPECT($L24, fail, 'Arrow "\u2192"')), function($skip, $loc, $0, $1) {
8184
+ return { $loc, token: "->" };
8140
8185
  });
8141
8186
  function Arrow(state) {
8142
8187
  let eventData;
@@ -8601,7 +8646,7 @@ ${input.slice(result.pos)}
8601
8646
  children: [$1, expressions]
8602
8647
  };
8603
8648
  });
8604
- var BracedContent$2 = $TV($Y($S(__, $EXPECT($L23, fail, 'BracedContent "}"'))), function($skip, $loc, $0, $1) {
8649
+ var BracedContent$2 = $TV($Y($S(__, $EXPECT($L25, fail, 'BracedContent "}"'))), function($skip, $loc, $0, $1) {
8605
8650
  const expressions = [];
8606
8651
  return {
8607
8652
  type: "BlockStatement",
@@ -8782,7 +8827,7 @@ ${input.slice(result.pos)}
8782
8827
  return result;
8783
8828
  }
8784
8829
  }
8785
- var NullLiteral$0 = $TS($S($EXPECT($L24, fail, 'NullLiteral "null"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8830
+ var NullLiteral$0 = $TS($S($EXPECT($L26, fail, 'NullLiteral "null"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8786
8831
  return { $loc, token: $1 };
8787
8832
  });
8788
8833
  function NullLiteral(state) {
@@ -8810,7 +8855,7 @@ ${input.slice(result.pos)}
8810
8855
  var BooleanLiteral$0 = $T($S(CoffeeBooleansEnabled, CoffeeScriptBooleanLiteral), function(value) {
8811
8856
  return value[1];
8812
8857
  });
8813
- var BooleanLiteral$1 = $TS($S($C($EXPECT($L25, fail, 'BooleanLiteral "true"'), $EXPECT($L26, fail, 'BooleanLiteral "false"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8858
+ var BooleanLiteral$1 = $TS($S($C($EXPECT($L27, fail, 'BooleanLiteral "true"'), $EXPECT($L28, fail, 'BooleanLiteral "false"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8814
8859
  return { $loc, token: $1 };
8815
8860
  });
8816
8861
  function BooleanLiteral(state) {
@@ -8835,10 +8880,10 @@ ${input.slice(result.pos)}
8835
8880
  return result;
8836
8881
  }
8837
8882
  }
8838
- var CoffeeScriptBooleanLiteral$0 = $TS($S($C($EXPECT($L27, fail, 'CoffeeScriptBooleanLiteral "yes"'), $EXPECT($L28, fail, 'CoffeeScriptBooleanLiteral "on"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8883
+ var CoffeeScriptBooleanLiteral$0 = $TS($S($C($EXPECT($L29, fail, 'CoffeeScriptBooleanLiteral "yes"'), $EXPECT($L30, fail, 'CoffeeScriptBooleanLiteral "on"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8839
8884
  return { $loc, token: "true" };
8840
8885
  });
8841
- var CoffeeScriptBooleanLiteral$1 = $TS($S($C($EXPECT($L29, fail, 'CoffeeScriptBooleanLiteral "no"'), $EXPECT($L30, fail, 'CoffeeScriptBooleanLiteral "off"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8886
+ var CoffeeScriptBooleanLiteral$1 = $TS($S($C($EXPECT($L31, fail, 'CoffeeScriptBooleanLiteral "no"'), $EXPECT($L32, fail, 'CoffeeScriptBooleanLiteral "off"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8842
8887
  return { $loc, token: "false" };
8843
8888
  });
8844
8889
  function CoffeeScriptBooleanLiteral(state) {
@@ -8944,7 +8989,7 @@ ${input.slice(result.pos)}
8944
8989
  return result;
8945
8990
  }
8946
8991
  }
8947
- var UpcomingAssignment$0 = $Y($S(__, $EXPECT($L2, fail, 'UpcomingAssignment "="'), $N($C($EXPECT($L2, fail, 'UpcomingAssignment "="'), $EXPECT($L31, fail, 'UpcomingAssignment ">"')))));
8992
+ var UpcomingAssignment$0 = $Y($S(__, $EXPECT($L2, fail, 'UpcomingAssignment "="'), $N($C($EXPECT($L2, fail, 'UpcomingAssignment "="'), $EXPECT($L33, fail, 'UpcomingAssignment ">"')))));
8948
8993
  function UpcomingAssignment(state) {
8949
8994
  let eventData;
8950
8995
  if (state.events) {
@@ -9210,7 +9255,7 @@ ${input.slice(result.pos)}
9210
9255
  }
9211
9256
  }
9212
9257
  var ArrayElementDelimiter$0 = $S(__, Comma);
9213
- var ArrayElementDelimiter$1 = $Y($S(__, $EXPECT($L32, fail, 'ArrayElementDelimiter "]"')));
9258
+ var ArrayElementDelimiter$1 = $Y($S(__, $EXPECT($L34, fail, 'ArrayElementDelimiter "]"')));
9214
9259
  var ArrayElementDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
9215
9260
  return value[1];
9216
9261
  });
@@ -9690,7 +9735,7 @@ ${input.slice(result.pos)}
9690
9735
  }
9691
9736
  }
9692
9737
  var ObjectPropertyDelimiter$0 = $S($E(_), Comma);
9693
- var ObjectPropertyDelimiter$1 = $Y($S(__, $EXPECT($L23, fail, 'ObjectPropertyDelimiter "}"')));
9738
+ var ObjectPropertyDelimiter$1 = $Y($S(__, $EXPECT($L25, fail, 'ObjectPropertyDelimiter "}"')));
9694
9739
  var ObjectPropertyDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
9695
9740
  return value[1];
9696
9741
  });
@@ -10022,7 +10067,7 @@ ${input.slice(result.pos)}
10022
10067
  expression
10023
10068
  };
10024
10069
  });
10025
- var ComputedPropertyName$2 = $TS($S(InsertOpenBracket, $EXPECT($L18, fail, 'ComputedPropertyName "-"'), NumericLiteral, InsertCloseBracket), function($skip, $loc, $0, $1, $2, $3, $4) {
10070
+ var ComputedPropertyName$2 = $TS($S(InsertOpenBracket, $EXPECT($L19, fail, 'ComputedPropertyName "-"'), NumericLiteral, InsertCloseBracket), function($skip, $loc, $0, $1, $2, $3, $4) {
10026
10071
  return {
10027
10072
  type: "ComputedPropertyName",
10028
10073
  children: $0
@@ -10239,20 +10284,24 @@ ${input.slice(result.pos)}
10239
10284
  parameters
10240
10285
  };
10241
10286
  });
10242
- var MethodSignature$1 = $TS($S($E(MethodModifier), ClassElementName, $E(_), NonEmptyParameters, $E(ReturnTypeSuffix)), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
10287
+ 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) {
10243
10288
  var modifier = $1;
10244
10289
  var name = $2;
10245
- var parameters = $4;
10246
- var returnType = $5;
10290
+ var optional = $4;
10291
+ var parameters = $6;
10292
+ var returnType = $7;
10247
10293
  if (name.name) {
10248
10294
  name = name.name;
10249
10295
  } else if (name.token) {
10250
10296
  name = name.token.match(/^(?:"|')/) ? name.token.slice(1, -1) : name.token;
10251
10297
  }
10298
+ if (optional)
10299
+ $0[3] = optional = { ...optional, ts: true };
10252
10300
  return {
10253
10301
  type: "MethodSignature",
10254
10302
  children: $0,
10255
10303
  name,
10304
+ optional,
10256
10305
  modifier,
10257
10306
  returnType,
10258
10307
  parameters
@@ -10304,7 +10353,7 @@ ${input.slice(result.pos)}
10304
10353
  return result;
10305
10354
  }
10306
10355
  }
10307
- var PrivateIdentifier$0 = $TV($TEXT($S($EXPECT($L13, fail, 'PrivateIdentifier "#"'), IdentifierName)), function($skip, $loc, $0, $1) {
10356
+ var PrivateIdentifier$0 = $TV($TEXT($S($EXPECT($L14, fail, 'PrivateIdentifier "#"'), IdentifierName)), function($skip, $loc, $0, $1) {
10308
10357
  return {
10309
10358
  type: "Identifier",
10310
10359
  name: $0,
@@ -10435,22 +10484,22 @@ ${input.slice(result.pos)}
10435
10484
  return result;
10436
10485
  }
10437
10486
  }
10438
- var AssignmentOpSymbol$0 = $EXPECT($L33, fail, 'AssignmentOpSymbol "**="');
10439
- var AssignmentOpSymbol$1 = $EXPECT($L34, fail, 'AssignmentOpSymbol "*="');
10440
- var AssignmentOpSymbol$2 = $EXPECT($L35, fail, 'AssignmentOpSymbol "/="');
10441
- var AssignmentOpSymbol$3 = $EXPECT($L36, fail, 'AssignmentOpSymbol "%="');
10442
- var AssignmentOpSymbol$4 = $EXPECT($L37, fail, 'AssignmentOpSymbol "+="');
10443
- var AssignmentOpSymbol$5 = $EXPECT($L38, fail, 'AssignmentOpSymbol "-="');
10444
- var AssignmentOpSymbol$6 = $EXPECT($L39, fail, 'AssignmentOpSymbol "<<="');
10445
- var AssignmentOpSymbol$7 = $EXPECT($L40, fail, 'AssignmentOpSymbol ">>>="');
10446
- var AssignmentOpSymbol$8 = $EXPECT($L41, fail, 'AssignmentOpSymbol ">>="');
10447
- var AssignmentOpSymbol$9 = $EXPECT($L42, fail, 'AssignmentOpSymbol "&&="');
10448
- var AssignmentOpSymbol$10 = $EXPECT($L43, fail, 'AssignmentOpSymbol "&="');
10449
- var AssignmentOpSymbol$11 = $EXPECT($L44, fail, 'AssignmentOpSymbol "^="');
10450
- var AssignmentOpSymbol$12 = $EXPECT($L45, fail, 'AssignmentOpSymbol "||="');
10451
- var AssignmentOpSymbol$13 = $EXPECT($L46, fail, 'AssignmentOpSymbol "|="');
10452
- var AssignmentOpSymbol$14 = $EXPECT($L47, fail, 'AssignmentOpSymbol "??="');
10453
- var AssignmentOpSymbol$15 = $T($EXPECT($L48, fail, 'AssignmentOpSymbol "?="'), function(value) {
10487
+ var AssignmentOpSymbol$0 = $EXPECT($L35, fail, 'AssignmentOpSymbol "**="');
10488
+ var AssignmentOpSymbol$1 = $EXPECT($L36, fail, 'AssignmentOpSymbol "*="');
10489
+ var AssignmentOpSymbol$2 = $EXPECT($L37, fail, 'AssignmentOpSymbol "/="');
10490
+ var AssignmentOpSymbol$3 = $EXPECT($L38, fail, 'AssignmentOpSymbol "%="');
10491
+ var AssignmentOpSymbol$4 = $EXPECT($L39, fail, 'AssignmentOpSymbol "+="');
10492
+ var AssignmentOpSymbol$5 = $EXPECT($L40, fail, 'AssignmentOpSymbol "-="');
10493
+ var AssignmentOpSymbol$6 = $EXPECT($L41, fail, 'AssignmentOpSymbol "<<="');
10494
+ var AssignmentOpSymbol$7 = $EXPECT($L42, fail, 'AssignmentOpSymbol ">>>="');
10495
+ var AssignmentOpSymbol$8 = $EXPECT($L43, fail, 'AssignmentOpSymbol ">>="');
10496
+ var AssignmentOpSymbol$9 = $EXPECT($L44, fail, 'AssignmentOpSymbol "&&="');
10497
+ var AssignmentOpSymbol$10 = $EXPECT($L45, fail, 'AssignmentOpSymbol "&="');
10498
+ var AssignmentOpSymbol$11 = $EXPECT($L46, fail, 'AssignmentOpSymbol "^="');
10499
+ var AssignmentOpSymbol$12 = $EXPECT($L47, fail, 'AssignmentOpSymbol "||="');
10500
+ var AssignmentOpSymbol$13 = $EXPECT($L48, fail, 'AssignmentOpSymbol "|="');
10501
+ var AssignmentOpSymbol$14 = $EXPECT($L49, fail, 'AssignmentOpSymbol "??="');
10502
+ var AssignmentOpSymbol$15 = $T($EXPECT($L50, fail, 'AssignmentOpSymbol "?="'), function(value) {
10454
10503
  return "??=";
10455
10504
  });
10456
10505
  var AssignmentOpSymbol$16 = $T($S($EXPECT($L2, fail, 'AssignmentOpSymbol "="'), $N($EXPECT($L2, fail, 'AssignmentOpSymbol "="'))), function(value) {
@@ -10481,10 +10530,10 @@ ${input.slice(result.pos)}
10481
10530
  return result;
10482
10531
  }
10483
10532
  }
10484
- var CoffeeWordAssignmentOp$0 = $T($EXPECT($L49, fail, 'CoffeeWordAssignmentOp "and="'), function(value) {
10533
+ var CoffeeWordAssignmentOp$0 = $T($EXPECT($L51, fail, 'CoffeeWordAssignmentOp "and="'), function(value) {
10485
10534
  return "&&=";
10486
10535
  });
10487
- var CoffeeWordAssignmentOp$1 = $T($EXPECT($L50, fail, 'CoffeeWordAssignmentOp "or="'), function(value) {
10536
+ var CoffeeWordAssignmentOp$1 = $T($EXPECT($L52, fail, 'CoffeeWordAssignmentOp "or="'), function(value) {
10488
10537
  return "||=";
10489
10538
  });
10490
10539
  function CoffeeWordAssignmentOp(state) {
@@ -10523,8 +10572,8 @@ ${input.slice(result.pos)}
10523
10572
  special: true
10524
10573
  };
10525
10574
  });
10526
- var BinaryOp$2 = $TS($S($EXPECT($L51, fail, 'BinaryOp "not"'), NonIdContinue, __, Identifier), function($skip, $loc, $0, $1, $2, $3, $4) {
10527
- var id = $4;
10575
+ var BinaryOp$2 = $TS($S(Not, __, Identifier), function($skip, $loc, $0, $1, $2, $3) {
10576
+ var id = $3;
10528
10577
  if (!module.operators.has(id.name))
10529
10578
  return $skip;
10530
10579
  return {
@@ -10555,21 +10604,27 @@ ${input.slice(result.pos)}
10555
10604
  return result;
10556
10605
  }
10557
10606
  }
10558
- var BinaryOpSymbol$0 = $EXPECT($L52, fail, 'BinaryOpSymbol "**"');
10559
- var BinaryOpSymbol$1 = $EXPECT($L53, fail, 'BinaryOpSymbol "*"');
10560
- var BinaryOpSymbol$2 = $EXPECT($L54, fail, 'BinaryOpSymbol "/"');
10561
- var BinaryOpSymbol$3 = $TV($EXPECT($L55, fail, 'BinaryOpSymbol "%%"'), function($skip, $loc, $0, $1) {
10607
+ var BinaryOpSymbol$0 = $EXPECT($L53, fail, 'BinaryOpSymbol "**"');
10608
+ var BinaryOpSymbol$1 = $EXPECT($L54, fail, 'BinaryOpSymbol "*"');
10609
+ var BinaryOpSymbol$2 = $EXPECT($L55, fail, 'BinaryOpSymbol "/"');
10610
+ var BinaryOpSymbol$3 = $TV($EXPECT($L56, fail, 'BinaryOpSymbol "%%"'), function($skip, $loc, $0, $1) {
10562
10611
  return {
10563
10612
  call: module.getRef("modulo"),
10564
10613
  special: true
10565
10614
  };
10566
10615
  });
10567
- var BinaryOpSymbol$4 = $EXPECT($L56, fail, 'BinaryOpSymbol "%"');
10568
- var BinaryOpSymbol$5 = $EXPECT($L57, fail, 'BinaryOpSymbol "+"');
10569
- var BinaryOpSymbol$6 = $EXPECT($L18, fail, 'BinaryOpSymbol "-"');
10570
- var BinaryOpSymbol$7 = $EXPECT($L58, fail, 'BinaryOpSymbol "<="');
10571
- var BinaryOpSymbol$8 = $EXPECT($L59, fail, 'BinaryOpSymbol ">="');
10572
- var BinaryOpSymbol$9 = $TV($EXPECT($L60, fail, 'BinaryOpSymbol "<?"'), function($skip, $loc, $0, $1) {
10616
+ var BinaryOpSymbol$4 = $EXPECT($L57, fail, 'BinaryOpSymbol "%"');
10617
+ var BinaryOpSymbol$5 = $EXPECT($L58, fail, 'BinaryOpSymbol "+"');
10618
+ var BinaryOpSymbol$6 = $EXPECT($L19, fail, 'BinaryOpSymbol "-"');
10619
+ var BinaryOpSymbol$7 = $EXPECT($L59, fail, 'BinaryOpSymbol "<="');
10620
+ var BinaryOpSymbol$8 = $T($EXPECT($L60, fail, 'BinaryOpSymbol "\u2264"'), function(value) {
10621
+ return "<=";
10622
+ });
10623
+ var BinaryOpSymbol$9 = $EXPECT($L61, fail, 'BinaryOpSymbol ">="');
10624
+ var BinaryOpSymbol$10 = $T($EXPECT($L62, fail, 'BinaryOpSymbol "\u2265"'), function(value) {
10625
+ return ">=";
10626
+ });
10627
+ var BinaryOpSymbol$11 = $TV($EXPECT($L63, fail, 'BinaryOpSymbol "<?"'), function($skip, $loc, $0, $1) {
10573
10628
  return {
10574
10629
  $loc,
10575
10630
  token: "instanceof",
@@ -10577,7 +10632,7 @@ ${input.slice(result.pos)}
10577
10632
  special: true
10578
10633
  };
10579
10634
  });
10580
- var BinaryOpSymbol$10 = $TV($EXPECT($L61, fail, 'BinaryOpSymbol "!<?"'), function($skip, $loc, $0, $1) {
10635
+ var BinaryOpSymbol$12 = $TV($EXPECT($L64, fail, 'BinaryOpSymbol "!<?"'), function($skip, $loc, $0, $1) {
10581
10636
  return {
10582
10637
  $loc,
10583
10638
  token: "instanceof",
@@ -10586,58 +10641,79 @@ ${input.slice(result.pos)}
10586
10641
  negated: true
10587
10642
  };
10588
10643
  });
10589
- var BinaryOpSymbol$11 = $EXPECT($L62, fail, 'BinaryOpSymbol "<<"');
10590
- var BinaryOpSymbol$12 = $TR($EXPECT($R7, fail, "BinaryOpSymbol /<(?!\\p{ID_Start}|[_$])/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10644
+ var BinaryOpSymbol$13 = $EXPECT($L65, fail, 'BinaryOpSymbol "<<"');
10645
+ var BinaryOpSymbol$14 = $T($EXPECT($L66, fail, 'BinaryOpSymbol "\xAB"'), function(value) {
10646
+ return "<<";
10647
+ });
10648
+ var BinaryOpSymbol$15 = $TR($EXPECT($R7, fail, "BinaryOpSymbol /<(?!\\p{ID_Start}|[_$])/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10591
10649
  return "<";
10592
10650
  });
10593
- var BinaryOpSymbol$13 = $EXPECT($L63, fail, 'BinaryOpSymbol ">>>"');
10594
- var BinaryOpSymbol$14 = $EXPECT($L64, fail, 'BinaryOpSymbol ">>"');
10595
- var BinaryOpSymbol$15 = $EXPECT($L31, fail, 'BinaryOpSymbol ">"');
10596
- var BinaryOpSymbol$16 = $EXPECT($L65, fail, 'BinaryOpSymbol "!=="');
10597
- var BinaryOpSymbol$17 = $TV($EXPECT($L66, fail, 'BinaryOpSymbol "!="'), function($skip, $loc, $0, $1) {
10651
+ var BinaryOpSymbol$16 = $EXPECT($L67, fail, 'BinaryOpSymbol ">>>"');
10652
+ var BinaryOpSymbol$17 = $T($EXPECT($L68, fail, 'BinaryOpSymbol "\u22D9"'), function(value) {
10653
+ return ">>>";
10654
+ });
10655
+ var BinaryOpSymbol$18 = $EXPECT($L69, fail, 'BinaryOpSymbol ">>"');
10656
+ var BinaryOpSymbol$19 = $T($EXPECT($L70, fail, 'BinaryOpSymbol "\xBB"'), function(value) {
10657
+ return ">>";
10658
+ });
10659
+ var BinaryOpSymbol$20 = $EXPECT($L33, fail, 'BinaryOpSymbol ">"');
10660
+ var BinaryOpSymbol$21 = $EXPECT($L71, fail, 'BinaryOpSymbol "!=="');
10661
+ var BinaryOpSymbol$22 = $T($EXPECT($L72, fail, 'BinaryOpSymbol "\u2262"'), function(value) {
10662
+ return "!==";
10663
+ });
10664
+ var BinaryOpSymbol$23 = $TV($C($EXPECT($L73, fail, 'BinaryOpSymbol "!="'), $EXPECT($L74, fail, 'BinaryOpSymbol "\u2260"')), function($skip, $loc, $0, $1) {
10598
10665
  if (module.config.coffeeEq)
10599
10666
  return "!==";
10600
- return $1;
10667
+ return "!=";
10601
10668
  });
10602
- var BinaryOpSymbol$18 = $TS($S($EXPECT($L67, fail, 'BinaryOpSymbol "isnt"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10669
+ var BinaryOpSymbol$24 = $TS($S($EXPECT($L75, fail, 'BinaryOpSymbol "isnt"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10603
10670
  if (module.config.coffeeIsnt)
10604
10671
  return "!==";
10605
10672
  return $skip;
10606
10673
  });
10607
- var BinaryOpSymbol$19 = $EXPECT($L68, fail, 'BinaryOpSymbol "==="');
10608
- var BinaryOpSymbol$20 = $TV($EXPECT($L69, fail, 'BinaryOpSymbol "=="'), function($skip, $loc, $0, $1) {
10674
+ var BinaryOpSymbol$25 = $EXPECT($L76, fail, 'BinaryOpSymbol "==="');
10675
+ var BinaryOpSymbol$26 = $T($C($EXPECT($L77, fail, 'BinaryOpSymbol "\u2263"'), $EXPECT($L78, fail, 'BinaryOpSymbol "\u2A76"')), function(value) {
10676
+ return "===";
10677
+ });
10678
+ var BinaryOpSymbol$27 = $TV($C($EXPECT($L79, fail, 'BinaryOpSymbol "=="'), $EXPECT($L80, fail, 'BinaryOpSymbol "\u2261"'), $EXPECT($L81, fail, 'BinaryOpSymbol "\u2A75"')), function($skip, $loc, $0, $1) {
10609
10679
  if (module.config.coffeeEq)
10610
10680
  return "===";
10611
- return $1;
10681
+ return "==";
10612
10682
  });
10613
- var BinaryOpSymbol$21 = $T($S($EXPECT($L70, fail, 'BinaryOpSymbol "and"'), NonIdContinue), function(value) {
10683
+ var BinaryOpSymbol$28 = $T($S($EXPECT($L82, fail, 'BinaryOpSymbol "and"'), NonIdContinue), function(value) {
10614
10684
  return "&&";
10615
10685
  });
10616
- var BinaryOpSymbol$22 = $EXPECT($L71, fail, 'BinaryOpSymbol "&&"');
10617
- var BinaryOpSymbol$23 = $T($S(CoffeeOfEnabled, $EXPECT($L72, fail, 'BinaryOpSymbol "of"'), NonIdContinue), function(value) {
10686
+ var BinaryOpSymbol$29 = $EXPECT($L83, fail, 'BinaryOpSymbol "&&"');
10687
+ var BinaryOpSymbol$30 = $T($S(CoffeeOfEnabled, $EXPECT($L84, fail, 'BinaryOpSymbol "of"'), NonIdContinue), function(value) {
10618
10688
  return "in";
10619
10689
  });
10620
- var BinaryOpSymbol$24 = $T($S($EXPECT($L73, fail, 'BinaryOpSymbol "or"'), NonIdContinue), function(value) {
10690
+ var BinaryOpSymbol$31 = $T($S($EXPECT($L85, fail, 'BinaryOpSymbol "or"'), NonIdContinue), function(value) {
10691
+ return "||";
10692
+ });
10693
+ var BinaryOpSymbol$32 = $EXPECT($L86, fail, 'BinaryOpSymbol "||"');
10694
+ var BinaryOpSymbol$33 = $T($EXPECT($L87, fail, 'BinaryOpSymbol "\u2016"'), function(value) {
10621
10695
  return "||";
10622
10696
  });
10623
- var BinaryOpSymbol$25 = $EXPECT($L74, fail, 'BinaryOpSymbol "||"');
10624
- var BinaryOpSymbol$26 = $TV($C($EXPECT($L75, fail, 'BinaryOpSymbol "^^"'), $S($EXPECT($L76, fail, 'BinaryOpSymbol "xor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10697
+ var BinaryOpSymbol$34 = $TV($C($EXPECT($L88, fail, 'BinaryOpSymbol "^^"'), $S($EXPECT($L89, fail, 'BinaryOpSymbol "xor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10625
10698
  return {
10626
10699
  call: module.getRef("xor"),
10627
10700
  special: true
10628
10701
  };
10629
10702
  });
10630
- var BinaryOpSymbol$27 = $TV($C($EXPECT($R8, fail, "BinaryOpSymbol /!\\^\\^?/"), $S($EXPECT($L77, fail, 'BinaryOpSymbol "xnor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10703
+ var BinaryOpSymbol$35 = $TV($C($EXPECT($R8, fail, "BinaryOpSymbol /!\\^\\^?/"), $S($EXPECT($L90, fail, 'BinaryOpSymbol "xnor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10631
10704
  return {
10632
10705
  call: module.getRef("xnor"),
10633
10706
  special: true
10634
10707
  };
10635
10708
  });
10636
- var BinaryOpSymbol$28 = $EXPECT($L78, fail, 'BinaryOpSymbol "??"');
10637
- var BinaryOpSymbol$29 = $T($S(CoffeeBinaryExistentialEnabled, $EXPECT($L4, fail, 'BinaryOpSymbol "?"')), function(value) {
10709
+ var BinaryOpSymbol$36 = $EXPECT($L91, fail, 'BinaryOpSymbol "??"');
10710
+ var BinaryOpSymbol$37 = $T($EXPECT($L92, fail, 'BinaryOpSymbol "\u2047"'), function(value) {
10638
10711
  return "??";
10639
10712
  });
10640
- var BinaryOpSymbol$30 = $TS($S($EXPECT($L79, fail, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10713
+ var BinaryOpSymbol$38 = $T($S(CoffeeBinaryExistentialEnabled, $EXPECT($L4, fail, 'BinaryOpSymbol "?"')), function(value) {
10714
+ return "??";
10715
+ });
10716
+ var BinaryOpSymbol$39 = $TS($S($EXPECT($L93, fail, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10641
10717
  return {
10642
10718
  $loc,
10643
10719
  token: $1,
@@ -10645,7 +10721,7 @@ ${input.slice(result.pos)}
10645
10721
  special: true
10646
10722
  };
10647
10723
  });
10648
- 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) {
10724
+ var BinaryOpSymbol$40 = $TS($S(Not, __, $EXPECT($L93, fail, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4) {
10649
10725
  return {
10650
10726
  $loc,
10651
10727
  token: "instanceof",
@@ -10654,7 +10730,7 @@ ${input.slice(result.pos)}
10654
10730
  negated: true
10655
10731
  };
10656
10732
  });
10657
- 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) {
10733
+ var BinaryOpSymbol$41 = $TV($C($S($N(CoffeeOfEnabled), Not, __, In), $S(CoffeeOfEnabled, Not, __, $EXPECT($L84, fail, 'BinaryOpSymbol "of"'), NonIdContinue)), function($skip, $loc, $0, $1) {
10658
10734
  return {
10659
10735
  $loc,
10660
10736
  token: "in",
@@ -10662,7 +10738,7 @@ ${input.slice(result.pos)}
10662
10738
  negated: true
10663
10739
  };
10664
10740
  });
10665
- 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) {
10741
+ var BinaryOpSymbol$42 = $TV($C($S(Is, __, In), $EXPECT($L94, fail, 'BinaryOpSymbol "\u2208"')), function($skip, $loc, $0, $1) {
10666
10742
  return {
10667
10743
  method: "includes",
10668
10744
  relational: true,
@@ -10670,7 +10746,22 @@ ${input.slice(result.pos)}
10670
10746
  special: true
10671
10747
  };
10672
10748
  });
10673
- var BinaryOpSymbol$34 = $TS($S(CoffeeOfEnabled, $EXPECT($L80, fail, 'BinaryOpSymbol "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
10749
+ var BinaryOpSymbol$43 = $TV($EXPECT($L95, fail, 'BinaryOpSymbol "\u220B"'), function($skip, $loc, $0, $1) {
10750
+ return {
10751
+ method: "includes",
10752
+ relational: true,
10753
+ special: true
10754
+ };
10755
+ });
10756
+ var BinaryOpSymbol$44 = $TV($EXPECT($L96, fail, 'BinaryOpSymbol "\u220C"'), function($skip, $loc, $0, $1) {
10757
+ return {
10758
+ method: "includes",
10759
+ relational: true,
10760
+ special: true,
10761
+ negated: true
10762
+ };
10763
+ });
10764
+ var BinaryOpSymbol$45 = $TS($S(CoffeeOfEnabled, In), function($skip, $loc, $0, $1, $2) {
10674
10765
  return {
10675
10766
  call: [module.getRef("indexOf"), ".call"],
10676
10767
  relational: true,
@@ -10679,7 +10770,7 @@ ${input.slice(result.pos)}
10679
10770
  special: true
10680
10771
  };
10681
10772
  });
10682
- 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) {
10773
+ var BinaryOpSymbol$46 = $TV($C($S(Is, __, Not, __, In), $EXPECT($L97, fail, 'BinaryOpSymbol "\u2209"')), function($skip, $loc, $0, $1) {
10683
10774
  return {
10684
10775
  method: "includes",
10685
10776
  relational: true,
@@ -10688,7 +10779,7 @@ ${input.slice(result.pos)}
10688
10779
  negated: true
10689
10780
  };
10690
10781
  });
10691
- 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) {
10782
+ var BinaryOpSymbol$47 = $TS($S(CoffeeOfEnabled, Not, __, In), function($skip, $loc, $0, $1, $2, $3, $4) {
10692
10783
  return {
10693
10784
  call: [module.getRef("indexOf"), ".call"],
10694
10785
  relational: true,
@@ -10697,7 +10788,7 @@ ${input.slice(result.pos)}
10697
10788
  special: true
10698
10789
  };
10699
10790
  });
10700
- 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) {
10791
+ var BinaryOpSymbol$48 = $TS($S($N(CoffeeNotEnabled), Is, __, Not), function($skip, $loc, $0, $1, $2, $3, $4) {
10701
10792
  if (module.config.objectIs) {
10702
10793
  return {
10703
10794
  call: module.getRef("is"),
@@ -10709,7 +10800,7 @@ ${input.slice(result.pos)}
10709
10800
  }
10710
10801
  return "!==";
10711
10802
  });
10712
- var BinaryOpSymbol$38 = $TS($S($EXPECT($L81, fail, 'BinaryOpSymbol "is"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10803
+ var BinaryOpSymbol$49 = $TS($S(Is), function($skip, $loc, $0, $1) {
10713
10804
  if (module.config.objectIs) {
10714
10805
  return {
10715
10806
  call: module.getRef("is"),
@@ -10720,12 +10811,12 @@ ${input.slice(result.pos)}
10720
10811
  }
10721
10812
  return "===";
10722
10813
  });
10723
- var BinaryOpSymbol$39 = $TS($S($EXPECT($L80, fail, 'BinaryOpSymbol "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10724
- return $1;
10814
+ var BinaryOpSymbol$50 = $TS($S(In), function($skip, $loc, $0, $1) {
10815
+ return "in";
10725
10816
  });
10726
- var BinaryOpSymbol$40 = $EXPECT($L82, fail, 'BinaryOpSymbol "&"');
10727
- var BinaryOpSymbol$41 = $EXPECT($L17, fail, 'BinaryOpSymbol "^"');
10728
- var BinaryOpSymbol$42 = $EXPECT($L83, fail, 'BinaryOpSymbol "|"');
10817
+ var BinaryOpSymbol$51 = $EXPECT($L98, fail, 'BinaryOpSymbol "&"');
10818
+ var BinaryOpSymbol$52 = $EXPECT($L18, fail, 'BinaryOpSymbol "^"');
10819
+ var BinaryOpSymbol$53 = $EXPECT($L99, fail, 'BinaryOpSymbol "|"');
10729
10820
  function BinaryOpSymbol(state) {
10730
10821
  let eventData;
10731
10822
  if (state.events) {
@@ -10737,19 +10828,19 @@ ${input.slice(result.pos)}
10737
10828
  }
10738
10829
  }
10739
10830
  if (state.tokenize) {
10740
- 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));
10831
+ 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));
10741
10832
  if (state.events)
10742
10833
  state.events.exit?.("BinaryOpSymbol", state, result, eventData);
10743
10834
  return result;
10744
10835
  } else {
10745
- 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);
10836
+ 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);
10746
10837
  if (state.events)
10747
10838
  state.events.exit?.("BinaryOpSymbol", state, result, eventData);
10748
10839
  return result;
10749
10840
  }
10750
10841
  }
10751
- var Xor$0 = $EXPECT($L75, fail, 'Xor "^^"');
10752
- var Xor$1 = $S($EXPECT($L76, fail, 'Xor "xor"'), NonIdContinue);
10842
+ var Xor$0 = $EXPECT($L88, fail, 'Xor "^^"');
10843
+ var Xor$1 = $S($EXPECT($L89, fail, 'Xor "xor"'), NonIdContinue);
10753
10844
  function Xor(state) {
10754
10845
  let eventData;
10755
10846
  if (state.events) {
@@ -10773,7 +10864,7 @@ ${input.slice(result.pos)}
10773
10864
  }
10774
10865
  }
10775
10866
  var Xnor$0 = $R$0($EXPECT($R8, fail, "Xnor /!\\^\\^?/"));
10776
- var Xnor$1 = $EXPECT($L77, fail, 'Xnor "xnor"');
10867
+ var Xnor$1 = $EXPECT($L90, fail, 'Xnor "xnor"');
10777
10868
  function Xnor(state) {
10778
10869
  let eventData;
10779
10870
  if (state.events) {
@@ -10800,8 +10891,10 @@ ${input.slice(result.pos)}
10800
10891
  return { $loc, token: $0 };
10801
10892
  });
10802
10893
  var UnaryOp$1 = AwaitOp;
10803
- var UnaryOp$2 = $S($C(Delete, Void, Typeof), $N($EXPECT($L10, fail, 'UnaryOp ":"')), $E(_));
10804
- var UnaryOp$3 = Not;
10894
+ var UnaryOp$2 = $S($C(Delete, Void, Typeof), $N($EXPECT($L11, fail, 'UnaryOp ":"')), $E(_));
10895
+ var UnaryOp$3 = $T($S(Not, $E($EXPECT($L10, fail, 'UnaryOp " "')), $E(_)), function(value) {
10896
+ return [value[0], value[2]];
10897
+ });
10805
10898
  function UnaryOp(state) {
10806
10899
  let eventData;
10807
10900
  if (state.events) {
@@ -11059,7 +11152,7 @@ ${input.slice(result.pos)}
11059
11152
  return result;
11060
11153
  }
11061
11154
  }
11062
- var EmptyStatement$0 = $TS($S($E(_), $Y($EXPECT($L84, fail, 'EmptyStatement ";"'))), function($skip, $loc, $0, $1, $2) {
11155
+ var EmptyStatement$0 = $TS($S($E(_), $Y($EXPECT($L100, fail, 'EmptyStatement ";"'))), function($skip, $loc, $0, $1, $2) {
11063
11156
  return { type: "EmptyStatement", children: $1 || [] };
11064
11157
  });
11065
11158
  function EmptyStatement(state) {
@@ -11138,7 +11231,7 @@ ${input.slice(result.pos)}
11138
11231
  var w = $3;
11139
11232
  return [id, colon, w];
11140
11233
  });
11141
- var Label$1 = $S($EXPECT($L85, fail, 'Label "$:"'), Whitespace);
11234
+ var Label$1 = $S($EXPECT($L101, fail, 'Label "$:"'), Whitespace);
11142
11235
  function Label(state) {
11143
11236
  let eventData;
11144
11237
  if (state.events) {
@@ -12122,7 +12215,7 @@ ${input.slice(result.pos)}
12122
12215
  return result;
12123
12216
  }
12124
12217
  }
12125
- var CoffeeForDeclaration$0 = $TS($S($E($S(__, $EXPECT($L86, fail, 'CoffeeForDeclaration "own"'), NonIdContinue)), ForBinding), function($skip, $loc, $0, $1, $2) {
12218
+ var CoffeeForDeclaration$0 = $TS($S($E($S(__, $EXPECT($L102, fail, 'CoffeeForDeclaration "own"'), NonIdContinue)), ForBinding), function($skip, $loc, $0, $1, $2) {
12126
12219
  var own = $1;
12127
12220
  var binding = $2;
12128
12221
  return {
@@ -12750,7 +12843,7 @@ ${input.slice(result.pos)}
12750
12843
  return result;
12751
12844
  }
12752
12845
  }
12753
- 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) {
12846
+ 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) {
12754
12847
  var t = $1;
12755
12848
  var b = $3;
12756
12849
  var c = $4;
@@ -13665,7 +13758,7 @@ ${input.slice(result.pos)}
13665
13758
  var KeywordStatement$2 = $T($S(Debugger), function(value) {
13666
13759
  return { "type": "DebuggerStatement", "children": value };
13667
13760
  });
13668
- var KeywordStatement$3 = $T($S(Return, $N($C($EXPECT($L10, fail, 'KeywordStatement ":"'), $EXPECT($L5, fail, 'KeywordStatement "."'), AfterReturnShorthand)), $E(MaybeNestedExpression)), function(value) {
13761
+ var KeywordStatement$3 = $T($S(Return, $N($C($EXPECT($L11, fail, 'KeywordStatement ":"'), $EXPECT($L5, fail, 'KeywordStatement "."'), AfterReturnShorthand)), $E(MaybeNestedExpression)), function(value) {
13669
13762
  var expression = value[2];
13670
13763
  return { "type": "ReturnStatement", "expression": expression, "children": value };
13671
13764
  });
@@ -13694,7 +13787,7 @@ ${input.slice(result.pos)}
13694
13787
  return result;
13695
13788
  }
13696
13789
  }
13697
- var Break$0 = $TS($S($EXPECT($L87, fail, 'Break "break"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13790
+ var Break$0 = $TS($S($EXPECT($L103, fail, 'Break "break"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13698
13791
  return { $loc, token: $1 };
13699
13792
  });
13700
13793
  function Break(state) {
@@ -13719,7 +13812,7 @@ ${input.slice(result.pos)}
13719
13812
  return result;
13720
13813
  }
13721
13814
  }
13722
- var Continue$0 = $TS($S($EXPECT($L88, fail, 'Continue "continue"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13815
+ var Continue$0 = $TS($S($EXPECT($L104, fail, 'Continue "continue"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13723
13816
  return { $loc, token: $1 };
13724
13817
  });
13725
13818
  function Continue(state) {
@@ -13744,7 +13837,7 @@ ${input.slice(result.pos)}
13744
13837
  return result;
13745
13838
  }
13746
13839
  }
13747
- var Debugger$0 = $TS($S($EXPECT($L89, fail, 'Debugger "debugger"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13840
+ var Debugger$0 = $TS($S($EXPECT($L105, fail, 'Debugger "debugger"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13748
13841
  return { $loc, token: $1 };
13749
13842
  });
13750
13843
  function Debugger(state) {
@@ -14050,7 +14143,7 @@ ${input.slice(result.pos)}
14050
14143
  return result;
14051
14144
  }
14052
14145
  }
14053
- var ImportAssertion$0 = $S($E(_), $EXPECT($L90, fail, 'ImportAssertion "assert"'), NonIdContinue, $E(_), ObjectLiteral);
14146
+ var ImportAssertion$0 = $S($E(_), $EXPECT($L106, fail, 'ImportAssertion "assert"'), NonIdContinue, $E(_), ObjectLiteral);
14054
14147
  function ImportAssertion(state) {
14055
14148
  let eventData;
14056
14149
  if (state.events) {
@@ -14153,7 +14246,7 @@ ${input.slice(result.pos)}
14153
14246
  }
14154
14247
  }
14155
14248
  var ImportAsToken$0 = $S(__, As);
14156
- var ImportAsToken$1 = $TS($S(Loc, __, Colon, $E($EXPECT($L9, fail, 'ImportAsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
14249
+ var ImportAsToken$1 = $TS($S(Loc, __, Colon, $E($EXPECT($L10, fail, 'ImportAsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
14157
14250
  var l = $1;
14158
14251
  var ws = $2;
14159
14252
  var c = $3;
@@ -14622,7 +14715,7 @@ ${input.slice(result.pos)}
14622
14715
  return result;
14623
14716
  }
14624
14717
  }
14625
- var ConstAssignment$0 = $TV($EXPECT($L91, fail, 'ConstAssignment ":="'), function($skip, $loc, $0, $1) {
14718
+ var ConstAssignment$0 = $TV($C($EXPECT($L107, fail, 'ConstAssignment ":="'), $EXPECT($L108, fail, 'ConstAssignment "\u2254"')), function($skip, $loc, $0, $1) {
14626
14719
  return { $loc, token: "=" };
14627
14720
  });
14628
14721
  function ConstAssignment(state) {
@@ -14647,7 +14740,7 @@ ${input.slice(result.pos)}
14647
14740
  return result;
14648
14741
  }
14649
14742
  }
14650
- var LetAssignment$0 = $TV($EXPECT($L92, fail, 'LetAssignment ".="'), function($skip, $loc, $0, $1) {
14743
+ var LetAssignment$0 = $TV($EXPECT($L109, fail, 'LetAssignment ".="'), function($skip, $loc, $0, $1) {
14651
14744
  return { $loc, token: "=" };
14652
14745
  });
14653
14746
  function LetAssignment(state) {
@@ -15354,7 +15447,7 @@ ${input.slice(result.pos)}
15354
15447
  }
15355
15448
  }
15356
15449
  var RegularExpressionLiteral$0 = HeregexLiteral;
15357
- var RegularExpressionLiteral$1 = $TV($TEXT($S($EXPECT($L54, fail, 'RegularExpressionLiteral "/"'), RegularExpressionBody, $EXPECT($L54, fail, 'RegularExpressionLiteral "/"'), RegularExpressionFlags)), function($skip, $loc, $0, $1) {
15450
+ var RegularExpressionLiteral$1 = $TV($TEXT($S($EXPECT($L55, fail, 'RegularExpressionLiteral "/"'), RegularExpressionBody, $EXPECT($L55, fail, 'RegularExpressionLiteral "/"'), RegularExpressionFlags)), function($skip, $loc, $0, $1) {
15358
15451
  return { type: "RegularExpressionLiteral", $loc, token: $1 };
15359
15452
  });
15360
15453
  function RegularExpressionLiteral(state) {
@@ -15921,7 +16014,7 @@ ${input.slice(result.pos)}
15921
16014
  return result;
15922
16015
  }
15923
16016
  }
15924
- 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) {
16017
+ 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) {
15925
16018
  return { type: "Comment", $loc, token: $1 };
15926
16019
  });
15927
16020
  function JSMultiLineComment(state) {
@@ -16020,7 +16113,7 @@ ${input.slice(result.pos)}
16020
16113
  return result;
16021
16114
  }
16022
16115
  }
16023
- 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) {
16116
+ 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) {
16024
16117
  return { $loc, token: $1 };
16025
16118
  });
16026
16119
  function InlineComment(state) {
@@ -16117,7 +16210,7 @@ ${input.slice(result.pos)}
16117
16210
  var NonNewlineWhitespace$0 = $TR($EXPECT($R47, fail, "NonNewlineWhitespace /[ \\t]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
16118
16211
  return { $loc, token: $0 };
16119
16212
  });
16120
- var NonNewlineWhitespace$1 = $T($S(CoffeeLineContinuationEnabled, $EXPECT($L95, fail, 'NonNewlineWhitespace "\\\\\\\\"'), EOL), function(value) {
16213
+ var NonNewlineWhitespace$1 = $T($S(CoffeeLineContinuationEnabled, $EXPECT($L112, fail, 'NonNewlineWhitespace "\\\\\\\\"'), EOL), function(value) {
16121
16214
  return "";
16122
16215
  });
16123
16216
  function NonNewlineWhitespace(state) {
@@ -16269,7 +16362,7 @@ ${input.slice(result.pos)}
16269
16362
  }
16270
16363
  }
16271
16364
  var StatementDelimiter$0 = SemicolonDelimiter;
16272
- 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);
16365
+ 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);
16273
16366
  var StatementDelimiter$2 = $Y(EOS);
16274
16367
  function StatementDelimiter(state) {
16275
16368
  let eventData;
@@ -16369,7 +16462,7 @@ ${input.slice(result.pos)}
16369
16462
  return result;
16370
16463
  }
16371
16464
  }
16372
- var Abstract$0 = $TV($TEXT($S($EXPECT($L98, fail, 'Abstract "abstract"'), NonIdContinue, $E($EXPECT($L9, fail, 'Abstract " "')))), function($skip, $loc, $0, $1) {
16465
+ var Abstract$0 = $TV($TEXT($S($EXPECT($L115, fail, 'Abstract "abstract"'), NonIdContinue, $E($EXPECT($L10, fail, 'Abstract " "')))), function($skip, $loc, $0, $1) {
16373
16466
  return { $loc, token: $1, ts: true };
16374
16467
  });
16375
16468
  function Abstract(state) {
@@ -16394,7 +16487,7 @@ ${input.slice(result.pos)}
16394
16487
  return result;
16395
16488
  }
16396
16489
  }
16397
- var Ampersand$0 = $TV($EXPECT($L82, fail, 'Ampersand "&"'), function($skip, $loc, $0, $1) {
16490
+ var Ampersand$0 = $TV($EXPECT($L98, fail, 'Ampersand "&"'), function($skip, $loc, $0, $1) {
16398
16491
  return { $loc, token: $1 };
16399
16492
  });
16400
16493
  function Ampersand(state) {
@@ -16419,7 +16512,7 @@ ${input.slice(result.pos)}
16419
16512
  return result;
16420
16513
  }
16421
16514
  }
16422
- var As$0 = $TS($S($EXPECT($L99, fail, 'As "as"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16515
+ var As$0 = $TS($S($EXPECT($L116, fail, 'As "as"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16423
16516
  return { $loc, token: $1 };
16424
16517
  });
16425
16518
  function As(state) {
@@ -16444,7 +16537,7 @@ ${input.slice(result.pos)}
16444
16537
  return result;
16445
16538
  }
16446
16539
  }
16447
- var At$0 = $TV($EXPECT($L100, fail, 'At "@"'), function($skip, $loc, $0, $1) {
16540
+ var At$0 = $TV($EXPECT($L117, fail, 'At "@"'), function($skip, $loc, $0, $1) {
16448
16541
  return { $loc, token: $1 };
16449
16542
  });
16450
16543
  function At(state) {
@@ -16469,7 +16562,7 @@ ${input.slice(result.pos)}
16469
16562
  return result;
16470
16563
  }
16471
16564
  }
16472
- var AtAt$0 = $TV($EXPECT($L101, fail, 'AtAt "@@"'), function($skip, $loc, $0, $1) {
16565
+ var AtAt$0 = $TV($EXPECT($L118, fail, 'AtAt "@@"'), function($skip, $loc, $0, $1) {
16473
16566
  return { $loc, token: "@" };
16474
16567
  });
16475
16568
  function AtAt(state) {
@@ -16494,7 +16587,7 @@ ${input.slice(result.pos)}
16494
16587
  return result;
16495
16588
  }
16496
16589
  }
16497
- var Async$0 = $TS($S($EXPECT($L102, fail, 'Async "async"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16590
+ var Async$0 = $TS($S($EXPECT($L119, fail, 'Async "async"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16498
16591
  return { $loc, token: $1, type: "Async" };
16499
16592
  });
16500
16593
  function Async(state) {
@@ -16519,7 +16612,7 @@ ${input.slice(result.pos)}
16519
16612
  return result;
16520
16613
  }
16521
16614
  }
16522
- var Await$0 = $TS($S($EXPECT($L103, fail, 'Await "await"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16615
+ var Await$0 = $TS($S($EXPECT($L120, fail, 'Await "await"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16523
16616
  return { $loc, token: $1, type: "Await" };
16524
16617
  });
16525
16618
  function Await(state) {
@@ -16544,7 +16637,7 @@ ${input.slice(result.pos)}
16544
16637
  return result;
16545
16638
  }
16546
16639
  }
16547
- var Backtick$0 = $TV($EXPECT($L97, fail, 'Backtick "`"'), function($skip, $loc, $0, $1) {
16640
+ var Backtick$0 = $TV($EXPECT($L114, fail, 'Backtick "`"'), function($skip, $loc, $0, $1) {
16548
16641
  return { $loc, token: $1 };
16549
16642
  });
16550
16643
  function Backtick(state) {
@@ -16569,7 +16662,7 @@ ${input.slice(result.pos)}
16569
16662
  return result;
16570
16663
  }
16571
16664
  }
16572
- var By$0 = $TS($S($EXPECT($L104, fail, 'By "by"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16665
+ var By$0 = $TS($S($EXPECT($L121, fail, 'By "by"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16573
16666
  return { $loc, token: $1 };
16574
16667
  });
16575
16668
  function By(state) {
@@ -16594,7 +16687,7 @@ ${input.slice(result.pos)}
16594
16687
  return result;
16595
16688
  }
16596
16689
  }
16597
- var Case$0 = $TS($S($EXPECT($L105, fail, 'Case "case"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16690
+ var Case$0 = $TS($S($EXPECT($L122, fail, 'Case "case"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16598
16691
  return { $loc, token: $1 };
16599
16692
  });
16600
16693
  function Case(state) {
@@ -16619,7 +16712,7 @@ ${input.slice(result.pos)}
16619
16712
  return result;
16620
16713
  }
16621
16714
  }
16622
- var Catch$0 = $TS($S($EXPECT($L106, fail, 'Catch "catch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16715
+ var Catch$0 = $TS($S($EXPECT($L123, fail, 'Catch "catch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16623
16716
  return { $loc, token: $1 };
16624
16717
  });
16625
16718
  function Catch(state) {
@@ -16644,7 +16737,7 @@ ${input.slice(result.pos)}
16644
16737
  return result;
16645
16738
  }
16646
16739
  }
16647
- var Class$0 = $TS($S($EXPECT($L107, fail, 'Class "class"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16740
+ var Class$0 = $TS($S($EXPECT($L124, fail, 'Class "class"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16648
16741
  return { $loc, token: $1 };
16649
16742
  });
16650
16743
  function Class(state) {
@@ -16669,7 +16762,7 @@ ${input.slice(result.pos)}
16669
16762
  return result;
16670
16763
  }
16671
16764
  }
16672
- var CloseBrace$0 = $TV($EXPECT($L23, fail, 'CloseBrace "}"'), function($skip, $loc, $0, $1) {
16765
+ var CloseBrace$0 = $TV($EXPECT($L25, fail, 'CloseBrace "}"'), function($skip, $loc, $0, $1) {
16673
16766
  return { $loc, token: $1 };
16674
16767
  });
16675
16768
  function CloseBrace(state) {
@@ -16694,7 +16787,7 @@ ${input.slice(result.pos)}
16694
16787
  return result;
16695
16788
  }
16696
16789
  }
16697
- var CloseBracket$0 = $TV($EXPECT($L32, fail, 'CloseBracket "]"'), function($skip, $loc, $0, $1) {
16790
+ var CloseBracket$0 = $TV($EXPECT($L34, fail, 'CloseBracket "]"'), function($skip, $loc, $0, $1) {
16698
16791
  return { $loc, token: $1 };
16699
16792
  });
16700
16793
  function CloseBracket(state) {
@@ -16719,7 +16812,7 @@ ${input.slice(result.pos)}
16719
16812
  return result;
16720
16813
  }
16721
16814
  }
16722
- var CloseParen$0 = $TV($EXPECT($L108, fail, 'CloseParen ")"'), function($skip, $loc, $0, $1) {
16815
+ var CloseParen$0 = $TV($EXPECT($L125, fail, 'CloseParen ")"'), function($skip, $loc, $0, $1) {
16723
16816
  return { $loc, token: $1 };
16724
16817
  });
16725
16818
  function CloseParen(state) {
@@ -16744,7 +16837,7 @@ ${input.slice(result.pos)}
16744
16837
  return result;
16745
16838
  }
16746
16839
  }
16747
- var CoffeeSubstitutionStart$0 = $TV($EXPECT($L109, fail, 'CoffeeSubstitutionStart "#{"'), function($skip, $loc, $0, $1) {
16840
+ var CoffeeSubstitutionStart$0 = $TV($EXPECT($L126, fail, 'CoffeeSubstitutionStart "#{"'), function($skip, $loc, $0, $1) {
16748
16841
  return { $loc, token: "${" };
16749
16842
  });
16750
16843
  function CoffeeSubstitutionStart(state) {
@@ -16769,7 +16862,7 @@ ${input.slice(result.pos)}
16769
16862
  return result;
16770
16863
  }
16771
16864
  }
16772
- var Colon$0 = $TS($S($EXPECT($L10, fail, 'Colon ":"'), $N($EXPECT($L2, fail, 'Colon "="'))), function($skip, $loc, $0, $1, $2) {
16865
+ var Colon$0 = $TS($S($EXPECT($L11, fail, 'Colon ":"'), $N($EXPECT($L2, fail, 'Colon "="'))), function($skip, $loc, $0, $1, $2) {
16773
16866
  return { $loc, token: $1 };
16774
16867
  });
16775
16868
  function Colon(state) {
@@ -16794,7 +16887,7 @@ ${input.slice(result.pos)}
16794
16887
  return result;
16795
16888
  }
16796
16889
  }
16797
- var Comma$0 = $TV($EXPECT($L21, fail, 'Comma ","'), function($skip, $loc, $0, $1) {
16890
+ var Comma$0 = $TV($EXPECT($L22, fail, 'Comma ","'), function($skip, $loc, $0, $1) {
16798
16891
  return { $loc, token: $1 };
16799
16892
  });
16800
16893
  function Comma(state) {
@@ -16819,7 +16912,7 @@ ${input.slice(result.pos)}
16819
16912
  return result;
16820
16913
  }
16821
16914
  }
16822
- var ConstructorShorthand$0 = $TV($EXPECT($L100, fail, 'ConstructorShorthand "@"'), function($skip, $loc, $0, $1) {
16915
+ var ConstructorShorthand$0 = $TV($EXPECT($L117, fail, 'ConstructorShorthand "@"'), function($skip, $loc, $0, $1) {
16823
16916
  return { $loc, token: "constructor" };
16824
16917
  });
16825
16918
  function ConstructorShorthand(state) {
@@ -16844,7 +16937,7 @@ ${input.slice(result.pos)}
16844
16937
  return result;
16845
16938
  }
16846
16939
  }
16847
- var Declare$0 = $TS($S($EXPECT($L110, fail, 'Declare "declare"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16940
+ var Declare$0 = $TS($S($EXPECT($L127, fail, 'Declare "declare"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16848
16941
  return { $loc, token: $1 };
16849
16942
  });
16850
16943
  function Declare(state) {
@@ -16869,7 +16962,7 @@ ${input.slice(result.pos)}
16869
16962
  return result;
16870
16963
  }
16871
16964
  }
16872
- var Default$0 = $TS($S($EXPECT($L111, fail, 'Default "default"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16965
+ var Default$0 = $TS($S($EXPECT($L128, fail, 'Default "default"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16873
16966
  return { $loc, token: $1 };
16874
16967
  });
16875
16968
  function Default(state) {
@@ -16894,7 +16987,7 @@ ${input.slice(result.pos)}
16894
16987
  return result;
16895
16988
  }
16896
16989
  }
16897
- var Delete$0 = $TS($S($EXPECT($L112, fail, 'Delete "delete"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16990
+ var Delete$0 = $TS($S($EXPECT($L129, fail, 'Delete "delete"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16898
16991
  return { $loc, token: $1 };
16899
16992
  });
16900
16993
  function Delete(state) {
@@ -16919,7 +17012,7 @@ ${input.slice(result.pos)}
16919
17012
  return result;
16920
17013
  }
16921
17014
  }
16922
- var Do$0 = $TS($S($EXPECT($L113, fail, 'Do "do"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17015
+ var Do$0 = $TS($S($EXPECT($L130, fail, 'Do "do"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
16923
17016
  return { $loc, token: $1 };
16924
17017
  });
16925
17018
  function Do(state) {
@@ -16969,9 +17062,12 @@ ${input.slice(result.pos)}
16969
17062
  return result;
16970
17063
  }
16971
17064
  }
16972
- var DotDot$0 = $TS($S($EXPECT($L114, fail, 'DotDot ".."'), $N($EXPECT($L5, fail, 'DotDot "."'))), function($skip, $loc, $0, $1, $2) {
17065
+ var DotDot$0 = $TS($S($EXPECT($L131, fail, 'DotDot ".."'), $N($EXPECT($L5, fail, 'DotDot "."'))), function($skip, $loc, $0, $1, $2) {
16973
17066
  return { $loc, token: $1 };
16974
17067
  });
17068
+ var DotDot$1 = $TV($EXPECT($L132, fail, 'DotDot "\u2025"'), function($skip, $loc, $0, $1) {
17069
+ return { $loc, token: ".." };
17070
+ });
16975
17071
  function DotDot(state) {
16976
17072
  let eventData;
16977
17073
  if (state.events) {
@@ -16983,20 +17079,23 @@ ${input.slice(result.pos)}
16983
17079
  }
16984
17080
  }
16985
17081
  if (state.tokenize) {
16986
- const result = $TOKEN("DotDot", state, DotDot$0(state));
17082
+ const result = $TOKEN("DotDot", state, DotDot$0(state) || DotDot$1(state));
16987
17083
  if (state.events)
16988
17084
  state.events.exit?.("DotDot", state, result, eventData);
16989
17085
  return result;
16990
17086
  } else {
16991
- const result = DotDot$0(state);
17087
+ const result = DotDot$0(state) || DotDot$1(state);
16992
17088
  if (state.events)
16993
17089
  state.events.exit?.("DotDot", state, result, eventData);
16994
17090
  return result;
16995
17091
  }
16996
17092
  }
16997
- var DotDotDot$0 = $TV($EXPECT($L115, fail, 'DotDotDot "..."'), function($skip, $loc, $0, $1) {
17093
+ var DotDotDot$0 = $TV($EXPECT($L133, fail, 'DotDotDot "..."'), function($skip, $loc, $0, $1) {
16998
17094
  return { $loc, token: $1 };
16999
17095
  });
17096
+ var DotDotDot$1 = $TV($EXPECT($L134, fail, 'DotDotDot "\u2026"'), function($skip, $loc, $0, $1) {
17097
+ return { $loc, token: "..." };
17098
+ });
17000
17099
  function DotDotDot(state) {
17001
17100
  let eventData;
17002
17101
  if (state.events) {
@@ -17008,18 +17107,18 @@ ${input.slice(result.pos)}
17008
17107
  }
17009
17108
  }
17010
17109
  if (state.tokenize) {
17011
- const result = $TOKEN("DotDotDot", state, DotDotDot$0(state));
17110
+ const result = $TOKEN("DotDotDot", state, DotDotDot$0(state) || DotDotDot$1(state));
17012
17111
  if (state.events)
17013
17112
  state.events.exit?.("DotDotDot", state, result, eventData);
17014
17113
  return result;
17015
17114
  } else {
17016
- const result = DotDotDot$0(state);
17115
+ const result = DotDotDot$0(state) || DotDotDot$1(state);
17017
17116
  if (state.events)
17018
17117
  state.events.exit?.("DotDotDot", state, result, eventData);
17019
17118
  return result;
17020
17119
  }
17021
17120
  }
17022
- var DoubleColon$0 = $TV($EXPECT($L116, fail, 'DoubleColon "::"'), function($skip, $loc, $0, $1) {
17121
+ var DoubleColon$0 = $TV($EXPECT($L135, fail, 'DoubleColon "::"'), function($skip, $loc, $0, $1) {
17023
17122
  return { $loc, token: $1 };
17024
17123
  });
17025
17124
  function DoubleColon(state) {
@@ -17044,7 +17143,7 @@ ${input.slice(result.pos)}
17044
17143
  return result;
17045
17144
  }
17046
17145
  }
17047
- var DoubleQuote$0 = $TV($EXPECT($L117, fail, 'DoubleQuote "\\\\\\""'), function($skip, $loc, $0, $1) {
17146
+ var DoubleQuote$0 = $TV($EXPECT($L136, fail, 'DoubleQuote "\\\\\\""'), function($skip, $loc, $0, $1) {
17048
17147
  return { $loc, token: $1 };
17049
17148
  });
17050
17149
  function DoubleQuote(state) {
@@ -17069,7 +17168,7 @@ ${input.slice(result.pos)}
17069
17168
  return result;
17070
17169
  }
17071
17170
  }
17072
- var Else$0 = $TS($S($EXPECT($L118, fail, 'Else "else"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17171
+ var Else$0 = $TS($S($EXPECT($L137, fail, 'Else "else"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17073
17172
  return { $loc, token: $1 };
17074
17173
  });
17075
17174
  function Else(state) {
@@ -17119,7 +17218,7 @@ ${input.slice(result.pos)}
17119
17218
  return result;
17120
17219
  }
17121
17220
  }
17122
- var Export$0 = $TS($S($EXPECT($L119, fail, 'Export "export"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17221
+ var Export$0 = $TS($S($EXPECT($L138, fail, 'Export "export"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17123
17222
  return { $loc, token: $1 };
17124
17223
  });
17125
17224
  function Export(state) {
@@ -17144,7 +17243,7 @@ ${input.slice(result.pos)}
17144
17243
  return result;
17145
17244
  }
17146
17245
  }
17147
- var Extends$0 = $TS($S($EXPECT($L120, fail, 'Extends "extends"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17246
+ var Extends$0 = $TS($S($EXPECT($L139, fail, 'Extends "extends"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17148
17247
  return { $loc, token: $1 };
17149
17248
  });
17150
17249
  function Extends(state) {
@@ -17169,7 +17268,7 @@ ${input.slice(result.pos)}
17169
17268
  return result;
17170
17269
  }
17171
17270
  }
17172
- var Finally$0 = $TS($S($EXPECT($L121, fail, 'Finally "finally"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17271
+ var Finally$0 = $TS($S($EXPECT($L140, fail, 'Finally "finally"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17173
17272
  return { $loc, token: $1 };
17174
17273
  });
17175
17274
  function Finally(state) {
@@ -17194,7 +17293,7 @@ ${input.slice(result.pos)}
17194
17293
  return result;
17195
17294
  }
17196
17295
  }
17197
- var For$0 = $TS($S($EXPECT($L122, fail, 'For "for"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17296
+ var For$0 = $TS($S($EXPECT($L141, fail, 'For "for"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17198
17297
  return { $loc, token: $1 };
17199
17298
  });
17200
17299
  function For(state) {
@@ -17219,7 +17318,7 @@ ${input.slice(result.pos)}
17219
17318
  return result;
17220
17319
  }
17221
17320
  }
17222
- var From$0 = $TS($S($EXPECT($L123, fail, 'From "from"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17321
+ var From$0 = $TS($S($EXPECT($L142, fail, 'From "from"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17223
17322
  return { $loc, token: $1 };
17224
17323
  });
17225
17324
  function From(state) {
@@ -17244,7 +17343,7 @@ ${input.slice(result.pos)}
17244
17343
  return result;
17245
17344
  }
17246
17345
  }
17247
- var Function$0 = $TS($S($EXPECT($L124, fail, 'Function "function"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17346
+ var Function$0 = $TS($S($EXPECT($L143, fail, 'Function "function"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17248
17347
  return { $loc, token: $1 };
17249
17348
  });
17250
17349
  function Function(state) {
@@ -17269,7 +17368,7 @@ ${input.slice(result.pos)}
17269
17368
  return result;
17270
17369
  }
17271
17370
  }
17272
- var GetOrSet$0 = $TS($S($C($EXPECT($L125, fail, 'GetOrSet "get"'), $EXPECT($L126, fail, 'GetOrSet "set"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17371
+ var GetOrSet$0 = $TS($S($C($EXPECT($L144, fail, 'GetOrSet "get"'), $EXPECT($L145, fail, 'GetOrSet "set"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17273
17372
  return { $loc, token: $1, type: "GetOrSet" };
17274
17373
  });
17275
17374
  function GetOrSet(state) {
@@ -17294,7 +17393,7 @@ ${input.slice(result.pos)}
17294
17393
  return result;
17295
17394
  }
17296
17395
  }
17297
- var If$0 = $TV($TEXT($S($EXPECT($L127, fail, 'If "if"'), NonIdContinue, $E($EXPECT($L9, fail, 'If " "')))), function($skip, $loc, $0, $1) {
17396
+ var If$0 = $TV($TEXT($S($EXPECT($L146, fail, 'If "if"'), NonIdContinue, $E($EXPECT($L10, fail, 'If " "')))), function($skip, $loc, $0, $1) {
17298
17397
  return { $loc, token: $1 };
17299
17398
  });
17300
17399
  function If(state) {
@@ -17319,7 +17418,7 @@ ${input.slice(result.pos)}
17319
17418
  return result;
17320
17419
  }
17321
17420
  }
17322
- var Import$0 = $TS($S($EXPECT($L15, fail, 'Import "import"'), $Y($EXPECT($R49, fail, "Import /\\s/"))), function($skip, $loc, $0, $1, $2) {
17421
+ var Import$0 = $TS($S($EXPECT($L16, fail, 'Import "import"'), $Y($EXPECT($R49, fail, "Import /\\s/"))), function($skip, $loc, $0, $1, $2) {
17323
17422
  return { $loc, token: $1 };
17324
17423
  });
17325
17424
  function Import(state) {
@@ -17344,7 +17443,7 @@ ${input.slice(result.pos)}
17344
17443
  return result;
17345
17444
  }
17346
17445
  }
17347
- var In$0 = $TS($S($EXPECT($L80, fail, 'In "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17446
+ var In$0 = $TS($S($EXPECT($L147, fail, 'In "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17348
17447
  return { $loc, token: $1 };
17349
17448
  });
17350
17449
  function In(state) {
@@ -17369,7 +17468,7 @@ ${input.slice(result.pos)}
17369
17468
  return result;
17370
17469
  }
17371
17470
  }
17372
- var LetOrConst$0 = $TS($S($C($EXPECT($L128, fail, 'LetOrConst "let"'), $EXPECT($L129, fail, 'LetOrConst "const"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17471
+ var LetOrConst$0 = $TS($S($C($EXPECT($L148, fail, 'LetOrConst "let"'), $EXPECT($L149, fail, 'LetOrConst "const"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17373
17472
  return { $loc, token: $1 };
17374
17473
  });
17375
17474
  function LetOrConst(state) {
@@ -17394,7 +17493,7 @@ ${input.slice(result.pos)}
17394
17493
  return result;
17395
17494
  }
17396
17495
  }
17397
- var Const$0 = $TS($S($EXPECT($L129, fail, 'Const "const"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17496
+ var Const$0 = $TS($S($EXPECT($L149, fail, 'Const "const"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17398
17497
  return { $loc, token: $1 };
17399
17498
  });
17400
17499
  function Const(state) {
@@ -17419,6 +17518,31 @@ ${input.slice(result.pos)}
17419
17518
  return result;
17420
17519
  }
17421
17520
  }
17521
+ var Is$0 = $TS($S($EXPECT($L150, fail, 'Is "is"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17522
+ return { $loc, token: $1 };
17523
+ });
17524
+ function Is(state) {
17525
+ let eventData;
17526
+ if (state.events) {
17527
+ const result = state.events.enter?.("Is", state);
17528
+ if (result) {
17529
+ if (result.cache)
17530
+ return result.cache;
17531
+ eventData = result.data;
17532
+ }
17533
+ }
17534
+ if (state.tokenize) {
17535
+ const result = $TOKEN("Is", state, Is$0(state));
17536
+ if (state.events)
17537
+ state.events.exit?.("Is", state, result, eventData);
17538
+ return result;
17539
+ } else {
17540
+ const result = Is$0(state);
17541
+ if (state.events)
17542
+ state.events.exit?.("Is", state, result, eventData);
17543
+ return result;
17544
+ }
17545
+ }
17422
17546
  var LetOrConstOrVar$0 = LetOrConst;
17423
17547
  var LetOrConstOrVar$1 = Var;
17424
17548
  function LetOrConstOrVar(state) {
@@ -17443,7 +17567,7 @@ ${input.slice(result.pos)}
17443
17567
  return result;
17444
17568
  }
17445
17569
  }
17446
- var Loop$0 = $TS($S($EXPECT($L130, fail, 'Loop "loop"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17570
+ var Loop$0 = $TS($S($EXPECT($L151, fail, 'Loop "loop"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17447
17571
  return { $loc, token: "while(true)" };
17448
17572
  });
17449
17573
  function Loop(state) {
@@ -17468,7 +17592,7 @@ ${input.slice(result.pos)}
17468
17592
  return result;
17469
17593
  }
17470
17594
  }
17471
- var New$0 = $TS($S($EXPECT($L131, fail, 'New "new"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17595
+ var New$0 = $TS($S($EXPECT($L152, fail, 'New "new"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17472
17596
  return { $loc, token: $1 };
17473
17597
  });
17474
17598
  function New(state) {
@@ -17493,7 +17617,7 @@ ${input.slice(result.pos)}
17493
17617
  return result;
17494
17618
  }
17495
17619
  }
17496
- 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) {
17620
+ 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) {
17497
17621
  return { $loc, token: "!" };
17498
17622
  });
17499
17623
  function Not(state) {
@@ -17518,7 +17642,7 @@ ${input.slice(result.pos)}
17518
17642
  return result;
17519
17643
  }
17520
17644
  }
17521
- var Of$0 = $TS($S($EXPECT($L72, fail, 'Of "of"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17645
+ var Of$0 = $TS($S($EXPECT($L84, fail, 'Of "of"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17522
17646
  return { $loc, token: $1 };
17523
17647
  });
17524
17648
  function Of(state) {
@@ -17543,7 +17667,7 @@ ${input.slice(result.pos)}
17543
17667
  return result;
17544
17668
  }
17545
17669
  }
17546
- var OpenAngleBracket$0 = $TV($EXPECT($L132, fail, 'OpenAngleBracket "<"'), function($skip, $loc, $0, $1) {
17670
+ var OpenAngleBracket$0 = $TV($EXPECT($L154, fail, 'OpenAngleBracket "<"'), function($skip, $loc, $0, $1) {
17547
17671
  return { $loc, token: $1 };
17548
17672
  });
17549
17673
  function OpenAngleBracket(state) {
@@ -17568,7 +17692,7 @@ ${input.slice(result.pos)}
17568
17692
  return result;
17569
17693
  }
17570
17694
  }
17571
- var OpenBrace$0 = $TV($EXPECT($L133, fail, 'OpenBrace "{"'), function($skip, $loc, $0, $1) {
17695
+ var OpenBrace$0 = $TV($EXPECT($L155, fail, 'OpenBrace "{"'), function($skip, $loc, $0, $1) {
17572
17696
  return { $loc, token: $1 };
17573
17697
  });
17574
17698
  function OpenBrace(state) {
@@ -17593,7 +17717,7 @@ ${input.slice(result.pos)}
17593
17717
  return result;
17594
17718
  }
17595
17719
  }
17596
- var OpenBracket$0 = $TV($EXPECT($L96, fail, 'OpenBracket "["'), function($skip, $loc, $0, $1) {
17720
+ var OpenBracket$0 = $TV($EXPECT($L113, fail, 'OpenBracket "["'), function($skip, $loc, $0, $1) {
17597
17721
  return { $loc, token: $1 };
17598
17722
  });
17599
17723
  function OpenBracket(state) {
@@ -17643,7 +17767,7 @@ ${input.slice(result.pos)}
17643
17767
  return result;
17644
17768
  }
17645
17769
  }
17646
- var Operator$0 = $TS($S($EXPECT($L134, fail, 'Operator "operator"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17770
+ var Operator$0 = $TS($S($EXPECT($L156, fail, 'Operator "operator"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17647
17771
  return { $loc, token: $1 };
17648
17772
  });
17649
17773
  function Operator(state) {
@@ -17668,7 +17792,7 @@ ${input.slice(result.pos)}
17668
17792
  return result;
17669
17793
  }
17670
17794
  }
17671
- var Public$0 = $TS($S($EXPECT($L135, fail, 'Public "public"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17795
+ var Public$0 = $TS($S($EXPECT($L157, fail, 'Public "public"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17672
17796
  return { $loc, token: $1 };
17673
17797
  });
17674
17798
  function Public(state) {
@@ -17693,7 +17817,7 @@ ${input.slice(result.pos)}
17693
17817
  return result;
17694
17818
  }
17695
17819
  }
17696
- var Private$0 = $TS($S($EXPECT($L136, fail, 'Private "private"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17820
+ var Private$0 = $TS($S($EXPECT($L158, fail, 'Private "private"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17697
17821
  return { $loc, token: $1 };
17698
17822
  });
17699
17823
  function Private(state) {
@@ -17718,7 +17842,7 @@ ${input.slice(result.pos)}
17718
17842
  return result;
17719
17843
  }
17720
17844
  }
17721
- var Protected$0 = $TS($S($EXPECT($L137, fail, 'Protected "protected"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17845
+ var Protected$0 = $TS($S($EXPECT($L159, fail, 'Protected "protected"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17722
17846
  return { $loc, token: $1 };
17723
17847
  });
17724
17848
  function Protected(state) {
@@ -17743,14 +17867,14 @@ ${input.slice(result.pos)}
17743
17867
  return result;
17744
17868
  }
17745
17869
  }
17746
- var Pipe$0 = $TV($EXPECT($L138, fail, 'Pipe "||>"'), function($skip, $loc, $0, $1) {
17747
- return { $loc, token: $1 };
17870
+ var Pipe$0 = $TV($C($EXPECT($L160, fail, 'Pipe "||>"'), $EXPECT($L161, fail, 'Pipe "|\u25B7"')), function($skip, $loc, $0, $1) {
17871
+ return { $loc, token: "||>" };
17748
17872
  });
17749
- var Pipe$1 = $TV($EXPECT($L139, fail, 'Pipe "|>="'), function($skip, $loc, $0, $1) {
17750
- return { $loc, token: $1 };
17873
+ var Pipe$1 = $TV($C($EXPECT($L162, fail, 'Pipe "|>="'), $EXPECT($L163, fail, 'Pipe "\u25B7="')), function($skip, $loc, $0, $1) {
17874
+ return { $loc, token: "|>=" };
17751
17875
  });
17752
- var Pipe$2 = $TV($EXPECT($L140, fail, 'Pipe "|>"'), function($skip, $loc, $0, $1) {
17753
- return { $loc, token: $1 };
17876
+ var Pipe$2 = $TV($C($EXPECT($L164, fail, 'Pipe "|>"'), $EXPECT($L165, fail, 'Pipe "\u25B7"')), function($skip, $loc, $0, $1) {
17877
+ return { $loc, token: "|>" };
17754
17878
  });
17755
17879
  function Pipe(state) {
17756
17880
  let eventData;
@@ -17799,7 +17923,7 @@ ${input.slice(result.pos)}
17799
17923
  return result;
17800
17924
  }
17801
17925
  }
17802
- var Readonly$0 = $TS($S($EXPECT($L141, fail, 'Readonly "readonly"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17926
+ var Readonly$0 = $TS($S($EXPECT($L166, fail, 'Readonly "readonly"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17803
17927
  return { $loc, token: $1, ts: true };
17804
17928
  });
17805
17929
  function Readonly(state) {
@@ -17824,7 +17948,7 @@ ${input.slice(result.pos)}
17824
17948
  return result;
17825
17949
  }
17826
17950
  }
17827
- var Return$0 = $TS($S($EXPECT($L142, fail, 'Return "return"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17951
+ var Return$0 = $TS($S($EXPECT($L167, fail, 'Return "return"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17828
17952
  return { $loc, token: $1 };
17829
17953
  });
17830
17954
  function Return(state) {
@@ -17849,7 +17973,7 @@ ${input.slice(result.pos)}
17849
17973
  return result;
17850
17974
  }
17851
17975
  }
17852
- var Satisfies$0 = $TS($S($EXPECT($L143, fail, 'Satisfies "satisfies"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17976
+ var Satisfies$0 = $TS($S($EXPECT($L168, fail, 'Satisfies "satisfies"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17853
17977
  return { $loc, token: $1 };
17854
17978
  });
17855
17979
  function Satisfies(state) {
@@ -17874,7 +17998,7 @@ ${input.slice(result.pos)}
17874
17998
  return result;
17875
17999
  }
17876
18000
  }
17877
- var Semicolon$0 = $TV($EXPECT($L84, fail, 'Semicolon ";"'), function($skip, $loc, $0, $1) {
18001
+ var Semicolon$0 = $TV($EXPECT($L100, fail, 'Semicolon ";"'), function($skip, $loc, $0, $1) {
17878
18002
  return { $loc, token: $1 };
17879
18003
  });
17880
18004
  function Semicolon(state) {
@@ -17899,7 +18023,7 @@ ${input.slice(result.pos)}
17899
18023
  return result;
17900
18024
  }
17901
18025
  }
17902
- var SingleQuote$0 = $TV($EXPECT($L144, fail, `SingleQuote "'"`), function($skip, $loc, $0, $1) {
18026
+ var SingleQuote$0 = $TV($EXPECT($L169, fail, `SingleQuote "'"`), function($skip, $loc, $0, $1) {
17903
18027
  return { $loc, token: $1 };
17904
18028
  });
17905
18029
  function SingleQuote(state) {
@@ -17924,7 +18048,7 @@ ${input.slice(result.pos)}
17924
18048
  return result;
17925
18049
  }
17926
18050
  }
17927
- var Star$0 = $TV($EXPECT($L53, fail, 'Star "*"'), function($skip, $loc, $0, $1) {
18051
+ var Star$0 = $TV($EXPECT($L54, fail, 'Star "*"'), function($skip, $loc, $0, $1) {
17928
18052
  return { $loc, token: $1 };
17929
18053
  });
17930
18054
  function Star(state) {
@@ -17949,10 +18073,10 @@ ${input.slice(result.pos)}
17949
18073
  return result;
17950
18074
  }
17951
18075
  }
17952
- var Static$0 = $TS($S($EXPECT($L145, fail, 'Static "static"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18076
+ var Static$0 = $TS($S($EXPECT($L170, fail, 'Static "static"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
17953
18077
  return { $loc, token: $1 };
17954
18078
  });
17955
- 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) {
18079
+ 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) {
17956
18080
  return { $loc, token: "static " };
17957
18081
  });
17958
18082
  function Static(state) {
@@ -17977,7 +18101,7 @@ ${input.slice(result.pos)}
17977
18101
  return result;
17978
18102
  }
17979
18103
  }
17980
- var SubstitutionStart$0 = $TV($EXPECT($L146, fail, 'SubstitutionStart "${"'), function($skip, $loc, $0, $1) {
18104
+ var SubstitutionStart$0 = $TV($EXPECT($L171, fail, 'SubstitutionStart "${"'), function($skip, $loc, $0, $1) {
17981
18105
  return { $loc, token: $1 };
17982
18106
  });
17983
18107
  function SubstitutionStart(state) {
@@ -18002,7 +18126,7 @@ ${input.slice(result.pos)}
18002
18126
  return result;
18003
18127
  }
18004
18128
  }
18005
- var Switch$0 = $TS($S($EXPECT($L147, fail, 'Switch "switch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18129
+ var Switch$0 = $TS($S($EXPECT($L172, fail, 'Switch "switch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18006
18130
  return { $loc, token: $1 };
18007
18131
  });
18008
18132
  function Switch(state) {
@@ -18027,7 +18151,7 @@ ${input.slice(result.pos)}
18027
18151
  return result;
18028
18152
  }
18029
18153
  }
18030
- var Target$0 = $TS($S($EXPECT($L148, fail, 'Target "target"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18154
+ var Target$0 = $TS($S($EXPECT($L173, fail, 'Target "target"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18031
18155
  return { $loc, token: $1 };
18032
18156
  });
18033
18157
  function Target(state) {
@@ -18052,7 +18176,7 @@ ${input.slice(result.pos)}
18052
18176
  return result;
18053
18177
  }
18054
18178
  }
18055
- var Then$0 = $TS($S(__, $EXPECT($L149, fail, 'Then "then"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
18179
+ var Then$0 = $TS($S(__, $EXPECT($L174, fail, 'Then "then"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
18056
18180
  return { $loc, token: "" };
18057
18181
  });
18058
18182
  function Then(state) {
@@ -18077,7 +18201,7 @@ ${input.slice(result.pos)}
18077
18201
  return result;
18078
18202
  }
18079
18203
  }
18080
- var This$0 = $TS($S($EXPECT($L150, fail, 'This "this"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18204
+ var This$0 = $TS($S($EXPECT($L175, fail, 'This "this"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18081
18205
  return { $loc, token: $1 };
18082
18206
  });
18083
18207
  function This(state) {
@@ -18102,7 +18226,7 @@ ${input.slice(result.pos)}
18102
18226
  return result;
18103
18227
  }
18104
18228
  }
18105
- var Throw$0 = $TS($S($EXPECT($L151, fail, 'Throw "throw"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18229
+ var Throw$0 = $TS($S($EXPECT($L176, fail, 'Throw "throw"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18106
18230
  return { $loc, token: $1 };
18107
18231
  });
18108
18232
  function Throw(state) {
@@ -18127,7 +18251,7 @@ ${input.slice(result.pos)}
18127
18251
  return result;
18128
18252
  }
18129
18253
  }
18130
- var TripleDoubleQuote$0 = $TV($EXPECT($L152, fail, 'TripleDoubleQuote "\\\\\\"\\\\\\"\\\\\\""'), function($skip, $loc, $0, $1) {
18254
+ var TripleDoubleQuote$0 = $TV($EXPECT($L177, fail, 'TripleDoubleQuote "\\\\\\"\\\\\\"\\\\\\""'), function($skip, $loc, $0, $1) {
18131
18255
  return { $loc, token: "`" };
18132
18256
  });
18133
18257
  function TripleDoubleQuote(state) {
@@ -18152,7 +18276,7 @@ ${input.slice(result.pos)}
18152
18276
  return result;
18153
18277
  }
18154
18278
  }
18155
- var TripleSingleQuote$0 = $TV($EXPECT($L153, fail, `TripleSingleQuote "'''"`), function($skip, $loc, $0, $1) {
18279
+ var TripleSingleQuote$0 = $TV($EXPECT($L178, fail, `TripleSingleQuote "'''"`), function($skip, $loc, $0, $1) {
18156
18280
  return { $loc, token: "`" };
18157
18281
  });
18158
18282
  function TripleSingleQuote(state) {
@@ -18177,7 +18301,7 @@ ${input.slice(result.pos)}
18177
18301
  return result;
18178
18302
  }
18179
18303
  }
18180
- var TripleSlash$0 = $TV($EXPECT($L154, fail, 'TripleSlash "///"'), function($skip, $loc, $0, $1) {
18304
+ var TripleSlash$0 = $TV($EXPECT($L179, fail, 'TripleSlash "///"'), function($skip, $loc, $0, $1) {
18181
18305
  return { $loc, token: "/" };
18182
18306
  });
18183
18307
  function TripleSlash(state) {
@@ -18202,7 +18326,7 @@ ${input.slice(result.pos)}
18202
18326
  return result;
18203
18327
  }
18204
18328
  }
18205
- var TripleTick$0 = $TV($EXPECT($L155, fail, 'TripleTick "```"'), function($skip, $loc, $0, $1) {
18329
+ var TripleTick$0 = $TV($EXPECT($L180, fail, 'TripleTick "```"'), function($skip, $loc, $0, $1) {
18206
18330
  return { $loc, token: "`" };
18207
18331
  });
18208
18332
  function TripleTick(state) {
@@ -18227,7 +18351,7 @@ ${input.slice(result.pos)}
18227
18351
  return result;
18228
18352
  }
18229
18353
  }
18230
- var Try$0 = $TS($S($EXPECT($L156, fail, 'Try "try"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18354
+ var Try$0 = $TS($S($EXPECT($L181, fail, 'Try "try"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18231
18355
  return { $loc, token: $1 };
18232
18356
  });
18233
18357
  function Try(state) {
@@ -18252,7 +18376,7 @@ ${input.slice(result.pos)}
18252
18376
  return result;
18253
18377
  }
18254
18378
  }
18255
- var Typeof$0 = $TS($S($EXPECT($L157, fail, 'Typeof "typeof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18379
+ var Typeof$0 = $TS($S($EXPECT($L182, fail, 'Typeof "typeof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18256
18380
  return { $loc, token: $1 };
18257
18381
  });
18258
18382
  function Typeof(state) {
@@ -18277,7 +18401,7 @@ ${input.slice(result.pos)}
18277
18401
  return result;
18278
18402
  }
18279
18403
  }
18280
- var Unless$0 = $TS($S($EXPECT($L158, fail, 'Unless "unless"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18404
+ var Unless$0 = $TS($S($EXPECT($L183, fail, 'Unless "unless"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18281
18405
  return { $loc, token: $1 };
18282
18406
  });
18283
18407
  function Unless(state) {
@@ -18302,7 +18426,7 @@ ${input.slice(result.pos)}
18302
18426
  return result;
18303
18427
  }
18304
18428
  }
18305
- var Until$0 = $TS($S($EXPECT($L159, fail, 'Until "until"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18429
+ var Until$0 = $TS($S($EXPECT($L184, fail, 'Until "until"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18306
18430
  return { $loc, token: $1 };
18307
18431
  });
18308
18432
  function Until(state) {
@@ -18327,7 +18451,7 @@ ${input.slice(result.pos)}
18327
18451
  return result;
18328
18452
  }
18329
18453
  }
18330
- var Var$0 = $TS($S($EXPECT($L160, fail, 'Var "var"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18454
+ var Var$0 = $TS($S($EXPECT($L185, fail, 'Var "var"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18331
18455
  return { $loc, token: $1 };
18332
18456
  });
18333
18457
  function Var(state) {
@@ -18352,7 +18476,7 @@ ${input.slice(result.pos)}
18352
18476
  return result;
18353
18477
  }
18354
18478
  }
18355
- var Void$0 = $TS($S($EXPECT($L161, fail, 'Void "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18479
+ var Void$0 = $TS($S($EXPECT($L186, fail, 'Void "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18356
18480
  return { $loc, token: $1 };
18357
18481
  });
18358
18482
  function Void(state) {
@@ -18377,7 +18501,7 @@ ${input.slice(result.pos)}
18377
18501
  return result;
18378
18502
  }
18379
18503
  }
18380
- var When$0 = $TS($S($EXPECT($L162, fail, 'When "when"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18504
+ var When$0 = $TS($S($EXPECT($L187, fail, 'When "when"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18381
18505
  return { $loc, token: "case" };
18382
18506
  });
18383
18507
  function When(state) {
@@ -18402,7 +18526,7 @@ ${input.slice(result.pos)}
18402
18526
  return result;
18403
18527
  }
18404
18528
  }
18405
- var While$0 = $TS($S($EXPECT($L163, fail, 'While "while"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18529
+ var While$0 = $TS($S($EXPECT($L188, fail, 'While "while"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18406
18530
  return { $loc, token: $1 };
18407
18531
  });
18408
18532
  function While(state) {
@@ -18427,7 +18551,7 @@ ${input.slice(result.pos)}
18427
18551
  return result;
18428
18552
  }
18429
18553
  }
18430
- var Yield$0 = $TS($S($EXPECT($L164, fail, 'Yield "yield"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18554
+ var Yield$0 = $TS($S($EXPECT($L189, fail, 'Yield "yield"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
18431
18555
  return { $loc, token: $1, type: "Yield" };
18432
18556
  });
18433
18557
  function Yield(state) {
@@ -18572,7 +18696,7 @@ ${input.slice(result.pos)}
18572
18696
  return result;
18573
18697
  }
18574
18698
  }
18575
- 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) {
18699
+ 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) {
18576
18700
  return { type: "JSXElement", children: $0, tag: $2 };
18577
18701
  });
18578
18702
  function JSXSelfClosingElement(state) {
@@ -18648,7 +18772,7 @@ ${input.slice(result.pos)}
18648
18772
  return result;
18649
18773
  }
18650
18774
  }
18651
- var JSXOpeningElement$0 = $S($EXPECT($L132, fail, 'JSXOpeningElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L31, fail, 'JSXOpeningElement ">"'));
18775
+ var JSXOpeningElement$0 = $S($EXPECT($L154, fail, 'JSXOpeningElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L33, fail, 'JSXOpeningElement ">"'));
18652
18776
  function JSXOpeningElement(state) {
18653
18777
  let eventData;
18654
18778
  if (state.events) {
@@ -18700,7 +18824,7 @@ ${input.slice(result.pos)}
18700
18824
  return result;
18701
18825
  }
18702
18826
  }
18703
- var JSXClosingElement$0 = $S($EXPECT($L166, fail, 'JSXClosingElement "</"'), $E(Whitespace), JSXElementName, $E(Whitespace), $EXPECT($L31, fail, 'JSXClosingElement ">"'));
18827
+ var JSXClosingElement$0 = $S($EXPECT($L191, fail, 'JSXClosingElement "</"'), $E(Whitespace), JSXElementName, $E(Whitespace), $EXPECT($L33, fail, 'JSXClosingElement ">"'));
18704
18828
  function JSXClosingElement(state) {
18705
18829
  let eventData;
18706
18830
  if (state.events) {
@@ -18738,7 +18862,7 @@ ${input.slice(result.pos)}
18738
18862
  ];
18739
18863
  return { type: "JSXFragment", children: parts, jsxChildren: children.jsxChildren };
18740
18864
  });
18741
- var JSXFragment$1 = $TS($S(CoffeeJSXEnabled, $EXPECT($L167, fail, 'JSXFragment "<>"'), $E(JSXChildren), $E(Whitespace), JSXClosingFragment), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
18865
+ var JSXFragment$1 = $TS($S(CoffeeJSXEnabled, $EXPECT($L192, fail, 'JSXFragment "<>"'), $E(JSXChildren), $E(Whitespace), JSXClosingFragment), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
18742
18866
  var children = $3;
18743
18867
  $0 = $0.slice(1);
18744
18868
  return {
@@ -18769,7 +18893,7 @@ ${input.slice(result.pos)}
18769
18893
  return result;
18770
18894
  }
18771
18895
  }
18772
- var PushJSXOpeningFragment$0 = $TV($EXPECT($L167, fail, 'PushJSXOpeningFragment "<>"'), function($skip, $loc, $0, $1) {
18896
+ var PushJSXOpeningFragment$0 = $TV($EXPECT($L192, fail, 'PushJSXOpeningFragment "<>"'), function($skip, $loc, $0, $1) {
18773
18897
  module.JSXTagStack.push("");
18774
18898
  return $1;
18775
18899
  });
@@ -18823,7 +18947,7 @@ ${input.slice(result.pos)}
18823
18947
  return result;
18824
18948
  }
18825
18949
  }
18826
- var JSXClosingFragment$0 = $EXPECT($L168, fail, 'JSXClosingFragment "</>"');
18950
+ var JSXClosingFragment$0 = $EXPECT($L193, fail, 'JSXClosingFragment "</>"');
18827
18951
  function JSXClosingFragment(state) {
18828
18952
  let eventData;
18829
18953
  if (state.events) {
@@ -18846,7 +18970,7 @@ ${input.slice(result.pos)}
18846
18970
  return result;
18847
18971
  }
18848
18972
  }
18849
- var JSXElementName$0 = $TV($Y($S($C($EXPECT($L13, fail, 'JSXElementName "#"'), Dot), JSXShorthandString)), function($skip, $loc, $0, $1) {
18973
+ var JSXElementName$0 = $TV($Y($S($C($EXPECT($L14, fail, 'JSXElementName "#"'), Dot), JSXShorthandString)), function($skip, $loc, $0, $1) {
18850
18974
  return module.config.defaultElement;
18851
18975
  });
18852
18976
  var JSXElementName$1 = $TEXT($S(JSXIdentifierName, $C($S(Colon, JSXIdentifierName), $Q($S(Dot, JSXIdentifierName)))));
@@ -19073,7 +19197,7 @@ ${input.slice(result.pos)}
19073
19197
  }
19074
19198
  return $skip;
19075
19199
  });
19076
- var JSXAttribute$5 = $TS($S($EXPECT($L13, fail, 'JSXAttribute "#"'), JSXShorthandString), function($skip, $loc, $0, $1, $2) {
19200
+ var JSXAttribute$5 = $TS($S($EXPECT($L14, fail, 'JSXAttribute "#"'), JSXShorthandString), function($skip, $loc, $0, $1, $2) {
19077
19201
  return [" ", "id=", $2];
19078
19202
  });
19079
19203
  var JSXAttribute$6 = $TS($S(Dot, JSXShorthandString), function($skip, $loc, $0, $1, $2) {
@@ -19403,7 +19527,7 @@ ${input.slice(result.pos)}
19403
19527
  return result;
19404
19528
  }
19405
19529
  }
19406
- var InlineJSXCallExpression$0 = $TS($S($EXPECT($L14, fail, 'InlineJSXCallExpression "super"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
19530
+ var InlineJSXCallExpression$0 = $TS($S($EXPECT($L15, fail, 'InlineJSXCallExpression "super"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
19407
19531
  var args = $2;
19408
19532
  var rest = $3;
19409
19533
  return processCallMemberExpression({
@@ -19415,7 +19539,7 @@ ${input.slice(result.pos)}
19415
19539
  ]
19416
19540
  });
19417
19541
  });
19418
- var InlineJSXCallExpression$1 = $TS($S($EXPECT($L15, fail, 'InlineJSXCallExpression "import"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
19542
+ var InlineJSXCallExpression$1 = $TS($S($EXPECT($L16, fail, 'InlineJSXCallExpression "import"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
19419
19543
  var args = $2;
19420
19544
  var rest = $3;
19421
19545
  return processCallMemberExpression({
@@ -19663,7 +19787,7 @@ ${input.slice(result.pos)}
19663
19787
  }
19664
19788
  return $skip;
19665
19789
  });
19666
- var JSXNestedChildren$1 = $TV($Y($C(JSXEOS, $EXPECT($L23, fail, 'JSXNestedChildren "}"'), JSXClosingElement, JSXClosingFragment)), function($skip, $loc, $0, $1) {
19790
+ var JSXNestedChildren$1 = $TV($Y($C(JSXEOS, $EXPECT($L25, fail, 'JSXNestedChildren "}"'), JSXClosingElement, JSXClosingFragment)), function($skip, $loc, $0, $1) {
19667
19791
  return { children: [], jsxChildren: [] };
19668
19792
  });
19669
19793
  function JSXNestedChildren(state) {
@@ -19792,7 +19916,7 @@ ${input.slice(result.pos)}
19792
19916
  return result;
19793
19917
  }
19794
19918
  }
19795
- var JSXComment$0 = $TS($S($EXPECT($L169, fail, 'JSXComment "<!--"'), JSXCommentContent, $EXPECT($L170, fail, 'JSXComment "-->"')), function($skip, $loc, $0, $1, $2, $3) {
19919
+ var JSXComment$0 = $TS($S($EXPECT($L194, fail, 'JSXComment "<!--"'), JSXCommentContent, $EXPECT($L195, fail, 'JSXComment "-->"')), function($skip, $loc, $0, $1, $2, $3) {
19796
19920
  return ["{/*", $2, "*/}"];
19797
19921
  });
19798
19922
  function JSXComment(state) {
@@ -20095,7 +20219,7 @@ ${input.slice(result.pos)}
20095
20219
  return result;
20096
20220
  }
20097
20221
  }
20098
- var TypeKeyword$0 = $TS($S($EXPECT($L171, fail, 'TypeKeyword "type"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20222
+ var TypeKeyword$0 = $TS($S($EXPECT($L196, fail, 'TypeKeyword "type"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20099
20223
  return { $loc, token: $1 };
20100
20224
  });
20101
20225
  function TypeKeyword(state) {
@@ -20120,7 +20244,7 @@ ${input.slice(result.pos)}
20120
20244
  return result;
20121
20245
  }
20122
20246
  }
20123
- var Enum$0 = $TS($S($EXPECT($L172, fail, 'Enum "enum"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20247
+ var Enum$0 = $TS($S($EXPECT($L197, fail, 'Enum "enum"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20124
20248
  return { $loc, token: $1 };
20125
20249
  });
20126
20250
  function Enum(state) {
@@ -20145,7 +20269,7 @@ ${input.slice(result.pos)}
20145
20269
  return result;
20146
20270
  }
20147
20271
  }
20148
- var Interface$0 = $TS($S($EXPECT($L173, fail, 'Interface "interface"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20272
+ var Interface$0 = $TS($S($EXPECT($L198, fail, 'Interface "interface"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20149
20273
  return { $loc, token: $1 };
20150
20274
  });
20151
20275
  function Interface(state) {
@@ -20170,7 +20294,7 @@ ${input.slice(result.pos)}
20170
20294
  return result;
20171
20295
  }
20172
20296
  }
20173
- var Global$0 = $TS($S($EXPECT($L174, fail, 'Global "global"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20297
+ var Global$0 = $TS($S($EXPECT($L199, fail, 'Global "global"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20174
20298
  return { $loc, token: $1 };
20175
20299
  });
20176
20300
  function Global(state) {
@@ -20195,7 +20319,7 @@ ${input.slice(result.pos)}
20195
20319
  return result;
20196
20320
  }
20197
20321
  }
20198
- var Module$0 = $TS($S($EXPECT($L175, fail, 'Module "module"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20322
+ var Module$0 = $TS($S($EXPECT($L200, fail, 'Module "module"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20199
20323
  return { $loc, token: $1 };
20200
20324
  });
20201
20325
  function Module(state) {
@@ -20220,7 +20344,7 @@ ${input.slice(result.pos)}
20220
20344
  return result;
20221
20345
  }
20222
20346
  }
20223
- var Namespace$0 = $TS($S($EXPECT($L176, fail, 'Namespace "namespace"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20347
+ var Namespace$0 = $TS($S($EXPECT($L201, fail, 'Namespace "namespace"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
20224
20348
  return { $loc, token: $1 };
20225
20349
  });
20226
20350
  function Namespace(state) {
@@ -20888,7 +21012,7 @@ ${input.slice(result.pos)}
20888
21012
  return result;
20889
21013
  }
20890
21014
  }
20891
- var ReturnTypeSuffix$0 = $TS($S($E(_), Colon, $E($S(__, $EXPECT($L177, fail, 'ReturnTypeSuffix "asserts"'), NonIdContinue)), TypePredicate), function($skip, $loc, $0, $1, $2, $3, $4) {
21015
+ var ReturnTypeSuffix$0 = $TS($S($E(_), Colon, $E($S(__, $EXPECT($L202, fail, 'ReturnTypeSuffix "asserts"'), NonIdContinue)), TypePredicate), function($skip, $loc, $0, $1, $2, $3, $4) {
20892
21016
  var asserts = $3;
20893
21017
  var t = $4;
20894
21018
  if (asserts) {
@@ -20927,7 +21051,7 @@ ${input.slice(result.pos)}
20927
21051
  return result;
20928
21052
  }
20929
21053
  }
20930
- var TypePredicate$0 = $TS($S(Type, $E($S(__, $EXPECT($L81, fail, 'TypePredicate "is"'), NonIdContinue, Type))), function($skip, $loc, $0, $1, $2) {
21054
+ var TypePredicate$0 = $TS($S(Type, $E($S(__, $EXPECT($L150, fail, 'TypePredicate "is"'), NonIdContinue, Type))), function($skip, $loc, $0, $1, $2) {
20931
21055
  var lhs = $1;
20932
21056
  var rhs = $2;
20933
21057
  if (!rhs)
@@ -20984,10 +21108,17 @@ ${input.slice(result.pos)}
20984
21108
  return result;
20985
21109
  }
20986
21110
  }
20987
- var TypeBinary$0 = $TS($S(TypeUnary, $Q($S(__, TypeBinaryOp, __, TypeUnary))), function($skip, $loc, $0, $1, $2) {
20988
- if ($2.length)
20989
- return $0;
20990
- return $1;
21111
+ var TypeBinary$0 = $TS($S($E($S(__, TypeBinaryOp, __)), TypeUnary, $Q($S(__, TypeBinaryOp, __, TypeUnary))), function($skip, $loc, $0, $1, $2, $3) {
21112
+ var optionalPrefix = $1;
21113
+ var t = $2;
21114
+ var ops = $3;
21115
+ if (!ops.length && !optionalPrefix)
21116
+ return t;
21117
+ if (!ops.length)
21118
+ return [optionalPrefix, t];
21119
+ if (!optionalPrefix)
21120
+ return [t, ...ops];
21121
+ return [optionalPrefix, t, ops];
20991
21122
  });
20992
21123
  function TypeBinary(state) {
20993
21124
  let eventData;
@@ -21062,10 +21193,10 @@ ${input.slice(result.pos)}
21062
21193
  return result;
21063
21194
  }
21064
21195
  }
21065
- var TypeUnaryOp$0 = $S($EXPECT($L178, fail, 'TypeUnaryOp "keyof"'), NonIdContinue);
21066
- var TypeUnaryOp$1 = $S($EXPECT($L157, fail, 'TypeUnaryOp "typeof"'), NonIdContinue);
21067
- var TypeUnaryOp$2 = $S($EXPECT($L179, fail, 'TypeUnaryOp "infer"'), NonIdContinue);
21068
- var TypeUnaryOp$3 = $S($EXPECT($L141, fail, 'TypeUnaryOp "readonly"'), NonIdContinue);
21196
+ var TypeUnaryOp$0 = $S($EXPECT($L203, fail, 'TypeUnaryOp "keyof"'), NonIdContinue);
21197
+ var TypeUnaryOp$1 = $S($EXPECT($L182, fail, 'TypeUnaryOp "typeof"'), NonIdContinue);
21198
+ var TypeUnaryOp$2 = $S($EXPECT($L204, fail, 'TypeUnaryOp "infer"'), NonIdContinue);
21199
+ var TypeUnaryOp$3 = $S($EXPECT($L166, fail, 'TypeUnaryOp "readonly"'), NonIdContinue);
21069
21200
  function TypeUnaryOp(state) {
21070
21201
  let eventData;
21071
21202
  if (state.events) {
@@ -21156,8 +21287,8 @@ ${input.slice(result.pos)}
21156
21287
  return result;
21157
21288
  }
21158
21289
  }
21159
- var ImportType$0 = $S($EXPECT($L15, fail, 'ImportType "import"'), OpenParen, __, StringLiteral, __, CloseParen, $E($S(Dot, IdentifierName)), $E(TypeArguments));
21160
- var ImportType$1 = $S($EXPECT($L15, fail, 'ImportType "import"'), InsertOpenParen, Trimmed_, StringLiteral, InsertCloseParen);
21290
+ var ImportType$0 = $S($EXPECT($L16, fail, 'ImportType "import"'), OpenParen, __, StringLiteral, __, CloseParen, $E($S(Dot, IdentifierName)), $E(TypeArguments));
21291
+ var ImportType$1 = $S($EXPECT($L16, fail, 'ImportType "import"'), InsertOpenParen, Trimmed_, StringLiteral, InsertCloseParen);
21161
21292
  function ImportType(state) {
21162
21293
  let eventData;
21163
21294
  if (state.events) {
@@ -21311,7 +21442,7 @@ ${input.slice(result.pos)}
21311
21442
  return result;
21312
21443
  }
21313
21444
  }
21314
- 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) {
21445
+ 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) {
21315
21446
  if ($2)
21316
21447
  return $0;
21317
21448
  return $1;
@@ -21443,10 +21574,10 @@ ${input.slice(result.pos)}
21443
21574
  }
21444
21575
  var TypeLiteral$0 = TypeTemplateLiteral;
21445
21576
  var TypeLiteral$1 = Literal;
21446
- var TypeLiteral$2 = $TS($S($EXPECT($L161, fail, 'TypeLiteral "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
21577
+ var TypeLiteral$2 = $TS($S($EXPECT($L186, fail, 'TypeLiteral "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
21447
21578
  return { type: "VoidType", $loc, token: $1 };
21448
21579
  });
21449
- var TypeLiteral$3 = $TV($EXPECT($L180, fail, 'TypeLiteral "[]"'), function($skip, $loc, $0, $1) {
21580
+ var TypeLiteral$3 = $TV($EXPECT($L205, fail, 'TypeLiteral "[]"'), function($skip, $loc, $0, $1) {
21450
21581
  return { $loc, token: "[]" };
21451
21582
  });
21452
21583
  function TypeLiteral(state) {
@@ -21521,7 +21652,7 @@ ${input.slice(result.pos)}
21521
21652
  var InlineInterfacePropertyDelimiter$1 = $T($S($Y($S($C(IndentedFurther, $E(_)), InlineBasicInterfaceProperty)), InsertComma), function(value) {
21522
21653
  return value[1];
21523
21654
  });
21524
- var InlineInterfacePropertyDelimiter$2 = $Y($S(__, $C($EXPECT($L10, fail, 'InlineInterfacePropertyDelimiter ":"'), $EXPECT($L108, fail, 'InlineInterfacePropertyDelimiter ")"'), $EXPECT($L32, fail, 'InlineInterfacePropertyDelimiter "]"'), $EXPECT($L23, fail, 'InlineInterfacePropertyDelimiter "}"'))));
21655
+ var InlineInterfacePropertyDelimiter$2 = $Y($S(__, $C($EXPECT($L11, fail, 'InlineInterfacePropertyDelimiter ":"'), $EXPECT($L125, fail, 'InlineInterfacePropertyDelimiter ")"'), $EXPECT($L34, fail, 'InlineInterfacePropertyDelimiter "]"'), $EXPECT($L25, fail, 'InlineInterfacePropertyDelimiter "}"'))));
21525
21656
  var InlineInterfacePropertyDelimiter$3 = $Y(EOS);
21526
21657
  function InlineInterfacePropertyDelimiter(state) {
21527
21658
  let eventData;
@@ -21545,10 +21676,10 @@ ${input.slice(result.pos)}
21545
21676
  return result;
21546
21677
  }
21547
21678
  }
21548
- var TypeBinaryOp$0 = $TV($EXPECT($L83, fail, 'TypeBinaryOp "|"'), function($skip, $loc, $0, $1) {
21679
+ var TypeBinaryOp$0 = $TV($EXPECT($L99, fail, 'TypeBinaryOp "|"'), function($skip, $loc, $0, $1) {
21549
21680
  return { $loc, token: "|" };
21550
21681
  });
21551
- var TypeBinaryOp$1 = $TV($EXPECT($L82, fail, 'TypeBinaryOp "&"'), function($skip, $loc, $0, $1) {
21682
+ var TypeBinaryOp$1 = $TV($EXPECT($L98, fail, 'TypeBinaryOp "&"'), function($skip, $loc, $0, $1) {
21552
21683
  return { $loc, token: "&" };
21553
21684
  });
21554
21685
  function TypeBinaryOp(state) {
@@ -21573,8 +21704,8 @@ ${input.slice(result.pos)}
21573
21704
  return result;
21574
21705
  }
21575
21706
  }
21576
- var FunctionType$0 = $TS($S(Parameters, __, TypeArrowFunction, $E(Type)), function($skip, $loc, $0, $1, $2, $3, $4) {
21577
- var type = $4;
21707
+ var FunctionType$0 = $TS($S($E($S(New, $E(_))), Parameters, __, TypeArrowFunction, $E(Type)), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
21708
+ var type = $5;
21578
21709
  if (type) {
21579
21710
  return $0;
21580
21711
  }
@@ -21602,10 +21733,7 @@ ${input.slice(result.pos)}
21602
21733
  return result;
21603
21734
  }
21604
21735
  }
21605
- var TypeArrowFunction$0 = $TV($EXPECT($L8, fail, 'TypeArrowFunction "=>"'), function($skip, $loc, $0, $1) {
21606
- return { $loc, token: "=>" };
21607
- });
21608
- var TypeArrowFunction$1 = $TV($EXPECT($L22, fail, 'TypeArrowFunction "->"'), function($skip, $loc, $0, $1) {
21736
+ 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) {
21609
21737
  return { $loc, token: "=>" };
21610
21738
  });
21611
21739
  function TypeArrowFunction(state) {
@@ -21619,18 +21747,18 @@ ${input.slice(result.pos)}
21619
21747
  }
21620
21748
  }
21621
21749
  if (state.tokenize) {
21622
- const result = $TOKEN("TypeArrowFunction", state, TypeArrowFunction$0(state) || TypeArrowFunction$1(state));
21750
+ const result = $TOKEN("TypeArrowFunction", state, TypeArrowFunction$0(state));
21623
21751
  if (state.events)
21624
21752
  state.events.exit?.("TypeArrowFunction", state, result, eventData);
21625
21753
  return result;
21626
21754
  } else {
21627
- const result = TypeArrowFunction$0(state) || TypeArrowFunction$1(state);
21755
+ const result = TypeArrowFunction$0(state);
21628
21756
  if (state.events)
21629
21757
  state.events.exit?.("TypeArrowFunction", state, result, eventData);
21630
21758
  return result;
21631
21759
  }
21632
21760
  }
21633
- var TypeArguments$0 = $TS($S($EXPECT($L132, fail, 'TypeArguments "<"'), $P(TypeArgument), __, $EXPECT($L31, fail, 'TypeArguments ">"')), function($skip, $loc, $0, $1, $2, $3, $4) {
21761
+ var TypeArguments$0 = $TS($S($EXPECT($L154, fail, 'TypeArguments "<"'), $P(TypeArgument), __, $EXPECT($L33, fail, 'TypeArguments ">"')), function($skip, $loc, $0, $1, $2, $3, $4) {
21634
21762
  return { ts: true, children: $0 };
21635
21763
  });
21636
21764
  function TypeArguments(state) {
@@ -21701,7 +21829,7 @@ ${input.slice(result.pos)}
21701
21829
  return result;
21702
21830
  }
21703
21831
  }
21704
- 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) {
21832
+ 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) {
21705
21833
  var parameters = $3;
21706
21834
  return {
21707
21835
  type: "TypeParameters",
@@ -21732,7 +21860,7 @@ ${input.slice(result.pos)}
21732
21860
  return result;
21733
21861
  }
21734
21862
  }
21735
- var TypeParameter$0 = $S(__, $E($S($EXPECT($L129, fail, 'TypeParameter "const"'), $E(_))), Identifier, $E(TypeConstraint), $E(TypeInitializer), TypeParameterDelimiter);
21863
+ var TypeParameter$0 = $S(__, $E($S($EXPECT($L149, fail, 'TypeParameter "const"'), $E(_))), Identifier, $E(TypeConstraint), $E(TypeInitializer), TypeParameterDelimiter);
21736
21864
  function TypeParameter(state) {
21737
21865
  let eventData;
21738
21866
  if (state.events) {
@@ -21755,7 +21883,7 @@ ${input.slice(result.pos)}
21755
21883
  return result;
21756
21884
  }
21757
21885
  }
21758
- var TypeConstraint$0 = $S(__, $EXPECT($L120, fail, 'TypeConstraint "extends"'), NonIdContinue, Type);
21886
+ var TypeConstraint$0 = $S(__, $EXPECT($L139, fail, 'TypeConstraint "extends"'), NonIdContinue, Type);
21759
21887
  function TypeConstraint(state) {
21760
21888
  let eventData;
21761
21889
  if (state.events) {
@@ -21802,7 +21930,7 @@ ${input.slice(result.pos)}
21802
21930
  }
21803
21931
  }
21804
21932
  var TypeParameterDelimiter$0 = $S($Q(_), Comma);
21805
- var TypeParameterDelimiter$1 = $Y($S(__, $EXPECT($L31, fail, 'TypeParameterDelimiter ">"')));
21933
+ var TypeParameterDelimiter$1 = $Y($S(__, $EXPECT($L33, fail, 'TypeParameterDelimiter ">"')));
21806
21934
  var TypeParameterDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
21807
21935
  return value[1];
21808
21936
  });
@@ -21906,7 +22034,7 @@ ${input.slice(result.pos)}
21906
22034
  return result;
21907
22035
  }
21908
22036
  }
21909
- 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) {
22037
+ 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) {
21910
22038
  var options = $3;
21911
22039
  return {
21912
22040
  type: "CivetPrologue",