@danielx/civet 0.6.67 → 0.6.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.js CHANGED
@@ -5,7 +5,6 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __getProtoOf = Object.getPrototypeOf;
7
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
9
8
  var __esm = (fn, res) => function __init() {
10
9
  return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
11
10
  };
@@ -33,10 +32,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
33
32
  mod
34
33
  ));
35
34
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
- var __publicField = (obj, key, value) => {
37
- __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
38
- return value;
39
- };
40
35
 
41
36
  // source/lib.civet
42
37
  var lib_exports = {};
@@ -644,7 +639,7 @@ function handleThisPrivateShorthands(value) {
644
639
  if (i === 0) {
645
640
  let s;
646
641
  [c, s] = handleThisPrivateShorthands(c);
647
- suppressPrefix || (suppressPrefix = s);
642
+ suppressPrefix ||= s;
648
643
  }
649
644
  return c;
650
645
  })
@@ -655,6 +650,37 @@ function handleThisPrivateShorthands(value) {
655
650
  }
656
651
  function processCallMemberExpression(node) {
657
652
  const { children } = node;
653
+ if (children[0]?.parenthesizedOp?.token && children[1]?.type === "Call") {
654
+ const op = children[0].parenthesizedOp;
655
+ let call = children[1];
656
+ const args = [...call.args];
657
+ call = { ...call, args };
658
+ let ref2;
659
+ if (ref2 = isComma(args.at(-1))) {
660
+ const comma = ref2;
661
+ comma.token = "";
662
+ }
663
+ let commaCount = 0;
664
+ for (let i4 = 0, len4 = args.length; i4 < len4; i4++) {
665
+ const arg = args[i4];
666
+ let ref3;
667
+ if (ref3 = isComma(arg)) {
668
+ const comma = ref3;
669
+ comma.token = `)${op.token}(`;
670
+ commaCount++;
671
+ }
672
+ }
673
+ if (args.length) {
674
+ children.splice(
675
+ 0,
676
+ 2,
677
+ commaCount ? {
678
+ type: "ParenthesizedExpression",
679
+ children: ["(", call, ")"]
680
+ } : call
681
+ );
682
+ }
683
+ }
658
684
  for (let i = 0; i < children.length; i++) {
659
685
  const glob = children[i];
660
686
  if (glob?.type === "PropertyGlob") {
@@ -1047,18 +1073,18 @@ function replaceBlockExpression(node, child, replacement) {
1047
1073
  }
1048
1074
  function findChildIndex(parent, child) {
1049
1075
  const children = Array.isArray(parent) ? parent : parent.children;
1050
- for (let i4 = 0, len4 = children.length; i4 < len4; i4++) {
1051
- const i = i4;
1052
- const c = children[i4];
1076
+ for (let i5 = 0, len5 = children.length; i5 < len5; i5++) {
1077
+ const i = i5;
1078
+ const c = children[i5];
1053
1079
  if (c === child || Array.isArray(c) && arrayRecurse(c)) {
1054
1080
  return i;
1055
1081
  }
1056
1082
  }
1057
1083
  function arrayRecurse(array) {
1058
1084
  const results2 = [];
1059
- for (let i5 = 0, len5 = array.length; i5 < len5; i5++) {
1060
- const i = i5;
1061
- const c = array[i5];
1085
+ for (let i6 = 0, len6 = array.length; i6 < len6; i6++) {
1086
+ const i = i6;
1087
+ const c = array[i6];
1062
1088
  if (c === child || Array.isArray(c) && arrayRecurse(c)) {
1063
1089
  return true;
1064
1090
  } else {
@@ -1075,9 +1101,9 @@ function replaceNode(node, newNode) {
1075
1101
  throw new Error("replaceNode failed: node has no parent");
1076
1102
  }
1077
1103
  function recurse(children) {
1078
- for (let i6 = 0, len6 = children.length; i6 < len6; i6++) {
1079
- const i = i6;
1080
- const child = children[i6];
1104
+ for (let i7 = 0, len7 = children.length; i7 < len7; i7++) {
1105
+ const i = i7;
1106
+ const child = children[i7];
1081
1107
  if (child === node) {
1082
1108
  children[i] = newNode;
1083
1109
  return true;
@@ -1391,6 +1417,15 @@ function isExit(node) {
1391
1417
  "ContinueStatement"
1392
1418
  ].includes(node?.type);
1393
1419
  }
1420
+ function isComma(node) {
1421
+ if (node?.token === ",") {
1422
+ return node;
1423
+ } else if (Array.isArray(node) && node.at(-1)?.token === ",") {
1424
+ return node.at(-1);
1425
+ }
1426
+ ;
1427
+ return;
1428
+ }
1394
1429
  function gatherRecursiveWithinFunction(node, predicate) {
1395
1430
  return gatherRecursive(node, predicate, isFunction);
1396
1431
  }
@@ -1748,6 +1783,9 @@ function braceBlock(block) {
1748
1783
  return;
1749
1784
  }
1750
1785
  function makeLeftHandSideExpression(expression) {
1786
+ if (expression.parenthesized) {
1787
+ return expression;
1788
+ }
1751
1789
  switch (expression.type) {
1752
1790
  case "Ref":
1753
1791
  case "AmpersandRef":
@@ -2347,9 +2385,9 @@ function processBlocks(statements) {
2347
2385
  }
2348
2386
  function insertSemicolon(statements) {
2349
2387
  const l = statements.length;
2350
- for (let i7 = 0, len7 = statements.length; i7 < len7; i7++) {
2351
- const i = i7;
2352
- const s = statements[i7];
2388
+ for (let i8 = 0, len8 = statements.length; i8 < len8; i8++) {
2389
+ const i = i8;
2390
+ const s = statements[i8];
2353
2391
  if (i < l - 1) {
2354
2392
  if (needsPrecedingSemicolon(statements[i + 1])) {
2355
2393
  const delim = s[2];
@@ -3155,7 +3193,7 @@ function processReturnValue(func) {
3155
3193
  isFunction
3156
3194
  );
3157
3195
  if (ancestor) {
3158
- return declaration ?? (declaration = child);
3196
+ return declaration ??= child;
3159
3197
  }
3160
3198
  ;
3161
3199
  return;
@@ -3326,6 +3364,9 @@ function reorderBindingRestProperty(props) {
3326
3364
  }
3327
3365
  ];
3328
3366
  }
3367
+ if (rest.delim?.at(-1)?.token === ",") {
3368
+ rest.delim.pop();
3369
+ }
3329
3370
  const children = [...props, ...after, rest];
3330
3371
  return {
3331
3372
  children,
@@ -3351,9 +3392,9 @@ function replaceNodes(root, predicate, replacer) {
3351
3392
  return root;
3352
3393
  }
3353
3394
  }
3354
- for (let i8 = 0, len8 = array.length; i8 < len8; i8++) {
3355
- const i = i8;
3356
- const node = array[i8];
3395
+ for (let i9 = 0, len9 = array.length; i9 < len9; i9++) {
3396
+ const i = i9;
3397
+ const node = array[i9];
3357
3398
  if (!(node != null)) {
3358
3399
  return;
3359
3400
  }
@@ -3535,7 +3576,7 @@ var init_lib = __esm({
3535
3576
 
3536
3577
  // node_modules/@danielx/hera/dist/machine.js
3537
3578
  var require_machine = __commonJS({
3538
- "node_modules/@danielx/hera/dist/machine.js"(exports, module2) {
3579
+ "node_modules/@danielx/hera/dist/machine.js"(exports2, module2) {
3539
3580
  "use strict";
3540
3581
  var __defProp2 = Object.defineProperty;
3541
3582
  var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
@@ -3983,7 +4024,7 @@ ${input.slice(result.pos)}
3983
4024
 
3984
4025
  // source/parser.hera
3985
4026
  var require_parser = __commonJS({
3986
- "source/parser.hera"(exports) {
4027
+ "source/parser.hera"(exports2) {
3987
4028
  "use strict";
3988
4029
  init_lib();
3989
4030
  var {
@@ -4177,6 +4218,7 @@ var require_parser = __commonJS({
4177
4218
  BareNestedBlock,
4178
4219
  BareBlock,
4179
4220
  ThenClause,
4221
+ BracedThenClause,
4180
4222
  BracedOrEmptyBlock,
4181
4223
  NoCommaBracedOrEmptyBlock,
4182
4224
  NoPostfixBracedOrEmptyBlock,
@@ -4739,209 +4781,210 @@ var require_parser = __commonJS({
4739
4781
  var $L8 = $L("++");
4740
4782
  var $L9 = $L("--");
4741
4783
  var $L10 = $L("\u29FA");
4742
- var $L11 = $L("=>");
4743
- var $L12 = $L("\u21D2");
4744
- var $L13 = $L(":");
4745
- var $L14 = $L(" ");
4746
- var $L15 = $L("<");
4747
- var $L16 = $L("implements");
4748
- var $L17 = $L("<:");
4749
- var $L18 = $L("import");
4750
- var $L19 = $L("!");
4751
- var $L20 = $L("^");
4752
- var $L21 = $L("-");
4753
- var $L22 = $L("import.meta");
4754
- var $L23 = $L("return.value");
4755
- var $L24 = $L(",");
4756
- var $L25 = $L("(&)");
4757
- var $L26 = $L("->");
4758
- var $L27 = $L("\u2192");
4759
- var $L28 = $L("}");
4760
- var $L29 = $L("null");
4761
- var $L30 = $L("true");
4762
- var $L31 = $L("false");
4763
- var $L32 = $L("yes");
4764
- var $L33 = $L("on");
4765
- var $L34 = $L("no");
4766
- var $L35 = $L("off");
4767
- var $L36 = $L(">");
4768
- var $L37 = $L("]");
4769
- var $L38 = $L("**=");
4770
- var $L39 = $L("*=");
4771
- var $L40 = $L("/=");
4772
- var $L41 = $L("%=");
4773
- var $L42 = $L("+=");
4774
- var $L43 = $L("-=");
4775
- var $L44 = $L("<<=");
4776
- var $L45 = $L(">>>=");
4777
- var $L46 = $L(">>=");
4778
- var $L47 = $L("&&=");
4779
- var $L48 = $L("&=");
4780
- var $L49 = $L("^=");
4781
- var $L50 = $L("||=");
4782
- var $L51 = $L("|=");
4783
- var $L52 = $L("??=");
4784
- var $L53 = $L("?=");
4785
- var $L54 = $L("and=");
4786
- var $L55 = $L("or=");
4787
- var $L56 = $L("**");
4788
- var $L57 = $L("*");
4789
- var $L58 = $L("/");
4790
- var $L59 = $L("%%");
4791
- var $L60 = $L("%");
4792
- var $L61 = $L("+");
4793
- var $L62 = $L("<=");
4794
- var $L63 = $L("\u2264");
4795
- var $L64 = $L(">=");
4796
- var $L65 = $L("\u2265");
4797
- var $L66 = $L("<?");
4798
- var $L67 = $L("!<?");
4799
- var $L68 = $L("<<");
4800
- var $L69 = $L("\xAB");
4801
- var $L70 = $L(">>>");
4802
- var $L71 = $L("\u22D9");
4803
- var $L72 = $L(">>");
4804
- var $L73 = $L("\xBB");
4805
- var $L74 = $L("!==");
4806
- var $L75 = $L("\u2262");
4807
- var $L76 = $L("!=");
4808
- var $L77 = $L("\u2260");
4809
- var $L78 = $L("isnt");
4810
- var $L79 = $L("===");
4811
- var $L80 = $L("\u2263");
4812
- var $L81 = $L("\u2A76");
4813
- var $L82 = $L("==");
4814
- var $L83 = $L("\u2261");
4815
- var $L84 = $L("\u2A75");
4816
- var $L85 = $L("and");
4817
- var $L86 = $L("&&");
4818
- var $L87 = $L("or");
4819
- var $L88 = $L("||");
4820
- var $L89 = $L("\u2016");
4821
- var $L90 = $L("^^");
4822
- var $L91 = $L("xor");
4823
- var $L92 = $L("xnor");
4824
- var $L93 = $L("??");
4825
- var $L94 = $L("\u2047");
4826
- var $L95 = $L("instanceof");
4827
- var $L96 = $L("\u2208");
4828
- var $L97 = $L("\u220B");
4829
- var $L98 = $L("\u220C");
4830
- var $L99 = $L("\u2209");
4831
- var $L100 = $L("&");
4832
- var $L101 = $L("|");
4833
- var $L102 = $L(";");
4834
- var $L103 = $L("$:");
4835
- var $L104 = $L("break");
4836
- var $L105 = $L("continue");
4837
- var $L106 = $L("debugger");
4838
- var $L107 = $L("with");
4839
- var $L108 = $L("assert");
4840
- var $L109 = $L(":=");
4841
- var $L110 = $L("\u2254");
4842
- var $L111 = $L(".=");
4843
- var $L112 = $L("/*");
4844
- var $L113 = $L("*/");
4845
- var $L114 = $L("\\");
4846
- var $L115 = $L(")");
4847
- var $L116 = $L("abstract");
4848
- var $L117 = $L("as");
4849
- var $L118 = $L("@");
4850
- var $L119 = $L("@@");
4851
- var $L120 = $L("async");
4852
- var $L121 = $L("await");
4853
- var $L122 = $L("`");
4854
- var $L123 = $L("by");
4855
- var $L124 = $L("case");
4856
- var $L125 = $L("catch");
4857
- var $L126 = $L("class");
4858
- var $L127 = $L("#{");
4859
- var $L128 = $L("declare");
4860
- var $L129 = $L("default");
4861
- var $L130 = $L("delete");
4862
- var $L131 = $L("do");
4863
- var $L132 = $L("..");
4864
- var $L133 = $L("\u2025");
4865
- var $L134 = $L("...");
4866
- var $L135 = $L("\u2026");
4867
- var $L136 = $L("::");
4868
- var $L137 = $L('"');
4869
- var $L138 = $L("each");
4870
- var $L139 = $L("else");
4871
- var $L140 = $L("export");
4872
- var $L141 = $L("extends");
4873
- var $L142 = $L("finally");
4874
- var $L143 = $L("for");
4875
- var $L144 = $L("from");
4876
- var $L145 = $L("function");
4877
- var $L146 = $L("get");
4878
- var $L147 = $L("set");
4879
- var $L148 = $L("#");
4880
- var $L149 = $L("if");
4881
- var $L150 = $L("in");
4882
- var $L151 = $L("let");
4883
- var $L152 = $L("const");
4884
- var $L153 = $L("is");
4885
- var $L154 = $L("loop");
4886
- var $L155 = $L("new");
4887
- var $L156 = $L("not");
4888
- var $L157 = $L("of");
4889
- var $L158 = $L("[");
4890
- var $L159 = $L("operator");
4891
- var $L160 = $L("own");
4892
- var $L161 = $L("public");
4893
- var $L162 = $L("private");
4894
- var $L163 = $L("protected");
4895
- var $L164 = $L("||>");
4896
- var $L165 = $L("|\u25B7");
4897
- var $L166 = $L("|>=");
4898
- var $L167 = $L("\u25B7=");
4899
- var $L168 = $L("|>");
4900
- var $L169 = $L("\u25B7");
4901
- var $L170 = $L("readonly");
4902
- var $L171 = $L("return");
4903
- var $L172 = $L("satisfies");
4904
- var $L173 = $L("'");
4905
- var $L174 = $L("static");
4906
- var $L175 = $L("${");
4907
- var $L176 = $L("super");
4908
- var $L177 = $L("switch");
4909
- var $L178 = $L("target");
4910
- var $L179 = $L("then");
4911
- var $L180 = $L("this");
4912
- var $L181 = $L("throw");
4913
- var $L182 = $L('"""');
4914
- var $L183 = $L("'''");
4915
- var $L184 = $L("///");
4916
- var $L185 = $L("```");
4917
- var $L186 = $L("try");
4918
- var $L187 = $L("typeof");
4919
- var $L188 = $L("unless");
4920
- var $L189 = $L("until");
4921
- var $L190 = $L("using");
4922
- var $L191 = $L("var");
4923
- var $L192 = $L("void");
4924
- var $L193 = $L("when");
4925
- var $L194 = $L("while");
4926
- var $L195 = $L("yield");
4927
- var $L196 = $L("/>");
4928
- var $L197 = $L("</");
4929
- var $L198 = $L("<>");
4930
- var $L199 = $L("</>");
4931
- var $L200 = $L("<!--");
4932
- var $L201 = $L("-->");
4933
- var $L202 = $L("type");
4934
- var $L203 = $L("enum");
4935
- var $L204 = $L("interface");
4936
- var $L205 = $L("global");
4937
- var $L206 = $L("module");
4938
- var $L207 = $L("namespace");
4939
- var $L208 = $L("asserts");
4940
- var $L209 = $L("keyof");
4941
- var $L210 = $L("infer");
4942
- var $L211 = $L("???");
4943
- var $L212 = $L("[]");
4944
- var $L213 = $L("civet");
4784
+ var $L11 = $L("\u2014");
4785
+ var $L12 = $L("=>");
4786
+ var $L13 = $L("\u21D2");
4787
+ var $L14 = $L(":");
4788
+ var $L15 = $L(" ");
4789
+ var $L16 = $L("<");
4790
+ var $L17 = $L("implements");
4791
+ var $L18 = $L("<:");
4792
+ var $L19 = $L("import");
4793
+ var $L20 = $L("!");
4794
+ var $L21 = $L("^");
4795
+ var $L22 = $L("-");
4796
+ var $L23 = $L("import.meta");
4797
+ var $L24 = $L("return.value");
4798
+ var $L25 = $L(",");
4799
+ var $L26 = $L("(&)");
4800
+ var $L27 = $L("->");
4801
+ var $L28 = $L("\u2192");
4802
+ var $L29 = $L("}");
4803
+ var $L30 = $L("null");
4804
+ var $L31 = $L("true");
4805
+ var $L32 = $L("false");
4806
+ var $L33 = $L("yes");
4807
+ var $L34 = $L("on");
4808
+ var $L35 = $L("no");
4809
+ var $L36 = $L("off");
4810
+ var $L37 = $L(">");
4811
+ var $L38 = $L("]");
4812
+ var $L39 = $L("**=");
4813
+ var $L40 = $L("*=");
4814
+ var $L41 = $L("/=");
4815
+ var $L42 = $L("%=");
4816
+ var $L43 = $L("+=");
4817
+ var $L44 = $L("-=");
4818
+ var $L45 = $L("<<=");
4819
+ var $L46 = $L(">>>=");
4820
+ var $L47 = $L(">>=");
4821
+ var $L48 = $L("&&=");
4822
+ var $L49 = $L("&=");
4823
+ var $L50 = $L("^=");
4824
+ var $L51 = $L("||=");
4825
+ var $L52 = $L("|=");
4826
+ var $L53 = $L("??=");
4827
+ var $L54 = $L("?=");
4828
+ var $L55 = $L("and=");
4829
+ var $L56 = $L("or=");
4830
+ var $L57 = $L("**");
4831
+ var $L58 = $L("*");
4832
+ var $L59 = $L("/");
4833
+ var $L60 = $L("%%");
4834
+ var $L61 = $L("%");
4835
+ var $L62 = $L("+");
4836
+ var $L63 = $L("<=");
4837
+ var $L64 = $L("\u2264");
4838
+ var $L65 = $L(">=");
4839
+ var $L66 = $L("\u2265");
4840
+ var $L67 = $L("<?");
4841
+ var $L68 = $L("!<?");
4842
+ var $L69 = $L("<<");
4843
+ var $L70 = $L("\xAB");
4844
+ var $L71 = $L(">>>");
4845
+ var $L72 = $L("\u22D9");
4846
+ var $L73 = $L(">>");
4847
+ var $L74 = $L("\xBB");
4848
+ var $L75 = $L("!==");
4849
+ var $L76 = $L("\u2262");
4850
+ var $L77 = $L("!=");
4851
+ var $L78 = $L("\u2260");
4852
+ var $L79 = $L("isnt");
4853
+ var $L80 = $L("===");
4854
+ var $L81 = $L("\u2263");
4855
+ var $L82 = $L("\u2A76");
4856
+ var $L83 = $L("==");
4857
+ var $L84 = $L("\u2261");
4858
+ var $L85 = $L("\u2A75");
4859
+ var $L86 = $L("and");
4860
+ var $L87 = $L("&&");
4861
+ var $L88 = $L("or");
4862
+ var $L89 = $L("||");
4863
+ var $L90 = $L("\u2016");
4864
+ var $L91 = $L("^^");
4865
+ var $L92 = $L("xor");
4866
+ var $L93 = $L("xnor");
4867
+ var $L94 = $L("??");
4868
+ var $L95 = $L("\u2047");
4869
+ var $L96 = $L("instanceof");
4870
+ var $L97 = $L("\u2208");
4871
+ var $L98 = $L("\u220B");
4872
+ var $L99 = $L("\u220C");
4873
+ var $L100 = $L("\u2209");
4874
+ var $L101 = $L("&");
4875
+ var $L102 = $L("|");
4876
+ var $L103 = $L(";");
4877
+ var $L104 = $L("$:");
4878
+ var $L105 = $L("break");
4879
+ var $L106 = $L("continue");
4880
+ var $L107 = $L("debugger");
4881
+ var $L108 = $L("with");
4882
+ var $L109 = $L("assert");
4883
+ var $L110 = $L(":=");
4884
+ var $L111 = $L("\u2254");
4885
+ var $L112 = $L(".=");
4886
+ var $L113 = $L("/*");
4887
+ var $L114 = $L("*/");
4888
+ var $L115 = $L("\\");
4889
+ var $L116 = $L(")");
4890
+ var $L117 = $L("abstract");
4891
+ var $L118 = $L("as");
4892
+ var $L119 = $L("@");
4893
+ var $L120 = $L("@@");
4894
+ var $L121 = $L("async");
4895
+ var $L122 = $L("await");
4896
+ var $L123 = $L("`");
4897
+ var $L124 = $L("by");
4898
+ var $L125 = $L("case");
4899
+ var $L126 = $L("catch");
4900
+ var $L127 = $L("class");
4901
+ var $L128 = $L("#{");
4902
+ var $L129 = $L("declare");
4903
+ var $L130 = $L("default");
4904
+ var $L131 = $L("delete");
4905
+ var $L132 = $L("do");
4906
+ var $L133 = $L("..");
4907
+ var $L134 = $L("\u2025");
4908
+ var $L135 = $L("...");
4909
+ var $L136 = $L("\u2026");
4910
+ var $L137 = $L("::");
4911
+ var $L138 = $L('"');
4912
+ var $L139 = $L("each");
4913
+ var $L140 = $L("else");
4914
+ var $L141 = $L("export");
4915
+ var $L142 = $L("extends");
4916
+ var $L143 = $L("finally");
4917
+ var $L144 = $L("for");
4918
+ var $L145 = $L("from");
4919
+ var $L146 = $L("function");
4920
+ var $L147 = $L("get");
4921
+ var $L148 = $L("set");
4922
+ var $L149 = $L("#");
4923
+ var $L150 = $L("if");
4924
+ var $L151 = $L("in");
4925
+ var $L152 = $L("let");
4926
+ var $L153 = $L("const");
4927
+ var $L154 = $L("is");
4928
+ var $L155 = $L("loop");
4929
+ var $L156 = $L("new");
4930
+ var $L157 = $L("not");
4931
+ var $L158 = $L("of");
4932
+ var $L159 = $L("[");
4933
+ var $L160 = $L("operator");
4934
+ var $L161 = $L("own");
4935
+ var $L162 = $L("public");
4936
+ var $L163 = $L("private");
4937
+ var $L164 = $L("protected");
4938
+ var $L165 = $L("||>");
4939
+ var $L166 = $L("|\u25B7");
4940
+ var $L167 = $L("|>=");
4941
+ var $L168 = $L("\u25B7=");
4942
+ var $L169 = $L("|>");
4943
+ var $L170 = $L("\u25B7");
4944
+ var $L171 = $L("readonly");
4945
+ var $L172 = $L("return");
4946
+ var $L173 = $L("satisfies");
4947
+ var $L174 = $L("'");
4948
+ var $L175 = $L("static");
4949
+ var $L176 = $L("${");
4950
+ var $L177 = $L("super");
4951
+ var $L178 = $L("switch");
4952
+ var $L179 = $L("target");
4953
+ var $L180 = $L("then");
4954
+ var $L181 = $L("this");
4955
+ var $L182 = $L("throw");
4956
+ var $L183 = $L('"""');
4957
+ var $L184 = $L("'''");
4958
+ var $L185 = $L("///");
4959
+ var $L186 = $L("```");
4960
+ var $L187 = $L("try");
4961
+ var $L188 = $L("typeof");
4962
+ var $L189 = $L("unless");
4963
+ var $L190 = $L("until");
4964
+ var $L191 = $L("using");
4965
+ var $L192 = $L("var");
4966
+ var $L193 = $L("void");
4967
+ var $L194 = $L("when");
4968
+ var $L195 = $L("while");
4969
+ var $L196 = $L("yield");
4970
+ var $L197 = $L("/>");
4971
+ var $L198 = $L("</");
4972
+ var $L199 = $L("<>");
4973
+ var $L200 = $L("</>");
4974
+ var $L201 = $L("<!--");
4975
+ var $L202 = $L("-->");
4976
+ var $L203 = $L("type");
4977
+ var $L204 = $L("enum");
4978
+ var $L205 = $L("interface");
4979
+ var $L206 = $L("global");
4980
+ var $L207 = $L("module");
4981
+ var $L208 = $L("namespace");
4982
+ var $L209 = $L("asserts");
4983
+ var $L210 = $L("keyof");
4984
+ var $L211 = $L("infer");
4985
+ var $L212 = $L("???");
4986
+ var $L213 = $L("[]");
4987
+ var $L214 = $L("civet");
4945
4988
  var $R0 = $R(new RegExp("(?=debugger|if|unless|do|for|loop|until|while|switch|throw|try)", "suy"));
4946
4989
  var $R1 = $R(new RegExp("(as|of|satisfies|then|when|implements|xor|xnor)(?!\\p{ID_Continue}|[\\u200C\\u200D$])", "suy"));
4947
4990
  var $R2 = $R(new RegExp("[0-9]", "suy"));
@@ -4951,86 +4994,87 @@ var require_parser = __commonJS({
4951
4994
  var $R6 = $R(new RegExp("(?=[\\/?])", "suy"));
4952
4995
  var $R7 = $R(new RegExp("(?=[\\/\\[{?.!@'\u2019:])", "suy"));
4953
4996
  var $R8 = $R(new RegExp("[)}]", "suy"));
4954
- var $R9 = $R(new RegExp("[&]", "suy"));
4955
- var $R10 = $R(new RegExp(`(?=[0-9.'"tfyno])`, "suy"));
4956
- var $R11 = $R(new RegExp("(?=true|false|yes|no|on|off)", "suy"));
4957
- var $R12 = $R(new RegExp("(?=\\p{ID_Start}|[_$])", "suy"));
4958
- var $R13 = $R(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy"));
4959
- var $R14 = $R(new RegExp("(?=\\[)", "suy"));
4960
- var $R15 = $R(new RegExp("[!+-]", "suy"));
4961
- var $R16 = $R(new RegExp("(?=\\p{ID_Start}|[_$^\xAB\xBB\u22D9\u2264\u2265\u2208\u220B\u2209\u220C\u2263\u2261\u2262\u2260=\u2016\u2047&|*\\/!?%<>\u29FA+-])", "suy"));
4962
- var $R17 = $R(new RegExp("!\\^\\^?", "suy"));
4963
- var $R18 = $R(new RegExp("(?!\\+\\+|--)[!~+-](?!\\s)", "suy"));
4964
- var $R19 = $R(new RegExp("[:.]", "suy"));
4965
- var $R20 = $R(new RegExp("(?=for|if|loop|unless|until|while)", "suy"));
4966
- var $R21 = $R(new RegExp("(?=loop|do|for|until|while)", "suy"));
4967
- var $R22 = $R(new RegExp("(?=[\\s\\),])", "suy"));
4968
- var $R23 = $R(new RegExp('[^;"\\s]+', "suy"));
4969
- var $R24 = $R(new RegExp("(?=[0-9.])", "suy"));
4970
- var $R25 = $R(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)n", "suy"));
4971
- var $R26 = $R(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\\.(?:\\p{ID_Start}|[_$]))", "suy"));
4972
- var $R27 = $R(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\\.(?:[0-9](?:_[0-9]|[0-9])*))?", "suy"));
4973
- var $R28 = $R(new RegExp("(?:\\.[0-9](?:_[0-9]|[0-9])*)", "suy"));
4974
- var $R29 = $R(new RegExp("(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)", "suy"));
4975
- var $R30 = $R(new RegExp("0[bB][01](?:[01]|_[01])*n?", "suy"));
4976
- var $R31 = $R(new RegExp("0[oO][0-7](?:[0-7]|_[0-7])*n?", "suy"));
4977
- var $R32 = $R(new RegExp("0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?", "suy"));
4978
- var $R33 = $R(new RegExp("(?=[0-9])", "suy"));
4979
- var $R34 = $R(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)", "suy"));
4980
- var $R35 = $R(new RegExp('(?:\\\\.|[^"])*', "suy"));
4981
- var $R36 = $R(new RegExp("(?:\\\\.|[^'])*", "suy"));
4982
- var $R37 = $R(new RegExp('(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+', "suy"));
4983
- var $R38 = $R(new RegExp("(?:'(?!'')|\\\\.|[^'])*", "suy"));
4984
- var $R39 = $R(new RegExp('(?:\\\\.|#(?!\\{)|[^"#])+', "suy"));
4985
- var $R40 = $R(new RegExp("(?:\\\\.|[^\\]])*", "suy"));
4986
- var $R41 = $R(new RegExp("(?:\\\\.)", "suy"));
4987
- var $R42 = $R(new RegExp("[\\s]+", "suy"));
4988
- var $R43 = $R(new RegExp("\\/(?!\\/\\/)", "suy"));
4989
- var $R44 = $R(new RegExp("[^[\\/\\s#\\\\]+", "suy"));
4990
- var $R45 = $R(new RegExp("[*\\/\\r\\n]", "suy"));
4991
- var $R46 = $R(new RegExp("(?:\\\\.|[^[\\/\\r\\n])+", "suy"));
4992
- var $R47 = $R(new RegExp("(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy"));
4993
- var $R48 = $R(new RegExp("(?=[`'\"])", "suy"));
4994
- var $R49 = $R(new RegExp("(?:\\$(?!\\{)|\\\\.|[^$`])+", "suy"));
4995
- var $R50 = $R(new RegExp("(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+", "suy"));
4996
- var $R51 = $R(new RegExp("(?:on|off|yes|no)(?!\\p{ID_Continue})", "suy"));
4997
- var $R52 = $R(new RegExp("(?:isnt)(?!\\p{ID_Continue})", "suy"));
4998
- var $R53 = $R(new RegExp("(?:by)(?!\\p{ID_Continue})", "suy"));
4999
- var $R54 = $R(new RegExp("(?:of)(?!\\p{ID_Continue})", "suy"));
5000
- var $R55 = $R(new RegExp("(?:and|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|false|finally|for|function|if|import|in|instanceof|interface|is|let|loop|new|not|null|or|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|unless|until|var|void|while|with|yield)(?!\\p{ID_Continue})", "suy"));
5001
- var $R56 = $R(new RegExp("(?=\\/|#)", "suy"));
5002
- var $R57 = $R(new RegExp("\\/\\/(?!\\/)[^\\r\\n]*", "suy"));
5003
- var $R58 = $R(new RegExp(".", "suy"));
5004
- var $R59 = $R(new RegExp("#(?!##(?!#))([^\\r\\n]*)", "suy"));
5005
- var $R60 = $R(new RegExp("[^]*?###", "suy"));
5006
- var $R61 = $R(new RegExp("###(?!#)", "suy"));
5007
- var $R62 = $R(new RegExp("\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\/", "suy"));
5008
- var $R63 = $R(new RegExp("(?=[ \\t\\/\\\\])", "suy"));
5009
- var $R64 = $R(new RegExp("[ \\t]+", "suy"));
5010
- var $R65 = $R(new RegExp("(?=\\s|\\/|#)", "suy"));
5011
- var $R66 = $R(new RegExp("(?!\\p{ID_Continue})", "suy"));
5012
- var $R67 = $R(new RegExp("['\u2019]s", "suy"));
5013
- var $R68 = $R(new RegExp("\\s", "suy"));
5014
- var $R69 = $R(new RegExp("(?=[<])", "suy"));
5015
- var $R70 = $R(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*", "suy"));
5016
- var $R71 = $R(new RegExp("[\\s>]|\\/>", "suy"));
5017
- var $R72 = $R(new RegExp("(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+", "suy"));
5018
- var $R73 = $R(new RegExp(`"[^"]*"|'[^']*'`, "suy"));
5019
- var $R74 = $R(new RegExp("[<>]", "suy"));
5020
- var $R75 = $R(new RegExp("[!~+-](?!\\s|[!~+-]*&)", "suy"));
5021
- var $R76 = $R(new RegExp("(?:-[^-]|[^-]*)*", "suy"));
5022
- var $R77 = $R(new RegExp("[^{}<>\\r\\n]+", "suy"));
5023
- var $R78 = $R(new RegExp("[+-]?", "suy"));
5024
- var $R79 = $R(new RegExp("[+-]", "suy"));
5025
- var $R80 = $R(new RegExp("(?=if|unless)", "suy"));
5026
- var $R81 = $R(new RegExp("#![^\\r\\n]*", "suy"));
5027
- var $R82 = $R(new RegExp("[\\t ]*", "suy"));
5028
- var $R83 = $R(new RegExp("[ \\t]*", "suy"));
5029
- var $R84 = $R(new RegExp("[\\s]*", "suy"));
5030
- var $R85 = $R(new RegExp("\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([a-zA-Z0-9.+-]*))?", "suy"));
5031
- var $R86 = $R(new RegExp("\\/\\/\\/[^\\r\\n]*", "suy"));
5032
- var $R87 = $R(new RegExp("(?=[ \\t\\r\\n\\/#]|$)", "suy"));
5033
- var $R88 = $R(new RegExp("\\r\\n|\\n|\\r|$", "suy"));
4997
+ var $R9 = $R(new RegExp("\\+\\+|--|[\\+-]\\S", "suy"));
4998
+ var $R10 = $R(new RegExp("[&]", "suy"));
4999
+ var $R11 = $R(new RegExp(`(?=[0-9.'"tfyno])`, "suy"));
5000
+ var $R12 = $R(new RegExp("(?=true|false|yes|no|on|off)", "suy"));
5001
+ var $R13 = $R(new RegExp("(?=\\p{ID_Start}|[_$])", "suy"));
5002
+ var $R14 = $R(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy"));
5003
+ var $R15 = $R(new RegExp("(?=\\[)", "suy"));
5004
+ var $R16 = $R(new RegExp("[!+-]", "suy"));
5005
+ var $R17 = $R(new RegExp("(?=\\p{ID_Start}|[_$^\xAB\xBB\u22D9\u2264\u2265\u2208\u220B\u2209\u220C\u2263\u2261\u2262\u2260=\u2016\u2047&|*\\/!?%<>\u29FA+-])", "suy"));
5006
+ var $R18 = $R(new RegExp("!\\^\\^?", "suy"));
5007
+ var $R19 = $R(new RegExp("(?!\\+\\+|--)[!~+-](?!\\s)", "suy"));
5008
+ var $R20 = $R(new RegExp("[:.]", "suy"));
5009
+ var $R21 = $R(new RegExp("(?=for|if|loop|unless|until|while)", "suy"));
5010
+ var $R22 = $R(new RegExp("(?=loop|do|for|until|while)", "suy"));
5011
+ var $R23 = $R(new RegExp("(?=[\\s\\),])", "suy"));
5012
+ var $R24 = $R(new RegExp('[^;"\\s]+', "suy"));
5013
+ var $R25 = $R(new RegExp("(?=[0-9.])", "suy"));
5014
+ var $R26 = $R(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)n", "suy"));
5015
+ var $R27 = $R(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\\.(?:\\p{ID_Start}|[_$]))", "suy"));
5016
+ var $R28 = $R(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\\.(?:[0-9](?:_[0-9]|[0-9])*))?", "suy"));
5017
+ var $R29 = $R(new RegExp("(?:\\.[0-9](?:_[0-9]|[0-9])*)", "suy"));
5018
+ var $R30 = $R(new RegExp("(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)", "suy"));
5019
+ var $R31 = $R(new RegExp("0[bB][01](?:[01]|_[01])*n?", "suy"));
5020
+ var $R32 = $R(new RegExp("0[oO][0-7](?:[0-7]|_[0-7])*n?", "suy"));
5021
+ var $R33 = $R(new RegExp("0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?", "suy"));
5022
+ var $R34 = $R(new RegExp("(?=[0-9])", "suy"));
5023
+ var $R35 = $R(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)", "suy"));
5024
+ var $R36 = $R(new RegExp('(?:\\\\.|[^"])*', "suy"));
5025
+ var $R37 = $R(new RegExp("(?:\\\\.|[^'])*", "suy"));
5026
+ var $R38 = $R(new RegExp('(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+', "suy"));
5027
+ var $R39 = $R(new RegExp("(?:'(?!'')|\\\\.|[^'])*", "suy"));
5028
+ var $R40 = $R(new RegExp('(?:\\\\.|#(?!\\{)|[^"#])+', "suy"));
5029
+ var $R41 = $R(new RegExp("(?:\\\\.|[^\\]])*", "suy"));
5030
+ var $R42 = $R(new RegExp("(?:\\\\.)", "suy"));
5031
+ var $R43 = $R(new RegExp("[\\s]+", "suy"));
5032
+ var $R44 = $R(new RegExp("\\/(?!\\/\\/)", "suy"));
5033
+ var $R45 = $R(new RegExp("[^[\\/\\s#\\\\]+", "suy"));
5034
+ var $R46 = $R(new RegExp("[*\\/\\r\\n]", "suy"));
5035
+ var $R47 = $R(new RegExp("(?:\\\\.|[^[\\/\\r\\n])+", "suy"));
5036
+ var $R48 = $R(new RegExp("(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy"));
5037
+ var $R49 = $R(new RegExp("(?=[`'\"])", "suy"));
5038
+ var $R50 = $R(new RegExp("(?:\\$(?!\\{)|\\\\.|[^$`])+", "suy"));
5039
+ var $R51 = $R(new RegExp("(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+", "suy"));
5040
+ var $R52 = $R(new RegExp("(?:on|off|yes|no)(?!\\p{ID_Continue})", "suy"));
5041
+ var $R53 = $R(new RegExp("(?:isnt)(?!\\p{ID_Continue})", "suy"));
5042
+ var $R54 = $R(new RegExp("(?:by)(?!\\p{ID_Continue})", "suy"));
5043
+ var $R55 = $R(new RegExp("(?:of)(?!\\p{ID_Continue})", "suy"));
5044
+ var $R56 = $R(new RegExp("(?:and|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|false|finally|for|function|if|import|in|instanceof|interface|is|let|loop|new|not|null|or|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|unless|until|var|void|while|with|yield)(?!\\p{ID_Continue})", "suy"));
5045
+ var $R57 = $R(new RegExp("(?=\\/|#)", "suy"));
5046
+ var $R58 = $R(new RegExp("\\/\\/(?!\\/)[^\\r\\n]*", "suy"));
5047
+ var $R59 = $R(new RegExp(".", "suy"));
5048
+ var $R60 = $R(new RegExp("#(?!##(?!#))([^\\r\\n]*)", "suy"));
5049
+ var $R61 = $R(new RegExp("[^]*?###", "suy"));
5050
+ var $R62 = $R(new RegExp("###(?!#)", "suy"));
5051
+ var $R63 = $R(new RegExp("\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\/", "suy"));
5052
+ var $R64 = $R(new RegExp("(?=[ \\t\\/\\\\])", "suy"));
5053
+ var $R65 = $R(new RegExp("[ \\t]+", "suy"));
5054
+ var $R66 = $R(new RegExp("(?=\\s|\\/|#)", "suy"));
5055
+ var $R67 = $R(new RegExp("(?!\\p{ID_Continue})", "suy"));
5056
+ var $R68 = $R(new RegExp("['\u2019]s", "suy"));
5057
+ var $R69 = $R(new RegExp("\\s", "suy"));
5058
+ var $R70 = $R(new RegExp("(?=[<])", "suy"));
5059
+ var $R71 = $R(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*", "suy"));
5060
+ var $R72 = $R(new RegExp("[\\s>]|\\/>", "suy"));
5061
+ var $R73 = $R(new RegExp("(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+", "suy"));
5062
+ var $R74 = $R(new RegExp(`"[^"]*"|'[^']*'`, "suy"));
5063
+ var $R75 = $R(new RegExp("[<>]", "suy"));
5064
+ var $R76 = $R(new RegExp("[!~+-](?!\\s|[!~+-]*&)", "suy"));
5065
+ var $R77 = $R(new RegExp("(?:-[^-]|[^-]*)*", "suy"));
5066
+ var $R78 = $R(new RegExp("[^{}<>\\r\\n]+", "suy"));
5067
+ var $R79 = $R(new RegExp("[+-]?", "suy"));
5068
+ var $R80 = $R(new RegExp("[+-]", "suy"));
5069
+ var $R81 = $R(new RegExp("(?=if|unless)", "suy"));
5070
+ var $R82 = $R(new RegExp("#![^\\r\\n]*", "suy"));
5071
+ var $R83 = $R(new RegExp("[\\t ]*", "suy"));
5072
+ var $R84 = $R(new RegExp("[ \\t]*", "suy"));
5073
+ var $R85 = $R(new RegExp("[\\s]*", "suy"));
5074
+ var $R86 = $R(new RegExp("\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([a-zA-Z0-9.+-]*))?", "suy"));
5075
+ var $R87 = $R(new RegExp("\\/\\/\\/[^\\r\\n]*", "suy"));
5076
+ var $R88 = $R(new RegExp("(?=[ \\t\\r\\n\\/#]|$)", "suy"));
5077
+ var $R89 = $R(new RegExp("\\r\\n|\\n|\\r|$", "suy"));
5034
5078
  var Program$0 = $TS($S(Reset, Init, $E(EOS), TopLevelStatements, __), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
5035
5079
  var statements = $4;
5036
5080
  processProgram({
@@ -5208,15 +5252,43 @@ var require_parser = __commonJS({
5208
5252
  var ws = $3;
5209
5253
  var args = $4;
5210
5254
  var close = $5;
5211
- if (args.length === 1 && args[0].type === "IterationExpression" && args[0].subtype !== "DoStatement" && !args[0].async && isEmptyBareBlock(args[0].block)) {
5212
- return $skip;
5255
+ if (args.length === 1) {
5256
+ let arg0 = args[0];
5257
+ if (Array.isArray(arg0))
5258
+ arg0 = arg0[1];
5259
+ if (arg0.type === "IterationExpression" && arg0.subtype !== "DoStatement" && !arg0.async && isEmptyBareBlock(arg0.block)) {
5260
+ return $skip;
5261
+ }
5213
5262
  }
5214
- return [open, insertTrimmingSpace(ws, ""), args, close];
5263
+ return {
5264
+ type: "Call",
5265
+ args,
5266
+ children: [open, insertTrimmingSpace(ws, ""), args, close]
5267
+ };
5215
5268
  });
5216
5269
  function ImplicitArguments(ctx, state) {
5217
5270
  return $EVENT(ctx, state, "ImplicitArguments", ImplicitArguments$0);
5218
5271
  }
5219
- var ExplicitArguments$0 = $S(OpenParen, $E(ArgumentList), $E($S(__, Comma)), __, CloseParen);
5272
+ var ExplicitArguments$0 = $TS($S(OpenParen, $E($S(ArgumentList, $E($S(__, Comma)))), __, CloseParen), function($skip, $loc, $0, $1, $2, $3, $4) {
5273
+ var open = $1;
5274
+ var args = $2;
5275
+ var ws = $3;
5276
+ var close = $4;
5277
+ if (args) {
5278
+ if (args[1]) {
5279
+ args = [...args[0], args[1]];
5280
+ } else {
5281
+ args = args[0];
5282
+ }
5283
+ } else {
5284
+ args = [];
5285
+ }
5286
+ return {
5287
+ type: "Call",
5288
+ args,
5289
+ children: [open, args, ws, close]
5290
+ };
5291
+ });
5220
5292
  function ExplicitArguments(ctx, state) {
5221
5293
  return $EVENT(ctx, state, "ExplicitArguments", ExplicitArguments$0);
5222
5294
  }
@@ -5236,7 +5308,7 @@ var require_parser = __commonJS({
5236
5308
  return $0;
5237
5309
  return $skip;
5238
5310
  });
5239
- var ForbiddenImplicitCalls$5 = $TS($S(Not, $E(_), Identifier), function($skip, $loc, $0, $1, $2, $3) {
5311
+ var ForbiddenImplicitCalls$5 = $TS($S(OmittedNegation, $E(_), Identifier), function($skip, $loc, $0, $1, $2, $3) {
5240
5312
  var id = $3;
5241
5313
  if (module2.operators.has(id.name))
5242
5314
  return $0;
@@ -5250,11 +5322,7 @@ var require_parser = __commonJS({
5250
5322
  var ArgumentsWithTrailingMemberExpressions$0 = $TS($S(Arguments, AllowedTrailingMemberExpressions), function($skip, $loc, $0, $1, $2) {
5251
5323
  var args = $1;
5252
5324
  var trailing = $2;
5253
- const call = {
5254
- type: "Call",
5255
- children: args
5256
- };
5257
- return [call, ...trailing];
5325
+ return [args, ...trailing];
5258
5326
  });
5259
5327
  function ArgumentsWithTrailingMemberExpressions(ctx, state) {
5260
5328
  return $EVENT(ctx, state, "ArgumentsWithTrailingMemberExpressions", ArgumentsWithTrailingMemberExpressions$0);
@@ -5287,25 +5355,41 @@ var require_parser = __commonJS({
5287
5355
  function CommaDelimiter(ctx, state) {
5288
5356
  return $EVENT(ctx, state, "CommaDelimiter", CommaDelimiter$0);
5289
5357
  }
5290
- var ArgumentList$0 = $S(ArgumentPart, $Q($S(CommaDelimiter, $N(EOS), ArgumentPart)), $P($S(CommaDelimiter, $C(NestedImplicitObjectLiteral, NestedArgumentList))));
5358
+ var ArgumentList$0 = $TS($S(ArgumentPart, $Q($S(CommaDelimiter, $N(EOS), ArgumentPart)), $P($S(CommaDelimiter, $C(NestedImplicitObjectLiteral, NestedArgumentList)))), function($skip, $loc, $0, $1, $2, $3) {
5359
+ return [
5360
+ $1,
5361
+ ...$2.flatMap(([comma, eos, arg]) => [comma, arg]),
5362
+ ...$3.flatMap(
5363
+ ([comma, args]) => Array.isArray(args) ? [comma, ...args] : [comma, args]
5364
+ )
5365
+ ];
5366
+ });
5291
5367
  var ArgumentList$1 = $TS($S(NestedImplicitObjectLiteral), function($skip, $loc, $0, $1) {
5292
- return insertTrimmingSpace($1, "");
5368
+ return [insertTrimmingSpace($1, "")];
5293
5369
  });
5294
5370
  var ArgumentList$2 = NestedArgumentList;
5295
- var ArgumentList$3 = $TS($S($E(_), ArgumentPart, $Q($S(CommaDelimiter, $E(_), ArgumentPart))), function($skip, $loc, $0, $1, $2, $3) {
5296
- return [...$1 || [], $2, ...$3];
5371
+ var ArgumentList$3 = $TS($S($S($E(_), ArgumentPart), $Q($S(CommaDelimiter, $S($E(_), ArgumentPart)))), function($skip, $loc, $0, $1, $2) {
5372
+ return [$1, ...$2.flat()];
5297
5373
  });
5298
5374
  var ArgumentList$$ = [ArgumentList$0, ArgumentList$1, ArgumentList$2, ArgumentList$3];
5299
5375
  function ArgumentList(ctx, state) {
5300
5376
  return $EVENT_C(ctx, state, "ArgumentList", ArgumentList$$);
5301
5377
  }
5302
- var NonPipelineArgumentList$0 = $S(NonPipelineArgumentPart, $Q($S(CommaDelimiter, $N(EOS), NonPipelineArgumentPart)), $P($S(CommaDelimiter, $C(NestedImplicitObjectLiteral, NestedArgumentList))));
5378
+ var NonPipelineArgumentList$0 = $TS($S(NonPipelineArgumentPart, $Q($S(CommaDelimiter, $N(EOS), NonPipelineArgumentPart)), $P($S(CommaDelimiter, $C(NestedImplicitObjectLiteral, NestedArgumentList)))), function($skip, $loc, $0, $1, $2, $3) {
5379
+ return [
5380
+ $1,
5381
+ ...$2.flatMap(([comma, eos, arg]) => [comma, arg]),
5382
+ ...$3.flatMap(
5383
+ ([comma, args]) => Array.isArray(args) ? [comma, ...args] : [comma, args]
5384
+ )
5385
+ ];
5386
+ });
5303
5387
  var NonPipelineArgumentList$1 = $TS($S(NestedImplicitObjectLiteral), function($skip, $loc, $0, $1) {
5304
- return insertTrimmingSpace($1, "");
5388
+ return [insertTrimmingSpace($1, "")];
5305
5389
  });
5306
5390
  var NonPipelineArgumentList$2 = NestedArgumentList;
5307
- var NonPipelineArgumentList$3 = $TS($S($E(_), NonPipelineArgumentPart, $Q($S(CommaDelimiter, $E(_), NonPipelineArgumentPart))), function($skip, $loc, $0, $1, $2, $3) {
5308
- return [...$1 || [], $2, ...$3];
5391
+ var NonPipelineArgumentList$3 = $TS($S($S($E(_), NonPipelineArgumentPart), $Q($S(CommaDelimiter, $S($E(_), NonPipelineArgumentPart)))), function($skip, $loc, $0, $1, $2) {
5392
+ return [$1, ...$2.flat()];
5309
5393
  });
5310
5394
  var NonPipelineArgumentList$$ = [NonPipelineArgumentList$0, NonPipelineArgumentList$1, NonPipelineArgumentList$2, NonPipelineArgumentList$3];
5311
5395
  function NonPipelineArgumentList(ctx, state) {
@@ -5313,18 +5397,27 @@ var require_parser = __commonJS({
5313
5397
  }
5314
5398
  var NestedArgumentList$0 = $TS($S(PushIndent, $Q(NestedArgument), PopIndent), function($skip, $loc, $0, $1, $2, $3) {
5315
5399
  var args = $2;
5316
- if (args.length)
5317
- return args;
5318
- return $skip;
5400
+ if (!args.length)
5401
+ return $skip;
5402
+ return args.flat();
5319
5403
  });
5320
5404
  function NestedArgumentList(ctx, state) {
5321
5405
  return $EVENT(ctx, state, "NestedArgumentList", NestedArgumentList$0);
5322
5406
  }
5323
- var NestedArgument$0 = $S(Nested, SingleLineArgumentExpressions, ParameterElementDelimiter);
5407
+ var NestedArgument$0 = $TS($S(Nested, SingleLineArgumentExpressions, ParameterElementDelimiter), function($skip, $loc, $0, $1, $2, $3) {
5408
+ var indent = $1;
5409
+ var args = $2;
5410
+ var comma = $3;
5411
+ let [arg0, ...rest] = args;
5412
+ arg0 = [indent, ...arg0];
5413
+ return [arg0, ...rest, comma];
5414
+ });
5324
5415
  function NestedArgument(ctx, state) {
5325
5416
  return $EVENT(ctx, state, "NestedArgument", NestedArgument$0);
5326
5417
  }
5327
- var SingleLineArgumentExpressions$0 = $S($E(_), ArgumentPart, $Q($S($E(_), Comma, $E(_), ArgumentPart)));
5418
+ var SingleLineArgumentExpressions$0 = $TS($S($S($E(_), ArgumentPart), $Q($S($S($E(_), Comma), $S($E(_), ArgumentPart)))), function($skip, $loc, $0, $1, $2) {
5419
+ return [$1, ...$2.flat()];
5420
+ });
5328
5421
  function SingleLineArgumentExpressions(ctx, state) {
5329
5422
  return $EVENT(ctx, state, "SingleLineArgumentExpressions", SingleLineArgumentExpressions$0);
5330
5423
  }
@@ -5497,7 +5590,10 @@ var require_parser = __commonJS({
5497
5590
  var UpdateExpressionSymbol$1 = $TV($EXPECT($L10, 'UpdateExpressionSymbol "\u29FA"'), function($skip, $loc, $0, $1) {
5498
5591
  return { $loc, token: "++" };
5499
5592
  });
5500
- var UpdateExpressionSymbol$$ = [UpdateExpressionSymbol$0, UpdateExpressionSymbol$1];
5593
+ var UpdateExpressionSymbol$2 = $TV($EXPECT($L11, 'UpdateExpressionSymbol "\u2014"'), function($skip, $loc, $0, $1) {
5594
+ return { $loc, token: "--" };
5595
+ });
5596
+ var UpdateExpressionSymbol$$ = [UpdateExpressionSymbol$0, UpdateExpressionSymbol$1, UpdateExpressionSymbol$2];
5501
5597
  function UpdateExpressionSymbol(ctx, state) {
5502
5598
  return $EVENT_C(ctx, state, "UpdateExpressionSymbol", UpdateExpressionSymbol$$);
5503
5599
  }
@@ -5602,7 +5698,7 @@ var require_parser = __commonJS({
5602
5698
  function ArrowFunction(ctx, state) {
5603
5699
  return $EVENT_C(ctx, state, "ArrowFunction", ArrowFunction$$);
5604
5700
  }
5605
- var FatArrow$0 = $TS($S($E(_), $C($EXPECT($L11, 'FatArrow "=>"'), $EXPECT($L12, 'FatArrow "\u21D2"'))), function($skip, $loc, $0, $1, $2) {
5701
+ var FatArrow$0 = $TS($S($E(_), $C($EXPECT($L12, 'FatArrow "=>"'), $EXPECT($L13, 'FatArrow "\u21D2"'))), function($skip, $loc, $0, $1, $2) {
5606
5702
  var ws = $1;
5607
5703
  if (!ws)
5608
5704
  return " =>";
@@ -5761,11 +5857,29 @@ var require_parser = __commonJS({
5761
5857
  function ParenthesizedExpression(ctx, state) {
5762
5858
  return $EVENT(ctx, state, "ParenthesizedExpression", ParenthesizedExpression$0);
5763
5859
  }
5764
- var ClassDeclaration$0 = ClassExpression;
5860
+ var ClassDeclaration$0 = $TS($S(ClassExpression), function($skip, $loc, $0, $1) {
5861
+ if ($1.binding)
5862
+ return $1;
5863
+ return makeLeftHandSideExpression($1);
5864
+ });
5765
5865
  function ClassDeclaration(ctx, state) {
5766
5866
  return $EVENT(ctx, state, "ClassDeclaration", ClassDeclaration$0);
5767
5867
  }
5768
- var ClassExpression$0 = $S($E(Decorators), $E($S(Abstract, __)), Class, $N($EXPECT($L13, 'ClassExpression ":"')), $E(ClassBinding), $E(ClassHeritage), ClassBody);
5868
+ var ClassExpression$0 = $TS($S($E(Decorators), $E($S(Abstract, __)), Class, $N($EXPECT($L14, 'ClassExpression ":"')), $E(ClassBinding), $E(ClassHeritage), ClassBody), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7) {
5869
+ var decorators = $1;
5870
+ var abstract = $2;
5871
+ var binding = $5;
5872
+ var heritage = $6;
5873
+ var body = $7;
5874
+ return {
5875
+ decorators,
5876
+ abstract,
5877
+ binding,
5878
+ heritage,
5879
+ body,
5880
+ children: $0
5881
+ };
5882
+ });
5769
5883
  function ClassExpression(ctx, state) {
5770
5884
  return $EVENT(ctx, state, "ClassExpression", ClassExpression$0);
5771
5885
  }
@@ -5785,7 +5899,7 @@ var require_parser = __commonJS({
5785
5899
  function ExtendsClause(ctx, state) {
5786
5900
  return $EVENT(ctx, state, "ExtendsClause", ExtendsClause$0);
5787
5901
  }
5788
- var ExtendsToken$0 = $TS($S(Loc, $E(_), ExtendsShorthand, $E($EXPECT($L14, 'ExtendsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5902
+ var ExtendsToken$0 = $TS($S(Loc, $E(_), ExtendsShorthand, $E($EXPECT($L15, 'ExtendsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5789
5903
  var l = $1;
5790
5904
  var ws = $2;
5791
5905
  var t = $3;
@@ -5807,13 +5921,13 @@ var require_parser = __commonJS({
5807
5921
  function ExtendsToken(ctx, state) {
5808
5922
  return $EVENT_C(ctx, state, "ExtendsToken", ExtendsToken$$);
5809
5923
  }
5810
- var ExtendsShorthand$0 = $TV($EXPECT($L15, 'ExtendsShorthand "<"'), function($skip, $loc, $0, $1) {
5924
+ var ExtendsShorthand$0 = $TV($EXPECT($L16, 'ExtendsShorthand "<"'), function($skip, $loc, $0, $1) {
5811
5925
  return { $loc, token: "extends " };
5812
5926
  });
5813
5927
  function ExtendsShorthand(ctx, state) {
5814
5928
  return $EVENT(ctx, state, "ExtendsShorthand", ExtendsShorthand$0);
5815
5929
  }
5816
- var NotExtendsToken$0 = $TS($S(Loc, $E(_), OmittedNegation, ExtendsShorthand, $E($EXPECT($L14, 'NotExtendsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
5930
+ var NotExtendsToken$0 = $TS($S(Loc, $E(_), OmittedNegation, ExtendsShorthand, $E($EXPECT($L15, 'NotExtendsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
5817
5931
  var l = $1;
5818
5932
  var ws1 = $2;
5819
5933
  var ws2 = $3;
@@ -5839,7 +5953,7 @@ var require_parser = __commonJS({
5839
5953
  var OmittedNegation$0 = $T($S(ExclamationPoint), function(value) {
5840
5954
  return "";
5841
5955
  });
5842
- var OmittedNegation$1 = $T($S(Not, $E($EXPECT($L14, 'OmittedNegation " "')), $E(_)), function(value) {
5956
+ var OmittedNegation$1 = $T($S(Not, $E($EXPECT($L15, 'OmittedNegation " "')), $E(_)), function(value) {
5843
5957
  return value[2];
5844
5958
  });
5845
5959
  var OmittedNegation$$ = [OmittedNegation$0, OmittedNegation$1];
@@ -5862,7 +5976,7 @@ var require_parser = __commonJS({
5862
5976
  function ImplementsClause(ctx, state) {
5863
5977
  return $EVENT(ctx, state, "ImplementsClause", ImplementsClause$0);
5864
5978
  }
5865
- var ImplementsToken$0 = $TS($S(Loc, __, ImplementsShorthand, $E($EXPECT($L14, 'ImplementsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5979
+ var ImplementsToken$0 = $TS($S(Loc, __, ImplementsShorthand, $E($EXPECT($L15, 'ImplementsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
5866
5980
  var l = $1;
5867
5981
  var ws = $2;
5868
5982
  var token = $3;
@@ -5872,7 +5986,7 @@ var require_parser = __commonJS({
5872
5986
  }
5873
5987
  return { children };
5874
5988
  });
5875
- var ImplementsToken$1 = $TS($S(__, $EXPECT($L16, 'ImplementsToken "implements"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
5989
+ var ImplementsToken$1 = $TS($S(__, $EXPECT($L17, 'ImplementsToken "implements"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
5876
5990
  $2 = { $loc, token: $2 };
5877
5991
  return [$1, $2];
5878
5992
  });
@@ -5880,7 +5994,7 @@ var require_parser = __commonJS({
5880
5994
  function ImplementsToken(ctx, state) {
5881
5995
  return $EVENT_C(ctx, state, "ImplementsToken", ImplementsToken$$);
5882
5996
  }
5883
- var ImplementsShorthand$0 = $TV($EXPECT($L17, 'ImplementsShorthand "<:"'), function($skip, $loc, $0, $1) {
5997
+ var ImplementsShorthand$0 = $TV($EXPECT($L18, 'ImplementsShorthand "<:"'), function($skip, $loc, $0, $1) {
5884
5998
  return { $loc, token: "implements " };
5885
5999
  });
5886
6000
  function ImplementsShorthand(ctx, state) {
@@ -6092,7 +6206,7 @@ var require_parser = __commonJS({
6092
6206
  function AtThis(ctx, state) {
6093
6207
  return $EVENT(ctx, state, "AtThis", AtThis$0);
6094
6208
  }
6095
- var LeftHandSideExpression$0 = $S($P($S(New, $N($C($EXPECT($L7, 'LeftHandSideExpression "."'), $EXPECT($L13, 'LeftHandSideExpression ":"'))), __)), CallExpression);
6209
+ var LeftHandSideExpression$0 = $S($P($S(New, $N($C($EXPECT($L7, 'LeftHandSideExpression "."'), $EXPECT($L14, 'LeftHandSideExpression ":"'))), __)), CallExpression);
6096
6210
  var LeftHandSideExpression$1 = CallExpression;
6097
6211
  var LeftHandSideExpression$$ = [LeftHandSideExpression$0, LeftHandSideExpression$1];
6098
6212
  function LeftHandSideExpression(ctx, state) {
@@ -6105,7 +6219,7 @@ var require_parser = __commonJS({
6105
6219
  children: [$1, ...$2, ...rest.flat()]
6106
6220
  });
6107
6221
  });
6108
- var CallExpression$1 = $TS($S($EXPECT($L18, 'CallExpression "import"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6222
+ var CallExpression$1 = $TS($S($EXPECT($L19, 'CallExpression "import"'), ArgumentsWithTrailingMemberExpressions, $Q(CallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
6109
6223
  var rest = $3;
6110
6224
  return processCallMemberExpression({
6111
6225
  type: "CallExpression",
@@ -6166,7 +6280,7 @@ var require_parser = __commonJS({
6166
6280
  function OptionalDot(ctx, state) {
6167
6281
  return $EVENT_C(ctx, state, "OptionalDot", OptionalDot$$);
6168
6282
  }
6169
- var NonNullAssertion$0 = $T($S($EXPECT($L19, 'NonNullAssertion "!"'), $N($EXPECT($L20, 'NonNullAssertion "^"'))), function(value) {
6283
+ var NonNullAssertion$0 = $T($S($EXPECT($L20, 'NonNullAssertion "!"'), $N($EXPECT($L21, 'NonNullAssertion "^"'))), function(value) {
6170
6284
  return { "type": "NonNullAssertion", "ts": true, "children": value[0] };
6171
6285
  });
6172
6286
  function NonNullAssertion(ctx, state) {
@@ -6361,7 +6475,7 @@ var require_parser = __commonJS({
6361
6475
  ]
6362
6476
  };
6363
6477
  });
6364
- var PropertyAccess$1 = $TS($S(AccessStart, $EXPECT($L21, 'PropertyAccess "-"'), IntegerLiteral), function($skip, $loc, $0, $1, $2, $3) {
6478
+ var PropertyAccess$1 = $TS($S(AccessStart, $EXPECT($L22, 'PropertyAccess "-"'), IntegerLiteral), function($skip, $loc, $0, $1, $2, $3) {
6365
6479
  var dot = $1;
6366
6480
  var neg = $2;
6367
6481
  var num = $3;
@@ -6437,7 +6551,7 @@ var require_parser = __commonJS({
6437
6551
  return $EVENT_C(ctx, state, "SuperProperty", SuperProperty$$);
6438
6552
  }
6439
6553
  var MetaProperty$0 = $S(New, Dot, Target);
6440
- var MetaProperty$1 = $TS($S($EXPECT($L22, 'MetaProperty "import.meta"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
6554
+ var MetaProperty$1 = $TS($S($EXPECT($L23, 'MetaProperty "import.meta"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
6441
6555
  return { $loc, token: $1 };
6442
6556
  });
6443
6557
  var MetaProperty$2 = ReturnValue;
@@ -6445,7 +6559,7 @@ var require_parser = __commonJS({
6445
6559
  function MetaProperty(ctx, state) {
6446
6560
  return $EVENT_C(ctx, state, "MetaProperty", MetaProperty$$);
6447
6561
  }
6448
- var ReturnValue$0 = $TV($C($S($EXPECT($L23, 'ReturnValue "return.value"'), NonIdContinue), $S(Return, $Y(AfterReturnShorthand))), function($skip, $loc, $0, $1) {
6562
+ var ReturnValue$0 = $TV($C($S($EXPECT($L24, 'ReturnValue "return.value"'), NonIdContinue), $S(Return, $Y(AfterReturnShorthand))), function($skip, $loc, $0, $1) {
6449
6563
  return { type: "ReturnValue", children: [$1[0]] };
6450
6564
  });
6451
6565
  function ReturnValue(ctx, state) {
@@ -6958,7 +7072,7 @@ var require_parser = __commonJS({
6958
7072
  children: [ws, binding]
6959
7073
  };
6960
7074
  });
6961
- var BindingElement$2 = $TV($Y($S($E(_), $EXPECT($L24, 'BindingElement ","'))), function($skip, $loc, $0, $1) {
7075
+ var BindingElement$2 = $TV($Y($S($E(_), $EXPECT($L25, 'BindingElement ","'))), function($skip, $loc, $0, $1) {
6962
7076
  return {
6963
7077
  children: [{
6964
7078
  type: "ElisionElement",
@@ -7014,6 +7128,8 @@ var require_parser = __commonJS({
7014
7128
  return $EVENT(ctx, state, "EmptyBindingPattern", EmptyBindingPattern$0);
7015
7129
  }
7016
7130
  var FunctionDeclaration$0 = $TS($S(FunctionExpression), function($skip, $loc, $0, $1) {
7131
+ if ($1.type !== "FunctionExpression")
7132
+ return $skip;
7017
7133
  if ($1.id)
7018
7134
  return $1;
7019
7135
  return makeLeftHandSideExpression($1);
@@ -7082,7 +7198,7 @@ var require_parser = __commonJS({
7082
7198
  block
7083
7199
  };
7084
7200
  });
7085
- var FunctionExpression$1 = $TV($EXPECT($L25, 'FunctionExpression "(&)"'), function($skip, $loc, $0, $1) {
7201
+ var FunctionExpression$1 = $TV($EXPECT($L26, 'FunctionExpression "(&)"'), function($skip, $loc, $0, $1) {
7086
7202
  const ref = makeRef("$"), body = [ref];
7087
7203
  const parameters = {
7088
7204
  type: "Parameters",
@@ -7130,13 +7246,80 @@ var require_parser = __commonJS({
7130
7246
  },
7131
7247
  children: [open, parameters, " => ", body, close],
7132
7248
  body,
7249
+ parenthesized: true,
7250
+ parenthesizedOp: op,
7251
+ block,
7252
+ parameters
7253
+ };
7254
+ });
7255
+ var FunctionExpression$3 = $TS($S(OpenParen, NonPipelineAssignmentExpression, __, BinaryOp, __, CloseParen), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
7256
+ var open = $1;
7257
+ var lhs = $2;
7258
+ var ws1 = $3;
7259
+ var op = $4;
7260
+ var ws2 = $5;
7261
+ var close = $6;
7262
+ const refB = makeRef("b"), body = processBinaryOpExpression([lhs, [
7263
+ [ws1, op, ws2, refB]
7264
+ // BinaryOpRHS
7265
+ ]]);
7266
+ const parameters = {
7267
+ type: "Parameters",
7268
+ children: ["(", refB, ")"],
7269
+ names: []
7270
+ };
7271
+ const block = {
7272
+ expressions: [body]
7273
+ };
7274
+ return {
7275
+ type: "ArrowFunction",
7276
+ signature: {
7277
+ modifier: {}
7278
+ },
7279
+ children: [open, parameters, " => ", body, close],
7280
+ body,
7281
+ parenthesized: true,
7282
+ ampersandBlock: true,
7283
+ ref: refB,
7284
+ block,
7285
+ parameters
7286
+ };
7287
+ });
7288
+ var FunctionExpression$4 = $TS($S(OpenParen, __, $N($EXPECT($R9, "FunctionExpression /\\+\\+|--|[\\+-]\\S/")), BinaryOp, __, NonPipelineAssignmentExpression, CloseParen), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7) {
7289
+ var open = $1;
7290
+ var ws1 = $2;
7291
+ var op = $4;
7292
+ var ws2 = $5;
7293
+ var rhs = $6;
7294
+ var close = $7;
7295
+ const refA = makeRef("a"), body = processBinaryOpExpression([refA, [
7296
+ [ws1, op, ws2, rhs]
7297
+ // BinaryOpRHS
7298
+ ]]);
7299
+ const parameters = {
7300
+ type: "Parameters",
7301
+ children: ["(", refA, ")"],
7302
+ names: []
7303
+ };
7304
+ const block = {
7305
+ expressions: [body]
7306
+ };
7307
+ return {
7308
+ type: "ArrowFunction",
7309
+ signature: {
7310
+ modifier: {}
7311
+ },
7312
+ children: [open, parameters, " => ", body, close],
7313
+ body,
7314
+ parenthesized: true,
7133
7315
  ampersandBlock: true,
7316
+ ref: refA,
7134
7317
  block,
7135
7318
  parameters
7136
7319
  };
7137
7320
  });
7138
- var FunctionExpression$3 = AmpersandFunctionExpression;
7139
- var FunctionExpression$4 = $TS($S(Identifier, __, ConstAssignment, $Q(_), ThinArrowFunction), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
7321
+ var FunctionExpression$5 = AmpersandFunctionExpression;
7322
+ var FunctionExpression$6 = $TS($S(Identifier, __, ConstAssignment, $Q(_), ThinArrowFunction), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
7140
7323
  var id = $1;
7141
7324
  var ws = $4;
7142
7325
  var fn = $5;
@@ -7151,7 +7334,7 @@ var require_parser = __commonJS({
7151
7334
  ]
7152
7335
  };
7153
7336
  });
7154
- var FunctionExpression$$ = [FunctionExpression$0, FunctionExpression$1, FunctionExpression$2, FunctionExpression$3, FunctionExpression$4];
7337
+ var FunctionExpression$$ = [FunctionExpression$0, FunctionExpression$1, FunctionExpression$2, FunctionExpression$3, FunctionExpression$4, FunctionExpression$5, FunctionExpression$6];
7155
7338
  function FunctionExpression(ctx, state) {
7156
7339
  return $EVENT_C(ctx, state, "FunctionExpression", FunctionExpression$$);
7157
7340
  }
@@ -7282,7 +7465,7 @@ var require_parser = __commonJS({
7282
7465
  function AmpersandBlockRHS(ctx, state) {
7283
7466
  return $EVENT(ctx, state, "AmpersandBlockRHS", AmpersandBlockRHS$0);
7284
7467
  }
7285
- var AmpersandBlockRHSBody$0 = $TS($S($E($S($N(_), $P(CallExpressionRest))), $E(QuestionMark), $E($S(WAssignmentOp, $Q($S(NotDedented, UpdateExpression, WAssignmentOp)), NonPipelineExtendedExpression)), $E($S($N($EXPECT($R9, "AmpersandBlockRHSBody /[&]/")), $P(BinaryOpRHS)))), function($skip, $loc, $0, $1, $2, $3, $4) {
7468
+ var AmpersandBlockRHSBody$0 = $TS($S($E($S($N(_), $P(CallExpressionRest))), $E(QuestionMark), $E($S(WAssignmentOp, $Q($S(NotDedented, UpdateExpression, WAssignmentOp)), NonPipelineExtendedExpression)), $E($S($N($EXPECT($R10, "AmpersandBlockRHSBody /[&]/")), $P(BinaryOpRHS)))), function($skip, $loc, $0, $1, $2, $3, $4) {
7286
7469
  var callExpRest = $1;
7287
7470
  var unaryPostfix = $2;
7288
7471
  var assign = $3;
@@ -7372,7 +7555,7 @@ var require_parser = __commonJS({
7372
7555
  function ThinArrowFunction(ctx, state) {
7373
7556
  return $EVENT(ctx, state, "ThinArrowFunction", ThinArrowFunction$0);
7374
7557
  }
7375
- var Arrow$0 = $TV($C($EXPECT($L26, 'Arrow "->"'), $EXPECT($L27, 'Arrow "\u2192"')), function($skip, $loc, $0, $1) {
7558
+ var Arrow$0 = $TV($C($EXPECT($L27, 'Arrow "->"'), $EXPECT($L28, 'Arrow "\u2192"')), function($skip, $loc, $0, $1) {
7376
7559
  return { $loc, token: "->" };
7377
7560
  });
7378
7561
  function Arrow(ctx, state) {
@@ -7465,6 +7648,21 @@ var require_parser = __commonJS({
7465
7648
  function ThenClause(ctx, state) {
7466
7649
  return $EVENT(ctx, state, "ThenClause", ThenClause$0);
7467
7650
  }
7651
+ var BracedThenClause$0 = $TS($S($Y(Then), InsertOpenBrace, ThenClause, InsertCloseBrace), function($skip, $loc, $0, $1, $2, $3, $4) {
7652
+ var open = $2;
7653
+ var exp = $3;
7654
+ var close = $4;
7655
+ const expressions = [exp];
7656
+ return {
7657
+ type: "BlockStatement",
7658
+ expressions,
7659
+ children: [open, expressions, " ", close],
7660
+ bare: false
7661
+ };
7662
+ });
7663
+ function BracedThenClause(ctx, state) {
7664
+ return $EVENT(ctx, state, "BracedThenClause", BracedThenClause$0);
7665
+ }
7468
7666
  var BracedOrEmptyBlock$0 = BracedBlock;
7469
7667
  var BracedOrEmptyBlock$1 = EmptyBlock;
7470
7668
  var BracedOrEmptyBlock$$ = [BracedOrEmptyBlock$0, BracedOrEmptyBlock$1];
@@ -7658,7 +7856,7 @@ var require_parser = __commonJS({
7658
7856
  }
7659
7857
  var BracedContent$0 = NestedBlockStatements;
7660
7858
  var BracedContent$1 = SingleLineStatements;
7661
- var BracedContent$2 = $TV($Y($S(__, $EXPECT($L28, 'BracedContent "}"'))), function($skip, $loc, $0, $1) {
7859
+ var BracedContent$2 = $TV($Y($S(__, $EXPECT($L29, 'BracedContent "}"'))), function($skip, $loc, $0, $1) {
7662
7860
  const expressions = [];
7663
7861
  return {
7664
7862
  type: "BlockStatement",
@@ -7708,7 +7906,7 @@ var require_parser = __commonJS({
7708
7906
  function BlockStatementPart(ctx, state) {
7709
7907
  return $EVENT(ctx, state, "BlockStatementPart", BlockStatementPart$0);
7710
7908
  }
7711
- var Literal$0 = $TS($S($EXPECT($R10, `Literal /(?=[0-9.'"tfyno])/`), LiteralContent), function($skip, $loc, $0, $1, $2) {
7909
+ var Literal$0 = $TS($S($EXPECT($R11, `Literal /(?=[0-9.'"tfyno])/`), LiteralContent), function($skip, $loc, $0, $1, $2) {
7712
7910
  var literal = $2;
7713
7911
  return {
7714
7912
  type: "Literal",
@@ -7728,13 +7926,13 @@ var require_parser = __commonJS({
7728
7926
  function LiteralContent(ctx, state) {
7729
7927
  return $EVENT_C(ctx, state, "LiteralContent", LiteralContent$$);
7730
7928
  }
7731
- var NullLiteral$0 = $TS($S($EXPECT($L29, 'NullLiteral "null"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
7929
+ var NullLiteral$0 = $TS($S($EXPECT($L30, 'NullLiteral "null"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
7732
7930
  return { $loc, token: $1 };
7733
7931
  });
7734
7932
  function NullLiteral(ctx, state) {
7735
7933
  return $EVENT(ctx, state, "NullLiteral", NullLiteral$0);
7736
7934
  }
7737
- var BooleanLiteral$0 = $T($S($EXPECT($R11, "BooleanLiteral /(?=true|false|yes|no|on|off)/"), _BooleanLiteral), function(value) {
7935
+ var BooleanLiteral$0 = $T($S($EXPECT($R12, "BooleanLiteral /(?=true|false|yes|no|on|off)/"), _BooleanLiteral), function(value) {
7738
7936
  return value[1];
7739
7937
  });
7740
7938
  function BooleanLiteral(ctx, state) {
@@ -7743,31 +7941,31 @@ var require_parser = __commonJS({
7743
7941
  var _BooleanLiteral$0 = $T($S(CoffeeBooleansEnabled, CoffeeScriptBooleanLiteral), function(value) {
7744
7942
  return value[1];
7745
7943
  });
7746
- var _BooleanLiteral$1 = $TS($S($C($EXPECT($L30, '_BooleanLiteral "true"'), $EXPECT($L31, '_BooleanLiteral "false"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
7944
+ var _BooleanLiteral$1 = $TS($S($C($EXPECT($L31, '_BooleanLiteral "true"'), $EXPECT($L32, '_BooleanLiteral "false"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
7747
7945
  return { $loc, token: $1 };
7748
7946
  });
7749
7947
  var _BooleanLiteral$$ = [_BooleanLiteral$0, _BooleanLiteral$1];
7750
7948
  function _BooleanLiteral(ctx, state) {
7751
7949
  return $EVENT_C(ctx, state, "_BooleanLiteral", _BooleanLiteral$$);
7752
7950
  }
7753
- var CoffeeScriptBooleanLiteral$0 = $TS($S($C($EXPECT($L32, 'CoffeeScriptBooleanLiteral "yes"'), $EXPECT($L33, 'CoffeeScriptBooleanLiteral "on"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
7951
+ var CoffeeScriptBooleanLiteral$0 = $TS($S($C($EXPECT($L33, 'CoffeeScriptBooleanLiteral "yes"'), $EXPECT($L34, 'CoffeeScriptBooleanLiteral "on"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
7754
7952
  return { $loc, token: "true" };
7755
7953
  });
7756
- var CoffeeScriptBooleanLiteral$1 = $TS($S($C($EXPECT($L34, 'CoffeeScriptBooleanLiteral "no"'), $EXPECT($L35, 'CoffeeScriptBooleanLiteral "off"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
7954
+ var CoffeeScriptBooleanLiteral$1 = $TS($S($C($EXPECT($L35, 'CoffeeScriptBooleanLiteral "no"'), $EXPECT($L36, 'CoffeeScriptBooleanLiteral "off"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
7757
7955
  return { $loc, token: "false" };
7758
7956
  });
7759
7957
  var CoffeeScriptBooleanLiteral$$ = [CoffeeScriptBooleanLiteral$0, CoffeeScriptBooleanLiteral$1];
7760
7958
  function CoffeeScriptBooleanLiteral(ctx, state) {
7761
7959
  return $EVENT_C(ctx, state, "CoffeeScriptBooleanLiteral", CoffeeScriptBooleanLiteral$$);
7762
7960
  }
7763
- var Identifier$0 = $T($S($EXPECT($R12, "Identifier /(?=\\p{ID_Start}|[_$])/"), $N(ReservedWord), IdentifierName), function(value) {
7961
+ var Identifier$0 = $T($S($EXPECT($R13, "Identifier /(?=\\p{ID_Start}|[_$])/"), $N(ReservedWord), IdentifierName), function(value) {
7764
7962
  var id = value[2];
7765
7963
  return id;
7766
7964
  });
7767
7965
  function Identifier(ctx, state) {
7768
7966
  return $EVENT(ctx, state, "Identifier", Identifier$0);
7769
7967
  }
7770
- var IdentifierName$0 = $TR($EXPECT($R13, "IdentifierName /(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
7968
+ var IdentifierName$0 = $TR($EXPECT($R14, "IdentifierName /(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
7771
7969
  return {
7772
7970
  type: "Identifier",
7773
7971
  name: $0,
@@ -7785,11 +7983,11 @@ var require_parser = __commonJS({
7785
7983
  function IdentifierReference(ctx, state) {
7786
7984
  return $EVENT(ctx, state, "IdentifierReference", IdentifierReference$0);
7787
7985
  }
7788
- var UpcomingAssignment$0 = $Y($S(__, $EXPECT($L3, 'UpcomingAssignment "="'), $N($C($EXPECT($L3, 'UpcomingAssignment "="'), $EXPECT($L36, 'UpcomingAssignment ">"')))));
7986
+ var UpcomingAssignment$0 = $Y($S(__, $EXPECT($L3, 'UpcomingAssignment "="'), $N($C($EXPECT($L3, 'UpcomingAssignment "="'), $EXPECT($L37, 'UpcomingAssignment ">"')))));
7789
7987
  function UpcomingAssignment(ctx, state) {
7790
7988
  return $EVENT(ctx, state, "UpcomingAssignment", UpcomingAssignment$0);
7791
7989
  }
7792
- var ArrayLiteral$0 = $T($S($EXPECT($R14, "ArrayLiteral /(?=\\[)/"), _ArrayLiteral), function(value) {
7990
+ var ArrayLiteral$0 = $T($S($EXPECT($R15, "ArrayLiteral /(?=\\[)/"), _ArrayLiteral), function(value) {
7793
7991
  return value[1];
7794
7992
  });
7795
7993
  function ArrayLiteral(ctx, state) {
@@ -7943,7 +8141,7 @@ var require_parser = __commonJS({
7943
8141
  return $EVENT(ctx, state, "NestedElement", NestedElement$0);
7944
8142
  }
7945
8143
  var ArrayElementDelimiter$0 = $S(__, Comma);
7946
- var ArrayElementDelimiter$1 = $Y($S(__, $EXPECT($L37, 'ArrayElementDelimiter "]"')));
8144
+ var ArrayElementDelimiter$1 = $Y($S(__, $EXPECT($L38, 'ArrayElementDelimiter "]"')));
7947
8145
  var ArrayElementDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
7948
8146
  return value[1];
7949
8147
  });
@@ -8173,7 +8371,7 @@ var require_parser = __commonJS({
8173
8371
  return $EVENT_C(ctx, state, "ImplicitInlineObjectPropertyDelimiter", ImplicitInlineObjectPropertyDelimiter$$);
8174
8372
  }
8175
8373
  var ObjectPropertyDelimiter$0 = $S($E(_), Comma);
8176
- var ObjectPropertyDelimiter$1 = $Y($S(__, $EXPECT($L28, 'ObjectPropertyDelimiter "}"')));
8374
+ var ObjectPropertyDelimiter$1 = $Y($S(__, $EXPECT($L29, 'ObjectPropertyDelimiter "}"')));
8177
8375
  var ObjectPropertyDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
8178
8376
  return value[1];
8179
8377
  });
@@ -8189,7 +8387,7 @@ var require_parser = __commonJS({
8189
8387
  children: [ws, ...prop.children]
8190
8388
  };
8191
8389
  });
8192
- var PropertyDefinition$1 = $TS($S($E(_), $TEXT($EXPECT($R15, "PropertyDefinition /[!+-]/")), PropertyName), function($skip, $loc, $0, $1, $2, $3) {
8390
+ var PropertyDefinition$1 = $TS($S($E(_), $TEXT($EXPECT($R16, "PropertyDefinition /[!+-]/")), PropertyName), function($skip, $loc, $0, $1, $2, $3) {
8193
8391
  var ws = $1;
8194
8392
  var toggle = $2;
8195
8393
  var id = $3;
@@ -8356,7 +8554,7 @@ var require_parser = __commonJS({
8356
8554
  implicit: true
8357
8555
  };
8358
8556
  });
8359
- var ComputedPropertyName$2 = $TS($S(InsertOpenBracket, $EXPECT($L21, 'ComputedPropertyName "-"'), NumericLiteral, InsertCloseBracket), function($skip, $loc, $0, $1, $2, $3, $4) {
8557
+ var ComputedPropertyName$2 = $TS($S(InsertOpenBracket, $EXPECT($L22, 'ComputedPropertyName "-"'), NumericLiteral, InsertCloseBracket), function($skip, $loc, $0, $1, $2, $3, $4) {
8360
8558
  const expression = [$2, $3];
8361
8559
  return {
8362
8560
  type: "ComputedPropertyName",
@@ -8656,10 +8854,10 @@ var require_parser = __commonJS({
8656
8854
  function OperatorAssignmentOp(ctx, state) {
8657
8855
  return $EVENT_C(ctx, state, "OperatorAssignmentOp", OperatorAssignmentOp$$);
8658
8856
  }
8659
- var AssignmentOpSymbol$0 = $EXPECT($L38, 'AssignmentOpSymbol "**="');
8660
- var AssignmentOpSymbol$1 = $EXPECT($L39, 'AssignmentOpSymbol "*="');
8661
- var AssignmentOpSymbol$2 = $EXPECT($L40, 'AssignmentOpSymbol "/="');
8662
- var AssignmentOpSymbol$3 = $EXPECT($L41, 'AssignmentOpSymbol "%="');
8857
+ var AssignmentOpSymbol$0 = $EXPECT($L39, 'AssignmentOpSymbol "**="');
8858
+ var AssignmentOpSymbol$1 = $EXPECT($L40, 'AssignmentOpSymbol "*="');
8859
+ var AssignmentOpSymbol$2 = $EXPECT($L41, 'AssignmentOpSymbol "/="');
8860
+ var AssignmentOpSymbol$3 = $EXPECT($L42, 'AssignmentOpSymbol "%="');
8663
8861
  var AssignmentOpSymbol$4 = $TS($S($C($EXPECT($L8, 'AssignmentOpSymbol "++"'), $EXPECT($L10, 'AssignmentOpSymbol "\u29FA"')), Equals), function($skip, $loc, $0, $1, $2) {
8664
8862
  return {
8665
8863
  special: true,
@@ -8668,18 +8866,18 @@ var require_parser = __commonJS({
8668
8866
  children: [$2]
8669
8867
  };
8670
8868
  });
8671
- var AssignmentOpSymbol$5 = $EXPECT($L42, 'AssignmentOpSymbol "+="');
8672
- var AssignmentOpSymbol$6 = $EXPECT($L43, 'AssignmentOpSymbol "-="');
8673
- var AssignmentOpSymbol$7 = $EXPECT($L44, 'AssignmentOpSymbol "<<="');
8674
- var AssignmentOpSymbol$8 = $EXPECT($L45, 'AssignmentOpSymbol ">>>="');
8675
- var AssignmentOpSymbol$9 = $EXPECT($L46, 'AssignmentOpSymbol ">>="');
8676
- var AssignmentOpSymbol$10 = $EXPECT($L47, 'AssignmentOpSymbol "&&="');
8677
- var AssignmentOpSymbol$11 = $EXPECT($L48, 'AssignmentOpSymbol "&="');
8678
- var AssignmentOpSymbol$12 = $EXPECT($L49, 'AssignmentOpSymbol "^="');
8679
- var AssignmentOpSymbol$13 = $EXPECT($L50, 'AssignmentOpSymbol "||="');
8680
- var AssignmentOpSymbol$14 = $EXPECT($L51, 'AssignmentOpSymbol "|="');
8681
- var AssignmentOpSymbol$15 = $EXPECT($L52, 'AssignmentOpSymbol "??="');
8682
- var AssignmentOpSymbol$16 = $T($EXPECT($L53, 'AssignmentOpSymbol "?="'), function(value) {
8869
+ var AssignmentOpSymbol$5 = $EXPECT($L43, 'AssignmentOpSymbol "+="');
8870
+ var AssignmentOpSymbol$6 = $EXPECT($L44, 'AssignmentOpSymbol "-="');
8871
+ var AssignmentOpSymbol$7 = $EXPECT($L45, 'AssignmentOpSymbol "<<="');
8872
+ var AssignmentOpSymbol$8 = $EXPECT($L46, 'AssignmentOpSymbol ">>>="');
8873
+ var AssignmentOpSymbol$9 = $EXPECT($L47, 'AssignmentOpSymbol ">>="');
8874
+ var AssignmentOpSymbol$10 = $EXPECT($L48, 'AssignmentOpSymbol "&&="');
8875
+ var AssignmentOpSymbol$11 = $EXPECT($L49, 'AssignmentOpSymbol "&="');
8876
+ var AssignmentOpSymbol$12 = $EXPECT($L50, 'AssignmentOpSymbol "^="');
8877
+ var AssignmentOpSymbol$13 = $EXPECT($L51, 'AssignmentOpSymbol "||="');
8878
+ var AssignmentOpSymbol$14 = $EXPECT($L52, 'AssignmentOpSymbol "|="');
8879
+ var AssignmentOpSymbol$15 = $EXPECT($L53, 'AssignmentOpSymbol "??="');
8880
+ var AssignmentOpSymbol$16 = $T($EXPECT($L54, 'AssignmentOpSymbol "?="'), function(value) {
8683
8881
  return "??=";
8684
8882
  });
8685
8883
  var AssignmentOpSymbol$17 = $T($S($EXPECT($L3, 'AssignmentOpSymbol "="'), $N($EXPECT($L3, 'AssignmentOpSymbol "="'))), function(value) {
@@ -8692,10 +8890,10 @@ var require_parser = __commonJS({
8692
8890
  function AssignmentOpSymbol(ctx, state) {
8693
8891
  return $EVENT_C(ctx, state, "AssignmentOpSymbol", AssignmentOpSymbol$$);
8694
8892
  }
8695
- var CoffeeWordAssignmentOp$0 = $T($EXPECT($L54, 'CoffeeWordAssignmentOp "and="'), function(value) {
8893
+ var CoffeeWordAssignmentOp$0 = $T($EXPECT($L55, 'CoffeeWordAssignmentOp "and="'), function(value) {
8696
8894
  return "&&=";
8697
8895
  });
8698
- var CoffeeWordAssignmentOp$1 = $T($EXPECT($L55, 'CoffeeWordAssignmentOp "or="'), function(value) {
8896
+ var CoffeeWordAssignmentOp$1 = $T($EXPECT($L56, 'CoffeeWordAssignmentOp "or="'), function(value) {
8699
8897
  return "||=";
8700
8898
  });
8701
8899
  var CoffeeWordAssignmentOp$$ = [CoffeeWordAssignmentOp$0, CoffeeWordAssignmentOp$1];
@@ -8729,7 +8927,7 @@ var require_parser = __commonJS({
8729
8927
  function IdentifierBinaryOp(ctx, state) {
8730
8928
  return $EVENT(ctx, state, "IdentifierBinaryOp", IdentifierBinaryOp$0);
8731
8929
  }
8732
- var BinaryOp$0 = $T($S($EXPECT($R16, "BinaryOp /(?=\\p{ID_Start}|[_$^\xAB\xBB\u22D9\u2264\u2265\u2208\u220B\u2209\u220C\u2263\u2261\u2262\u2260=\u2016\u2047&|*\\/!?%<>\u29FA+-])/"), _BinaryOp), function(value) {
8930
+ var BinaryOp$0 = $T($S($EXPECT($R17, "BinaryOp /(?=\\p{ID_Start}|[_$^\xAB\xBB\u22D9\u2264\u2265\u2208\u220B\u2209\u220C\u2263\u2261\u2262\u2260=\u2016\u2047&|*\\/!?%<>\u29FA+-])/"), _BinaryOp), function(value) {
8733
8931
  var op = value[1];
8734
8932
  return op;
8735
8933
  });
@@ -8750,7 +8948,7 @@ var require_parser = __commonJS({
8750
8948
  special: true
8751
8949
  };
8752
8950
  });
8753
- var _BinaryOp$2 = $TS($S(Not, __, Identifier), function($skip, $loc, $0, $1, $2, $3) {
8951
+ var _BinaryOp$2 = $TS($S(OmittedNegation, __, Identifier), function($skip, $loc, $0, $1, $2, $3) {
8754
8952
  var id = $3;
8755
8953
  if (!module2.operators.has(id.name))
8756
8954
  return $skip;
@@ -8764,33 +8962,33 @@ var require_parser = __commonJS({
8764
8962
  function _BinaryOp(ctx, state) {
8765
8963
  return $EVENT_C(ctx, state, "_BinaryOp", _BinaryOp$$);
8766
8964
  }
8767
- var BinaryOpSymbol$0 = $EXPECT($L56, 'BinaryOpSymbol "**"');
8768
- var BinaryOpSymbol$1 = $EXPECT($L57, 'BinaryOpSymbol "*"');
8769
- var BinaryOpSymbol$2 = $EXPECT($L58, 'BinaryOpSymbol "/"');
8770
- var BinaryOpSymbol$3 = $TV($EXPECT($L59, 'BinaryOpSymbol "%%"'), function($skip, $loc, $0, $1) {
8965
+ var BinaryOpSymbol$0 = $EXPECT($L57, 'BinaryOpSymbol "**"');
8966
+ var BinaryOpSymbol$1 = $EXPECT($L58, 'BinaryOpSymbol "*"');
8967
+ var BinaryOpSymbol$2 = $EXPECT($L59, 'BinaryOpSymbol "/"');
8968
+ var BinaryOpSymbol$3 = $TV($EXPECT($L60, 'BinaryOpSymbol "%%"'), function($skip, $loc, $0, $1) {
8771
8969
  return {
8772
8970
  call: module2.getRef("modulo"),
8773
8971
  special: true
8774
8972
  };
8775
8973
  });
8776
- var BinaryOpSymbol$4 = $EXPECT($L60, 'BinaryOpSymbol "%"');
8974
+ var BinaryOpSymbol$4 = $EXPECT($L61, 'BinaryOpSymbol "%"');
8777
8975
  var BinaryOpSymbol$5 = $TV($C($EXPECT($L8, 'BinaryOpSymbol "++"'), $EXPECT($L10, 'BinaryOpSymbol "\u29FA"')), function($skip, $loc, $0, $1) {
8778
8976
  return {
8779
8977
  method: "concat",
8780
8978
  special: true
8781
8979
  };
8782
8980
  });
8783
- var BinaryOpSymbol$6 = $EXPECT($L61, 'BinaryOpSymbol "+"');
8784
- var BinaryOpSymbol$7 = $EXPECT($L21, 'BinaryOpSymbol "-"');
8785
- var BinaryOpSymbol$8 = $EXPECT($L62, 'BinaryOpSymbol "<="');
8786
- var BinaryOpSymbol$9 = $T($EXPECT($L63, 'BinaryOpSymbol "\u2264"'), function(value) {
8981
+ var BinaryOpSymbol$6 = $EXPECT($L62, 'BinaryOpSymbol "+"');
8982
+ var BinaryOpSymbol$7 = $EXPECT($L22, 'BinaryOpSymbol "-"');
8983
+ var BinaryOpSymbol$8 = $EXPECT($L63, 'BinaryOpSymbol "<="');
8984
+ var BinaryOpSymbol$9 = $T($EXPECT($L64, 'BinaryOpSymbol "\u2264"'), function(value) {
8787
8985
  return "<=";
8788
8986
  });
8789
- var BinaryOpSymbol$10 = $EXPECT($L64, 'BinaryOpSymbol ">="');
8790
- var BinaryOpSymbol$11 = $T($EXPECT($L65, 'BinaryOpSymbol "\u2265"'), function(value) {
8987
+ var BinaryOpSymbol$10 = $EXPECT($L65, 'BinaryOpSymbol ">="');
8988
+ var BinaryOpSymbol$11 = $T($EXPECT($L66, 'BinaryOpSymbol "\u2265"'), function(value) {
8791
8989
  return ">=";
8792
8990
  });
8793
- var BinaryOpSymbol$12 = $TV($EXPECT($L66, 'BinaryOpSymbol "<?"'), function($skip, $loc, $0, $1) {
8991
+ var BinaryOpSymbol$12 = $TV($EXPECT($L67, 'BinaryOpSymbol "<?"'), function($skip, $loc, $0, $1) {
8794
8992
  return {
8795
8993
  $loc,
8796
8994
  token: "instanceof",
@@ -8798,7 +8996,7 @@ var require_parser = __commonJS({
8798
8996
  special: true
8799
8997
  };
8800
8998
  });
8801
- var BinaryOpSymbol$13 = $TV($EXPECT($L67, 'BinaryOpSymbol "!<?"'), function($skip, $loc, $0, $1) {
8999
+ var BinaryOpSymbol$13 = $TV($EXPECT($L68, 'BinaryOpSymbol "!<?"'), function($skip, $loc, $0, $1) {
8802
9000
  return {
8803
9001
  $loc,
8804
9002
  token: "instanceof",
@@ -8807,74 +9005,74 @@ var require_parser = __commonJS({
8807
9005
  negated: true
8808
9006
  };
8809
9007
  });
8810
- var BinaryOpSymbol$14 = $EXPECT($L68, 'BinaryOpSymbol "<<"');
8811
- var BinaryOpSymbol$15 = $T($EXPECT($L69, 'BinaryOpSymbol "\xAB"'), function(value) {
9008
+ var BinaryOpSymbol$14 = $EXPECT($L69, 'BinaryOpSymbol "<<"');
9009
+ var BinaryOpSymbol$15 = $T($EXPECT($L70, 'BinaryOpSymbol "\xAB"'), function(value) {
8812
9010
  return "<<";
8813
9011
  });
8814
- var BinaryOpSymbol$16 = $EXPECT($L15, 'BinaryOpSymbol "<"');
8815
- var BinaryOpSymbol$17 = $EXPECT($L70, 'BinaryOpSymbol ">>>"');
8816
- var BinaryOpSymbol$18 = $T($EXPECT($L71, 'BinaryOpSymbol "\u22D9"'), function(value) {
9012
+ var BinaryOpSymbol$16 = $EXPECT($L16, 'BinaryOpSymbol "<"');
9013
+ var BinaryOpSymbol$17 = $EXPECT($L71, 'BinaryOpSymbol ">>>"');
9014
+ var BinaryOpSymbol$18 = $T($EXPECT($L72, 'BinaryOpSymbol "\u22D9"'), function(value) {
8817
9015
  return ">>>";
8818
9016
  });
8819
- var BinaryOpSymbol$19 = $EXPECT($L72, 'BinaryOpSymbol ">>"');
8820
- var BinaryOpSymbol$20 = $T($EXPECT($L73, 'BinaryOpSymbol "\xBB"'), function(value) {
9017
+ var BinaryOpSymbol$19 = $EXPECT($L73, 'BinaryOpSymbol ">>"');
9018
+ var BinaryOpSymbol$20 = $T($EXPECT($L74, 'BinaryOpSymbol "\xBB"'), function(value) {
8821
9019
  return ">>";
8822
9020
  });
8823
- var BinaryOpSymbol$21 = $EXPECT($L36, 'BinaryOpSymbol ">"');
8824
- var BinaryOpSymbol$22 = $EXPECT($L74, 'BinaryOpSymbol "!=="');
8825
- var BinaryOpSymbol$23 = $T($EXPECT($L75, 'BinaryOpSymbol "\u2262"'), function(value) {
9021
+ var BinaryOpSymbol$21 = $EXPECT($L37, 'BinaryOpSymbol ">"');
9022
+ var BinaryOpSymbol$22 = $EXPECT($L75, 'BinaryOpSymbol "!=="');
9023
+ var BinaryOpSymbol$23 = $T($EXPECT($L76, 'BinaryOpSymbol "\u2262"'), function(value) {
8826
9024
  return "!==";
8827
9025
  });
8828
- var BinaryOpSymbol$24 = $TV($C($EXPECT($L76, 'BinaryOpSymbol "!="'), $EXPECT($L77, 'BinaryOpSymbol "\u2260"')), function($skip, $loc, $0, $1) {
9026
+ var BinaryOpSymbol$24 = $TV($C($EXPECT($L77, 'BinaryOpSymbol "!="'), $EXPECT($L78, 'BinaryOpSymbol "\u2260"')), function($skip, $loc, $0, $1) {
8829
9027
  if (module2.config.coffeeEq)
8830
9028
  return "!==";
8831
9029
  return "!=";
8832
9030
  });
8833
- var BinaryOpSymbol$25 = $TS($S($EXPECT($L78, 'BinaryOpSymbol "isnt"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
9031
+ var BinaryOpSymbol$25 = $TS($S($EXPECT($L79, 'BinaryOpSymbol "isnt"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8834
9032
  if (module2.config.coffeeIsnt)
8835
9033
  return "!==";
8836
9034
  return $skip;
8837
9035
  });
8838
- var BinaryOpSymbol$26 = $EXPECT($L79, 'BinaryOpSymbol "==="');
8839
- var BinaryOpSymbol$27 = $T($C($EXPECT($L80, 'BinaryOpSymbol "\u2263"'), $EXPECT($L81, 'BinaryOpSymbol "\u2A76"')), function(value) {
9036
+ var BinaryOpSymbol$26 = $EXPECT($L80, 'BinaryOpSymbol "==="');
9037
+ var BinaryOpSymbol$27 = $T($C($EXPECT($L81, 'BinaryOpSymbol "\u2263"'), $EXPECT($L82, 'BinaryOpSymbol "\u2A76"')), function(value) {
8840
9038
  return "===";
8841
9039
  });
8842
- var BinaryOpSymbol$28 = $TV($C($EXPECT($L82, 'BinaryOpSymbol "=="'), $EXPECT($L83, 'BinaryOpSymbol "\u2261"'), $EXPECT($L84, 'BinaryOpSymbol "\u2A75"')), function($skip, $loc, $0, $1) {
9040
+ var BinaryOpSymbol$28 = $TV($C($EXPECT($L83, 'BinaryOpSymbol "=="'), $EXPECT($L84, 'BinaryOpSymbol "\u2261"'), $EXPECT($L85, 'BinaryOpSymbol "\u2A75"')), function($skip, $loc, $0, $1) {
8843
9041
  if (module2.config.coffeeEq)
8844
9042
  return "===";
8845
9043
  return "==";
8846
9044
  });
8847
- var BinaryOpSymbol$29 = $T($S($EXPECT($L85, 'BinaryOpSymbol "and"'), NonIdContinue), function(value) {
9045
+ var BinaryOpSymbol$29 = $T($S($EXPECT($L86, 'BinaryOpSymbol "and"'), NonIdContinue), function(value) {
8848
9046
  return "&&";
8849
9047
  });
8850
- var BinaryOpSymbol$30 = $EXPECT($L86, 'BinaryOpSymbol "&&"');
8851
- var BinaryOpSymbol$31 = $T($S($EXPECT($L87, 'BinaryOpSymbol "or"'), NonIdContinue), function(value) {
9048
+ var BinaryOpSymbol$30 = $EXPECT($L87, 'BinaryOpSymbol "&&"');
9049
+ var BinaryOpSymbol$31 = $T($S($EXPECT($L88, 'BinaryOpSymbol "or"'), NonIdContinue), function(value) {
8852
9050
  return "||";
8853
9051
  });
8854
- var BinaryOpSymbol$32 = $EXPECT($L88, 'BinaryOpSymbol "||"');
8855
- var BinaryOpSymbol$33 = $T($EXPECT($L89, 'BinaryOpSymbol "\u2016"'), function(value) {
9052
+ var BinaryOpSymbol$32 = $EXPECT($L89, 'BinaryOpSymbol "||"');
9053
+ var BinaryOpSymbol$33 = $T($EXPECT($L90, 'BinaryOpSymbol "\u2016"'), function(value) {
8856
9054
  return "||";
8857
9055
  });
8858
- var BinaryOpSymbol$34 = $TV($C($EXPECT($L90, 'BinaryOpSymbol "^^"'), $S($EXPECT($L91, 'BinaryOpSymbol "xor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
9056
+ var BinaryOpSymbol$34 = $TV($C($EXPECT($L91, 'BinaryOpSymbol "^^"'), $S($EXPECT($L92, 'BinaryOpSymbol "xor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
8859
9057
  return {
8860
9058
  call: module2.getRef("xor"),
8861
9059
  special: true
8862
9060
  };
8863
9061
  });
8864
- var BinaryOpSymbol$35 = $TV($C($EXPECT($R17, "BinaryOpSymbol /!\\^\\^?/"), $S($EXPECT($L92, 'BinaryOpSymbol "xnor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
9062
+ var BinaryOpSymbol$35 = $TV($C($EXPECT($R18, "BinaryOpSymbol /!\\^\\^?/"), $S($EXPECT($L93, 'BinaryOpSymbol "xnor"'), NonIdContinue)), function($skip, $loc, $0, $1) {
8865
9063
  return {
8866
9064
  call: module2.getRef("xnor"),
8867
9065
  special: true
8868
9066
  };
8869
9067
  });
8870
- var BinaryOpSymbol$36 = $EXPECT($L93, 'BinaryOpSymbol "??"');
8871
- var BinaryOpSymbol$37 = $T($EXPECT($L94, 'BinaryOpSymbol "\u2047"'), function(value) {
9068
+ var BinaryOpSymbol$36 = $EXPECT($L94, 'BinaryOpSymbol "??"');
9069
+ var BinaryOpSymbol$37 = $T($EXPECT($L95, 'BinaryOpSymbol "\u2047"'), function(value) {
8872
9070
  return "??";
8873
9071
  });
8874
9072
  var BinaryOpSymbol$38 = $T($S($EXPECT($L6, 'BinaryOpSymbol "?"'), CoffeeBinaryExistentialEnabled), function(value) {
8875
9073
  return "??";
8876
9074
  });
8877
- var BinaryOpSymbol$39 = $TS($S($EXPECT($L95, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
9075
+ var BinaryOpSymbol$39 = $TS($S($EXPECT($L96, 'BinaryOpSymbol "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8878
9076
  return {
8879
9077
  $loc,
8880
9078
  token: $1,
@@ -8887,11 +9085,11 @@ var require_parser = __commonJS({
8887
9085
  var op = value[1];
8888
9086
  return op;
8889
9087
  });
8890
- var BinaryOpSymbol$41 = $TS($S(Not, __, NotOp), function($skip, $loc, $0, $1, $2, $3) {
9088
+ var BinaryOpSymbol$41 = $TS($S(OmittedNegation, __, NotOp), function($skip, $loc, $0, $1, $2, $3) {
8891
9089
  var op = $3;
8892
9090
  return { ...op, $loc };
8893
9091
  });
8894
- var BinaryOpSymbol$42 = $TV($C($S(Is, __, In), $EXPECT($L96, 'BinaryOpSymbol "\u2208"')), function($skip, $loc, $0, $1) {
9092
+ var BinaryOpSymbol$42 = $TV($C($S(Is, __, In), $EXPECT($L97, 'BinaryOpSymbol "\u2208"')), function($skip, $loc, $0, $1) {
8895
9093
  return {
8896
9094
  method: "includes",
8897
9095
  relational: true,
@@ -8899,14 +9097,14 @@ var require_parser = __commonJS({
8899
9097
  special: true
8900
9098
  };
8901
9099
  });
8902
- var BinaryOpSymbol$43 = $TV($EXPECT($L97, 'BinaryOpSymbol "\u220B"'), function($skip, $loc, $0, $1) {
9100
+ var BinaryOpSymbol$43 = $TV($EXPECT($L98, 'BinaryOpSymbol "\u220B"'), function($skip, $loc, $0, $1) {
8903
9101
  return {
8904
9102
  method: "includes",
8905
9103
  relational: true,
8906
9104
  special: true
8907
9105
  };
8908
9106
  });
8909
- var BinaryOpSymbol$44 = $TV($EXPECT($L98, 'BinaryOpSymbol "\u220C"'), function($skip, $loc, $0, $1) {
9107
+ var BinaryOpSymbol$44 = $TV($EXPECT($L99, 'BinaryOpSymbol "\u220C"'), function($skip, $loc, $0, $1) {
8910
9108
  return {
8911
9109
  method: "includes",
8912
9110
  relational: true,
@@ -8914,7 +9112,7 @@ var require_parser = __commonJS({
8914
9112
  negated: true
8915
9113
  };
8916
9114
  });
8917
- var BinaryOpSymbol$45 = $TV($C($S(Is, __, Not, __, In), $EXPECT($L99, 'BinaryOpSymbol "\u2209"')), function($skip, $loc, $0, $1) {
9115
+ var BinaryOpSymbol$45 = $TV($C($S(Is, __, OmittedNegation, __, In), $EXPECT($L100, 'BinaryOpSymbol "\u2209"')), function($skip, $loc, $0, $1) {
8918
9116
  return {
8919
9117
  method: "includes",
8920
9118
  relational: true,
@@ -8947,9 +9145,9 @@ var require_parser = __commonJS({
8947
9145
  return "===";
8948
9146
  });
8949
9147
  var BinaryOpSymbol$48 = In;
8950
- var BinaryOpSymbol$49 = $EXPECT($L100, 'BinaryOpSymbol "&"');
8951
- var BinaryOpSymbol$50 = $EXPECT($L20, 'BinaryOpSymbol "^"');
8952
- var BinaryOpSymbol$51 = $EXPECT($L101, 'BinaryOpSymbol "|"');
9148
+ var BinaryOpSymbol$49 = $EXPECT($L101, 'BinaryOpSymbol "&"');
9149
+ var BinaryOpSymbol$50 = $EXPECT($L21, 'BinaryOpSymbol "^"');
9150
+ var BinaryOpSymbol$51 = $EXPECT($L102, 'BinaryOpSymbol "|"');
8953
9151
  var BinaryOpSymbol$$ = [BinaryOpSymbol$0, BinaryOpSymbol$1, BinaryOpSymbol$2, BinaryOpSymbol$3, BinaryOpSymbol$4, BinaryOpSymbol$5, BinaryOpSymbol$6, BinaryOpSymbol$7, BinaryOpSymbol$8, BinaryOpSymbol$9, BinaryOpSymbol$10, BinaryOpSymbol$11, BinaryOpSymbol$12, BinaryOpSymbol$13, BinaryOpSymbol$14, BinaryOpSymbol$15, BinaryOpSymbol$16, BinaryOpSymbol$17, BinaryOpSymbol$18, BinaryOpSymbol$19, BinaryOpSymbol$20, BinaryOpSymbol$21, BinaryOpSymbol$22, BinaryOpSymbol$23, BinaryOpSymbol$24, BinaryOpSymbol$25, BinaryOpSymbol$26, BinaryOpSymbol$27, BinaryOpSymbol$28, BinaryOpSymbol$29, BinaryOpSymbol$30, BinaryOpSymbol$31, BinaryOpSymbol$32, BinaryOpSymbol$33, BinaryOpSymbol$34, BinaryOpSymbol$35, BinaryOpSymbol$36, BinaryOpSymbol$37, BinaryOpSymbol$38, BinaryOpSymbol$39, BinaryOpSymbol$40, BinaryOpSymbol$41, BinaryOpSymbol$42, BinaryOpSymbol$43, BinaryOpSymbol$44, BinaryOpSymbol$45, BinaryOpSymbol$46, BinaryOpSymbol$47, BinaryOpSymbol$48, BinaryOpSymbol$49, BinaryOpSymbol$50, BinaryOpSymbol$51];
8954
9152
  function BinaryOpSymbol(ctx, state) {
8955
9153
  return $EVENT_C(ctx, state, "BinaryOpSymbol", BinaryOpSymbol$$);
@@ -8966,7 +9164,7 @@ var require_parser = __commonJS({
8966
9164
  special: true
8967
9165
  };
8968
9166
  });
8969
- var CoffeeOfOp$2 = $TS($S(Not, __, Of, NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4) {
9167
+ var CoffeeOfOp$2 = $TS($S(OmittedNegation, __, Of, NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4) {
8970
9168
  return {
8971
9169
  $loc,
8972
9170
  token: "in",
@@ -8974,7 +9172,7 @@ var require_parser = __commonJS({
8974
9172
  negated: true
8975
9173
  };
8976
9174
  });
8977
- var CoffeeOfOp$3 = $TS($S(Not, __, In), function($skip, $loc, $0, $1, $2, $3) {
9175
+ var CoffeeOfOp$3 = $TS($S(OmittedNegation, __, In), function($skip, $loc, $0, $1, $2, $3) {
8978
9176
  return {
8979
9177
  call: [module2.getRef("indexOf"), ".call"],
8980
9178
  relational: true,
@@ -8987,7 +9185,7 @@ var require_parser = __commonJS({
8987
9185
  function CoffeeOfOp(ctx, state) {
8988
9186
  return $EVENT_C(ctx, state, "CoffeeOfOp", CoffeeOfOp$$);
8989
9187
  }
8990
- var NotOp$0 = $TS($S($EXPECT($L95, 'NotOp "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
9188
+ var NotOp$0 = $TS($S($EXPECT($L96, 'NotOp "instanceof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
8991
9189
  return {
8992
9190
  $loc,
8993
9191
  token: "instanceof",
@@ -9008,24 +9206,24 @@ var require_parser = __commonJS({
9008
9206
  function NotOp(ctx, state) {
9009
9207
  return $EVENT_C(ctx, state, "NotOp", NotOp$$);
9010
9208
  }
9011
- var Xor$0 = $EXPECT($L90, 'Xor "^^"');
9012
- var Xor$1 = $S($EXPECT($L91, 'Xor "xor"'), NonIdContinue);
9209
+ var Xor$0 = $EXPECT($L91, 'Xor "^^"');
9210
+ var Xor$1 = $S($EXPECT($L92, 'Xor "xor"'), NonIdContinue);
9013
9211
  var Xor$$ = [Xor$0, Xor$1];
9014
9212
  function Xor(ctx, state) {
9015
9213
  return $EVENT_C(ctx, state, "Xor", Xor$$);
9016
9214
  }
9017
- var Xnor$0 = $R$0($EXPECT($R17, "Xnor /!\\^\\^?/"));
9018
- var Xnor$1 = $EXPECT($L92, 'Xnor "xnor"');
9215
+ var Xnor$0 = $R$0($EXPECT($R18, "Xnor /!\\^\\^?/"));
9216
+ var Xnor$1 = $EXPECT($L93, 'Xnor "xnor"');
9019
9217
  var Xnor$$ = [Xnor$0, Xnor$1];
9020
9218
  function Xnor(ctx, state) {
9021
9219
  return $EVENT_C(ctx, state, "Xnor", Xnor$$);
9022
9220
  }
9023
- var UnaryOp$0 = $TR($EXPECT($R18, "UnaryOp /(?!\\+\\+|--)[!~+-](?!\\s)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
9221
+ var UnaryOp$0 = $TR($EXPECT($R19, "UnaryOp /(?!\\+\\+|--)[!~+-](?!\\s)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
9024
9222
  return { $loc, token: $0 };
9025
9223
  });
9026
9224
  var UnaryOp$1 = AwaitOp;
9027
- var UnaryOp$2 = $S($C(Delete, Void, Typeof), $N($R$0($EXPECT($R19, "UnaryOp /[:.]/"))), $E(_));
9028
- var UnaryOp$3 = $T($S(Not, $N($EXPECT($R19, "UnaryOp /[:.]/")), $E($EXPECT($L14, 'UnaryOp " "')), $E(_)), function(value) {
9225
+ var UnaryOp$2 = $S($C(Delete, Void, Typeof), $N($R$0($EXPECT($R20, "UnaryOp /[:.]/"))), $E(_));
9226
+ var UnaryOp$3 = $T($S(Not, $N($EXPECT($R20, "UnaryOp /[:.]/")), $E($EXPECT($L15, 'UnaryOp " "')), $E(_)), function(value) {
9029
9227
  return [value[0], value[3]];
9030
9228
  });
9031
9229
  var UnaryOp$$ = [UnaryOp$0, UnaryOp$1, UnaryOp$2, UnaryOp$3];
@@ -9120,7 +9318,7 @@ var require_parser = __commonJS({
9120
9318
  function NonPipelinePostfixedExpression(ctx, state) {
9121
9319
  return $EVENT(ctx, state, "NonPipelinePostfixedExpression", NonPipelinePostfixedExpression$0);
9122
9320
  }
9123
- var PostfixStatement$0 = $T($S($EXPECT($R20, "PostfixStatement /(?=for|if|loop|unless|until|while)/"), _PostfixStatement), function(value) {
9321
+ var PostfixStatement$0 = $T($S($EXPECT($R21, "PostfixStatement /(?=for|if|loop|unless|until|while)/"), _PostfixStatement), function(value) {
9124
9322
  return value[1];
9125
9323
  });
9126
9324
  function PostfixStatement(ctx, state) {
@@ -9163,7 +9361,7 @@ var require_parser = __commonJS({
9163
9361
  function NoCommaStatement(ctx, state) {
9164
9362
  return $EVENT_C(ctx, state, "NoCommaStatement", NoCommaStatement$$);
9165
9363
  }
9166
- var EmptyStatement$0 = $TS($S($E(_), $Y($EXPECT($L102, 'EmptyStatement ";"'))), function($skip, $loc, $0, $1, $2) {
9364
+ var EmptyStatement$0 = $TS($S($E(_), $Y($EXPECT($L103, 'EmptyStatement ";"'))), function($skip, $loc, $0, $1, $2) {
9167
9365
  return { type: "EmptyStatement", children: $1 || [] };
9168
9366
  });
9169
9367
  function EmptyStatement(ctx, state) {
@@ -9194,7 +9392,7 @@ var require_parser = __commonJS({
9194
9392
  var w = $3;
9195
9393
  return [id, colon, w];
9196
9394
  });
9197
- var Label$1 = $S($EXPECT($L103, 'Label "$:"'), Whitespace);
9395
+ var Label$1 = $S($EXPECT($L104, 'Label "$:"'), Whitespace);
9198
9396
  var Label$$ = [Label$0, Label$1];
9199
9397
  function Label(ctx, state) {
9200
9398
  return $EVENT_C(ctx, state, "Label", Label$$);
@@ -9367,7 +9565,7 @@ var require_parser = __commonJS({
9367
9565
  function BlockExpressionPart(ctx, state) {
9368
9566
  return $EVENT(ctx, state, "BlockExpressionPart", BlockExpressionPart$0);
9369
9567
  }
9370
- var IterationStatement$0 = $T($S($EXPECT($R21, "IterationStatement /(?=loop|do|for|until|while)/"), _IterationStatement), function(value) {
9568
+ var IterationStatement$0 = $T($S($EXPECT($R22, "IterationStatement /(?=loop|do|for|until|while)/"), _IterationStatement), function(value) {
9371
9569
  return value[1];
9372
9570
  });
9373
9571
  function IterationStatement(ctx, state) {
@@ -9720,7 +9918,7 @@ var require_parser = __commonJS({
9720
9918
  names: binding.names
9721
9919
  };
9722
9920
  });
9723
- var ForDeclaration$1 = $TS($S(InsertConst, ForBinding, $EXPECT($R22, "ForDeclaration /(?=[\\s\\),])/")), function($skip, $loc, $0, $1, $2, $3) {
9921
+ var ForDeclaration$1 = $TS($S(InsertConst, ForBinding, $EXPECT($R23, "ForDeclaration /(?=[\\s\\),])/")), function($skip, $loc, $0, $1, $2, $3) {
9724
9922
  var c = $1;
9725
9923
  var binding = $2;
9726
9924
  return {
@@ -9946,7 +10144,7 @@ var require_parser = __commonJS({
9946
10144
  function IgnoreColon(ctx, state) {
9947
10145
  return $EVENT(ctx, state, "IgnoreColon", IgnoreColon$0);
9948
10146
  }
9949
- var TryStatement$0 = $TS($S(Try, $N($EXPECT($L13, 'TryStatement ":"')), NoPostfixBracedOrEmptyBlock, $E(CatchClause), $E(FinallyClause)), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
10147
+ var TryStatement$0 = $TS($S(Try, $N($EXPECT($L14, 'TryStatement ":"')), NoPostfixBracedOrEmptyBlock, $E(CatchClause), $E(FinallyClause)), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
9950
10148
  var t = $1;
9951
10149
  var b = $3;
9952
10150
  var c = $4;
@@ -9987,7 +10185,7 @@ var require_parser = __commonJS({
9987
10185
  function TryExpression(ctx, state) {
9988
10186
  return $EVENT(ctx, state, "TryExpression", TryExpression$0);
9989
10187
  }
9990
- var CatchClause$0 = $TS($S($C(Nested, _), Catch, $E(CatchBind), $C(ThenClause, BracedOrEmptyBlock)), function($skip, $loc, $0, $1, $2, $3, $4) {
10188
+ var CatchClause$0 = $TS($S($C(Nested, _), Catch, $E(CatchBind), $C(BracedThenClause, BracedOrEmptyBlock)), function($skip, $loc, $0, $1, $2, $3, $4) {
9991
10189
  var block = $4;
9992
10190
  return {
9993
10191
  type: "CatchClause",
@@ -10004,7 +10202,7 @@ var require_parser = __commonJS({
10004
10202
  function CatchBind(ctx, state) {
10005
10203
  return $EVENT_C(ctx, state, "CatchBind", CatchBind$$);
10006
10204
  }
10007
- var FinallyClause$0 = $S($C(Nested, _), Finally, $C(ThenClause, BracedOrEmptyBlock));
10205
+ var FinallyClause$0 = $S($C(Nested, _), Finally, $C(BracedThenClause, BracedOrEmptyBlock));
10008
10206
  function FinallyClause(ctx, state) {
10009
10207
  return $EVENT(ctx, state, "FinallyClause", FinallyClause$0);
10010
10208
  }
@@ -10282,7 +10480,7 @@ var require_parser = __commonJS({
10282
10480
  };
10283
10481
  });
10284
10482
  var KeywordStatement$2 = DebuggerStatement;
10285
- var KeywordStatement$3 = $T($S(Return, $N($C($EXPECT($L13, 'KeywordStatement ":"'), $EXPECT($L7, 'KeywordStatement "."'), AfterReturnShorthand)), $E(MaybeNestedExpression)), function(value) {
10483
+ var KeywordStatement$3 = $T($S(Return, $N($C($EXPECT($L14, 'KeywordStatement ":"'), $EXPECT($L7, 'KeywordStatement "."'), AfterReturnShorthand)), $E(MaybeNestedExpression)), function(value) {
10286
10484
  var expression = value[2];
10287
10485
  return { "type": "ReturnStatement", "expression": expression, "children": value };
10288
10486
  });
@@ -10303,19 +10501,19 @@ var require_parser = __commonJS({
10303
10501
  function ThrowStatement(ctx, state) {
10304
10502
  return $EVENT(ctx, state, "ThrowStatement", ThrowStatement$0);
10305
10503
  }
10306
- var Break$0 = $TS($S($EXPECT($L104, 'Break "break"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10504
+ var Break$0 = $TS($S($EXPECT($L105, 'Break "break"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10307
10505
  return { $loc, token: $1 };
10308
10506
  });
10309
10507
  function Break(ctx, state) {
10310
10508
  return $EVENT(ctx, state, "Break", Break$0);
10311
10509
  }
10312
- var Continue$0 = $TS($S($EXPECT($L105, 'Continue "continue"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10510
+ var Continue$0 = $TS($S($EXPECT($L106, 'Continue "continue"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10313
10511
  return { $loc, token: $1 };
10314
10512
  });
10315
10513
  function Continue(ctx, state) {
10316
10514
  return $EVENT(ctx, state, "Continue", Continue$0);
10317
10515
  }
10318
- var Debugger$0 = $TS($S($EXPECT($L106, 'Debugger "debugger"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10516
+ var Debugger$0 = $TS($S($EXPECT($L107, 'Debugger "debugger"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
10319
10517
  return { $loc, token: $1 };
10320
10518
  });
10321
10519
  function Debugger(ctx, state) {
@@ -10436,7 +10634,7 @@ var require_parser = __commonJS({
10436
10634
  function FromClause(ctx, state) {
10437
10635
  return $EVENT(ctx, state, "FromClause", FromClause$0);
10438
10636
  }
10439
- var ImportAssertion$0 = $S($E(_), $C($EXPECT($L107, 'ImportAssertion "with"'), $EXPECT($L108, 'ImportAssertion "assert"')), NonIdContinue, $E(_), ObjectLiteral);
10637
+ var ImportAssertion$0 = $S($E(_), $C($EXPECT($L108, 'ImportAssertion "with"'), $EXPECT($L109, 'ImportAssertion "assert"')), NonIdContinue, $E(_), ObjectLiteral);
10440
10638
  function ImportAssertion(ctx, state) {
10441
10639
  return $EVENT(ctx, state, "ImportAssertion", ImportAssertion$0);
10442
10640
  }
@@ -10484,7 +10682,7 @@ var require_parser = __commonJS({
10484
10682
  return $EVENT_C(ctx, state, "ImportSpecifier", ImportSpecifier$$);
10485
10683
  }
10486
10684
  var ImportAsToken$0 = $S(__, As);
10487
- var ImportAsToken$1 = $TS($S(Loc, __, Colon, $E($EXPECT($L14, 'ImportAsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
10685
+ var ImportAsToken$1 = $TS($S(Loc, __, Colon, $E($EXPECT($L15, 'ImportAsToken " "'))), function($skip, $loc, $0, $1, $2, $3, $4) {
10488
10686
  var l = $1;
10489
10687
  var ws = $2;
10490
10688
  var c = $3;
@@ -10524,7 +10722,7 @@ var require_parser = __commonJS({
10524
10722
  function UnprocessedModuleSpecifier(ctx, state) {
10525
10723
  return $EVENT_C(ctx, state, "UnprocessedModuleSpecifier", UnprocessedModuleSpecifier$$);
10526
10724
  }
10527
- var UnquotedSpecifier$0 = $TV($EXPECT($R23, 'UnquotedSpecifier /[^;"\\s]+/'), function($skip, $loc, $0, $1) {
10725
+ var UnquotedSpecifier$0 = $TV($EXPECT($R24, 'UnquotedSpecifier /[^;"\\s]+/'), function($skip, $loc, $0, $1) {
10528
10726
  var spec = $0;
10529
10727
  return { $loc, token: `"${spec}"` };
10530
10728
  });
@@ -10656,13 +10854,13 @@ var require_parser = __commonJS({
10656
10854
  function LexicalDeclaration(ctx, state) {
10657
10855
  return $EVENT_C(ctx, state, "LexicalDeclaration", LexicalDeclaration$$);
10658
10856
  }
10659
- var ConstAssignment$0 = $TV($C($EXPECT($L109, 'ConstAssignment ":="'), $EXPECT($L110, 'ConstAssignment "\u2254"')), function($skip, $loc, $0, $1) {
10857
+ var ConstAssignment$0 = $TV($C($EXPECT($L110, 'ConstAssignment ":="'), $EXPECT($L111, 'ConstAssignment "\u2254"')), function($skip, $loc, $0, $1) {
10660
10858
  return { $loc, token: "=" };
10661
10859
  });
10662
10860
  function ConstAssignment(ctx, state) {
10663
10861
  return $EVENT(ctx, state, "ConstAssignment", ConstAssignment$0);
10664
10862
  }
10665
- var LetAssignment$0 = $TV($EXPECT($L111, 'LetAssignment ".="'), function($skip, $loc, $0, $1) {
10863
+ var LetAssignment$0 = $TV($EXPECT($L112, 'LetAssignment ".="'), function($skip, $loc, $0, $1) {
10666
10864
  return { $loc, token: "=" };
10667
10865
  });
10668
10866
  function LetAssignment(ctx, state) {
@@ -10730,7 +10928,7 @@ var require_parser = __commonJS({
10730
10928
  function VariableDeclarationList(ctx, state) {
10731
10929
  return $EVENT(ctx, state, "VariableDeclarationList", VariableDeclarationList$0);
10732
10930
  }
10733
- var NumericLiteral$0 = $TS($S($EXPECT($R24, "NumericLiteral /(?=[0-9.])/"), NumericLiteralKind), function($skip, $loc, $0, $1, $2) {
10931
+ var NumericLiteral$0 = $TS($S($EXPECT($R25, "NumericLiteral /(?=[0-9.])/"), NumericLiteralKind), function($skip, $loc, $0, $1, $2) {
10734
10932
  var token = $2;
10735
10933
  return { type: "NumericLiteral", $loc, token };
10736
10934
  });
@@ -10746,36 +10944,36 @@ var require_parser = __commonJS({
10746
10944
  function NumericLiteralKind(ctx, state) {
10747
10945
  return $EVENT_C(ctx, state, "NumericLiteralKind", NumericLiteralKind$$);
10748
10946
  }
10749
- var DecimalBigIntegerLiteral$0 = $R$0($EXPECT($R25, "DecimalBigIntegerLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)n/"));
10947
+ var DecimalBigIntegerLiteral$0 = $R$0($EXPECT($R26, "DecimalBigIntegerLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)n/"));
10750
10948
  function DecimalBigIntegerLiteral(ctx, state) {
10751
10949
  return $EVENT(ctx, state, "DecimalBigIntegerLiteral", DecimalBigIntegerLiteral$0);
10752
10950
  }
10753
- var DecimalLiteral$0 = $TV($TEXT($EXPECT($R26, "DecimalLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\\.(?:\\p{ID_Start}|[_$]))/")), function($skip, $loc, $0, $1) {
10951
+ var DecimalLiteral$0 = $TV($TEXT($EXPECT($R27, "DecimalLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\\.(?:\\p{ID_Start}|[_$]))/")), function($skip, $loc, $0, $1) {
10754
10952
  return $1 + ".";
10755
10953
  });
10756
- var DecimalLiteral$1 = $TEXT($S($EXPECT($R27, "DecimalLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\\.(?:[0-9](?:_[0-9]|[0-9])*))?/"), $E(ExponentPart)));
10757
- var DecimalLiteral$2 = $TEXT($S($EXPECT($R28, "DecimalLiteral /(?:\\.[0-9](?:_[0-9]|[0-9])*)/"), $E(ExponentPart)));
10954
+ var DecimalLiteral$1 = $TEXT($S($EXPECT($R28, "DecimalLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\\.(?:[0-9](?:_[0-9]|[0-9])*))?/"), $E(ExponentPart)));
10955
+ var DecimalLiteral$2 = $TEXT($S($EXPECT($R29, "DecimalLiteral /(?:\\.[0-9](?:_[0-9]|[0-9])*)/"), $E(ExponentPart)));
10758
10956
  var DecimalLiteral$$ = [DecimalLiteral$0, DecimalLiteral$1, DecimalLiteral$2];
10759
10957
  function DecimalLiteral(ctx, state) {
10760
10958
  return $EVENT_C(ctx, state, "DecimalLiteral", DecimalLiteral$$);
10761
10959
  }
10762
- var ExponentPart$0 = $R$0($EXPECT($R29, "ExponentPart /(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)/"));
10960
+ var ExponentPart$0 = $R$0($EXPECT($R30, "ExponentPart /(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)/"));
10763
10961
  function ExponentPart(ctx, state) {
10764
10962
  return $EVENT(ctx, state, "ExponentPart", ExponentPart$0);
10765
10963
  }
10766
- var BinaryIntegerLiteral$0 = $R$0($EXPECT($R30, "BinaryIntegerLiteral /0[bB][01](?:[01]|_[01])*n?/"));
10964
+ var BinaryIntegerLiteral$0 = $R$0($EXPECT($R31, "BinaryIntegerLiteral /0[bB][01](?:[01]|_[01])*n?/"));
10767
10965
  function BinaryIntegerLiteral(ctx, state) {
10768
10966
  return $EVENT(ctx, state, "BinaryIntegerLiteral", BinaryIntegerLiteral$0);
10769
10967
  }
10770
- var OctalIntegerLiteral$0 = $R$0($EXPECT($R31, "OctalIntegerLiteral /0[oO][0-7](?:[0-7]|_[0-7])*n?/"));
10968
+ var OctalIntegerLiteral$0 = $R$0($EXPECT($R32, "OctalIntegerLiteral /0[oO][0-7](?:[0-7]|_[0-7])*n?/"));
10771
10969
  function OctalIntegerLiteral(ctx, state) {
10772
10970
  return $EVENT(ctx, state, "OctalIntegerLiteral", OctalIntegerLiteral$0);
10773
10971
  }
10774
- var HexIntegerLiteral$0 = $R$0($EXPECT($R32, "HexIntegerLiteral /0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?/"));
10972
+ var HexIntegerLiteral$0 = $R$0($EXPECT($R33, "HexIntegerLiteral /0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?/"));
10775
10973
  function HexIntegerLiteral(ctx, state) {
10776
10974
  return $EVENT(ctx, state, "HexIntegerLiteral", HexIntegerLiteral$0);
10777
10975
  }
10778
- var IntegerLiteral$0 = $TS($S($EXPECT($R33, "IntegerLiteral /(?=[0-9])/"), IntegerLiteralKind), function($skip, $loc, $0, $1, $2) {
10976
+ var IntegerLiteral$0 = $TS($S($EXPECT($R34, "IntegerLiteral /(?=[0-9])/"), IntegerLiteralKind), function($skip, $loc, $0, $1, $2) {
10779
10977
  var token = $2;
10780
10978
  return { $loc, token };
10781
10979
  });
@@ -10791,7 +10989,7 @@ var require_parser = __commonJS({
10791
10989
  function IntegerLiteralKind(ctx, state) {
10792
10990
  return $EVENT_C(ctx, state, "IntegerLiteralKind", IntegerLiteralKind$$);
10793
10991
  }
10794
- var DecimalIntegerLiteral$0 = $R$0($EXPECT($R34, "DecimalIntegerLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)/"));
10992
+ var DecimalIntegerLiteral$0 = $R$0($EXPECT($R35, "DecimalIntegerLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)/"));
10795
10993
  function DecimalIntegerLiteral(ctx, state) {
10796
10994
  return $EVENT(ctx, state, "DecimalIntegerLiteral", DecimalIntegerLiteral$0);
10797
10995
  }
@@ -10815,25 +11013,25 @@ var require_parser = __commonJS({
10815
11013
  function StringLiteral(ctx, state) {
10816
11014
  return $EVENT_C(ctx, state, "StringLiteral", StringLiteral$$);
10817
11015
  }
10818
- var DoubleStringCharacters$0 = $TR($EXPECT($R35, 'DoubleStringCharacters /(?:\\\\.|[^"])*/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11016
+ var DoubleStringCharacters$0 = $TR($EXPECT($R36, 'DoubleStringCharacters /(?:\\\\.|[^"])*/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10819
11017
  return { $loc, token: $0 };
10820
11018
  });
10821
11019
  function DoubleStringCharacters(ctx, state) {
10822
11020
  return $EVENT(ctx, state, "DoubleStringCharacters", DoubleStringCharacters$0);
10823
11021
  }
10824
- var SingleStringCharacters$0 = $TR($EXPECT($R36, "SingleStringCharacters /(?:\\\\.|[^'])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11022
+ var SingleStringCharacters$0 = $TR($EXPECT($R37, "SingleStringCharacters /(?:\\\\.|[^'])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10825
11023
  return { $loc, token: $0 };
10826
11024
  });
10827
11025
  function SingleStringCharacters(ctx, state) {
10828
11026
  return $EVENT(ctx, state, "SingleStringCharacters", SingleStringCharacters$0);
10829
11027
  }
10830
- var TripleDoubleStringCharacters$0 = $TR($EXPECT($R37, 'TripleDoubleStringCharacters /(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11028
+ var TripleDoubleStringCharacters$0 = $TR($EXPECT($R38, 'TripleDoubleStringCharacters /(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10831
11029
  return { $loc, token: $0 };
10832
11030
  });
10833
11031
  function TripleDoubleStringCharacters(ctx, state) {
10834
11032
  return $EVENT(ctx, state, "TripleDoubleStringCharacters", TripleDoubleStringCharacters$0);
10835
11033
  }
10836
- var TripleSingleStringCharacters$0 = $TR($EXPECT($R38, "TripleSingleStringCharacters /(?:'(?!'')|\\\\.|[^'])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11034
+ var TripleSingleStringCharacters$0 = $TR($EXPECT($R39, "TripleSingleStringCharacters /(?:'(?!'')|\\\\.|[^'])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10837
11035
  return { $loc, token: $0 };
10838
11036
  });
10839
11037
  function TripleSingleStringCharacters(ctx, state) {
@@ -10852,14 +11050,14 @@ var require_parser = __commonJS({
10852
11050
  function CoffeeInterpolatedDoubleQuotedString(ctx, state) {
10853
11051
  return $EVENT(ctx, state, "CoffeeInterpolatedDoubleQuotedString", CoffeeInterpolatedDoubleQuotedString$0);
10854
11052
  }
10855
- var CoffeeDoubleQuotedStringCharacters$0 = $TR($EXPECT($R39, 'CoffeeDoubleQuotedStringCharacters /(?:\\\\.|#(?!\\{)|[^"#])+/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11053
+ var CoffeeDoubleQuotedStringCharacters$0 = $TR($EXPECT($R40, 'CoffeeDoubleQuotedStringCharacters /(?:\\\\.|#(?!\\{)|[^"#])+/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10856
11054
  return { $loc, token: $0 };
10857
11055
  });
10858
11056
  function CoffeeDoubleQuotedStringCharacters(ctx, state) {
10859
11057
  return $EVENT(ctx, state, "CoffeeDoubleQuotedStringCharacters", CoffeeDoubleQuotedStringCharacters$0);
10860
11058
  }
10861
11059
  var RegularExpressionLiteral$0 = HeregexLiteral;
10862
- var RegularExpressionLiteral$1 = $TV($TEXT($S($EXPECT($L58, 'RegularExpressionLiteral "/"'), RegularExpressionBody, $EXPECT($L58, 'RegularExpressionLiteral "/"'), RegularExpressionFlags)), function($skip, $loc, $0, $1) {
11060
+ var RegularExpressionLiteral$1 = $TV($TEXT($S($EXPECT($L59, 'RegularExpressionLiteral "/"'), RegularExpressionBody, $EXPECT($L59, 'RegularExpressionLiteral "/"'), RegularExpressionFlags)), function($skip, $loc, $0, $1) {
10863
11061
  return { type: "RegularExpressionLiteral", $loc, token: $1 };
10864
11062
  });
10865
11063
  var RegularExpressionLiteral$$ = [RegularExpressionLiteral$0, RegularExpressionLiteral$1];
@@ -10872,7 +11070,7 @@ var require_parser = __commonJS({
10872
11070
  function RegularExpressionClass(ctx, state) {
10873
11071
  return $EVENT(ctx, state, "RegularExpressionClass", RegularExpressionClass$0);
10874
11072
  }
10875
- var RegularExpressionClassCharacters$0 = $TR($EXPECT($R40, "RegularExpressionClassCharacters /(?:\\\\.|[^\\]])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11073
+ var RegularExpressionClassCharacters$0 = $TR($EXPECT($R41, "RegularExpressionClassCharacters /(?:\\\\.|[^\\]])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10876
11074
  return { $loc, token: $0 };
10877
11075
  });
10878
11076
  function RegularExpressionClassCharacters(ctx, state) {
@@ -10926,7 +11124,7 @@ var require_parser = __commonJS({
10926
11124
  var HeregexPart$2 = $T($S(TemplateSubstitution), function(value) {
10927
11125
  return { "type": "Substitution", "children": value[0] };
10928
11126
  });
10929
- var HeregexPart$3 = $TR($EXPECT($R41, "HeregexPart /(?:\\\\.)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11127
+ var HeregexPart$3 = $TR($EXPECT($R42, "HeregexPart /(?:\\\\.)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10930
11128
  let token = $0;
10931
11129
  switch ($0[1]) {
10932
11130
  case "\n":
@@ -10944,13 +11142,13 @@ var require_parser = __commonJS({
10944
11142
  var HeregexPart$4 = $TS($S(HeregexComment), function($skip, $loc, $0, $1) {
10945
11143
  return { $loc, token: "" };
10946
11144
  });
10947
- var HeregexPart$5 = $TR($EXPECT($R42, "HeregexPart /[\\s]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11145
+ var HeregexPart$5 = $TR($EXPECT($R43, "HeregexPart /[\\s]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10948
11146
  return { $loc, token: "" };
10949
11147
  });
10950
- var HeregexPart$6 = $TR($EXPECT($R43, "HeregexPart /\\/(?!\\/\\/)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11148
+ var HeregexPart$6 = $TR($EXPECT($R44, "HeregexPart /\\/(?!\\/\\/)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10951
11149
  return { $loc, token: "\\/" };
10952
11150
  });
10953
- var HeregexPart$7 = $TR($EXPECT($R44, "HeregexPart /[^[\\/\\s#\\\\]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11151
+ var HeregexPart$7 = $TR($EXPECT($R45, "HeregexPart /[^[\\/\\s#\\\\]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
10954
11152
  return { $loc, token: $0 };
10955
11153
  });
10956
11154
  var HeregexPart$$ = [HeregexPart$0, HeregexPart$1, HeregexPart$2, HeregexPart$3, HeregexPart$4, HeregexPart$5, HeregexPart$6, HeregexPart$7];
@@ -10963,7 +11161,7 @@ var require_parser = __commonJS({
10963
11161
  function HeregexComment(ctx, state) {
10964
11162
  return $EVENT_C(ctx, state, "HeregexComment", HeregexComment$$);
10965
11163
  }
10966
- var RegularExpressionBody$0 = $S($N($R$0($EXPECT($R45, "RegularExpressionBody /[*\\/\\r\\n]/"))), $Q(RegExpPart));
11164
+ var RegularExpressionBody$0 = $S($N($R$0($EXPECT($R46, "RegularExpressionBody /[*\\/\\r\\n]/"))), $Q(RegExpPart));
10967
11165
  function RegularExpressionBody(ctx, state) {
10968
11166
  return $EVENT(ctx, state, "RegularExpressionBody", RegularExpressionBody$0);
10969
11167
  }
@@ -10973,15 +11171,15 @@ var require_parser = __commonJS({
10973
11171
  function RegExpPart(ctx, state) {
10974
11172
  return $EVENT_C(ctx, state, "RegExpPart", RegExpPart$$);
10975
11173
  }
10976
- var RegExpCharacter$0 = $R$0($EXPECT($R46, "RegExpCharacter /(?:\\\\.|[^[\\/\\r\\n])+/"));
11174
+ var RegExpCharacter$0 = $R$0($EXPECT($R47, "RegExpCharacter /(?:\\\\.|[^[\\/\\r\\n])+/"));
10977
11175
  function RegExpCharacter(ctx, state) {
10978
11176
  return $EVENT(ctx, state, "RegExpCharacter", RegExpCharacter$0);
10979
11177
  }
10980
- var RegularExpressionFlags$0 = $R$0($EXPECT($R47, "RegularExpressionFlags /(?:\\p{ID_Continue}|[\\u200C\\u200D$])*/"));
11178
+ var RegularExpressionFlags$0 = $R$0($EXPECT($R48, "RegularExpressionFlags /(?:\\p{ID_Continue}|[\\u200C\\u200D$])*/"));
10981
11179
  function RegularExpressionFlags(ctx, state) {
10982
11180
  return $EVENT(ctx, state, "RegularExpressionFlags", RegularExpressionFlags$0);
10983
11181
  }
10984
- var TemplateLiteral$0 = $T($S($EXPECT($R48, "TemplateLiteral /(?=[`'\"])/"), _TemplateLiteral), function(value) {
11182
+ var TemplateLiteral$0 = $T($S($EXPECT($R49, "TemplateLiteral /(?=[`'\"])/"), _TemplateLiteral), function(value) {
10985
11183
  return value[1];
10986
11184
  });
10987
11185
  function TemplateLiteral(ctx, state) {
@@ -11017,28 +11215,28 @@ var require_parser = __commonJS({
11017
11215
  function TemplateSubstitution(ctx, state) {
11018
11216
  return $EVENT(ctx, state, "TemplateSubstitution", TemplateSubstitution$0);
11019
11217
  }
11020
- var TemplateCharacters$0 = $TR($EXPECT($R49, "TemplateCharacters /(?:\\$(?!\\{)|\\\\.|[^$`])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11218
+ var TemplateCharacters$0 = $TR($EXPECT($R50, "TemplateCharacters /(?:\\$(?!\\{)|\\\\.|[^$`])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11021
11219
  return { $loc, token: $0 };
11022
11220
  });
11023
11221
  function TemplateCharacters(ctx, state) {
11024
11222
  return $EVENT(ctx, state, "TemplateCharacters", TemplateCharacters$0);
11025
11223
  }
11026
- var TemplateBlockCharacters$0 = $TR($EXPECT($R50, "TemplateBlockCharacters /(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11224
+ var TemplateBlockCharacters$0 = $TR($EXPECT($R51, "TemplateBlockCharacters /(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11027
11225
  return { $loc, token: $0 };
11028
11226
  });
11029
11227
  function TemplateBlockCharacters(ctx, state) {
11030
11228
  return $EVENT(ctx, state, "TemplateBlockCharacters", TemplateBlockCharacters$0);
11031
11229
  }
11032
- var ReservedWord$0 = $S($R$0($EXPECT($R51, "ReservedWord /(?:on|off|yes|no)(?!\\p{ID_Continue})/")), CoffeeBooleansEnabled);
11033
- var ReservedWord$1 = $S($R$0($EXPECT($R52, "ReservedWord /(?:isnt)(?!\\p{ID_Continue})/")), CoffeeIsntEnabled);
11034
- var ReservedWord$2 = $S($R$0($EXPECT($R53, "ReservedWord /(?:by)(?!\\p{ID_Continue})/")), CoffeeForLoopsEnabled);
11035
- var ReservedWord$3 = $S($R$0($EXPECT($R54, "ReservedWord /(?:of)(?!\\p{ID_Continue})/")), CoffeeOfEnabled);
11036
- var ReservedWord$4 = $R$0($EXPECT($R55, "ReservedWord /(?:and|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|false|finally|for|function|if|import|in|instanceof|interface|is|let|loop|new|not|null|or|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|unless|until|var|void|while|with|yield)(?!\\p{ID_Continue})/"));
11230
+ var ReservedWord$0 = $S($R$0($EXPECT($R52, "ReservedWord /(?:on|off|yes|no)(?!\\p{ID_Continue})/")), CoffeeBooleansEnabled);
11231
+ var ReservedWord$1 = $S($R$0($EXPECT($R53, "ReservedWord /(?:isnt)(?!\\p{ID_Continue})/")), CoffeeIsntEnabled);
11232
+ var ReservedWord$2 = $S($R$0($EXPECT($R54, "ReservedWord /(?:by)(?!\\p{ID_Continue})/")), CoffeeForLoopsEnabled);
11233
+ var ReservedWord$3 = $S($R$0($EXPECT($R55, "ReservedWord /(?:of)(?!\\p{ID_Continue})/")), CoffeeOfEnabled);
11234
+ var ReservedWord$4 = $R$0($EXPECT($R56, "ReservedWord /(?:and|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|false|finally|for|function|if|import|in|instanceof|interface|is|let|loop|new|not|null|or|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|unless|until|var|void|while|with|yield)(?!\\p{ID_Continue})/"));
11037
11235
  var ReservedWord$$ = [ReservedWord$0, ReservedWord$1, ReservedWord$2, ReservedWord$3, ReservedWord$4];
11038
11236
  function ReservedWord(ctx, state) {
11039
11237
  return $EVENT_C(ctx, state, "ReservedWord", ReservedWord$$);
11040
11238
  }
11041
- var Comment$0 = $T($S($EXPECT($R56, "Comment /(?=\\/|#)/"), _Comment), function(value) {
11239
+ var Comment$0 = $T($S($EXPECT($R57, "Comment /(?=\\/|#)/"), _Comment), function(value) {
11042
11240
  return value[1];
11043
11241
  });
11044
11242
  function Comment(ctx, state) {
@@ -11056,7 +11254,7 @@ var require_parser = __commonJS({
11056
11254
  function SingleLineComment(ctx, state) {
11057
11255
  return $EVENT_C(ctx, state, "SingleLineComment", SingleLineComment$$);
11058
11256
  }
11059
- var JSSingleLineComment$0 = $TR($EXPECT($R57, "JSSingleLineComment /\\/\\/(?!\\/)[^\\r\\n]*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11257
+ var JSSingleLineComment$0 = $TR($EXPECT($R58, "JSSingleLineComment /\\/\\/(?!\\/)[^\\r\\n]*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11060
11258
  return { type: "Comment", $loc, token: $0 };
11061
11259
  });
11062
11260
  function JSSingleLineComment(ctx, state) {
@@ -11068,30 +11266,30 @@ var require_parser = __commonJS({
11068
11266
  function MultiLineComment(ctx, state) {
11069
11267
  return $EVENT_C(ctx, state, "MultiLineComment", MultiLineComment$$);
11070
11268
  }
11071
- var JSMultiLineComment$0 = $TV($TEXT($S($EXPECT($L112, 'JSMultiLineComment "/*"'), $Q($S($N($EXPECT($L113, 'JSMultiLineComment "*/"')), $EXPECT($R58, "JSMultiLineComment /./"))), $EXPECT($L113, 'JSMultiLineComment "*/"'))), function($skip, $loc, $0, $1) {
11269
+ var JSMultiLineComment$0 = $TV($TEXT($S($EXPECT($L113, 'JSMultiLineComment "/*"'), $Q($S($N($EXPECT($L114, 'JSMultiLineComment "*/"')), $EXPECT($R59, "JSMultiLineComment /./"))), $EXPECT($L114, 'JSMultiLineComment "*/"'))), function($skip, $loc, $0, $1) {
11072
11270
  return { type: "Comment", $loc, token: $1 };
11073
11271
  });
11074
11272
  function JSMultiLineComment(ctx, state) {
11075
11273
  return $EVENT(ctx, state, "JSMultiLineComment", JSMultiLineComment$0);
11076
11274
  }
11077
- var CoffeeSingleLineComment$0 = $TR($EXPECT($R59, "CoffeeSingleLineComment /#(?!##(?!#))([^\\r\\n]*)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11275
+ var CoffeeSingleLineComment$0 = $TR($EXPECT($R60, "CoffeeSingleLineComment /#(?!##(?!#))([^\\r\\n]*)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11078
11276
  return { type: "Comment", $loc, token: `//${$1}` };
11079
11277
  });
11080
11278
  function CoffeeSingleLineComment(ctx, state) {
11081
11279
  return $EVENT(ctx, state, "CoffeeSingleLineComment", CoffeeSingleLineComment$0);
11082
11280
  }
11083
- var CoffeeMultiLineComment$0 = $TS($S(CoffeeHereCommentStart, $TEXT($EXPECT($R60, "CoffeeMultiLineComment /[^]*?###/"))), function($skip, $loc, $0, $1, $2) {
11281
+ var CoffeeMultiLineComment$0 = $TS($S(CoffeeHereCommentStart, $TEXT($EXPECT($R61, "CoffeeMultiLineComment /[^]*?###/"))), function($skip, $loc, $0, $1, $2) {
11084
11282
  $2 = $2.slice(0, $2.length - 3).replace(/\*\//g, "* /");
11085
11283
  return { type: "Comment", $loc, token: `/*${$2}*/` };
11086
11284
  });
11087
11285
  function CoffeeMultiLineComment(ctx, state) {
11088
11286
  return $EVENT(ctx, state, "CoffeeMultiLineComment", CoffeeMultiLineComment$0);
11089
11287
  }
11090
- var CoffeeHereCommentStart$0 = $R$0($EXPECT($R61, "CoffeeHereCommentStart /###(?!#)/"));
11288
+ var CoffeeHereCommentStart$0 = $R$0($EXPECT($R62, "CoffeeHereCommentStart /###(?!#)/"));
11091
11289
  function CoffeeHereCommentStart(ctx, state) {
11092
11290
  return $EVENT(ctx, state, "CoffeeHereCommentStart", CoffeeHereCommentStart$0);
11093
11291
  }
11094
- var InlineComment$0 = $TR($EXPECT($R62, "InlineComment /\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\//"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11292
+ var InlineComment$0 = $TR($EXPECT($R63, "InlineComment /\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\//"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11095
11293
  return { $loc, token: $0 };
11096
11294
  });
11097
11295
  function InlineComment(ctx, state) {
@@ -11105,16 +11303,16 @@ var require_parser = __commonJS({
11105
11303
  function TrailingComment(ctx, state) {
11106
11304
  return $EVENT(ctx, state, "TrailingComment", TrailingComment$0);
11107
11305
  }
11108
- var _$0 = $T($S($EXPECT($R63, "_ /(?=[ \\t\\/\\\\])/"), $P($C(NonNewlineWhitespace, InlineComment))), function(value) {
11306
+ var _$0 = $T($S($EXPECT($R64, "_ /(?=[ \\t\\/\\\\])/"), $P($C(NonNewlineWhitespace, InlineComment))), function(value) {
11109
11307
  return value[1];
11110
11308
  });
11111
11309
  function _(ctx, state) {
11112
11310
  return $EVENT(ctx, state, "_", _$0);
11113
11311
  }
11114
- var NonNewlineWhitespace$0 = $TR($EXPECT($R64, "NonNewlineWhitespace /[ \\t]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11312
+ var NonNewlineWhitespace$0 = $TR($EXPECT($R65, "NonNewlineWhitespace /[ \\t]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11115
11313
  return { $loc, token: $0 };
11116
11314
  });
11117
- var NonNewlineWhitespace$1 = $T($S($EXPECT($L114, 'NonNewlineWhitespace "\\\\\\\\"'), CoffeeLineContinuationEnabled, EOL), function(value) {
11315
+ var NonNewlineWhitespace$1 = $T($S($EXPECT($L115, 'NonNewlineWhitespace "\\\\\\\\"'), CoffeeLineContinuationEnabled, EOL), function(value) {
11118
11316
  return " ";
11119
11317
  });
11120
11318
  var NonNewlineWhitespace$$ = [NonNewlineWhitespace$0, NonNewlineWhitespace$1];
@@ -11128,7 +11326,7 @@ var require_parser = __commonJS({
11128
11326
  function Trimmed_(ctx, state) {
11129
11327
  return $EVENT(ctx, state, "Trimmed_", Trimmed_$0);
11130
11328
  }
11131
- var __$0 = $T($S($EXPECT($R65, "__ /(?=\\s|\\/|#)/"), $Q($C(Whitespace, Comment))), function(value) {
11329
+ var __$0 = $T($S($EXPECT($R66, "__ /(?=\\s|\\/|#)/"), $Q($C(Whitespace, Comment))), function(value) {
11132
11330
  return value[1];
11133
11331
  });
11134
11332
  var __$1 = $EXPECT($L0, '__ ""');
@@ -11136,7 +11334,7 @@ var require_parser = __commonJS({
11136
11334
  function __(ctx, state) {
11137
11335
  return $EVENT_C(ctx, state, "__", __$$);
11138
11336
  }
11139
- var Whitespace$0 = $TR($EXPECT($R42, "Whitespace /[\\s]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11337
+ var Whitespace$0 = $TR($EXPECT($R43, "Whitespace /[\\s]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
11140
11338
  return { $loc, token: $0 };
11141
11339
  });
11142
11340
  function Whitespace(ctx, state) {
@@ -11160,7 +11358,7 @@ var require_parser = __commonJS({
11160
11358
  }
11161
11359
  var StatementDelimiter$0 = $Y(EOS);
11162
11360
  var StatementDelimiter$1 = SemicolonDelimiter;
11163
- var StatementDelimiter$2 = $Y($S($E(_), $C($EXPECT($L28, 'StatementDelimiter "}"'), $EXPECT($L115, 'StatementDelimiter ")"'), $EXPECT($L37, 'StatementDelimiter "]"'))));
11361
+ var StatementDelimiter$2 = $Y($S($E(_), $C($EXPECT($L29, 'StatementDelimiter "}"'), $EXPECT($L116, 'StatementDelimiter ")"'), $EXPECT($L38, 'StatementDelimiter "]"'))));
11164
11362
  var StatementDelimiter$$ = [StatementDelimiter$0, StatementDelimiter$1, StatementDelimiter$2];
11165
11363
  function StatementDelimiter(ctx, state) {
11166
11364
  return $EVENT_C(ctx, state, "StatementDelimiter", StatementDelimiter$$);
@@ -11174,7 +11372,7 @@ var require_parser = __commonJS({
11174
11372
  function SemicolonDelimiter(ctx, state) {
11175
11373
  return $EVENT(ctx, state, "SemicolonDelimiter", SemicolonDelimiter$0);
11176
11374
  }
11177
- var NonIdContinue$0 = $R$0($EXPECT($R66, "NonIdContinue /(?!\\p{ID_Continue})/"));
11375
+ var NonIdContinue$0 = $R$0($EXPECT($R67, "NonIdContinue /(?!\\p{ID_Continue})/"));
11178
11376
  function NonIdContinue(ctx, state) {
11179
11377
  return $EVENT(ctx, state, "NonIdContinue", NonIdContinue$0);
11180
11378
  }
@@ -11184,151 +11382,151 @@ var require_parser = __commonJS({
11184
11382
  function Loc(ctx, state) {
11185
11383
  return $EVENT(ctx, state, "Loc", Loc$0);
11186
11384
  }
11187
- var Abstract$0 = $TV($TEXT($S($EXPECT($L116, 'Abstract "abstract"'), NonIdContinue, $E($EXPECT($L14, 'Abstract " "')))), function($skip, $loc, $0, $1) {
11385
+ var Abstract$0 = $TV($TEXT($S($EXPECT($L117, 'Abstract "abstract"'), NonIdContinue, $E($EXPECT($L15, 'Abstract " "')))), function($skip, $loc, $0, $1) {
11188
11386
  return { $loc, token: $1, ts: true };
11189
11387
  });
11190
11388
  function Abstract(ctx, state) {
11191
11389
  return $EVENT(ctx, state, "Abstract", Abstract$0);
11192
11390
  }
11193
- var Ampersand$0 = $TV($EXPECT($L100, 'Ampersand "&"'), function($skip, $loc, $0, $1) {
11391
+ var Ampersand$0 = $TV($EXPECT($L101, 'Ampersand "&"'), function($skip, $loc, $0, $1) {
11194
11392
  return { $loc, token: $1 };
11195
11393
  });
11196
11394
  function Ampersand(ctx, state) {
11197
11395
  return $EVENT(ctx, state, "Ampersand", Ampersand$0);
11198
11396
  }
11199
- var As$0 = $TS($S($EXPECT($L117, 'As "as"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11397
+ var As$0 = $TS($S($EXPECT($L118, 'As "as"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11200
11398
  return { $loc, token: $1 };
11201
11399
  });
11202
11400
  function As(ctx, state) {
11203
11401
  return $EVENT(ctx, state, "As", As$0);
11204
11402
  }
11205
- var At$0 = $TV($EXPECT($L118, 'At "@"'), function($skip, $loc, $0, $1) {
11403
+ var At$0 = $TV($EXPECT($L119, 'At "@"'), function($skip, $loc, $0, $1) {
11206
11404
  return { $loc, token: $1 };
11207
11405
  });
11208
11406
  function At(ctx, state) {
11209
11407
  return $EVENT(ctx, state, "At", At$0);
11210
11408
  }
11211
- var AtAt$0 = $TV($EXPECT($L119, 'AtAt "@@"'), function($skip, $loc, $0, $1) {
11409
+ var AtAt$0 = $TV($EXPECT($L120, 'AtAt "@@"'), function($skip, $loc, $0, $1) {
11212
11410
  return { $loc, token: "@" };
11213
11411
  });
11214
11412
  function AtAt(ctx, state) {
11215
11413
  return $EVENT(ctx, state, "AtAt", AtAt$0);
11216
11414
  }
11217
- var Async$0 = $TS($S($EXPECT($L120, 'Async "async"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11415
+ var Async$0 = $TS($S($EXPECT($L121, 'Async "async"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11218
11416
  return { $loc, token: $1, type: "Async" };
11219
11417
  });
11220
11418
  function Async(ctx, state) {
11221
11419
  return $EVENT(ctx, state, "Async", Async$0);
11222
11420
  }
11223
- var Await$0 = $TS($S($EXPECT($L121, 'Await "await"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11421
+ var Await$0 = $TS($S($EXPECT($L122, 'Await "await"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11224
11422
  return { $loc, token: $1, type: "Await" };
11225
11423
  });
11226
11424
  function Await(ctx, state) {
11227
11425
  return $EVENT(ctx, state, "Await", Await$0);
11228
11426
  }
11229
- var Backtick$0 = $TV($EXPECT($L122, 'Backtick "`"'), function($skip, $loc, $0, $1) {
11427
+ var Backtick$0 = $TV($EXPECT($L123, 'Backtick "`"'), function($skip, $loc, $0, $1) {
11230
11428
  return { $loc, token: $1 };
11231
11429
  });
11232
11430
  function Backtick(ctx, state) {
11233
11431
  return $EVENT(ctx, state, "Backtick", Backtick$0);
11234
11432
  }
11235
- var By$0 = $TS($S($EXPECT($L123, 'By "by"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11433
+ var By$0 = $TS($S($EXPECT($L124, 'By "by"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11236
11434
  return { $loc, token: $1 };
11237
11435
  });
11238
11436
  function By(ctx, state) {
11239
11437
  return $EVENT(ctx, state, "By", By$0);
11240
11438
  }
11241
- var Caret$0 = $TV($EXPECT($L20, 'Caret "^"'), function($skip, $loc, $0, $1) {
11439
+ var Caret$0 = $TV($EXPECT($L21, 'Caret "^"'), function($skip, $loc, $0, $1) {
11242
11440
  return { $loc, token: $1 };
11243
11441
  });
11244
11442
  function Caret(ctx, state) {
11245
11443
  return $EVENT(ctx, state, "Caret", Caret$0);
11246
11444
  }
11247
- var Case$0 = $TS($S($EXPECT($L124, 'Case "case"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11445
+ var Case$0 = $TS($S($EXPECT($L125, 'Case "case"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11248
11446
  return { $loc, token: $1 };
11249
11447
  });
11250
11448
  function Case(ctx, state) {
11251
11449
  return $EVENT(ctx, state, "Case", Case$0);
11252
11450
  }
11253
- var Catch$0 = $TS($S($EXPECT($L125, 'Catch "catch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11451
+ var Catch$0 = $TS($S($EXPECT($L126, 'Catch "catch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11254
11452
  return { $loc, token: $1 };
11255
11453
  });
11256
11454
  function Catch(ctx, state) {
11257
11455
  return $EVENT(ctx, state, "Catch", Catch$0);
11258
11456
  }
11259
- var Class$0 = $TS($S($EXPECT($L126, 'Class "class"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11457
+ var Class$0 = $TS($S($EXPECT($L127, 'Class "class"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11260
11458
  return { $loc, token: $1 };
11261
11459
  });
11262
11460
  function Class(ctx, state) {
11263
11461
  return $EVENT(ctx, state, "Class", Class$0);
11264
11462
  }
11265
- var CloseAngleBracket$0 = $TV($EXPECT($L36, 'CloseAngleBracket ">"'), function($skip, $loc, $0, $1) {
11463
+ var CloseAngleBracket$0 = $TV($EXPECT($L37, 'CloseAngleBracket ">"'), function($skip, $loc, $0, $1) {
11266
11464
  return { $loc, token: $1 };
11267
11465
  });
11268
11466
  function CloseAngleBracket(ctx, state) {
11269
11467
  return $EVENT(ctx, state, "CloseAngleBracket", CloseAngleBracket$0);
11270
11468
  }
11271
- var CloseBrace$0 = $TV($EXPECT($L28, 'CloseBrace "}"'), function($skip, $loc, $0, $1) {
11469
+ var CloseBrace$0 = $TV($EXPECT($L29, 'CloseBrace "}"'), function($skip, $loc, $0, $1) {
11272
11470
  return { $loc, token: $1 };
11273
11471
  });
11274
11472
  function CloseBrace(ctx, state) {
11275
11473
  return $EVENT(ctx, state, "CloseBrace", CloseBrace$0);
11276
11474
  }
11277
- var CloseBracket$0 = $TV($EXPECT($L37, 'CloseBracket "]"'), function($skip, $loc, $0, $1) {
11475
+ var CloseBracket$0 = $TV($EXPECT($L38, 'CloseBracket "]"'), function($skip, $loc, $0, $1) {
11278
11476
  return { $loc, token: $1 };
11279
11477
  });
11280
11478
  function CloseBracket(ctx, state) {
11281
11479
  return $EVENT(ctx, state, "CloseBracket", CloseBracket$0);
11282
11480
  }
11283
- var CloseParen$0 = $TV($EXPECT($L115, 'CloseParen ")"'), function($skip, $loc, $0, $1) {
11481
+ var CloseParen$0 = $TV($EXPECT($L116, 'CloseParen ")"'), function($skip, $loc, $0, $1) {
11284
11482
  return { $loc, token: $1 };
11285
11483
  });
11286
11484
  function CloseParen(ctx, state) {
11287
11485
  return $EVENT(ctx, state, "CloseParen", CloseParen$0);
11288
11486
  }
11289
- var CoffeeSubstitutionStart$0 = $TV($EXPECT($L127, 'CoffeeSubstitutionStart "#{"'), function($skip, $loc, $0, $1) {
11487
+ var CoffeeSubstitutionStart$0 = $TV($EXPECT($L128, 'CoffeeSubstitutionStart "#{"'), function($skip, $loc, $0, $1) {
11290
11488
  return { $loc, token: "${" };
11291
11489
  });
11292
11490
  function CoffeeSubstitutionStart(ctx, state) {
11293
11491
  return $EVENT(ctx, state, "CoffeeSubstitutionStart", CoffeeSubstitutionStart$0);
11294
11492
  }
11295
- var Colon$0 = $TS($S($EXPECT($L13, 'Colon ":"'), $N($EXPECT($L3, 'Colon "="'))), function($skip, $loc, $0, $1, $2) {
11493
+ var Colon$0 = $TS($S($EXPECT($L14, 'Colon ":"'), $N($EXPECT($L3, 'Colon "="'))), function($skip, $loc, $0, $1, $2) {
11296
11494
  return { $loc, token: $1 };
11297
11495
  });
11298
11496
  function Colon(ctx, state) {
11299
11497
  return $EVENT(ctx, state, "Colon", Colon$0);
11300
11498
  }
11301
- var Comma$0 = $TV($EXPECT($L24, 'Comma ","'), function($skip, $loc, $0, $1) {
11499
+ var Comma$0 = $TV($EXPECT($L25, 'Comma ","'), function($skip, $loc, $0, $1) {
11302
11500
  return { $loc, token: $1 };
11303
11501
  });
11304
11502
  function Comma(ctx, state) {
11305
11503
  return $EVENT(ctx, state, "Comma", Comma$0);
11306
11504
  }
11307
- var ConstructorShorthand$0 = $TV($EXPECT($L118, 'ConstructorShorthand "@"'), function($skip, $loc, $0, $1) {
11505
+ var ConstructorShorthand$0 = $TV($EXPECT($L119, 'ConstructorShorthand "@"'), function($skip, $loc, $0, $1) {
11308
11506
  return { $loc, token: "constructor" };
11309
11507
  });
11310
11508
  function ConstructorShorthand(ctx, state) {
11311
11509
  return $EVENT(ctx, state, "ConstructorShorthand", ConstructorShorthand$0);
11312
11510
  }
11313
- var Declare$0 = $TS($S($EXPECT($L128, 'Declare "declare"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11511
+ var Declare$0 = $TS($S($EXPECT($L129, 'Declare "declare"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11314
11512
  return { $loc, token: $1 };
11315
11513
  });
11316
11514
  function Declare(ctx, state) {
11317
11515
  return $EVENT(ctx, state, "Declare", Declare$0);
11318
11516
  }
11319
- var Default$0 = $TS($S($EXPECT($L129, 'Default "default"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11517
+ var Default$0 = $TS($S($EXPECT($L130, 'Default "default"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11320
11518
  return { $loc, token: $1 };
11321
11519
  });
11322
11520
  function Default(ctx, state) {
11323
11521
  return $EVENT(ctx, state, "Default", Default$0);
11324
11522
  }
11325
- var Delete$0 = $TS($S($EXPECT($L130, 'Delete "delete"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11523
+ var Delete$0 = $TS($S($EXPECT($L131, 'Delete "delete"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11326
11524
  return { $loc, token: $1 };
11327
11525
  });
11328
11526
  function Delete(ctx, state) {
11329
11527
  return $EVENT(ctx, state, "Delete", Delete$0);
11330
11528
  }
11331
- var Do$0 = $TS($S($EXPECT($L131, 'Do "do"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11529
+ var Do$0 = $TS($S($EXPECT($L132, 'Do "do"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11332
11530
  return { $loc, token: $1 };
11333
11531
  });
11334
11532
  function Do(ctx, state) {
@@ -11337,7 +11535,7 @@ var require_parser = __commonJS({
11337
11535
  var Dot$0 = $TV($EXPECT($L7, 'Dot "."'), function($skip, $loc, $0, $1) {
11338
11536
  return { $loc, token: $1 };
11339
11537
  });
11340
- var Dot$1 = $TS($S($EXPECT($R67, "Dot /['\u2019]s/"), _), function($skip, $loc, $0, $1, $2) {
11538
+ var Dot$1 = $TS($S($EXPECT($R68, "Dot /['\u2019]s/"), _), function($skip, $loc, $0, $1, $2) {
11341
11539
  var ws = $2;
11342
11540
  return [
11343
11541
  { $loc, token: "." },
@@ -11348,45 +11546,45 @@ var require_parser = __commonJS({
11348
11546
  function Dot(ctx, state) {
11349
11547
  return $EVENT_C(ctx, state, "Dot", Dot$$);
11350
11548
  }
11351
- var DotDot$0 = $TS($S($EXPECT($L132, 'DotDot ".."'), $N($EXPECT($L7, 'DotDot "."'))), function($skip, $loc, $0, $1, $2) {
11549
+ var DotDot$0 = $TS($S($EXPECT($L133, 'DotDot ".."'), $N($EXPECT($L7, 'DotDot "."'))), function($skip, $loc, $0, $1, $2) {
11352
11550
  return { $loc, token: $1 };
11353
11551
  });
11354
- var DotDot$1 = $TV($EXPECT($L133, 'DotDot "\u2025"'), function($skip, $loc, $0, $1) {
11552
+ var DotDot$1 = $TV($EXPECT($L134, 'DotDot "\u2025"'), function($skip, $loc, $0, $1) {
11355
11553
  return { $loc, token: ".." };
11356
11554
  });
11357
11555
  var DotDot$$ = [DotDot$0, DotDot$1];
11358
11556
  function DotDot(ctx, state) {
11359
11557
  return $EVENT_C(ctx, state, "DotDot", DotDot$$);
11360
11558
  }
11361
- var DotDotDot$0 = $TV($EXPECT($L134, 'DotDotDot "..."'), function($skip, $loc, $0, $1) {
11559
+ var DotDotDot$0 = $TV($EXPECT($L135, 'DotDotDot "..."'), function($skip, $loc, $0, $1) {
11362
11560
  return { $loc, token: $1 };
11363
11561
  });
11364
- var DotDotDot$1 = $TV($EXPECT($L135, 'DotDotDot "\u2026"'), function($skip, $loc, $0, $1) {
11562
+ var DotDotDot$1 = $TV($EXPECT($L136, 'DotDotDot "\u2026"'), function($skip, $loc, $0, $1) {
11365
11563
  return { $loc, token: "..." };
11366
11564
  });
11367
11565
  var DotDotDot$$ = [DotDotDot$0, DotDotDot$1];
11368
11566
  function DotDotDot(ctx, state) {
11369
11567
  return $EVENT_C(ctx, state, "DotDotDot", DotDotDot$$);
11370
11568
  }
11371
- var DoubleColon$0 = $TV($EXPECT($L136, 'DoubleColon "::"'), function($skip, $loc, $0, $1) {
11569
+ var DoubleColon$0 = $TV($EXPECT($L137, 'DoubleColon "::"'), function($skip, $loc, $0, $1) {
11372
11570
  return { $loc, token: $1 };
11373
11571
  });
11374
11572
  function DoubleColon(ctx, state) {
11375
11573
  return $EVENT(ctx, state, "DoubleColon", DoubleColon$0);
11376
11574
  }
11377
- var DoubleQuote$0 = $TV($EXPECT($L137, 'DoubleQuote "\\\\\\""'), function($skip, $loc, $0, $1) {
11575
+ var DoubleQuote$0 = $TV($EXPECT($L138, 'DoubleQuote "\\\\\\""'), function($skip, $loc, $0, $1) {
11378
11576
  return { $loc, token: $1 };
11379
11577
  });
11380
11578
  function DoubleQuote(ctx, state) {
11381
11579
  return $EVENT(ctx, state, "DoubleQuote", DoubleQuote$0);
11382
11580
  }
11383
- var Each$0 = $TS($S($EXPECT($L138, 'Each "each"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11581
+ var Each$0 = $TS($S($EXPECT($L139, 'Each "each"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11384
11582
  return { $loc, token: $1 };
11385
11583
  });
11386
11584
  function Each(ctx, state) {
11387
11585
  return $EVENT(ctx, state, "Each", Each$0);
11388
11586
  }
11389
- var Else$0 = $TS($S($EXPECT($L139, 'Else "else"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11587
+ var Else$0 = $TS($S($EXPECT($L140, 'Else "else"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11390
11588
  return { $loc, token: $1 };
11391
11589
  });
11392
11590
  function Else(ctx, state) {
@@ -11398,91 +11596,91 @@ var require_parser = __commonJS({
11398
11596
  function Equals(ctx, state) {
11399
11597
  return $EVENT(ctx, state, "Equals", Equals$0);
11400
11598
  }
11401
- var ExclamationPoint$0 = $TV($EXPECT($L19, 'ExclamationPoint "!"'), function($skip, $loc, $0, $1) {
11599
+ var ExclamationPoint$0 = $TV($EXPECT($L20, 'ExclamationPoint "!"'), function($skip, $loc, $0, $1) {
11402
11600
  return { $loc, token: $1 };
11403
11601
  });
11404
11602
  function ExclamationPoint(ctx, state) {
11405
11603
  return $EVENT(ctx, state, "ExclamationPoint", ExclamationPoint$0);
11406
11604
  }
11407
- var Export$0 = $TS($S($EXPECT($L140, 'Export "export"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11605
+ var Export$0 = $TS($S($EXPECT($L141, 'Export "export"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11408
11606
  return { $loc, token: $1 };
11409
11607
  });
11410
11608
  function Export(ctx, state) {
11411
11609
  return $EVENT(ctx, state, "Export", Export$0);
11412
11610
  }
11413
- var Extends$0 = $TS($S($EXPECT($L141, 'Extends "extends"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11611
+ var Extends$0 = $TS($S($EXPECT($L142, 'Extends "extends"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11414
11612
  return { $loc, token: $1 };
11415
11613
  });
11416
11614
  function Extends(ctx, state) {
11417
11615
  return $EVENT(ctx, state, "Extends", Extends$0);
11418
11616
  }
11419
- var Finally$0 = $TS($S($EXPECT($L142, 'Finally "finally"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11617
+ var Finally$0 = $TS($S($EXPECT($L143, 'Finally "finally"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11420
11618
  return { $loc, token: $1 };
11421
11619
  });
11422
11620
  function Finally(ctx, state) {
11423
11621
  return $EVENT(ctx, state, "Finally", Finally$0);
11424
11622
  }
11425
- var For$0 = $TS($S($EXPECT($L143, 'For "for"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11623
+ var For$0 = $TS($S($EXPECT($L144, 'For "for"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11426
11624
  return { $loc, token: $1 };
11427
11625
  });
11428
11626
  function For(ctx, state) {
11429
11627
  return $EVENT(ctx, state, "For", For$0);
11430
11628
  }
11431
- var From$0 = $TS($S($EXPECT($L144, 'From "from"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11629
+ var From$0 = $TS($S($EXPECT($L145, 'From "from"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11432
11630
  return { $loc, token: $1 };
11433
11631
  });
11434
11632
  function From(ctx, state) {
11435
11633
  return $EVENT(ctx, state, "From", From$0);
11436
11634
  }
11437
- var Function$0 = $TS($S($EXPECT($L145, 'Function "function"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11635
+ var Function$0 = $TS($S($EXPECT($L146, 'Function "function"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11438
11636
  return { $loc, token: $1 };
11439
11637
  });
11440
11638
  function Function(ctx, state) {
11441
11639
  return $EVENT(ctx, state, "Function", Function$0);
11442
11640
  }
11443
- var GetOrSet$0 = $TS($S($C($EXPECT($L146, 'GetOrSet "get"'), $EXPECT($L147, 'GetOrSet "set"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11641
+ var GetOrSet$0 = $TS($S($C($EXPECT($L147, 'GetOrSet "get"'), $EXPECT($L148, 'GetOrSet "set"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11444
11642
  return { $loc, token: $1, type: "GetOrSet" };
11445
11643
  });
11446
11644
  function GetOrSet(ctx, state) {
11447
11645
  return $EVENT(ctx, state, "GetOrSet", GetOrSet$0);
11448
11646
  }
11449
- var Hash$0 = $TV($EXPECT($L148, 'Hash "#"'), function($skip, $loc, $0, $1) {
11647
+ var Hash$0 = $TV($EXPECT($L149, 'Hash "#"'), function($skip, $loc, $0, $1) {
11450
11648
  return { $loc, token: $1 };
11451
11649
  });
11452
11650
  function Hash(ctx, state) {
11453
11651
  return $EVENT(ctx, state, "Hash", Hash$0);
11454
11652
  }
11455
- var If$0 = $TV($TEXT($S($EXPECT($L149, 'If "if"'), NonIdContinue, $E($EXPECT($L14, 'If " "')))), function($skip, $loc, $0, $1) {
11653
+ var If$0 = $TV($TEXT($S($EXPECT($L150, 'If "if"'), NonIdContinue, $E($EXPECT($L15, 'If " "')))), function($skip, $loc, $0, $1) {
11456
11654
  return { $loc, token: $1 };
11457
11655
  });
11458
11656
  function If(ctx, state) {
11459
11657
  return $EVENT(ctx, state, "If", If$0);
11460
11658
  }
11461
- var Import$0 = $TS($S($EXPECT($L18, 'Import "import"'), $Y($EXPECT($R68, "Import /\\s/"))), function($skip, $loc, $0, $1, $2) {
11659
+ var Import$0 = $TS($S($EXPECT($L19, 'Import "import"'), $Y($EXPECT($R69, "Import /\\s/"))), function($skip, $loc, $0, $1, $2) {
11462
11660
  return { $loc, token: $1 };
11463
11661
  });
11464
11662
  function Import(ctx, state) {
11465
11663
  return $EVENT(ctx, state, "Import", Import$0);
11466
11664
  }
11467
- var In$0 = $TS($S($EXPECT($L150, 'In "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11665
+ var In$0 = $TS($S($EXPECT($L151, 'In "in"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11468
11666
  return { $loc, token: $1 };
11469
11667
  });
11470
11668
  function In(ctx, state) {
11471
11669
  return $EVENT(ctx, state, "In", In$0);
11472
11670
  }
11473
- var LetOrConst$0 = $TS($S($C($EXPECT($L151, 'LetOrConst "let"'), $EXPECT($L152, 'LetOrConst "const"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11671
+ var LetOrConst$0 = $TS($S($C($EXPECT($L152, 'LetOrConst "let"'), $EXPECT($L153, 'LetOrConst "const"')), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11474
11672
  return { $loc, token: $1 };
11475
11673
  });
11476
11674
  function LetOrConst(ctx, state) {
11477
11675
  return $EVENT(ctx, state, "LetOrConst", LetOrConst$0);
11478
11676
  }
11479
- var Const$0 = $TS($S($EXPECT($L152, 'Const "const"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11677
+ var Const$0 = $TS($S($EXPECT($L153, 'Const "const"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11480
11678
  return { $loc, token: $1 };
11481
11679
  });
11482
11680
  function Const(ctx, state) {
11483
11681
  return $EVENT(ctx, state, "Const", Const$0);
11484
11682
  }
11485
- var Is$0 = $TS($S($EXPECT($L153, 'Is "is"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11683
+ var Is$0 = $TS($S($EXPECT($L154, 'Is "is"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11486
11684
  return { $loc, token: $1 };
11487
11685
  });
11488
11686
  function Is(ctx, state) {
@@ -11494,31 +11692,31 @@ var require_parser = __commonJS({
11494
11692
  function LetOrConstOrVar(ctx, state) {
11495
11693
  return $EVENT_C(ctx, state, "LetOrConstOrVar", LetOrConstOrVar$$);
11496
11694
  }
11497
- var Loop$0 = $TS($S($EXPECT($L154, 'Loop "loop"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11695
+ var Loop$0 = $TS($S($EXPECT($L155, 'Loop "loop"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11498
11696
  return { $loc, token: "while(true)" };
11499
11697
  });
11500
11698
  function Loop(ctx, state) {
11501
11699
  return $EVENT(ctx, state, "Loop", Loop$0);
11502
11700
  }
11503
- var New$0 = $TS($S($EXPECT($L155, 'New "new"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11701
+ var New$0 = $TS($S($EXPECT($L156, 'New "new"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11504
11702
  return { $loc, token: $1 };
11505
11703
  });
11506
11704
  function New(ctx, state) {
11507
11705
  return $EVENT(ctx, state, "New", New$0);
11508
11706
  }
11509
- var Not$0 = $TS($S($EXPECT($L156, 'Not "not"'), NonIdContinue, $N($S($E(_), $EXPECT($L13, 'Not ":"')))), function($skip, $loc, $0, $1, $2, $3) {
11707
+ var Not$0 = $TS($S($EXPECT($L157, 'Not "not"'), NonIdContinue, $N($S($E(_), $EXPECT($L14, 'Not ":"')))), function($skip, $loc, $0, $1, $2, $3) {
11510
11708
  return { $loc, token: "!" };
11511
11709
  });
11512
11710
  function Not(ctx, state) {
11513
11711
  return $EVENT(ctx, state, "Not", Not$0);
11514
11712
  }
11515
- var Of$0 = $TS($S($EXPECT($L157, 'Of "of"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11713
+ var Of$0 = $TS($S($EXPECT($L158, 'Of "of"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11516
11714
  return { $loc, token: $1 };
11517
11715
  });
11518
11716
  function Of(ctx, state) {
11519
11717
  return $EVENT(ctx, state, "Of", Of$0);
11520
11718
  }
11521
- var OpenAngleBracket$0 = $TV($EXPECT($L15, 'OpenAngleBracket "<"'), function($skip, $loc, $0, $1) {
11719
+ var OpenAngleBracket$0 = $TV($EXPECT($L16, 'OpenAngleBracket "<"'), function($skip, $loc, $0, $1) {
11522
11720
  return { $loc, token: $1 };
11523
11721
  });
11524
11722
  function OpenAngleBracket(ctx, state) {
@@ -11530,7 +11728,7 @@ var require_parser = __commonJS({
11530
11728
  function OpenBrace(ctx, state) {
11531
11729
  return $EVENT(ctx, state, "OpenBrace", OpenBrace$0);
11532
11730
  }
11533
- var OpenBracket$0 = $TV($EXPECT($L158, 'OpenBracket "["'), function($skip, $loc, $0, $1) {
11731
+ var OpenBracket$0 = $TV($EXPECT($L159, 'OpenBracket "["'), function($skip, $loc, $0, $1) {
11534
11732
  return { $loc, token: $1 };
11535
11733
  });
11536
11734
  function OpenBracket(ctx, state) {
@@ -11542,43 +11740,43 @@ var require_parser = __commonJS({
11542
11740
  function OpenParen(ctx, state) {
11543
11741
  return $EVENT(ctx, state, "OpenParen", OpenParen$0);
11544
11742
  }
11545
- var Operator$0 = $TS($S($EXPECT($L159, 'Operator "operator"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11743
+ var Operator$0 = $TS($S($EXPECT($L160, 'Operator "operator"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11546
11744
  return { $loc, token: $1 };
11547
11745
  });
11548
11746
  function Operator(ctx, state) {
11549
11747
  return $EVENT(ctx, state, "Operator", Operator$0);
11550
11748
  }
11551
- var Own$0 = $TS($S($EXPECT($L160, 'Own "own"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11749
+ var Own$0 = $TS($S($EXPECT($L161, 'Own "own"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11552
11750
  return { $loc, token: $1 };
11553
11751
  });
11554
11752
  function Own(ctx, state) {
11555
11753
  return $EVENT(ctx, state, "Own", Own$0);
11556
11754
  }
11557
- var Public$0 = $TS($S($EXPECT($L161, 'Public "public"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11755
+ var Public$0 = $TS($S($EXPECT($L162, 'Public "public"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11558
11756
  return { $loc, token: $1 };
11559
11757
  });
11560
11758
  function Public(ctx, state) {
11561
11759
  return $EVENT(ctx, state, "Public", Public$0);
11562
11760
  }
11563
- var Private$0 = $TS($S($EXPECT($L162, 'Private "private"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11761
+ var Private$0 = $TS($S($EXPECT($L163, 'Private "private"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11564
11762
  return { $loc, token: $1 };
11565
11763
  });
11566
11764
  function Private(ctx, state) {
11567
11765
  return $EVENT(ctx, state, "Private", Private$0);
11568
11766
  }
11569
- var Protected$0 = $TS($S($EXPECT($L163, 'Protected "protected"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11767
+ var Protected$0 = $TS($S($EXPECT($L164, 'Protected "protected"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11570
11768
  return { $loc, token: $1 };
11571
11769
  });
11572
11770
  function Protected(ctx, state) {
11573
11771
  return $EVENT(ctx, state, "Protected", Protected$0);
11574
11772
  }
11575
- var Pipe$0 = $TV($C($EXPECT($L164, 'Pipe "||>"'), $EXPECT($L165, 'Pipe "|\u25B7"')), function($skip, $loc, $0, $1) {
11773
+ var Pipe$0 = $TV($C($EXPECT($L165, 'Pipe "||>"'), $EXPECT($L166, 'Pipe "|\u25B7"')), function($skip, $loc, $0, $1) {
11576
11774
  return { $loc, token: "||>" };
11577
11775
  });
11578
- var Pipe$1 = $TV($C($EXPECT($L166, 'Pipe "|>="'), $EXPECT($L167, 'Pipe "\u25B7="')), function($skip, $loc, $0, $1) {
11776
+ var Pipe$1 = $TV($C($EXPECT($L167, 'Pipe "|>="'), $EXPECT($L168, 'Pipe "\u25B7="')), function($skip, $loc, $0, $1) {
11579
11777
  return { $loc, token: "|>=" };
11580
11778
  });
11581
- var Pipe$2 = $TV($C($EXPECT($L168, 'Pipe "|>"'), $EXPECT($L169, 'Pipe "\u25B7"')), function($skip, $loc, $0, $1) {
11779
+ var Pipe$2 = $TV($C($EXPECT($L169, 'Pipe "|>"'), $EXPECT($L170, 'Pipe "\u25B7"')), function($skip, $loc, $0, $1) {
11582
11780
  return { $loc, token: "|>" };
11583
11781
  });
11584
11782
  var Pipe$$ = [Pipe$0, Pipe$1, Pipe$2];
@@ -11591,173 +11789,173 @@ var require_parser = __commonJS({
11591
11789
  function QuestionMark(ctx, state) {
11592
11790
  return $EVENT(ctx, state, "QuestionMark", QuestionMark$0);
11593
11791
  }
11594
- var Readonly$0 = $TS($S($EXPECT($L170, 'Readonly "readonly"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11792
+ var Readonly$0 = $TS($S($EXPECT($L171, 'Readonly "readonly"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11595
11793
  return { $loc, token: $1, ts: true };
11596
11794
  });
11597
11795
  function Readonly(ctx, state) {
11598
11796
  return $EVENT(ctx, state, "Readonly", Readonly$0);
11599
11797
  }
11600
- var Return$0 = $TS($S($EXPECT($L171, 'Return "return"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11798
+ var Return$0 = $TS($S($EXPECT($L172, 'Return "return"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11601
11799
  return { $loc, token: $1 };
11602
11800
  });
11603
11801
  function Return(ctx, state) {
11604
11802
  return $EVENT(ctx, state, "Return", Return$0);
11605
11803
  }
11606
- var Satisfies$0 = $TS($S($EXPECT($L172, 'Satisfies "satisfies"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11804
+ var Satisfies$0 = $TS($S($EXPECT($L173, 'Satisfies "satisfies"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11607
11805
  return { $loc, token: $1 };
11608
11806
  });
11609
11807
  function Satisfies(ctx, state) {
11610
11808
  return $EVENT(ctx, state, "Satisfies", Satisfies$0);
11611
11809
  }
11612
- var Semicolon$0 = $TV($EXPECT($L102, 'Semicolon ";"'), function($skip, $loc, $0, $1) {
11810
+ var Semicolon$0 = $TV($EXPECT($L103, 'Semicolon ";"'), function($skip, $loc, $0, $1) {
11613
11811
  return { $loc, token: $1 };
11614
11812
  });
11615
11813
  function Semicolon(ctx, state) {
11616
11814
  return $EVENT(ctx, state, "Semicolon", Semicolon$0);
11617
11815
  }
11618
- var SingleQuote$0 = $TV($EXPECT($L173, `SingleQuote "'"`), function($skip, $loc, $0, $1) {
11816
+ var SingleQuote$0 = $TV($EXPECT($L174, `SingleQuote "'"`), function($skip, $loc, $0, $1) {
11619
11817
  return { $loc, token: $1 };
11620
11818
  });
11621
11819
  function SingleQuote(ctx, state) {
11622
11820
  return $EVENT(ctx, state, "SingleQuote", SingleQuote$0);
11623
11821
  }
11624
- var Star$0 = $TV($EXPECT($L57, 'Star "*"'), function($skip, $loc, $0, $1) {
11822
+ var Star$0 = $TV($EXPECT($L58, 'Star "*"'), function($skip, $loc, $0, $1) {
11625
11823
  return { $loc, token: $1 };
11626
11824
  });
11627
11825
  function Star(ctx, state) {
11628
11826
  return $EVENT(ctx, state, "Star", Star$0);
11629
11827
  }
11630
- var Static$0 = $TS($S($EXPECT($L174, 'Static "static"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11828
+ var Static$0 = $TS($S($EXPECT($L175, 'Static "static"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11631
11829
  return { $loc, token: $1 };
11632
11830
  });
11633
- var Static$1 = $TS($S($EXPECT($L118, 'Static "@"'), $N($C($EXPECT($L4, 'Static "("'), $EXPECT($L118, 'Static "@"')))), function($skip, $loc, $0, $1, $2) {
11831
+ var Static$1 = $TS($S($EXPECT($L119, 'Static "@"'), $N($C($EXPECT($L4, 'Static "("'), $EXPECT($L119, 'Static "@"')))), function($skip, $loc, $0, $1, $2) {
11634
11832
  return { $loc, token: "static " };
11635
11833
  });
11636
11834
  var Static$$ = [Static$0, Static$1];
11637
11835
  function Static(ctx, state) {
11638
11836
  return $EVENT_C(ctx, state, "Static", Static$$);
11639
11837
  }
11640
- var SubstitutionStart$0 = $TV($EXPECT($L175, 'SubstitutionStart "${"'), function($skip, $loc, $0, $1) {
11838
+ var SubstitutionStart$0 = $TV($EXPECT($L176, 'SubstitutionStart "${"'), function($skip, $loc, $0, $1) {
11641
11839
  return { $loc, token: $1 };
11642
11840
  });
11643
11841
  function SubstitutionStart(ctx, state) {
11644
11842
  return $EVENT(ctx, state, "SubstitutionStart", SubstitutionStart$0);
11645
11843
  }
11646
- var Super$0 = $TS($S($EXPECT($L176, 'Super "super"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11844
+ var Super$0 = $TS($S($EXPECT($L177, 'Super "super"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11647
11845
  return { $loc, token: $1 };
11648
11846
  });
11649
11847
  function Super(ctx, state) {
11650
11848
  return $EVENT(ctx, state, "Super", Super$0);
11651
11849
  }
11652
- var Switch$0 = $TS($S($EXPECT($L177, 'Switch "switch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11850
+ var Switch$0 = $TS($S($EXPECT($L178, 'Switch "switch"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11653
11851
  return { $loc, token: $1 };
11654
11852
  });
11655
11853
  function Switch(ctx, state) {
11656
11854
  return $EVENT(ctx, state, "Switch", Switch$0);
11657
11855
  }
11658
- var Target$0 = $TS($S($EXPECT($L178, 'Target "target"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11856
+ var Target$0 = $TS($S($EXPECT($L179, 'Target "target"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11659
11857
  return { $loc, token: $1 };
11660
11858
  });
11661
11859
  function Target(ctx, state) {
11662
11860
  return $EVENT(ctx, state, "Target", Target$0);
11663
11861
  }
11664
- var Then$0 = $TS($S(__, $EXPECT($L179, 'Then "then"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
11862
+ var Then$0 = $TS($S(__, $EXPECT($L180, 'Then "then"'), NonIdContinue), function($skip, $loc, $0, $1, $2, $3) {
11665
11863
  return { $loc, token: "" };
11666
11864
  });
11667
11865
  function Then(ctx, state) {
11668
11866
  return $EVENT(ctx, state, "Then", Then$0);
11669
11867
  }
11670
- var This$0 = $TS($S($EXPECT($L180, 'This "this"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11868
+ var This$0 = $TS($S($EXPECT($L181, 'This "this"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11671
11869
  return { $loc, token: $1 };
11672
11870
  });
11673
11871
  function This(ctx, state) {
11674
11872
  return $EVENT(ctx, state, "This", This$0);
11675
11873
  }
11676
- var Throw$0 = $TS($S($EXPECT($L181, 'Throw "throw"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11874
+ var Throw$0 = $TS($S($EXPECT($L182, 'Throw "throw"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11677
11875
  return { $loc, token: $1 };
11678
11876
  });
11679
11877
  function Throw(ctx, state) {
11680
11878
  return $EVENT(ctx, state, "Throw", Throw$0);
11681
11879
  }
11682
- var TripleDoubleQuote$0 = $TV($EXPECT($L182, 'TripleDoubleQuote "\\\\\\"\\\\\\"\\\\\\""'), function($skip, $loc, $0, $1) {
11880
+ var TripleDoubleQuote$0 = $TV($EXPECT($L183, 'TripleDoubleQuote "\\\\\\"\\\\\\"\\\\\\""'), function($skip, $loc, $0, $1) {
11683
11881
  return { $loc, token: "`" };
11684
11882
  });
11685
11883
  function TripleDoubleQuote(ctx, state) {
11686
11884
  return $EVENT(ctx, state, "TripleDoubleQuote", TripleDoubleQuote$0);
11687
11885
  }
11688
- var TripleSingleQuote$0 = $TV($EXPECT($L183, `TripleSingleQuote "'''"`), function($skip, $loc, $0, $1) {
11886
+ var TripleSingleQuote$0 = $TV($EXPECT($L184, `TripleSingleQuote "'''"`), function($skip, $loc, $0, $1) {
11689
11887
  return { $loc, token: "`" };
11690
11888
  });
11691
11889
  function TripleSingleQuote(ctx, state) {
11692
11890
  return $EVENT(ctx, state, "TripleSingleQuote", TripleSingleQuote$0);
11693
11891
  }
11694
- var TripleSlash$0 = $TV($EXPECT($L184, 'TripleSlash "///"'), function($skip, $loc, $0, $1) {
11892
+ var TripleSlash$0 = $TV($EXPECT($L185, 'TripleSlash "///"'), function($skip, $loc, $0, $1) {
11695
11893
  return { $loc, token: "/" };
11696
11894
  });
11697
11895
  function TripleSlash(ctx, state) {
11698
11896
  return $EVENT(ctx, state, "TripleSlash", TripleSlash$0);
11699
11897
  }
11700
- var TripleTick$0 = $TV($EXPECT($L185, 'TripleTick "```"'), function($skip, $loc, $0, $1) {
11898
+ var TripleTick$0 = $TV($EXPECT($L186, 'TripleTick "```"'), function($skip, $loc, $0, $1) {
11701
11899
  return { $loc, token: "`" };
11702
11900
  });
11703
11901
  function TripleTick(ctx, state) {
11704
11902
  return $EVENT(ctx, state, "TripleTick", TripleTick$0);
11705
11903
  }
11706
- var Try$0 = $TS($S($EXPECT($L186, 'Try "try"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11904
+ var Try$0 = $TS($S($EXPECT($L187, 'Try "try"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11707
11905
  return { $loc, token: $1 };
11708
11906
  });
11709
11907
  function Try(ctx, state) {
11710
11908
  return $EVENT(ctx, state, "Try", Try$0);
11711
11909
  }
11712
- var Typeof$0 = $TS($S($EXPECT($L187, 'Typeof "typeof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11910
+ var Typeof$0 = $TS($S($EXPECT($L188, 'Typeof "typeof"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11713
11911
  return { $loc, token: $1 };
11714
11912
  });
11715
11913
  function Typeof(ctx, state) {
11716
11914
  return $EVENT(ctx, state, "Typeof", Typeof$0);
11717
11915
  }
11718
- var Unless$0 = $TS($S($EXPECT($L188, 'Unless "unless"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11916
+ var Unless$0 = $TS($S($EXPECT($L189, 'Unless "unless"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11719
11917
  return { $loc, token: $1, negated: true };
11720
11918
  });
11721
11919
  function Unless(ctx, state) {
11722
11920
  return $EVENT(ctx, state, "Unless", Unless$0);
11723
11921
  }
11724
- var Until$0 = $TS($S($EXPECT($L189, 'Until "until"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11922
+ var Until$0 = $TS($S($EXPECT($L190, 'Until "until"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11725
11923
  return { $loc, token: $1 };
11726
11924
  });
11727
11925
  function Until(ctx, state) {
11728
11926
  return $EVENT(ctx, state, "Until", Until$0);
11729
11927
  }
11730
- var Using$0 = $TS($S($EXPECT($L190, 'Using "using"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11928
+ var Using$0 = $TS($S($EXPECT($L191, 'Using "using"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11731
11929
  return { $loc, token: $1 };
11732
11930
  });
11733
11931
  function Using(ctx, state) {
11734
11932
  return $EVENT(ctx, state, "Using", Using$0);
11735
11933
  }
11736
- var Var$0 = $TS($S($EXPECT($L191, 'Var "var"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11934
+ var Var$0 = $TS($S($EXPECT($L192, 'Var "var"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11737
11935
  return { $loc, token: $1 };
11738
11936
  });
11739
11937
  function Var(ctx, state) {
11740
11938
  return $EVENT(ctx, state, "Var", Var$0);
11741
11939
  }
11742
- var Void$0 = $TS($S($EXPECT($L192, 'Void "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11940
+ var Void$0 = $TS($S($EXPECT($L193, 'Void "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11743
11941
  return { $loc, token: $1 };
11744
11942
  });
11745
11943
  function Void(ctx, state) {
11746
11944
  return $EVENT(ctx, state, "Void", Void$0);
11747
11945
  }
11748
- var When$0 = $TS($S($EXPECT($L193, 'When "when"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11946
+ var When$0 = $TS($S($EXPECT($L194, 'When "when"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11749
11947
  return { $loc, token: "case" };
11750
11948
  });
11751
11949
  function When(ctx, state) {
11752
11950
  return $EVENT(ctx, state, "When", When$0);
11753
11951
  }
11754
- var While$0 = $TS($S($EXPECT($L194, 'While "while"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11952
+ var While$0 = $TS($S($EXPECT($L195, 'While "while"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11755
11953
  return { $loc, token: $1 };
11756
11954
  });
11757
11955
  function While(ctx, state) {
11758
11956
  return $EVENT(ctx, state, "While", While$0);
11759
11957
  }
11760
- var Yield$0 = $TS($S($EXPECT($L195, 'Yield "yield"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11958
+ var Yield$0 = $TS($S($EXPECT($L196, 'Yield "yield"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
11761
11959
  return { $loc, token: $1, type: "Yield" };
11762
11960
  });
11763
11961
  function Yield(ctx, state) {
@@ -11786,7 +11984,7 @@ var require_parser = __commonJS({
11786
11984
  function JSXImplicitFragment(ctx, state) {
11787
11985
  return $EVENT(ctx, state, "JSXImplicitFragment", JSXImplicitFragment$0);
11788
11986
  }
11789
- var JSXTag$0 = $T($S($EXPECT($R69, "JSXTag /(?=[<])/"), _JSXTag), function(value) {
11987
+ var JSXTag$0 = $T($S($EXPECT($R70, "JSXTag /(?=[<])/"), _JSXTag), function(value) {
11790
11988
  return value[1];
11791
11989
  });
11792
11990
  function JSXTag(ctx, state) {
@@ -11836,7 +12034,7 @@ var require_parser = __commonJS({
11836
12034
  function JSXElement(ctx, state) {
11837
12035
  return $EVENT_C(ctx, state, "JSXElement", JSXElement$$);
11838
12036
  }
11839
- var JSXSelfClosingElement$0 = $TS($S($EXPECT($L15, 'JSXSelfClosingElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L196, 'JSXSelfClosingElement "/>"')), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
12037
+ var JSXSelfClosingElement$0 = $TS($S($EXPECT($L16, 'JSXSelfClosingElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L197, 'JSXSelfClosingElement "/>"')), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
11840
12038
  return { type: "JSXElement", children: $0, tag: $2 };
11841
12039
  });
11842
12040
  function JSXSelfClosingElement(ctx, state) {
@@ -11855,7 +12053,7 @@ var require_parser = __commonJS({
11855
12053
  function PopJSXStack(ctx, state) {
11856
12054
  return $EVENT(ctx, state, "PopJSXStack", PopJSXStack$0);
11857
12055
  }
11858
- var JSXOpeningElement$0 = $S($EXPECT($L15, 'JSXOpeningElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L36, 'JSXOpeningElement ">"'));
12056
+ var JSXOpeningElement$0 = $S($EXPECT($L16, 'JSXOpeningElement "<"'), JSXElementName, $E(TypeArguments), $E(JSXAttributes), $E(Whitespace), $EXPECT($L37, 'JSXOpeningElement ">"'));
11859
12057
  function JSXOpeningElement(ctx, state) {
11860
12058
  return $EVENT(ctx, state, "JSXOpeningElement", JSXOpeningElement$0);
11861
12059
  }
@@ -11870,7 +12068,7 @@ var require_parser = __commonJS({
11870
12068
  function JSXOptionalClosingElement(ctx, state) {
11871
12069
  return $EVENT_C(ctx, state, "JSXOptionalClosingElement", JSXOptionalClosingElement$$);
11872
12070
  }
11873
- var JSXClosingElement$0 = $S($EXPECT($L197, 'JSXClosingElement "</"'), $E(Whitespace), JSXElementName, $E(Whitespace), $EXPECT($L36, 'JSXClosingElement ">"'));
12071
+ var JSXClosingElement$0 = $S($EXPECT($L198, 'JSXClosingElement "</"'), $E(Whitespace), JSXElementName, $E(Whitespace), $EXPECT($L37, 'JSXClosingElement ">"'));
11874
12072
  function JSXClosingElement(ctx, state) {
11875
12073
  return $EVENT(ctx, state, "JSXClosingElement", JSXClosingElement$0);
11876
12074
  }
@@ -11891,7 +12089,7 @@ var require_parser = __commonJS({
11891
12089
  ];
11892
12090
  return { type: "JSXFragment", children: parts, jsxChildren: children.jsxChildren };
11893
12091
  });
11894
- var JSXFragment$1 = $TS($S(CoffeeJSXEnabled, $EXPECT($L198, 'JSXFragment "<>"'), $E(JSXChildren), $E(Whitespace), JSXClosingFragment), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
12092
+ var JSXFragment$1 = $TS($S(CoffeeJSXEnabled, $EXPECT($L199, 'JSXFragment "<>"'), $E(JSXChildren), $E(Whitespace), JSXClosingFragment), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
11895
12093
  var children = $3;
11896
12094
  $0 = $0.slice(1);
11897
12095
  return {
@@ -11904,7 +12102,7 @@ var require_parser = __commonJS({
11904
12102
  function JSXFragment(ctx, state) {
11905
12103
  return $EVENT_C(ctx, state, "JSXFragment", JSXFragment$$);
11906
12104
  }
11907
- var PushJSXOpeningFragment$0 = $TV($EXPECT($L198, 'PushJSXOpeningFragment "<>"'), function($skip, $loc, $0, $1) {
12105
+ var PushJSXOpeningFragment$0 = $TV($EXPECT($L199, 'PushJSXOpeningFragment "<>"'), function($skip, $loc, $0, $1) {
11908
12106
  module2.JSXTagStack.push("");
11909
12107
  return $1;
11910
12108
  });
@@ -11921,11 +12119,11 @@ var require_parser = __commonJS({
11921
12119
  function JSXOptionalClosingFragment(ctx, state) {
11922
12120
  return $EVENT_C(ctx, state, "JSXOptionalClosingFragment", JSXOptionalClosingFragment$$);
11923
12121
  }
11924
- var JSXClosingFragment$0 = $EXPECT($L199, 'JSXClosingFragment "</>"');
12122
+ var JSXClosingFragment$0 = $EXPECT($L200, 'JSXClosingFragment "</>"');
11925
12123
  function JSXClosingFragment(ctx, state) {
11926
12124
  return $EVENT(ctx, state, "JSXClosingFragment", JSXClosingFragment$0);
11927
12125
  }
11928
- var JSXElementName$0 = $TV($Y($S($C($EXPECT($L148, 'JSXElementName "#"'), Dot), JSXShorthandString)), function($skip, $loc, $0, $1) {
12126
+ var JSXElementName$0 = $TV($Y($S($C($EXPECT($L149, 'JSXElementName "#"'), Dot), JSXShorthandString)), function($skip, $loc, $0, $1) {
11929
12127
  return module2.config.defaultElement;
11930
12128
  });
11931
12129
  var JSXElementName$1 = $TEXT($S(JSXIdentifierName, $C($S(Colon, JSXIdentifierName), $Q($S(Dot, JSXIdentifierName)))));
@@ -11933,7 +12131,7 @@ var require_parser = __commonJS({
11933
12131
  function JSXElementName(ctx, state) {
11934
12132
  return $EVENT_C(ctx, state, "JSXElementName", JSXElementName$$);
11935
12133
  }
11936
- var JSXIdentifierName$0 = $R$0($EXPECT($R70, "JSXIdentifierName /(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*/"));
12134
+ var JSXIdentifierName$0 = $R$0($EXPECT($R71, "JSXIdentifierName /(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*/"));
11937
12135
  function JSXIdentifierName(ctx, state) {
11938
12136
  return $EVENT(ctx, state, "JSXIdentifierName", JSXIdentifierName$0);
11939
12137
  }
@@ -12004,7 +12202,13 @@ var require_parser = __commonJS({
12004
12202
  classValue = ["{[", ...exprs, '].filter(Boolean).join(" ")}'];
12005
12203
  }
12006
12204
  } else {
12007
- classValue = JSON.stringify(stringPart);
12205
+ if (!stringPart.includes("&") && !stringPart.includes('"')) {
12206
+ classValue = `"${stringPart}"`;
12207
+ } else if (!stringPart.includes("&") && !stringPart.includes("'")) {
12208
+ classValue = `'${stringPart}'`;
12209
+ } else {
12210
+ classValue = `{${JSON.stringify(stringPart)}}`;
12211
+ }
12008
12212
  }
12009
12213
  attrs.splice(0, 0, [" ", [className, ["=", classValue]]]);
12010
12214
  }
@@ -12097,7 +12301,7 @@ var require_parser = __commonJS({
12097
12301
  }
12098
12302
  return $skip;
12099
12303
  });
12100
- var JSXAttribute$5 = $TS($S($EXPECT($L148, 'JSXAttribute "#"'), JSXShorthandString), function($skip, $loc, $0, $1, $2) {
12304
+ var JSXAttribute$5 = $TS($S($EXPECT($L149, 'JSXAttribute "#"'), JSXShorthandString), function($skip, $loc, $0, $1, $2) {
12101
12305
  return [" ", "id=", $2];
12102
12306
  });
12103
12307
  var JSXAttribute$6 = $TS($S(Dot, JSXShorthandString), function($skip, $loc, $0, $1, $2) {
@@ -12106,7 +12310,7 @@ var require_parser = __commonJS({
12106
12310
  class: $2
12107
12311
  };
12108
12312
  });
12109
- var JSXAttribute$7 = $TS($S($TEXT($EXPECT($R15, "JSXAttribute /[!+-]/")), JSXAttributeName, $Y(JSXAttributeSpace)), function($skip, $loc, $0, $1, $2, $3) {
12313
+ var JSXAttribute$7 = $TS($S($TEXT($EXPECT($R16, "JSXAttribute /[!+-]/")), JSXAttributeName, $Y(JSXAttributeSpace)), function($skip, $loc, $0, $1, $2, $3) {
12110
12314
  var toggle = $1;
12111
12315
  var id = $2;
12112
12316
  const value = toggle === "+" ? "true" : "false";
@@ -12116,11 +12320,11 @@ var require_parser = __commonJS({
12116
12320
  function JSXAttribute(ctx, state) {
12117
12321
  return $EVENT_C(ctx, state, "JSXAttribute", JSXAttribute$$);
12118
12322
  }
12119
- var JSXAttributeSpace$0 = $R$0($EXPECT($R71, "JSXAttributeSpace /[\\s>]|\\/>/"));
12323
+ var JSXAttributeSpace$0 = $R$0($EXPECT($R72, "JSXAttributeSpace /[\\s>]|\\/>/"));
12120
12324
  function JSXAttributeSpace(ctx, state) {
12121
12325
  return $EVENT(ctx, state, "JSXAttributeSpace", JSXAttributeSpace$0);
12122
12326
  }
12123
- var JSXShorthandString$0 = $TR($EXPECT($R72, "JSXShorthandString /(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
12327
+ var JSXShorthandString$0 = $TR($EXPECT($R73, "JSXShorthandString /(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
12124
12328
  return quoteString($0);
12125
12329
  });
12126
12330
  var JSXShorthandString$1 = $TS($S(TemplateLiteral), function($skip, $loc, $0, $1) {
@@ -12154,7 +12358,7 @@ var require_parser = __commonJS({
12154
12358
  }
12155
12359
  return [open, value, close];
12156
12360
  });
12157
- var JSXAttributeValue$4 = $R$0($EXPECT($R73, `JSXAttributeValue /"[^"]*"|'[^']*'/`));
12361
+ var JSXAttributeValue$4 = $R$0($EXPECT($R74, `JSXAttributeValue /"[^"]*"|'[^']*'/`));
12158
12362
  var JSXAttributeValue$$ = [JSXAttributeValue$0, JSXAttributeValue$1, JSXAttributeValue$2, JSXAttributeValue$3, JSXAttributeValue$4];
12159
12363
  function JSXAttributeValue(ctx, state) {
12160
12364
  return $EVENT_C(ctx, state, "JSXAttributeValue", JSXAttributeValue$$);
@@ -12167,7 +12371,7 @@ var require_parser = __commonJS({
12167
12371
  function InlineJSXAttributeValue(ctx, state) {
12168
12372
  return $EVENT(ctx, state, "InlineJSXAttributeValue", InlineJSXAttributeValue$0);
12169
12373
  }
12170
- var InlineJSXBinaryOpRHS$0 = $TS($S($N($EXPECT($R74, "InlineJSXBinaryOpRHS /[<>]/")), BinaryOp, InlineJSXUnaryExpression), function($skip, $loc, $0, $1, $2, $3) {
12374
+ var InlineJSXBinaryOpRHS$0 = $TS($S($N($EXPECT($R75, "InlineJSXBinaryOpRHS /[<>]/")), BinaryOp, InlineJSXUnaryExpression), function($skip, $loc, $0, $1, $2, $3) {
12171
12375
  var op = $2;
12172
12376
  var rhs = $3;
12173
12377
  return [[], op, [], rhs];
@@ -12184,7 +12388,7 @@ var require_parser = __commonJS({
12184
12388
  function InlineJSXUnaryExpression(ctx, state) {
12185
12389
  return $EVENT(ctx, state, "InlineJSXUnaryExpression", InlineJSXUnaryExpression$0);
12186
12390
  }
12187
- var InlineJSXUnaryOp$0 = $TR($EXPECT($R75, "InlineJSXUnaryOp /[!~+-](?!\\s|[!~+-]*&)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
12391
+ var InlineJSXUnaryOp$0 = $TR($EXPECT($R76, "InlineJSXUnaryOp /[!~+-](?!\\s|[!~+-]*&)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
12188
12392
  return { $loc, token: $0 };
12189
12393
  });
12190
12394
  function InlineJSXUnaryOp(ctx, state) {
@@ -12211,19 +12415,19 @@ var require_parser = __commonJS({
12211
12415
  type: "CallExpression",
12212
12416
  children: [
12213
12417
  $1,
12214
- { type: "Call", children: args },
12418
+ args,
12215
12419
  ...rest.flat()
12216
12420
  ]
12217
12421
  });
12218
12422
  });
12219
- var InlineJSXCallExpression$1 = $TS($S($EXPECT($L18, 'InlineJSXCallExpression "import"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
12423
+ var InlineJSXCallExpression$1 = $TS($S($EXPECT($L19, 'InlineJSXCallExpression "import"'), ExplicitArguments, $Q(InlineJSXCallExpressionRest)), function($skip, $loc, $0, $1, $2, $3) {
12220
12424
  var args = $2;
12221
12425
  var rest = $3;
12222
12426
  return processCallMemberExpression({
12223
12427
  type: "CallExpression",
12224
12428
  children: [
12225
12429
  $1,
12226
- { type: "Call", children: args },
12430
+ args,
12227
12431
  ...rest.flat()
12228
12432
  ]
12229
12433
  });
@@ -12253,7 +12457,6 @@ var require_parser = __commonJS({
12253
12457
  });
12254
12458
  var InlineJSXCallExpressionRest$2 = $TS($S($E(OptionalShorthand), ExplicitArguments), function($skip, $loc, $0, $1, $2) {
12255
12459
  var args = $2;
12256
- args = { type: "Call", children: args };
12257
12460
  if (!$1)
12258
12461
  return args;
12259
12462
  return [$1, args];
@@ -12335,7 +12538,7 @@ var require_parser = __commonJS({
12335
12538
  }
12336
12539
  return $skip;
12337
12540
  });
12338
- var JSXNestedChildren$1 = $TV($Y($C(JSXEOS, $EXPECT($L28, 'JSXNestedChildren "}"'), JSXClosingElement, JSXClosingFragment)), function($skip, $loc, $0, $1) {
12541
+ var JSXNestedChildren$1 = $TV($Y($C(JSXEOS, $EXPECT($L29, 'JSXNestedChildren "}"'), JSXClosingElement, JSXClosingFragment)), function($skip, $loc, $0, $1) {
12339
12542
  return { children: [], jsxChildren: [] };
12340
12543
  });
12341
12544
  var JSXNestedChildren$$ = [JSXNestedChildren$0, JSXNestedChildren$1];
@@ -12390,19 +12593,19 @@ var require_parser = __commonJS({
12390
12593
  function JSXChild(ctx, state) {
12391
12594
  return $EVENT_C(ctx, state, "JSXChild", JSXChild$$);
12392
12595
  }
12393
- var JSXComment$0 = $TS($S($EXPECT($L200, 'JSXComment "<!--"'), JSXCommentContent, $EXPECT($L201, 'JSXComment "-->"')), function($skip, $loc, $0, $1, $2, $3) {
12596
+ var JSXComment$0 = $TS($S($EXPECT($L201, 'JSXComment "<!--"'), JSXCommentContent, $EXPECT($L202, 'JSXComment "-->"')), function($skip, $loc, $0, $1, $2, $3) {
12394
12597
  return ["{/*", $2, "*/}"];
12395
12598
  });
12396
12599
  function JSXComment(ctx, state) {
12397
12600
  return $EVENT(ctx, state, "JSXComment", JSXComment$0);
12398
12601
  }
12399
- var JSXCommentContent$0 = $TR($EXPECT($R76, "JSXCommentContent /(?:-[^-]|[^-]*)*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
12602
+ var JSXCommentContent$0 = $TR($EXPECT($R77, "JSXCommentContent /(?:-[^-]|[^-]*)*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
12400
12603
  return { $loc, token: $0.replace(/\*\//g, "* /") };
12401
12604
  });
12402
12605
  function JSXCommentContent(ctx, state) {
12403
12606
  return $EVENT(ctx, state, "JSXCommentContent", JSXCommentContent$0);
12404
12607
  }
12405
- var JSXText$0 = $TR($EXPECT($R77, "JSXText /[^{}<>\\r\\n]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
12608
+ var JSXText$0 = $TR($EXPECT($R78, "JSXText /[^{}<>\\r\\n]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
12406
12609
  return {
12407
12610
  type: "JSXText",
12408
12611
  token: $0,
@@ -12522,37 +12725,37 @@ var require_parser = __commonJS({
12522
12725
  function InterfaceExtendsTarget(ctx, state) {
12523
12726
  return $EVENT(ctx, state, "InterfaceExtendsTarget", InterfaceExtendsTarget$0);
12524
12727
  }
12525
- var TypeKeyword$0 = $TS($S($EXPECT($L202, 'TypeKeyword "type"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12728
+ var TypeKeyword$0 = $TS($S($EXPECT($L203, 'TypeKeyword "type"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12526
12729
  return { $loc, token: $1 };
12527
12730
  });
12528
12731
  function TypeKeyword(ctx, state) {
12529
12732
  return $EVENT(ctx, state, "TypeKeyword", TypeKeyword$0);
12530
12733
  }
12531
- var Enum$0 = $TS($S($EXPECT($L203, 'Enum "enum"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12734
+ var Enum$0 = $TS($S($EXPECT($L204, 'Enum "enum"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12532
12735
  return { $loc, token: $1 };
12533
12736
  });
12534
12737
  function Enum(ctx, state) {
12535
12738
  return $EVENT(ctx, state, "Enum", Enum$0);
12536
12739
  }
12537
- var Interface$0 = $TS($S($EXPECT($L204, 'Interface "interface"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12740
+ var Interface$0 = $TS($S($EXPECT($L205, 'Interface "interface"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12538
12741
  return { $loc, token: $1 };
12539
12742
  });
12540
12743
  function Interface(ctx, state) {
12541
12744
  return $EVENT(ctx, state, "Interface", Interface$0);
12542
12745
  }
12543
- var Global$0 = $TS($S($EXPECT($L205, 'Global "global"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12746
+ var Global$0 = $TS($S($EXPECT($L206, 'Global "global"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12544
12747
  return { $loc, token: $1 };
12545
12748
  });
12546
12749
  function Global(ctx, state) {
12547
12750
  return $EVENT(ctx, state, "Global", Global$0);
12548
12751
  }
12549
- var Module$0 = $TS($S($EXPECT($L206, 'Module "module"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12752
+ var Module$0 = $TS($S($EXPECT($L207, 'Module "module"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12550
12753
  return { $loc, token: $1 };
12551
12754
  });
12552
12755
  function Module(ctx, state) {
12553
12756
  return $EVENT(ctx, state, "Module", Module$0);
12554
12757
  }
12555
- var Namespace$0 = $TS($S($EXPECT($L207, 'Namespace "namespace"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12758
+ var Namespace$0 = $TS($S($EXPECT($L208, 'Namespace "namespace"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
12556
12759
  return { $loc, token: $1 };
12557
12760
  });
12558
12761
  function Namespace(ctx, state) {
@@ -12767,7 +12970,7 @@ var require_parser = __commonJS({
12767
12970
  function TypeProperty(ctx, state) {
12768
12971
  return $EVENT(ctx, state, "TypeProperty", TypeProperty$0);
12769
12972
  }
12770
- var TypeIndexSignature$0 = $S($E($S($R$0($EXPECT($R78, "TypeIndexSignature /[+-]?/")), Readonly, NotDedented)), OpenBracket, TypeIndex, CloseBracket, $E($S(__, $R$0($EXPECT($R79, "TypeIndexSignature /[+-]/")), $Y($S($E(_), QuestionMark)))));
12973
+ var TypeIndexSignature$0 = $S($E($S($R$0($EXPECT($R79, "TypeIndexSignature /[+-]?/")), Readonly, NotDedented)), OpenBracket, TypeIndex, CloseBracket, $E($S(__, $R$0($EXPECT($R80, "TypeIndexSignature /[+-]/")), $Y($S($E(_), QuestionMark)))));
12771
12974
  function TypeIndexSignature(ctx, state) {
12772
12975
  return $EVENT(ctx, state, "TypeIndexSignature", TypeIndexSignature$0);
12773
12976
  }
@@ -12825,7 +13028,7 @@ var require_parser = __commonJS({
12825
13028
  function ReturnTypeSuffix(ctx, state) {
12826
13029
  return $EVENT(ctx, state, "ReturnTypeSuffix", ReturnTypeSuffix$0);
12827
13030
  }
12828
- var ReturnType$0 = $TS($S($E($S(__, $EXPECT($L208, 'ReturnType "asserts"'), NonIdContinue)), TypePredicate), function($skip, $loc, $0, $1, $2) {
13031
+ var ReturnType$0 = $TS($S($E($S(__, $EXPECT($L209, 'ReturnType "asserts"'), NonIdContinue)), TypePredicate), function($skip, $loc, $0, $1, $2) {
12829
13032
  var asserts = $1;
12830
13033
  var t = $2;
12831
13034
  if (asserts) {
@@ -12846,7 +13049,7 @@ var require_parser = __commonJS({
12846
13049
  function ReturnType(ctx, state) {
12847
13050
  return $EVENT(ctx, state, "ReturnType", ReturnType$0);
12848
13051
  }
12849
- var TypePredicate$0 = $TS($S(Type, $E($S(__, $EXPECT($L153, 'TypePredicate "is"'), NonIdContinue, Type))), function($skip, $loc, $0, $1, $2) {
13052
+ var TypePredicate$0 = $TS($S(Type, $E($S(__, $EXPECT($L154, 'TypePredicate "is"'), NonIdContinue, Type))), function($skip, $loc, $0, $1, $2) {
12850
13053
  var lhs = $1;
12851
13054
  var rhs = $2;
12852
13055
  if (!rhs)
@@ -12904,18 +13107,39 @@ var require_parser = __commonJS({
12904
13107
  function TypeUnarySuffix(ctx, state) {
12905
13108
  return $EVENT_C(ctx, state, "TypeUnarySuffix", TypeUnarySuffix$$);
12906
13109
  }
12907
- var TypeUnaryOp$0 = $S($EXPECT($L209, 'TypeUnaryOp "keyof"'), NonIdContinue);
12908
- var TypeUnaryOp$1 = $S($EXPECT($L210, 'TypeUnaryOp "infer"'), NonIdContinue);
12909
- var TypeUnaryOp$2 = $S($EXPECT($L170, 'TypeUnaryOp "readonly"'), NonIdContinue);
13110
+ var TypeUnaryOp$0 = $S($EXPECT($L210, 'TypeUnaryOp "keyof"'), NonIdContinue);
13111
+ var TypeUnaryOp$1 = $S($EXPECT($L211, 'TypeUnaryOp "infer"'), NonIdContinue);
13112
+ var TypeUnaryOp$2 = $S($EXPECT($L171, 'TypeUnaryOp "readonly"'), NonIdContinue);
12910
13113
  var TypeUnaryOp$$ = [TypeUnaryOp$0, TypeUnaryOp$1, TypeUnaryOp$2];
12911
13114
  function TypeUnaryOp(ctx, state) {
12912
13115
  return $EVENT_C(ctx, state, "TypeUnaryOp", TypeUnaryOp$$);
12913
13116
  }
12914
13117
  var TypeIndexedAccess$0 = $S(OpenBracket, $E(Type), __, CloseBracket);
13118
+ var TypeIndexedAccess$1 = $TS($S(Dot, $C(TemplateLiteral, StringLiteral, IntegerLiteral)), function($skip, $loc, $0, $1, $2) {
13119
+ var dot = $1;
13120
+ var literal = $2;
13121
+ const open = { ...dot, token: "[" };
13122
+ return [
13123
+ open,
13124
+ literal,
13125
+ "]"
13126
+ ];
13127
+ });
13128
+ var TypeIndexedAccess$2 = $TS($S(CoffeePrototypeEnabled, DoubleColon, $E(IdentifierName)), function($skip, $loc, $0, $1, $2, $3) {
13129
+ var p = $2;
13130
+ var id = $3;
13131
+ const open = { ...p, token: '["' };
13132
+ return [
13133
+ open,
13134
+ id,
13135
+ '"]'
13136
+ ];
13137
+ });
13138
+ var TypeIndexedAccess$$ = [TypeIndexedAccess$0, TypeIndexedAccess$1, TypeIndexedAccess$2];
12915
13139
  function TypeIndexedAccess(ctx, state) {
12916
- return $EVENT(ctx, state, "TypeIndexedAccess", TypeIndexedAccess$0);
13140
+ return $EVENT_C(ctx, state, "TypeIndexedAccess", TypeIndexedAccess$$);
12917
13141
  }
12918
- var UnknownAlias$0 = $TV($EXPECT($L211, 'UnknownAlias "???"'), function($skip, $loc, $0, $1) {
13142
+ var UnknownAlias$0 = $TV($EXPECT($L212, 'UnknownAlias "???"'), function($skip, $loc, $0, $1) {
12919
13143
  return { $loc, token: "unknown" };
12920
13144
  });
12921
13145
  function UnknownAlias(ctx, state) {
@@ -12976,8 +13200,8 @@ var require_parser = __commonJS({
12976
13200
  function TypePrimary(ctx, state) {
12977
13201
  return $EVENT_C(ctx, state, "TypePrimary", TypePrimary$$);
12978
13202
  }
12979
- var ImportType$0 = $S($EXPECT($L18, 'ImportType "import"'), OpenParen, __, StringLiteral, __, CloseParen, $E($S(Dot, IdentifierName)), $E(TypeArguments));
12980
- var ImportType$1 = $S($EXPECT($L18, 'ImportType "import"'), InsertOpenParen, Trimmed_, StringLiteral, InsertCloseParen);
13203
+ var ImportType$0 = $S($EXPECT($L19, 'ImportType "import"'), OpenParen, __, StringLiteral, __, CloseParen, $E($S(Dot, IdentifierName)), $E(TypeArguments));
13204
+ var ImportType$1 = $S($EXPECT($L19, 'ImportType "import"'), InsertOpenParen, Trimmed_, StringLiteral, InsertCloseParen);
12981
13205
  var ImportType$$ = [ImportType$0, ImportType$1];
12982
13206
  function ImportType(ctx, state) {
12983
13207
  return $EVENT_C(ctx, state, "ImportType", ImportType$$);
@@ -13040,7 +13264,7 @@ var require_parser = __commonJS({
13040
13264
  function NestedType(ctx, state) {
13041
13265
  return $EVENT(ctx, state, "NestedType", NestedType$0);
13042
13266
  }
13043
- var TypeConditional$0 = $TS($S($E(_), $EXPECT($R80, "TypeConditional /(?=if|unless)/"), TypeIfThenElse), function($skip, $loc, $0, $1, $2, $3) {
13267
+ var TypeConditional$0 = $TS($S($E(_), $EXPECT($R81, "TypeConditional /(?=if|unless)/"), TypeIfThenElse), function($skip, $loc, $0, $1, $2, $3) {
13044
13268
  return [$1, expressionizeTypeIf($3)];
13045
13269
  });
13046
13270
  var TypeConditional$1 = $TS($S(TypeCondition, NotDedented, QuestionMark, Type, __, Colon, Type), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7) {
@@ -13124,10 +13348,10 @@ var require_parser = __commonJS({
13124
13348
  }
13125
13349
  var TypeLiteral$0 = TypeTemplateLiteral;
13126
13350
  var TypeLiteral$1 = Literal;
13127
- var TypeLiteral$2 = $TS($S($EXPECT($L192, 'TypeLiteral "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13351
+ var TypeLiteral$2 = $TS($S($EXPECT($L193, 'TypeLiteral "void"'), NonIdContinue), function($skip, $loc, $0, $1, $2) {
13128
13352
  return { type: "VoidType", $loc, token: $1 };
13129
13353
  });
13130
- var TypeLiteral$3 = $TV($EXPECT($L212, 'TypeLiteral "[]"'), function($skip, $loc, $0, $1) {
13354
+ var TypeLiteral$3 = $TV($EXPECT($L213, 'TypeLiteral "[]"'), function($skip, $loc, $0, $1) {
13131
13355
  return { $loc, token: "[]" };
13132
13356
  });
13133
13357
  var TypeLiteral$$ = [TypeLiteral$0, TypeLiteral$1, TypeLiteral$2, TypeLiteral$3];
@@ -13146,16 +13370,16 @@ var require_parser = __commonJS({
13146
13370
  var InlineInterfacePropertyDelimiter$1 = $T($S($Y($S($C(IndentedFurther, $E(_)), InlineBasicInterfaceProperty)), InsertComma), function(value) {
13147
13371
  return value[1];
13148
13372
  });
13149
- var InlineInterfacePropertyDelimiter$2 = $Y($S(__, $C($EXPECT($L13, 'InlineInterfacePropertyDelimiter ":"'), $EXPECT($L115, 'InlineInterfacePropertyDelimiter ")"'), $EXPECT($L37, 'InlineInterfacePropertyDelimiter "]"'), $EXPECT($L28, 'InlineInterfacePropertyDelimiter "}"'))));
13373
+ var InlineInterfacePropertyDelimiter$2 = $Y($S(__, $C($EXPECT($L14, 'InlineInterfacePropertyDelimiter ":"'), $EXPECT($L116, 'InlineInterfacePropertyDelimiter ")"'), $EXPECT($L38, 'InlineInterfacePropertyDelimiter "]"'), $EXPECT($L29, 'InlineInterfacePropertyDelimiter "}"'))));
13150
13374
  var InlineInterfacePropertyDelimiter$3 = $Y(EOS);
13151
13375
  var InlineInterfacePropertyDelimiter$$ = [InlineInterfacePropertyDelimiter$0, InlineInterfacePropertyDelimiter$1, InlineInterfacePropertyDelimiter$2, InlineInterfacePropertyDelimiter$3];
13152
13376
  function InlineInterfacePropertyDelimiter(ctx, state) {
13153
13377
  return $EVENT_C(ctx, state, "InlineInterfacePropertyDelimiter", InlineInterfacePropertyDelimiter$$);
13154
13378
  }
13155
- var TypeBinaryOp$0 = $TV($EXPECT($L101, 'TypeBinaryOp "|"'), function($skip, $loc, $0, $1) {
13379
+ var TypeBinaryOp$0 = $TV($EXPECT($L102, 'TypeBinaryOp "|"'), function($skip, $loc, $0, $1) {
13156
13380
  return { $loc, token: "|" };
13157
13381
  });
13158
- var TypeBinaryOp$1 = $TV($EXPECT($L100, 'TypeBinaryOp "&"'), function($skip, $loc, $0, $1) {
13382
+ var TypeBinaryOp$1 = $TV($EXPECT($L101, 'TypeBinaryOp "&"'), function($skip, $loc, $0, $1) {
13159
13383
  return { $loc, token: "&" };
13160
13384
  });
13161
13385
  var TypeBinaryOp$$ = [TypeBinaryOp$0, TypeBinaryOp$1];
@@ -13172,7 +13396,7 @@ var require_parser = __commonJS({
13172
13396
  function FunctionType(ctx, state) {
13173
13397
  return $EVENT(ctx, state, "FunctionType", FunctionType$0);
13174
13398
  }
13175
- var TypeArrowFunction$0 = $TV($C($EXPECT($L11, 'TypeArrowFunction "=>"'), $EXPECT($L12, 'TypeArrowFunction "\u21D2"'), $EXPECT($L26, 'TypeArrowFunction "->"'), $EXPECT($L27, 'TypeArrowFunction "\u2192"')), function($skip, $loc, $0, $1) {
13399
+ var TypeArrowFunction$0 = $TV($C($EXPECT($L12, 'TypeArrowFunction "=>"'), $EXPECT($L13, 'TypeArrowFunction "\u21D2"'), $EXPECT($L27, 'TypeArrowFunction "->"'), $EXPECT($L28, 'TypeArrowFunction "\u2192"')), function($skip, $loc, $0, $1) {
13176
13400
  return { $loc, token: "=>" };
13177
13401
  });
13178
13402
  function TypeArrowFunction(ctx, state) {
@@ -13210,11 +13434,11 @@ var require_parser = __commonJS({
13210
13434
  function TypeParameters(ctx, state) {
13211
13435
  return $EVENT(ctx, state, "TypeParameters", TypeParameters$0);
13212
13436
  }
13213
- var TypeParameter$0 = $S(__, $E($S($EXPECT($L152, 'TypeParameter "const"'), $E(_))), Identifier, $E(TypeConstraint), $E(TypeInitializer), TypeParameterDelimiter);
13437
+ var TypeParameter$0 = $S(__, $E($S($EXPECT($L153, 'TypeParameter "const"'), $E(_))), Identifier, $E(TypeConstraint), $E(TypeInitializer), TypeParameterDelimiter);
13214
13438
  function TypeParameter(ctx, state) {
13215
13439
  return $EVENT(ctx, state, "TypeParameter", TypeParameter$0);
13216
13440
  }
13217
- var TypeConstraint$0 = $S(__, $EXPECT($L141, 'TypeConstraint "extends"'), NonIdContinue, Type);
13441
+ var TypeConstraint$0 = $S(__, $EXPECT($L142, 'TypeConstraint "extends"'), NonIdContinue, Type);
13218
13442
  function TypeConstraint(ctx, state) {
13219
13443
  return $EVENT(ctx, state, "TypeConstraint", TypeConstraint$0);
13220
13444
  }
@@ -13223,7 +13447,7 @@ var require_parser = __commonJS({
13223
13447
  return $EVENT(ctx, state, "TypeInitializer", TypeInitializer$0);
13224
13448
  }
13225
13449
  var TypeParameterDelimiter$0 = $S($E(_), Comma);
13226
- var TypeParameterDelimiter$1 = $Y($S(__, $EXPECT($L36, 'TypeParameterDelimiter ">"')));
13450
+ var TypeParameterDelimiter$1 = $Y($S(__, $EXPECT($L37, 'TypeParameterDelimiter ">"')));
13227
13451
  var TypeParameterDelimiter$2 = $T($S($Y(EOS), InsertComma), function(value) {
13228
13452
  return value[1];
13229
13453
  });
@@ -13237,15 +13461,15 @@ var require_parser = __commonJS({
13237
13461
  function ThisType(ctx, state) {
13238
13462
  return $EVENT(ctx, state, "ThisType", ThisType$0);
13239
13463
  }
13240
- var Shebang$0 = $S($R$0($EXPECT($R81, "Shebang /#![^\\r\\n]*/")), EOL);
13464
+ var Shebang$0 = $S($R$0($EXPECT($R82, "Shebang /#![^\\r\\n]*/")), EOL);
13241
13465
  function Shebang(ctx, state) {
13242
13466
  return $EVENT(ctx, state, "Shebang", Shebang$0);
13243
13467
  }
13244
- var CivetPrologue$0 = $T($S($EXPECT($R82, "CivetPrologue /[\\t ]*/"), DoubleQuote, CivetPrologueContent, DoubleQuote, SimpleStatementDelimiter, $EXPECT($R83, "CivetPrologue /[ \\t]*/"), $C(EOL, $Y(RestOfLine))), function(value) {
13468
+ var CivetPrologue$0 = $T($S($EXPECT($R83, "CivetPrologue /[\\t ]*/"), DoubleQuote, CivetPrologueContent, DoubleQuote, SimpleStatementDelimiter, $EXPECT($R84, "CivetPrologue /[ \\t]*/"), $C(EOL, $Y(RestOfLine))), function(value) {
13245
13469
  var content = value[2];
13246
13470
  return content;
13247
13471
  });
13248
- var CivetPrologue$1 = $T($S($EXPECT($R82, "CivetPrologue /[\\t ]*/"), SingleQuote, CivetPrologueContent, SingleQuote, SimpleStatementDelimiter, $EXPECT($R83, "CivetPrologue /[ \\t]*/"), $C(EOL, $Y(RestOfLine))), function(value) {
13472
+ var CivetPrologue$1 = $T($S($EXPECT($R83, "CivetPrologue /[\\t ]*/"), SingleQuote, CivetPrologueContent, SingleQuote, SimpleStatementDelimiter, $EXPECT($R84, "CivetPrologue /[ \\t]*/"), $C(EOL, $Y(RestOfLine))), function(value) {
13249
13473
  var content = value[2];
13250
13474
  return content;
13251
13475
  });
@@ -13253,7 +13477,7 @@ var require_parser = __commonJS({
13253
13477
  function CivetPrologue(ctx, state) {
13254
13478
  return $EVENT_C(ctx, state, "CivetPrologue", CivetPrologue$$);
13255
13479
  }
13256
- var CivetPrologueContent$0 = $TS($S($EXPECT($L213, 'CivetPrologueContent "civet"'), NonIdContinue, $Q(CivetOption), $EXPECT($R84, "CivetPrologueContent /[\\s]*/")), function($skip, $loc, $0, $1, $2, $3, $4) {
13480
+ var CivetPrologueContent$0 = $TS($S($EXPECT($L214, 'CivetPrologueContent "civet"'), NonIdContinue, $Q(CivetOption), $EXPECT($R85, "CivetPrologueContent /[\\s]*/")), function($skip, $loc, $0, $1, $2, $3, $4) {
13257
13481
  var options = $3;
13258
13482
  return {
13259
13483
  type: "CivetPrologue",
@@ -13264,7 +13488,7 @@ var require_parser = __commonJS({
13264
13488
  function CivetPrologueContent(ctx, state) {
13265
13489
  return $EVENT(ctx, state, "CivetPrologueContent", CivetPrologueContent$0);
13266
13490
  }
13267
- var CivetOption$0 = $TR($EXPECT($R85, "CivetOption /\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([a-zA-Z0-9.+-]*))?/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
13491
+ var CivetOption$0 = $TR($EXPECT($R86, "CivetOption /\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([a-zA-Z0-9.+-]*))?/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
13268
13492
  const optionName = $2.replace(/-+([a-z]?)/g, (_2, l) => {
13269
13493
  if (l)
13270
13494
  return l.toUpperCase();
@@ -13281,11 +13505,11 @@ var require_parser = __commonJS({
13281
13505
  function CivetOption(ctx, state) {
13282
13506
  return $EVENT(ctx, state, "CivetOption", CivetOption$0);
13283
13507
  }
13284
- var UnknownPrologue$0 = $S($R$0($EXPECT($R82, "UnknownPrologue /[\\t ]*/")), StringLiteral, $TEXT(SimpleStatementDelimiter), EOS);
13508
+ var UnknownPrologue$0 = $S($R$0($EXPECT($R83, "UnknownPrologue /[\\t ]*/")), StringLiteral, $TEXT(SimpleStatementDelimiter), EOS);
13285
13509
  function UnknownPrologue(ctx, state) {
13286
13510
  return $EVENT(ctx, state, "UnknownPrologue", UnknownPrologue$0);
13287
13511
  }
13288
- var TripleSlashDirective$0 = $S($R$0($EXPECT($R86, "TripleSlashDirective /\\/\\/\\/[^\\r\\n]*/")), $E(EOS));
13512
+ var TripleSlashDirective$0 = $S($R$0($EXPECT($R87, "TripleSlashDirective /\\/\\/\\/[^\\r\\n]*/")), $E(EOS));
13289
13513
  function TripleSlashDirective(ctx, state) {
13290
13514
  return $EVENT(ctx, state, "TripleSlashDirective", TripleSlashDirective$0);
13291
13515
  }
@@ -13299,13 +13523,13 @@ var require_parser = __commonJS({
13299
13523
  function PrologueString(ctx, state) {
13300
13524
  return $EVENT_C(ctx, state, "PrologueString", PrologueString$$);
13301
13525
  }
13302
- var EOS$0 = $T($S($EXPECT($R87, "EOS /(?=[ \\t\\r\\n\\/#]|$)/"), $P(RestOfLine)), function(value) {
13526
+ var EOS$0 = $T($S($EXPECT($R88, "EOS /(?=[ \\t\\r\\n\\/#]|$)/"), $P(RestOfLine)), function(value) {
13303
13527
  return value[1];
13304
13528
  });
13305
13529
  function EOS(ctx, state) {
13306
13530
  return $EVENT(ctx, state, "EOS", EOS$0);
13307
13531
  }
13308
- var EOL$0 = $TR($EXPECT($R88, "EOL /\\r\\n|\\n|\\r|$/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
13532
+ var EOL$0 = $TR($EXPECT($R89, "EOL /\\r\\n|\\n|\\r|$/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
13309
13533
  return { $loc, token: $0 };
13310
13534
  });
13311
13535
  function EOL(ctx, state) {
@@ -13822,8 +14046,8 @@ var require_parser = __commonJS({
13822
14046
  Object.assign(module2.config, parse.config);
13823
14047
  parse.config = module2.config;
13824
14048
  } else {
13825
- Object.assign(module2.config, exports.parse.config);
13826
- exports.parse.config = module2.config;
14049
+ Object.assign(module2.config, exports2.parse.config);
14050
+ exports2.parse.config = module2.config;
13827
14051
  }
13828
14052
  return {
13829
14053
  type: "ParserMeta",
@@ -13854,7 +14078,7 @@ var require_parser = __commonJS({
13854
14078
  function Init(ctx, state) {
13855
14079
  return $EVENT(ctx, state, "Init", Init$0);
13856
14080
  }
13857
- var Indent$0 = $TR($EXPECT($R83, "Indent /[ \\t]*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
14081
+ var Indent$0 = $TR($EXPECT($R84, "Indent /[ \\t]*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
13858
14082
  const level = getIndentLevel($0, module2.config.tab);
13859
14083
  return {
13860
14084
  $loc,
@@ -13962,724 +14186,725 @@ var require_parser = __commonJS({
13962
14186
  }
13963
14187
  };
13964
14188
  }();
13965
- exports.default = parser2;
13966
- exports.parse = parser2.parse;
13967
- exports.Program = Program;
13968
- exports.TopLevelStatements = TopLevelStatements;
13969
- exports.NestedTopLevelStatements = NestedTopLevelStatements;
13970
- exports.TopLevelSingleLineStatements = TopLevelSingleLineStatements;
13971
- exports.TopLevelStatement = TopLevelStatement;
13972
- exports.ExtendedCommaExpression = ExtendedCommaExpression;
13973
- exports.ExtendedExpression = ExtendedExpression;
13974
- exports.SingleLineExtendedExpression = SingleLineExtendedExpression;
13975
- exports.NonPipelineExtendedExpression = NonPipelineExtendedExpression;
13976
- exports.NonAssignmentExtendedExpression = NonAssignmentExtendedExpression;
13977
- exports.NestedNonAssignmentExtendedExpression = NestedNonAssignmentExtendedExpression;
13978
- exports.ExpressionizedStatementWithTrailingCallExpressions = ExpressionizedStatementWithTrailingCallExpressions;
13979
- exports.ExpressionizedStatement = ExpressionizedStatement;
13980
- exports._ExpressionizedStatement = _ExpressionizedStatement;
13981
- exports.CommaExpression = CommaExpression;
13982
- exports.Arguments = Arguments;
13983
- exports.ImplicitArguments = ImplicitArguments;
13984
- exports.ExplicitArguments = ExplicitArguments;
13985
- exports.ApplicationStart = ApplicationStart;
13986
- exports.ForbiddenImplicitCalls = ForbiddenImplicitCalls;
13987
- exports.ArgumentsWithTrailingMemberExpressions = ArgumentsWithTrailingMemberExpressions;
13988
- exports.TrailingMemberExpressions = TrailingMemberExpressions;
13989
- exports.AllowedTrailingMemberExpressions = AllowedTrailingMemberExpressions;
13990
- exports.TrailingCallExpressions = TrailingCallExpressions;
13991
- exports.AllowedTrailingCallExpressions = AllowedTrailingCallExpressions;
13992
- exports.CommaDelimiter = CommaDelimiter;
13993
- exports.ArgumentList = ArgumentList;
13994
- exports.NonPipelineArgumentList = NonPipelineArgumentList;
13995
- exports.NestedArgumentList = NestedArgumentList;
13996
- exports.NestedArgument = NestedArgument;
13997
- exports.SingleLineArgumentExpressions = SingleLineArgumentExpressions;
13998
- exports.ArgumentPart = ArgumentPart;
13999
- exports.NonPipelineArgumentPart = NonPipelineArgumentPart;
14000
- exports.BinaryOpExpression = BinaryOpExpression;
14001
- exports.BinaryOpRHS = BinaryOpRHS;
14002
- exports.WRHS = WRHS;
14003
- exports.SingleLineBinaryOpRHS = SingleLineBinaryOpRHS;
14004
- exports.RHS = RHS;
14005
- exports.ParenthesizedAssignment = ParenthesizedAssignment;
14006
- exports.UnaryExpression = UnaryExpression;
14007
- exports.UnaryWithoutParenthesizedAssignment = UnaryWithoutParenthesizedAssignment;
14008
- exports.UnaryBody = UnaryBody;
14009
- exports.UnaryWithoutParenthesizedAssignmentBody = UnaryWithoutParenthesizedAssignmentBody;
14010
- exports.UnaryPostfix = UnaryPostfix;
14011
- exports.TypePostfix = TypePostfix;
14012
- exports.UpdateExpression = UpdateExpression;
14013
- exports.UpdateExpressionSymbol = UpdateExpressionSymbol;
14014
- exports.AssignmentExpression = AssignmentExpression;
14015
- exports.NonPipelineAssignmentExpression = NonPipelineAssignmentExpression;
14016
- exports.SingleLineAssignmentExpression = SingleLineAssignmentExpression;
14017
- exports.AssignmentExpressionTail = AssignmentExpressionTail;
14018
- exports.ActualAssignment = ActualAssignment;
14019
- exports.YieldExpression = YieldExpression;
14020
- exports.YieldTail = YieldTail;
14021
- exports.ArrowFunction = ArrowFunction;
14022
- exports.FatArrow = FatArrow;
14023
- exports.TrailingDeclaration = TrailingDeclaration;
14024
- exports.FatArrowBody = FatArrowBody;
14025
- exports.ConditionalExpression = ConditionalExpression;
14026
- exports.TernaryRest = TernaryRest;
14027
- exports.NestedTernaryRest = NestedTernaryRest;
14028
- exports.ShortCircuitExpression = ShortCircuitExpression;
14029
- exports.PipelineExpression = PipelineExpression;
14030
- exports.PipelineHeadItem = PipelineHeadItem;
14031
- exports.PipelineTailItem = PipelineTailItem;
14032
- exports.PrimaryExpression = PrimaryExpression;
14033
- exports.ParenthesizedExpression = ParenthesizedExpression;
14034
- exports.ClassDeclaration = ClassDeclaration;
14035
- exports.ClassExpression = ClassExpression;
14036
- exports.ClassBinding = ClassBinding;
14037
- exports.ClassHeritage = ClassHeritage;
14038
- exports.ExtendsClause = ExtendsClause;
14039
- exports.ExtendsToken = ExtendsToken;
14040
- exports.ExtendsShorthand = ExtendsShorthand;
14041
- exports.NotExtendsToken = NotExtendsToken;
14042
- exports.OmittedNegation = OmittedNegation;
14043
- exports.ExtendsTarget = ExtendsTarget;
14044
- exports.ImplementsClause = ImplementsClause;
14045
- exports.ImplementsToken = ImplementsToken;
14046
- exports.ImplementsShorthand = ImplementsShorthand;
14047
- exports.ImplementsTarget = ImplementsTarget;
14048
- exports.ClassBody = ClassBody;
14049
- exports.NestedClassElements = NestedClassElements;
14050
- exports.NestedClassElement = NestedClassElement;
14051
- exports.ClassElement = ClassElement;
14052
- exports.ClassElementDefinition = ClassElementDefinition;
14053
- exports.ClassSignature = ClassSignature;
14054
- exports.ClassSignatureBody = ClassSignatureBody;
14055
- exports.NestedClassSignatureElements = NestedClassSignatureElements;
14056
- exports.NestedClassSignatureElement = NestedClassSignatureElement;
14057
- exports.ClassSignatureElement = ClassSignatureElement;
14058
- exports.AccessModifier = AccessModifier;
14059
- exports.FieldDefinition = FieldDefinition;
14060
- exports.ThisLiteral = ThisLiteral;
14061
- exports.PrivateThis = PrivateThis;
14062
- exports.AtThis = AtThis;
14063
- exports.LeftHandSideExpression = LeftHandSideExpression;
14064
- exports.CallExpression = CallExpression;
14065
- exports.CallExpressionRest = CallExpressionRest;
14066
- exports.OptionalShorthand = OptionalShorthand;
14067
- exports.OptionalDot = OptionalDot;
14068
- exports.NonNullAssertion = NonNullAssertion;
14069
- exports.MemberExpression = MemberExpression;
14070
- exports.ActualMemberExpression = ActualMemberExpression;
14071
- exports.MemberBase = MemberBase;
14072
- exports.MemberExpressionRest = MemberExpressionRest;
14073
- exports.MemberExpressionRestBody = MemberExpressionRestBody;
14074
- exports.MemberBracketContent = MemberBracketContent;
14075
- exports.SliceParameters = SliceParameters;
14076
- exports.AccessStart = AccessStart;
14077
- exports.PropertyAccessModifier = PropertyAccessModifier;
14078
- exports.PropertyAccess = PropertyAccess;
14079
- exports.PropertyGlob = PropertyGlob;
14080
- exports.PropertyBind = PropertyBind;
14081
- exports.SuperProperty = SuperProperty;
14082
- exports.MetaProperty = MetaProperty;
14083
- exports.ReturnValue = ReturnValue;
14084
- exports.AfterReturnShorthand = AfterReturnShorthand;
14085
- exports.Parameters = Parameters;
14086
- exports.ShortArrowParameters = ShortArrowParameters;
14087
- exports.ArrowParameters = ArrowParameters;
14088
- exports.NonEmptyParameters = NonEmptyParameters;
14089
- exports.ParameterList = ParameterList;
14090
- exports.NestedParameterList = NestedParameterList;
14091
- exports.NestedParameter = NestedParameter;
14092
- exports.Parameter = Parameter;
14093
- exports.FunctionRestParameter = FunctionRestParameter;
14094
- exports.ParameterElement = ParameterElement;
14095
- exports.ParameterElementDelimiter = ParameterElementDelimiter;
14096
- exports.BindingIdentifier = BindingIdentifier;
14097
- exports.NWBindingIdentifier = NWBindingIdentifier;
14098
- exports.AtIdentifierRef = AtIdentifierRef;
14099
- exports.PinPattern = PinPattern;
14100
- exports.BindingPattern = BindingPattern;
14101
- exports.ObjectBindingPattern = ObjectBindingPattern;
14102
- exports.ObjectBindingPatternContent = ObjectBindingPatternContent;
14103
- exports.BindingPropertyList = BindingPropertyList;
14104
- exports.ArrayBindingPattern = ArrayBindingPattern;
14105
- exports.ArrayBindingPatternContent = ArrayBindingPatternContent;
14106
- exports.BindingElementList = BindingElementList;
14107
- exports.NestedBindingElementList = NestedBindingElementList;
14108
- exports.Elision = Elision;
14109
- exports.NestedBindingProperties = NestedBindingProperties;
14110
- exports.NestedBindingPropertyList = NestedBindingPropertyList;
14111
- exports.BindingProperty = BindingProperty;
14112
- exports.BindingRestProperty = BindingRestProperty;
14113
- exports.NestedBindingElements = NestedBindingElements;
14114
- exports.BindingElement = BindingElement;
14115
- exports.BindingRestElement = BindingRestElement;
14116
- exports.EmptyBindingPattern = EmptyBindingPattern;
14117
- exports.FunctionDeclaration = FunctionDeclaration;
14118
- exports.FunctionSignature = FunctionSignature;
14119
- exports.FunctionExpression = FunctionExpression;
14120
- exports.AmpersandFunctionExpression = AmpersandFunctionExpression;
14121
- exports.OperatorDeclaration = OperatorDeclaration;
14122
- exports.OperatorSignature = OperatorSignature;
14123
- exports.AmpersandBlockRHS = AmpersandBlockRHS;
14124
- exports.AmpersandBlockRHSBody = AmpersandBlockRHSBody;
14125
- exports.ThinArrowFunction = ThinArrowFunction;
14126
- exports.Arrow = Arrow;
14127
- exports.ExplicitBlock = ExplicitBlock;
14128
- exports.ImplicitNestedBlock = ImplicitNestedBlock;
14129
- exports.Block = Block;
14130
- exports.BareNestedBlock = BareNestedBlock;
14131
- exports.BareBlock = BareBlock;
14132
- exports.ThenClause = ThenClause;
14133
- exports.BracedOrEmptyBlock = BracedOrEmptyBlock;
14134
- exports.NoCommaBracedOrEmptyBlock = NoCommaBracedOrEmptyBlock;
14135
- exports.NoPostfixBracedOrEmptyBlock = NoPostfixBracedOrEmptyBlock;
14136
- exports.EmptyBlock = EmptyBlock;
14137
- exports.EmptyBareBlock = EmptyBareBlock;
14138
- exports.BracedBlock = BracedBlock;
14139
- exports.NoPostfixBracedBlock = NoPostfixBracedBlock;
14140
- exports.NoCommaBracedBlock = NoCommaBracedBlock;
14141
- exports.NonSingleBracedBlock = NonSingleBracedBlock;
14142
- exports.DeclarationOrStatement = DeclarationOrStatement;
14143
- exports.SingleLineStatements = SingleLineStatements;
14144
- exports.PostfixedSingleLineStatements = PostfixedSingleLineStatements;
14145
- exports.PostfixedSingleLineNoCommaStatements = PostfixedSingleLineNoCommaStatements;
14146
- exports.BracedContent = BracedContent;
14147
- exports.NestedBlockStatements = NestedBlockStatements;
14148
- exports.NestedBlockStatement = NestedBlockStatement;
14149
- exports.BlockStatementPart = BlockStatementPart;
14150
- exports.Literal = Literal;
14151
- exports.LiteralContent = LiteralContent;
14152
- exports.NullLiteral = NullLiteral;
14153
- exports.BooleanLiteral = BooleanLiteral;
14154
- exports._BooleanLiteral = _BooleanLiteral;
14155
- exports.CoffeeScriptBooleanLiteral = CoffeeScriptBooleanLiteral;
14156
- exports.Identifier = Identifier;
14157
- exports.IdentifierName = IdentifierName;
14158
- exports.IdentifierReference = IdentifierReference;
14159
- exports.UpcomingAssignment = UpcomingAssignment;
14160
- exports.ArrayLiteral = ArrayLiteral;
14161
- exports._ArrayLiteral = _ArrayLiteral;
14162
- exports.RangeExpression = RangeExpression;
14163
- exports.ArrayLiteralContent = ArrayLiteralContent;
14164
- exports.NestedElementList = NestedElementList;
14165
- exports.NestedElement = NestedElement;
14166
- exports.ArrayElementDelimiter = ArrayElementDelimiter;
14167
- exports.ElementListWithIndentedApplicationForbidden = ElementListWithIndentedApplicationForbidden;
14168
- exports.ElementList = ElementList;
14169
- exports.ElementListRest = ElementListRest;
14170
- exports.ArrayElementExpression = ArrayElementExpression;
14171
- exports.ObjectLiteral = ObjectLiteral;
14172
- exports.BracedObjectLiteral = BracedObjectLiteral;
14173
- exports.BracedObjectLiteralContent = BracedObjectLiteralContent;
14174
- exports.NestedImplicitObjectLiteral = NestedImplicitObjectLiteral;
14175
- exports.NestedImplicitPropertyDefinitions = NestedImplicitPropertyDefinitions;
14176
- exports.NestedImplicitPropertyDefinition = NestedImplicitPropertyDefinition;
14177
- exports.NestedPropertyDefinitions = NestedPropertyDefinitions;
14178
- exports.NestedPropertyDefinition = NestedPropertyDefinition;
14179
- exports.InlineObjectLiteral = InlineObjectLiteral;
14180
- exports.ImplicitInlineObjectPropertyDelimiter = ImplicitInlineObjectPropertyDelimiter;
14181
- exports.ObjectPropertyDelimiter = ObjectPropertyDelimiter;
14182
- exports.PropertyDefinition = PropertyDefinition;
14183
- exports.NamedProperty = NamedProperty;
14184
- exports.SnugNamedProperty = SnugNamedProperty;
14185
- exports.PropertyName = PropertyName;
14186
- exports.ComputedPropertyName = ComputedPropertyName;
14187
- exports.Decorator = Decorator;
14188
- exports.Decorators = Decorators;
14189
- exports.MethodDefinition = MethodDefinition;
14190
- exports.MethodModifier = MethodModifier;
14191
- exports.MethodSignature = MethodSignature;
14192
- exports.ClassElementName = ClassElementName;
14193
- exports.PrivateIdentifier = PrivateIdentifier;
14194
- exports.WAssignmentOp = WAssignmentOp;
14195
- exports.AssignmentOp = AssignmentOp;
14196
- exports.OperatorAssignmentOp = OperatorAssignmentOp;
14197
- exports.AssignmentOpSymbol = AssignmentOpSymbol;
14198
- exports.CoffeeWordAssignmentOp = CoffeeWordAssignmentOp;
14199
- exports.NotDedentedBinaryOp = NotDedentedBinaryOp;
14200
- exports.IdentifierBinaryOp = IdentifierBinaryOp;
14201
- exports.BinaryOp = BinaryOp;
14202
- exports._BinaryOp = _BinaryOp;
14203
- exports.BinaryOpSymbol = BinaryOpSymbol;
14204
- exports.CoffeeOfOp = CoffeeOfOp;
14205
- exports.NotOp = NotOp;
14206
- exports.Xor = Xor;
14207
- exports.Xnor = Xnor;
14208
- exports.UnaryOp = UnaryOp;
14209
- exports.AwaitOp = AwaitOp;
14210
- exports.ModuleItem = ModuleItem;
14211
- exports.StatementListItem = StatementListItem;
14212
- exports.PostfixedStatement = PostfixedStatement;
14213
- exports.NoCommaStatementListItem = NoCommaStatementListItem;
14214
- exports.PostfixedNoCommaStatement = PostfixedNoCommaStatement;
14215
- exports.PostfixedExpression = PostfixedExpression;
14216
- exports.PostfixedCommaExpression = PostfixedCommaExpression;
14217
- exports.NonPipelinePostfixedExpression = NonPipelinePostfixedExpression;
14218
- exports.PostfixStatement = PostfixStatement;
14219
- exports._PostfixStatement = _PostfixStatement;
14220
- exports.Statement = Statement;
14221
- exports.NoCommaStatement = NoCommaStatement;
14222
- exports.EmptyStatement = EmptyStatement;
14223
- exports.BlockStatement = BlockStatement;
14224
- exports.LabelledStatement = LabelledStatement;
14225
- exports.Label = Label;
14226
- exports.LabelledItem = LabelledItem;
14227
- exports.IfStatement = IfStatement;
14228
- exports.ElseClause = ElseClause;
14229
- exports.IfClause = IfClause;
14230
- exports.UnlessClause = UnlessClause;
14231
- exports.IfExpression = IfExpression;
14232
- exports.UnlessExpression = UnlessExpression;
14233
- exports.ElseExpressionClause = ElseExpressionClause;
14234
- exports.ExpressionBlock = ExpressionBlock;
14235
- exports.ElseExpressionBlock = ElseExpressionBlock;
14236
- exports.NestedBlockExpressions = NestedBlockExpressions;
14237
- exports.NestedBlockExpression = NestedBlockExpression;
14238
- exports.BlockExpressionPart = BlockExpressionPart;
14239
- exports.IterationStatement = IterationStatement;
14240
- exports._IterationStatement = _IterationStatement;
14241
- exports.IterationExpression = IterationExpression;
14242
- exports.LoopStatement = LoopStatement;
14243
- exports.LoopClause = LoopClause;
14244
- exports.DoWhileStatement = DoWhileStatement;
14245
- exports.DoStatement = DoStatement;
14246
- exports.WhileStatement = WhileStatement;
14247
- exports.WhileClause = WhileClause;
14248
- exports.ForStatement = ForStatement;
14249
- exports.ForClause = ForClause;
14250
- exports.ForStatementControl = ForStatementControl;
14251
- exports.WhenCondition = WhenCondition;
14252
- exports.CoffeeForStatementParameters = CoffeeForStatementParameters;
14253
- exports.CoffeeForIndex = CoffeeForIndex;
14254
- exports.CoffeeForDeclaration = CoffeeForDeclaration;
14255
- exports.ForStatementParameters = ForStatementParameters;
14256
- exports.ForRangeParameters = ForRangeParameters;
14257
- exports.ForInOfDeclaration = ForInOfDeclaration;
14258
- exports.ForDeclaration = ForDeclaration;
14259
- exports.ForBinding = ForBinding;
14260
- exports.SwitchStatement = SwitchStatement;
14261
- exports.EmptyCondition = EmptyCondition;
14262
- exports.SwitchExpression = SwitchExpression;
14263
- exports.CaseBlock = CaseBlock;
14264
- exports.NestedCaseClauses = NestedCaseClauses;
14265
- exports.NestedCaseClause = NestedCaseClause;
14266
- exports.CaseClause = CaseClause;
14267
- exports.PatternExpressionList = PatternExpressionList;
14268
- exports.ConditionFragment = ConditionFragment;
14269
- exports.CaseExpressionList = CaseExpressionList;
14270
- exports.CaseExpression = CaseExpression;
14271
- exports.ImpliedColon = ImpliedColon;
14272
- exports.IgnoreColon = IgnoreColon;
14273
- exports.TryStatement = TryStatement;
14274
- exports.TryExpression = TryExpression;
14275
- exports.CatchClause = CatchClause;
14276
- exports.CatchBind = CatchBind;
14277
- exports.FinallyClause = FinallyClause;
14278
- exports.CatchParameter = CatchParameter;
14279
- exports.Condition = Condition;
14280
- exports.DeclarationCondition = DeclarationCondition;
14281
- exports.ExpressionWithIndentedApplicationForbidden = ExpressionWithIndentedApplicationForbidden;
14282
- exports.SingleLineExpressionWithIndentedApplicationForbidden = SingleLineExpressionWithIndentedApplicationForbidden;
14283
- exports.ExpressionWithObjectApplicationForbidden = ExpressionWithObjectApplicationForbidden;
14284
- exports.LeftHandSideExpressionWithObjectApplicationForbidden = LeftHandSideExpressionWithObjectApplicationForbidden;
14285
- exports.ForbidClassImplicitCall = ForbidClassImplicitCall;
14286
- exports.AllowClassImplicitCall = AllowClassImplicitCall;
14287
- exports.RestoreClassImplicitCall = RestoreClassImplicitCall;
14288
- exports.ClassImplicitCallForbidden = ClassImplicitCallForbidden;
14289
- exports.ForbidBracedApplication = ForbidBracedApplication;
14290
- exports.AllowBracedApplication = AllowBracedApplication;
14291
- exports.RestoreBracedApplication = RestoreBracedApplication;
14292
- exports.BracedApplicationAllowed = BracedApplicationAllowed;
14293
- exports.ForbidIndentedApplication = ForbidIndentedApplication;
14294
- exports.AllowIndentedApplication = AllowIndentedApplication;
14295
- exports.RestoreIndentedApplication = RestoreIndentedApplication;
14296
- exports.IndentedApplicationAllowed = IndentedApplicationAllowed;
14297
- exports.ForbidTrailingMemberProperty = ForbidTrailingMemberProperty;
14298
- exports.AllowTrailingMemberProperty = AllowTrailingMemberProperty;
14299
- exports.RestoreTrailingMemberProperty = RestoreTrailingMemberProperty;
14300
- exports.TrailingMemberPropertyAllowed = TrailingMemberPropertyAllowed;
14301
- exports.AllowNewlineBinaryOp = AllowNewlineBinaryOp;
14302
- exports.ForbidNewlineBinaryOp = ForbidNewlineBinaryOp;
14303
- exports.RestoreNewlineBinaryOp = RestoreNewlineBinaryOp;
14304
- exports.NewlineBinaryOpAllowed = NewlineBinaryOpAllowed;
14305
- exports.AllowAll = AllowAll;
14306
- exports.RestoreAll = RestoreAll;
14307
- exports.CommaExpressionStatement = CommaExpressionStatement;
14308
- exports.ExpressionStatement = ExpressionStatement;
14309
- exports.KeywordStatement = KeywordStatement;
14310
- exports.DebuggerStatement = DebuggerStatement;
14311
- exports.ThrowStatement = ThrowStatement;
14312
- exports.Break = Break;
14313
- exports.Continue = Continue;
14314
- exports.Debugger = Debugger;
14315
- exports.DebuggerExpression = DebuggerExpression;
14316
- exports.ThrowExpression = ThrowExpression;
14317
- exports.MaybeNestedExpression = MaybeNestedExpression;
14318
- exports.ImportDeclaration = ImportDeclaration;
14319
- exports.ImpliedImport = ImpliedImport;
14320
- exports.ImportClause = ImportClause;
14321
- exports.NameSpaceImport = NameSpaceImport;
14322
- exports.NamedImports = NamedImports;
14323
- exports.FromClause = FromClause;
14324
- exports.ImportAssertion = ImportAssertion;
14325
- exports.TypeAndImportSpecifier = TypeAndImportSpecifier;
14326
- exports.ImportSpecifier = ImportSpecifier;
14327
- exports.ImportAsToken = ImportAsToken;
14328
- exports.ModuleExportName = ModuleExportName;
14329
- exports.ModuleSpecifier = ModuleSpecifier;
14330
- exports.UnprocessedModuleSpecifier = UnprocessedModuleSpecifier;
14331
- exports.UnquotedSpecifier = UnquotedSpecifier;
14332
- exports.ImportedBinding = ImportedBinding;
14333
- exports.ExportDeclaration = ExportDeclaration;
14334
- exports.ExportVarDec = ExportVarDec;
14335
- exports.ExportFromClause = ExportFromClause;
14336
- exports.TypeAndNamedExports = TypeAndNamedExports;
14337
- exports.NamedExports = NamedExports;
14338
- exports.ExportSpecifier = ExportSpecifier;
14339
- exports.ImplicitExportSpecifier = ImplicitExportSpecifier;
14340
- exports.Declaration = Declaration;
14341
- exports.HoistableDeclaration = HoistableDeclaration;
14342
- exports.LexicalDeclaration = LexicalDeclaration;
14343
- exports.ConstAssignment = ConstAssignment;
14344
- exports.LetAssignment = LetAssignment;
14345
- exports.LexicalBinding = LexicalBinding;
14346
- exports.Initializer = Initializer;
14347
- exports.VariableStatement = VariableStatement;
14348
- exports.VariableDeclarationList = VariableDeclarationList;
14349
- exports.NumericLiteral = NumericLiteral;
14350
- exports.NumericLiteralKind = NumericLiteralKind;
14351
- exports.DecimalBigIntegerLiteral = DecimalBigIntegerLiteral;
14352
- exports.DecimalLiteral = DecimalLiteral;
14353
- exports.ExponentPart = ExponentPart;
14354
- exports.BinaryIntegerLiteral = BinaryIntegerLiteral;
14355
- exports.OctalIntegerLiteral = OctalIntegerLiteral;
14356
- exports.HexIntegerLiteral = HexIntegerLiteral;
14357
- exports.IntegerLiteral = IntegerLiteral;
14358
- exports.IntegerLiteralKind = IntegerLiteralKind;
14359
- exports.DecimalIntegerLiteral = DecimalIntegerLiteral;
14360
- exports.StringLiteral = StringLiteral;
14361
- exports.DoubleStringCharacters = DoubleStringCharacters;
14362
- exports.SingleStringCharacters = SingleStringCharacters;
14363
- exports.TripleDoubleStringCharacters = TripleDoubleStringCharacters;
14364
- exports.TripleSingleStringCharacters = TripleSingleStringCharacters;
14365
- exports.CoffeeStringSubstitution = CoffeeStringSubstitution;
14366
- exports.CoffeeInterpolatedDoubleQuotedString = CoffeeInterpolatedDoubleQuotedString;
14367
- exports.CoffeeDoubleQuotedStringCharacters = CoffeeDoubleQuotedStringCharacters;
14368
- exports.RegularExpressionLiteral = RegularExpressionLiteral;
14369
- exports.RegularExpressionClass = RegularExpressionClass;
14370
- exports.RegularExpressionClassCharacters = RegularExpressionClassCharacters;
14371
- exports.HeregexLiteral = HeregexLiteral;
14372
- exports.HeregexBody = HeregexBody;
14373
- exports.HeregexPart = HeregexPart;
14374
- exports.HeregexComment = HeregexComment;
14375
- exports.RegularExpressionBody = RegularExpressionBody;
14376
- exports.RegExpPart = RegExpPart;
14377
- exports.RegExpCharacter = RegExpCharacter;
14378
- exports.RegularExpressionFlags = RegularExpressionFlags;
14379
- exports.TemplateLiteral = TemplateLiteral;
14380
- exports._TemplateLiteral = _TemplateLiteral;
14381
- exports.TemplateSubstitution = TemplateSubstitution;
14382
- exports.TemplateCharacters = TemplateCharacters;
14383
- exports.TemplateBlockCharacters = TemplateBlockCharacters;
14384
- exports.ReservedWord = ReservedWord;
14385
- exports.Comment = Comment;
14386
- exports._Comment = _Comment;
14387
- exports.SingleLineComment = SingleLineComment;
14388
- exports.JSSingleLineComment = JSSingleLineComment;
14389
- exports.MultiLineComment = MultiLineComment;
14390
- exports.JSMultiLineComment = JSMultiLineComment;
14391
- exports.CoffeeSingleLineComment = CoffeeSingleLineComment;
14392
- exports.CoffeeMultiLineComment = CoffeeMultiLineComment;
14393
- exports.CoffeeHereCommentStart = CoffeeHereCommentStart;
14394
- exports.InlineComment = InlineComment;
14395
- exports.RestOfLine = RestOfLine;
14396
- exports.TrailingComment = TrailingComment;
14397
- exports._ = _;
14398
- exports.NonNewlineWhitespace = NonNewlineWhitespace;
14399
- exports.Trimmed_ = Trimmed_;
14400
- exports.__ = __;
14401
- exports.Whitespace = Whitespace;
14402
- exports.ExpressionDelimiter = ExpressionDelimiter;
14403
- exports.SimpleStatementDelimiter = SimpleStatementDelimiter;
14404
- exports.StatementDelimiter = StatementDelimiter;
14405
- exports.SemicolonDelimiter = SemicolonDelimiter;
14406
- exports.NonIdContinue = NonIdContinue;
14407
- exports.Loc = Loc;
14408
- exports.Abstract = Abstract;
14409
- exports.Ampersand = Ampersand;
14410
- exports.As = As;
14411
- exports.At = At;
14412
- exports.AtAt = AtAt;
14413
- exports.Async = Async;
14414
- exports.Await = Await;
14415
- exports.Backtick = Backtick;
14416
- exports.By = By;
14417
- exports.Caret = Caret;
14418
- exports.Case = Case;
14419
- exports.Catch = Catch;
14420
- exports.Class = Class;
14421
- exports.CloseAngleBracket = CloseAngleBracket;
14422
- exports.CloseBrace = CloseBrace;
14423
- exports.CloseBracket = CloseBracket;
14424
- exports.CloseParen = CloseParen;
14425
- exports.CoffeeSubstitutionStart = CoffeeSubstitutionStart;
14426
- exports.Colon = Colon;
14427
- exports.Comma = Comma;
14428
- exports.ConstructorShorthand = ConstructorShorthand;
14429
- exports.Declare = Declare;
14430
- exports.Default = Default;
14431
- exports.Delete = Delete;
14432
- exports.Do = Do;
14433
- exports.Dot = Dot;
14434
- exports.DotDot = DotDot;
14435
- exports.DotDotDot = DotDotDot;
14436
- exports.DoubleColon = DoubleColon;
14437
- exports.DoubleQuote = DoubleQuote;
14438
- exports.Each = Each;
14439
- exports.Else = Else;
14440
- exports.Equals = Equals;
14441
- exports.ExclamationPoint = ExclamationPoint;
14442
- exports.Export = Export;
14443
- exports.Extends = Extends;
14444
- exports.Finally = Finally;
14445
- exports.For = For;
14446
- exports.From = From;
14447
- exports.Function = Function;
14448
- exports.GetOrSet = GetOrSet;
14449
- exports.Hash = Hash;
14450
- exports.If = If;
14451
- exports.Import = Import;
14452
- exports.In = In;
14453
- exports.LetOrConst = LetOrConst;
14454
- exports.Const = Const;
14455
- exports.Is = Is;
14456
- exports.LetOrConstOrVar = LetOrConstOrVar;
14457
- exports.Loop = Loop;
14458
- exports.New = New;
14459
- exports.Not = Not;
14460
- exports.Of = Of;
14461
- exports.OpenAngleBracket = OpenAngleBracket;
14462
- exports.OpenBrace = OpenBrace;
14463
- exports.OpenBracket = OpenBracket;
14464
- exports.OpenParen = OpenParen;
14465
- exports.Operator = Operator;
14466
- exports.Own = Own;
14467
- exports.Public = Public;
14468
- exports.Private = Private;
14469
- exports.Protected = Protected;
14470
- exports.Pipe = Pipe;
14471
- exports.QuestionMark = QuestionMark;
14472
- exports.Readonly = Readonly;
14473
- exports.Return = Return;
14474
- exports.Satisfies = Satisfies;
14475
- exports.Semicolon = Semicolon;
14476
- exports.SingleQuote = SingleQuote;
14477
- exports.Star = Star;
14478
- exports.Static = Static;
14479
- exports.SubstitutionStart = SubstitutionStart;
14480
- exports.Super = Super;
14481
- exports.Switch = Switch;
14482
- exports.Target = Target;
14483
- exports.Then = Then;
14484
- exports.This = This;
14485
- exports.Throw = Throw;
14486
- exports.TripleDoubleQuote = TripleDoubleQuote;
14487
- exports.TripleSingleQuote = TripleSingleQuote;
14488
- exports.TripleSlash = TripleSlash;
14489
- exports.TripleTick = TripleTick;
14490
- exports.Try = Try;
14491
- exports.Typeof = Typeof;
14492
- exports.Unless = Unless;
14493
- exports.Until = Until;
14494
- exports.Using = Using;
14495
- exports.Var = Var;
14496
- exports.Void = Void;
14497
- exports.When = When;
14498
- exports.While = While;
14499
- exports.Yield = Yield;
14500
- exports.JSXImplicitFragment = JSXImplicitFragment;
14501
- exports.JSXTag = JSXTag;
14502
- exports._JSXTag = _JSXTag;
14503
- exports.JSXElement = JSXElement;
14504
- exports.JSXSelfClosingElement = JSXSelfClosingElement;
14505
- exports.PushJSXOpeningElement = PushJSXOpeningElement;
14506
- exports.PopJSXStack = PopJSXStack;
14507
- exports.JSXOpeningElement = JSXOpeningElement;
14508
- exports.JSXOptionalClosingElement = JSXOptionalClosingElement;
14509
- exports.JSXClosingElement = JSXClosingElement;
14510
- exports.JSXFragment = JSXFragment;
14511
- exports.PushJSXOpeningFragment = PushJSXOpeningFragment;
14512
- exports.JSXOptionalClosingFragment = JSXOptionalClosingFragment;
14513
- exports.JSXClosingFragment = JSXClosingFragment;
14514
- exports.JSXElementName = JSXElementName;
14515
- exports.JSXIdentifierName = JSXIdentifierName;
14516
- exports.JSXAttributes = JSXAttributes;
14517
- exports.JSXAttribute = JSXAttribute;
14518
- exports.JSXAttributeSpace = JSXAttributeSpace;
14519
- exports.JSXShorthandString = JSXShorthandString;
14520
- exports.JSXAttributeName = JSXAttributeName;
14521
- exports.JSXAttributeInitializer = JSXAttributeInitializer;
14522
- exports.JSXAttributeValue = JSXAttributeValue;
14523
- exports.InlineJSXAttributeValue = InlineJSXAttributeValue;
14524
- exports.InlineJSXBinaryOpRHS = InlineJSXBinaryOpRHS;
14525
- exports.InlineJSXUnaryExpression = InlineJSXUnaryExpression;
14526
- exports.InlineJSXUnaryOp = InlineJSXUnaryOp;
14527
- exports.InlineJSXUnaryPostfix = InlineJSXUnaryPostfix;
14528
- exports.InlineJSXUpdateExpression = InlineJSXUpdateExpression;
14529
- exports.InlineJSXCallExpression = InlineJSXCallExpression;
14530
- exports.InlineJSXCallExpressionRest = InlineJSXCallExpressionRest;
14531
- exports.InlineJSXMemberExpression = InlineJSXMemberExpression;
14532
- exports.InlineJSXMemberExpressionRest = InlineJSXMemberExpressionRest;
14533
- exports.InlineJSXPrimaryExpression = InlineJSXPrimaryExpression;
14534
- exports.JSXMixedChildren = JSXMixedChildren;
14535
- exports.JSXChildren = JSXChildren;
14536
- exports.JSXNestedChildren = JSXNestedChildren;
14537
- exports.JSXEOS = JSXEOS;
14538
- exports.JSXNested = JSXNested;
14539
- exports.JSXChild = JSXChild;
14540
- exports.JSXComment = JSXComment;
14541
- exports.JSXCommentContent = JSXCommentContent;
14542
- exports.JSXText = JSXText;
14543
- exports.JSXChildExpression = JSXChildExpression;
14544
- exports.IndentedJSXChildExpression = IndentedJSXChildExpression;
14545
- exports.NestedJSXChildExpression = NestedJSXChildExpression;
14546
- exports.UsingDeclaration = UsingDeclaration;
14547
- exports.UsingBinding = UsingBinding;
14548
- exports.UsingJSModeError = UsingJSModeError;
14549
- exports.TypeDeclaration = TypeDeclaration;
14550
- exports.TypeDeclarationRest = TypeDeclarationRest;
14551
- exports.OptionalEquals = OptionalEquals;
14552
- exports.TypeLexicalDeclaration = TypeLexicalDeclaration;
14553
- exports.TypeDeclarationBinding = TypeDeclarationBinding;
14554
- exports.InterfaceExtendsClause = InterfaceExtendsClause;
14555
- exports.InterfaceExtendsTarget = InterfaceExtendsTarget;
14556
- exports.TypeKeyword = TypeKeyword;
14557
- exports.Enum = Enum;
14558
- exports.Interface = Interface;
14559
- exports.Global = Global;
14560
- exports.Module = Module;
14561
- exports.Namespace = Namespace;
14562
- exports.InterfaceBlock = InterfaceBlock;
14563
- exports.NestedInterfaceProperties = NestedInterfaceProperties;
14564
- exports.NestedInterfaceProperty = NestedInterfaceProperty;
14565
- exports.InterfaceProperty = InterfaceProperty;
14566
- exports.BasicInterfaceProperty = BasicInterfaceProperty;
14567
- exports.InterfacePropertyDelimiter = InterfacePropertyDelimiter;
14568
- exports.ModuleBlock = ModuleBlock;
14569
- exports.NestedModuleItems = NestedModuleItems;
14570
- exports.NestedModuleItem = NestedModuleItem;
14571
- exports.DeclareBlock = DeclareBlock;
14572
- exports.NestedDeclareElements = NestedDeclareElements;
14573
- exports.NestedDeclareElement = NestedDeclareElement;
14574
- exports.DeclareElement = DeclareElement;
14575
- exports.EnumDeclaration = EnumDeclaration;
14576
- exports.EnumBlock = EnumBlock;
14577
- exports.NestedEnumProperties = NestedEnumProperties;
14578
- exports.NestedEnumProperty = NestedEnumProperty;
14579
- exports.EnumProperty = EnumProperty;
14580
- exports.TypeProperty = TypeProperty;
14581
- exports.TypeIndexSignature = TypeIndexSignature;
14582
- exports.TypeIndex = TypeIndex;
14583
- exports.TypeSuffix = TypeSuffix;
14584
- exports.MaybeIndentedType = MaybeIndentedType;
14585
- exports.ReturnTypeSuffix = ReturnTypeSuffix;
14586
- exports.ReturnType = ReturnType;
14587
- exports.TypePredicate = TypePredicate;
14588
- exports.Type = Type;
14589
- exports.TypeBinary = TypeBinary;
14590
- exports.TypeUnary = TypeUnary;
14591
- exports.TypeUnarySuffix = TypeUnarySuffix;
14592
- exports.TypeUnaryOp = TypeUnaryOp;
14593
- exports.TypeIndexedAccess = TypeIndexedAccess;
14594
- exports.UnknownAlias = UnknownAlias;
14595
- exports.TypePrimary = TypePrimary;
14596
- exports.ImportType = ImportType;
14597
- exports.TypeTuple = TypeTuple;
14598
- exports.TypeList = TypeList;
14599
- exports.TypeElement = TypeElement;
14600
- exports.NestedTypeList = NestedTypeList;
14601
- exports.NestedType = NestedType;
14602
- exports.TypeConditional = TypeConditional;
14603
- exports.TypeCondition = TypeCondition;
14604
- exports.TypeIfThenElse = TypeIfThenElse;
14605
- exports.TypeElse = TypeElse;
14606
- exports.TypeBlock = TypeBlock;
14607
- exports.TypeTemplateSubstitution = TypeTemplateSubstitution;
14608
- exports.TypeTemplateLiteral = TypeTemplateLiteral;
14609
- exports.CoffeeStringTypeSubstitution = CoffeeStringTypeSubstitution;
14610
- exports.CoffeeInterpolatedDoubleQuotedTypeLiteral = CoffeeInterpolatedDoubleQuotedTypeLiteral;
14611
- exports.TypeLiteral = TypeLiteral;
14612
- exports.InlineInterfaceLiteral = InlineInterfaceLiteral;
14613
- exports.InlineBasicInterfaceProperty = InlineBasicInterfaceProperty;
14614
- exports.InlineInterfacePropertyDelimiter = InlineInterfacePropertyDelimiter;
14615
- exports.TypeBinaryOp = TypeBinaryOp;
14616
- exports.FunctionType = FunctionType;
14617
- exports.TypeArrowFunction = TypeArrowFunction;
14618
- exports.TypeArguments = TypeArguments;
14619
- exports.TypeArgument = TypeArgument;
14620
- exports.TypeArgumentDelimiter = TypeArgumentDelimiter;
14621
- exports.TypeParameters = TypeParameters;
14622
- exports.TypeParameter = TypeParameter;
14623
- exports.TypeConstraint = TypeConstraint;
14624
- exports.TypeInitializer = TypeInitializer;
14625
- exports.TypeParameterDelimiter = TypeParameterDelimiter;
14626
- exports.ThisType = ThisType;
14627
- exports.Shebang = Shebang;
14628
- exports.CivetPrologue = CivetPrologue;
14629
- exports.CivetPrologueContent = CivetPrologueContent;
14630
- exports.CivetOption = CivetOption;
14631
- exports.UnknownPrologue = UnknownPrologue;
14632
- exports.TripleSlashDirective = TripleSlashDirective;
14633
- exports.DirectivePrologue = DirectivePrologue;
14634
- exports.PrologueString = PrologueString;
14635
- exports.EOS = EOS;
14636
- exports.EOL = EOL;
14637
- exports.DebugHere = DebugHere;
14638
- exports.InsertColon = InsertColon;
14639
- exports.InsertSemicolon = InsertSemicolon;
14640
- exports.InsertOpenParen = InsertOpenParen;
14641
- exports.InsertCloseParen = InsertCloseParen;
14642
- exports.InsertOpenBrace = InsertOpenBrace;
14643
- exports.InsertInlineOpenBrace = InsertInlineOpenBrace;
14644
- exports.InsertCloseBrace = InsertCloseBrace;
14645
- exports.InsertOpenBracket = InsertOpenBracket;
14646
- exports.InsertCloseBracket = InsertCloseBracket;
14647
- exports.InsertComma = InsertComma;
14648
- exports.InsertSpaceEquals = InsertSpaceEquals;
14649
- exports.InsertConst = InsertConst;
14650
- exports.InsertLet = InsertLet;
14651
- exports.InsertReadonly = InsertReadonly;
14652
- exports.InsertNewline = InsertNewline;
14653
- exports.InsertIndent = InsertIndent;
14654
- exports.InsertSpace = InsertSpace;
14655
- exports.InsertDot = InsertDot;
14656
- exports.InsertBreak = InsertBreak;
14657
- exports.InsertVar = InsertVar;
14658
- exports.CoffeeBinaryExistentialEnabled = CoffeeBinaryExistentialEnabled;
14659
- exports.CoffeeBooleansEnabled = CoffeeBooleansEnabled;
14660
- exports.CoffeeClassesEnabled = CoffeeClassesEnabled;
14661
- exports.CoffeeCommentEnabled = CoffeeCommentEnabled;
14662
- exports.CoffeeDoEnabled = CoffeeDoEnabled;
14663
- exports.CoffeeForLoopsEnabled = CoffeeForLoopsEnabled;
14664
- exports.CoffeeInterpolationEnabled = CoffeeInterpolationEnabled;
14665
- exports.CoffeeIsntEnabled = CoffeeIsntEnabled;
14666
- exports.CoffeeJSXEnabled = CoffeeJSXEnabled;
14667
- exports.CoffeeLineContinuationEnabled = CoffeeLineContinuationEnabled;
14668
- exports.CoffeeNotEnabled = CoffeeNotEnabled;
14669
- exports.CoffeeOfEnabled = CoffeeOfEnabled;
14670
- exports.CoffeePrototypeEnabled = CoffeePrototypeEnabled;
14671
- exports.ObjectIsEnabled = ObjectIsEnabled;
14672
- exports.Reset = Reset;
14673
- exports.Init = Init;
14674
- exports.Indent = Indent;
14675
- exports.TrackIndented = TrackIndented;
14676
- exports.PushIndent = PushIndent;
14677
- exports.PopIndent = PopIndent;
14678
- exports.Nested = Nested;
14679
- exports.IndentedFurther = IndentedFurther;
14680
- exports.IndentedAtLeast = IndentedAtLeast;
14681
- exports.NotDedented = NotDedented;
14682
- exports.Dedented = Dedented;
14189
+ exports2.default = parser2;
14190
+ exports2.parse = parser2.parse;
14191
+ exports2.Program = Program;
14192
+ exports2.TopLevelStatements = TopLevelStatements;
14193
+ exports2.NestedTopLevelStatements = NestedTopLevelStatements;
14194
+ exports2.TopLevelSingleLineStatements = TopLevelSingleLineStatements;
14195
+ exports2.TopLevelStatement = TopLevelStatement;
14196
+ exports2.ExtendedCommaExpression = ExtendedCommaExpression;
14197
+ exports2.ExtendedExpression = ExtendedExpression;
14198
+ exports2.SingleLineExtendedExpression = SingleLineExtendedExpression;
14199
+ exports2.NonPipelineExtendedExpression = NonPipelineExtendedExpression;
14200
+ exports2.NonAssignmentExtendedExpression = NonAssignmentExtendedExpression;
14201
+ exports2.NestedNonAssignmentExtendedExpression = NestedNonAssignmentExtendedExpression;
14202
+ exports2.ExpressionizedStatementWithTrailingCallExpressions = ExpressionizedStatementWithTrailingCallExpressions;
14203
+ exports2.ExpressionizedStatement = ExpressionizedStatement;
14204
+ exports2._ExpressionizedStatement = _ExpressionizedStatement;
14205
+ exports2.CommaExpression = CommaExpression;
14206
+ exports2.Arguments = Arguments;
14207
+ exports2.ImplicitArguments = ImplicitArguments;
14208
+ exports2.ExplicitArguments = ExplicitArguments;
14209
+ exports2.ApplicationStart = ApplicationStart;
14210
+ exports2.ForbiddenImplicitCalls = ForbiddenImplicitCalls;
14211
+ exports2.ArgumentsWithTrailingMemberExpressions = ArgumentsWithTrailingMemberExpressions;
14212
+ exports2.TrailingMemberExpressions = TrailingMemberExpressions;
14213
+ exports2.AllowedTrailingMemberExpressions = AllowedTrailingMemberExpressions;
14214
+ exports2.TrailingCallExpressions = TrailingCallExpressions;
14215
+ exports2.AllowedTrailingCallExpressions = AllowedTrailingCallExpressions;
14216
+ exports2.CommaDelimiter = CommaDelimiter;
14217
+ exports2.ArgumentList = ArgumentList;
14218
+ exports2.NonPipelineArgumentList = NonPipelineArgumentList;
14219
+ exports2.NestedArgumentList = NestedArgumentList;
14220
+ exports2.NestedArgument = NestedArgument;
14221
+ exports2.SingleLineArgumentExpressions = SingleLineArgumentExpressions;
14222
+ exports2.ArgumentPart = ArgumentPart;
14223
+ exports2.NonPipelineArgumentPart = NonPipelineArgumentPart;
14224
+ exports2.BinaryOpExpression = BinaryOpExpression;
14225
+ exports2.BinaryOpRHS = BinaryOpRHS;
14226
+ exports2.WRHS = WRHS;
14227
+ exports2.SingleLineBinaryOpRHS = SingleLineBinaryOpRHS;
14228
+ exports2.RHS = RHS;
14229
+ exports2.ParenthesizedAssignment = ParenthesizedAssignment;
14230
+ exports2.UnaryExpression = UnaryExpression;
14231
+ exports2.UnaryWithoutParenthesizedAssignment = UnaryWithoutParenthesizedAssignment;
14232
+ exports2.UnaryBody = UnaryBody;
14233
+ exports2.UnaryWithoutParenthesizedAssignmentBody = UnaryWithoutParenthesizedAssignmentBody;
14234
+ exports2.UnaryPostfix = UnaryPostfix;
14235
+ exports2.TypePostfix = TypePostfix;
14236
+ exports2.UpdateExpression = UpdateExpression;
14237
+ exports2.UpdateExpressionSymbol = UpdateExpressionSymbol;
14238
+ exports2.AssignmentExpression = AssignmentExpression;
14239
+ exports2.NonPipelineAssignmentExpression = NonPipelineAssignmentExpression;
14240
+ exports2.SingleLineAssignmentExpression = SingleLineAssignmentExpression;
14241
+ exports2.AssignmentExpressionTail = AssignmentExpressionTail;
14242
+ exports2.ActualAssignment = ActualAssignment;
14243
+ exports2.YieldExpression = YieldExpression;
14244
+ exports2.YieldTail = YieldTail;
14245
+ exports2.ArrowFunction = ArrowFunction;
14246
+ exports2.FatArrow = FatArrow;
14247
+ exports2.TrailingDeclaration = TrailingDeclaration;
14248
+ exports2.FatArrowBody = FatArrowBody;
14249
+ exports2.ConditionalExpression = ConditionalExpression;
14250
+ exports2.TernaryRest = TernaryRest;
14251
+ exports2.NestedTernaryRest = NestedTernaryRest;
14252
+ exports2.ShortCircuitExpression = ShortCircuitExpression;
14253
+ exports2.PipelineExpression = PipelineExpression;
14254
+ exports2.PipelineHeadItem = PipelineHeadItem;
14255
+ exports2.PipelineTailItem = PipelineTailItem;
14256
+ exports2.PrimaryExpression = PrimaryExpression;
14257
+ exports2.ParenthesizedExpression = ParenthesizedExpression;
14258
+ exports2.ClassDeclaration = ClassDeclaration;
14259
+ exports2.ClassExpression = ClassExpression;
14260
+ exports2.ClassBinding = ClassBinding;
14261
+ exports2.ClassHeritage = ClassHeritage;
14262
+ exports2.ExtendsClause = ExtendsClause;
14263
+ exports2.ExtendsToken = ExtendsToken;
14264
+ exports2.ExtendsShorthand = ExtendsShorthand;
14265
+ exports2.NotExtendsToken = NotExtendsToken;
14266
+ exports2.OmittedNegation = OmittedNegation;
14267
+ exports2.ExtendsTarget = ExtendsTarget;
14268
+ exports2.ImplementsClause = ImplementsClause;
14269
+ exports2.ImplementsToken = ImplementsToken;
14270
+ exports2.ImplementsShorthand = ImplementsShorthand;
14271
+ exports2.ImplementsTarget = ImplementsTarget;
14272
+ exports2.ClassBody = ClassBody;
14273
+ exports2.NestedClassElements = NestedClassElements;
14274
+ exports2.NestedClassElement = NestedClassElement;
14275
+ exports2.ClassElement = ClassElement;
14276
+ exports2.ClassElementDefinition = ClassElementDefinition;
14277
+ exports2.ClassSignature = ClassSignature;
14278
+ exports2.ClassSignatureBody = ClassSignatureBody;
14279
+ exports2.NestedClassSignatureElements = NestedClassSignatureElements;
14280
+ exports2.NestedClassSignatureElement = NestedClassSignatureElement;
14281
+ exports2.ClassSignatureElement = ClassSignatureElement;
14282
+ exports2.AccessModifier = AccessModifier;
14283
+ exports2.FieldDefinition = FieldDefinition;
14284
+ exports2.ThisLiteral = ThisLiteral;
14285
+ exports2.PrivateThis = PrivateThis;
14286
+ exports2.AtThis = AtThis;
14287
+ exports2.LeftHandSideExpression = LeftHandSideExpression;
14288
+ exports2.CallExpression = CallExpression;
14289
+ exports2.CallExpressionRest = CallExpressionRest;
14290
+ exports2.OptionalShorthand = OptionalShorthand;
14291
+ exports2.OptionalDot = OptionalDot;
14292
+ exports2.NonNullAssertion = NonNullAssertion;
14293
+ exports2.MemberExpression = MemberExpression;
14294
+ exports2.ActualMemberExpression = ActualMemberExpression;
14295
+ exports2.MemberBase = MemberBase;
14296
+ exports2.MemberExpressionRest = MemberExpressionRest;
14297
+ exports2.MemberExpressionRestBody = MemberExpressionRestBody;
14298
+ exports2.MemberBracketContent = MemberBracketContent;
14299
+ exports2.SliceParameters = SliceParameters;
14300
+ exports2.AccessStart = AccessStart;
14301
+ exports2.PropertyAccessModifier = PropertyAccessModifier;
14302
+ exports2.PropertyAccess = PropertyAccess;
14303
+ exports2.PropertyGlob = PropertyGlob;
14304
+ exports2.PropertyBind = PropertyBind;
14305
+ exports2.SuperProperty = SuperProperty;
14306
+ exports2.MetaProperty = MetaProperty;
14307
+ exports2.ReturnValue = ReturnValue;
14308
+ exports2.AfterReturnShorthand = AfterReturnShorthand;
14309
+ exports2.Parameters = Parameters;
14310
+ exports2.ShortArrowParameters = ShortArrowParameters;
14311
+ exports2.ArrowParameters = ArrowParameters;
14312
+ exports2.NonEmptyParameters = NonEmptyParameters;
14313
+ exports2.ParameterList = ParameterList;
14314
+ exports2.NestedParameterList = NestedParameterList;
14315
+ exports2.NestedParameter = NestedParameter;
14316
+ exports2.Parameter = Parameter;
14317
+ exports2.FunctionRestParameter = FunctionRestParameter;
14318
+ exports2.ParameterElement = ParameterElement;
14319
+ exports2.ParameterElementDelimiter = ParameterElementDelimiter;
14320
+ exports2.BindingIdentifier = BindingIdentifier;
14321
+ exports2.NWBindingIdentifier = NWBindingIdentifier;
14322
+ exports2.AtIdentifierRef = AtIdentifierRef;
14323
+ exports2.PinPattern = PinPattern;
14324
+ exports2.BindingPattern = BindingPattern;
14325
+ exports2.ObjectBindingPattern = ObjectBindingPattern;
14326
+ exports2.ObjectBindingPatternContent = ObjectBindingPatternContent;
14327
+ exports2.BindingPropertyList = BindingPropertyList;
14328
+ exports2.ArrayBindingPattern = ArrayBindingPattern;
14329
+ exports2.ArrayBindingPatternContent = ArrayBindingPatternContent;
14330
+ exports2.BindingElementList = BindingElementList;
14331
+ exports2.NestedBindingElementList = NestedBindingElementList;
14332
+ exports2.Elision = Elision;
14333
+ exports2.NestedBindingProperties = NestedBindingProperties;
14334
+ exports2.NestedBindingPropertyList = NestedBindingPropertyList;
14335
+ exports2.BindingProperty = BindingProperty;
14336
+ exports2.BindingRestProperty = BindingRestProperty;
14337
+ exports2.NestedBindingElements = NestedBindingElements;
14338
+ exports2.BindingElement = BindingElement;
14339
+ exports2.BindingRestElement = BindingRestElement;
14340
+ exports2.EmptyBindingPattern = EmptyBindingPattern;
14341
+ exports2.FunctionDeclaration = FunctionDeclaration;
14342
+ exports2.FunctionSignature = FunctionSignature;
14343
+ exports2.FunctionExpression = FunctionExpression;
14344
+ exports2.AmpersandFunctionExpression = AmpersandFunctionExpression;
14345
+ exports2.OperatorDeclaration = OperatorDeclaration;
14346
+ exports2.OperatorSignature = OperatorSignature;
14347
+ exports2.AmpersandBlockRHS = AmpersandBlockRHS;
14348
+ exports2.AmpersandBlockRHSBody = AmpersandBlockRHSBody;
14349
+ exports2.ThinArrowFunction = ThinArrowFunction;
14350
+ exports2.Arrow = Arrow;
14351
+ exports2.ExplicitBlock = ExplicitBlock;
14352
+ exports2.ImplicitNestedBlock = ImplicitNestedBlock;
14353
+ exports2.Block = Block;
14354
+ exports2.BareNestedBlock = BareNestedBlock;
14355
+ exports2.BareBlock = BareBlock;
14356
+ exports2.ThenClause = ThenClause;
14357
+ exports2.BracedThenClause = BracedThenClause;
14358
+ exports2.BracedOrEmptyBlock = BracedOrEmptyBlock;
14359
+ exports2.NoCommaBracedOrEmptyBlock = NoCommaBracedOrEmptyBlock;
14360
+ exports2.NoPostfixBracedOrEmptyBlock = NoPostfixBracedOrEmptyBlock;
14361
+ exports2.EmptyBlock = EmptyBlock;
14362
+ exports2.EmptyBareBlock = EmptyBareBlock;
14363
+ exports2.BracedBlock = BracedBlock;
14364
+ exports2.NoPostfixBracedBlock = NoPostfixBracedBlock;
14365
+ exports2.NoCommaBracedBlock = NoCommaBracedBlock;
14366
+ exports2.NonSingleBracedBlock = NonSingleBracedBlock;
14367
+ exports2.DeclarationOrStatement = DeclarationOrStatement;
14368
+ exports2.SingleLineStatements = SingleLineStatements;
14369
+ exports2.PostfixedSingleLineStatements = PostfixedSingleLineStatements;
14370
+ exports2.PostfixedSingleLineNoCommaStatements = PostfixedSingleLineNoCommaStatements;
14371
+ exports2.BracedContent = BracedContent;
14372
+ exports2.NestedBlockStatements = NestedBlockStatements;
14373
+ exports2.NestedBlockStatement = NestedBlockStatement;
14374
+ exports2.BlockStatementPart = BlockStatementPart;
14375
+ exports2.Literal = Literal;
14376
+ exports2.LiteralContent = LiteralContent;
14377
+ exports2.NullLiteral = NullLiteral;
14378
+ exports2.BooleanLiteral = BooleanLiteral;
14379
+ exports2._BooleanLiteral = _BooleanLiteral;
14380
+ exports2.CoffeeScriptBooleanLiteral = CoffeeScriptBooleanLiteral;
14381
+ exports2.Identifier = Identifier;
14382
+ exports2.IdentifierName = IdentifierName;
14383
+ exports2.IdentifierReference = IdentifierReference;
14384
+ exports2.UpcomingAssignment = UpcomingAssignment;
14385
+ exports2.ArrayLiteral = ArrayLiteral;
14386
+ exports2._ArrayLiteral = _ArrayLiteral;
14387
+ exports2.RangeExpression = RangeExpression;
14388
+ exports2.ArrayLiteralContent = ArrayLiteralContent;
14389
+ exports2.NestedElementList = NestedElementList;
14390
+ exports2.NestedElement = NestedElement;
14391
+ exports2.ArrayElementDelimiter = ArrayElementDelimiter;
14392
+ exports2.ElementListWithIndentedApplicationForbidden = ElementListWithIndentedApplicationForbidden;
14393
+ exports2.ElementList = ElementList;
14394
+ exports2.ElementListRest = ElementListRest;
14395
+ exports2.ArrayElementExpression = ArrayElementExpression;
14396
+ exports2.ObjectLiteral = ObjectLiteral;
14397
+ exports2.BracedObjectLiteral = BracedObjectLiteral;
14398
+ exports2.BracedObjectLiteralContent = BracedObjectLiteralContent;
14399
+ exports2.NestedImplicitObjectLiteral = NestedImplicitObjectLiteral;
14400
+ exports2.NestedImplicitPropertyDefinitions = NestedImplicitPropertyDefinitions;
14401
+ exports2.NestedImplicitPropertyDefinition = NestedImplicitPropertyDefinition;
14402
+ exports2.NestedPropertyDefinitions = NestedPropertyDefinitions;
14403
+ exports2.NestedPropertyDefinition = NestedPropertyDefinition;
14404
+ exports2.InlineObjectLiteral = InlineObjectLiteral;
14405
+ exports2.ImplicitInlineObjectPropertyDelimiter = ImplicitInlineObjectPropertyDelimiter;
14406
+ exports2.ObjectPropertyDelimiter = ObjectPropertyDelimiter;
14407
+ exports2.PropertyDefinition = PropertyDefinition;
14408
+ exports2.NamedProperty = NamedProperty;
14409
+ exports2.SnugNamedProperty = SnugNamedProperty;
14410
+ exports2.PropertyName = PropertyName;
14411
+ exports2.ComputedPropertyName = ComputedPropertyName;
14412
+ exports2.Decorator = Decorator;
14413
+ exports2.Decorators = Decorators;
14414
+ exports2.MethodDefinition = MethodDefinition;
14415
+ exports2.MethodModifier = MethodModifier;
14416
+ exports2.MethodSignature = MethodSignature;
14417
+ exports2.ClassElementName = ClassElementName;
14418
+ exports2.PrivateIdentifier = PrivateIdentifier;
14419
+ exports2.WAssignmentOp = WAssignmentOp;
14420
+ exports2.AssignmentOp = AssignmentOp;
14421
+ exports2.OperatorAssignmentOp = OperatorAssignmentOp;
14422
+ exports2.AssignmentOpSymbol = AssignmentOpSymbol;
14423
+ exports2.CoffeeWordAssignmentOp = CoffeeWordAssignmentOp;
14424
+ exports2.NotDedentedBinaryOp = NotDedentedBinaryOp;
14425
+ exports2.IdentifierBinaryOp = IdentifierBinaryOp;
14426
+ exports2.BinaryOp = BinaryOp;
14427
+ exports2._BinaryOp = _BinaryOp;
14428
+ exports2.BinaryOpSymbol = BinaryOpSymbol;
14429
+ exports2.CoffeeOfOp = CoffeeOfOp;
14430
+ exports2.NotOp = NotOp;
14431
+ exports2.Xor = Xor;
14432
+ exports2.Xnor = Xnor;
14433
+ exports2.UnaryOp = UnaryOp;
14434
+ exports2.AwaitOp = AwaitOp;
14435
+ exports2.ModuleItem = ModuleItem;
14436
+ exports2.StatementListItem = StatementListItem;
14437
+ exports2.PostfixedStatement = PostfixedStatement;
14438
+ exports2.NoCommaStatementListItem = NoCommaStatementListItem;
14439
+ exports2.PostfixedNoCommaStatement = PostfixedNoCommaStatement;
14440
+ exports2.PostfixedExpression = PostfixedExpression;
14441
+ exports2.PostfixedCommaExpression = PostfixedCommaExpression;
14442
+ exports2.NonPipelinePostfixedExpression = NonPipelinePostfixedExpression;
14443
+ exports2.PostfixStatement = PostfixStatement;
14444
+ exports2._PostfixStatement = _PostfixStatement;
14445
+ exports2.Statement = Statement;
14446
+ exports2.NoCommaStatement = NoCommaStatement;
14447
+ exports2.EmptyStatement = EmptyStatement;
14448
+ exports2.BlockStatement = BlockStatement;
14449
+ exports2.LabelledStatement = LabelledStatement;
14450
+ exports2.Label = Label;
14451
+ exports2.LabelledItem = LabelledItem;
14452
+ exports2.IfStatement = IfStatement;
14453
+ exports2.ElseClause = ElseClause;
14454
+ exports2.IfClause = IfClause;
14455
+ exports2.UnlessClause = UnlessClause;
14456
+ exports2.IfExpression = IfExpression;
14457
+ exports2.UnlessExpression = UnlessExpression;
14458
+ exports2.ElseExpressionClause = ElseExpressionClause;
14459
+ exports2.ExpressionBlock = ExpressionBlock;
14460
+ exports2.ElseExpressionBlock = ElseExpressionBlock;
14461
+ exports2.NestedBlockExpressions = NestedBlockExpressions;
14462
+ exports2.NestedBlockExpression = NestedBlockExpression;
14463
+ exports2.BlockExpressionPart = BlockExpressionPart;
14464
+ exports2.IterationStatement = IterationStatement;
14465
+ exports2._IterationStatement = _IterationStatement;
14466
+ exports2.IterationExpression = IterationExpression;
14467
+ exports2.LoopStatement = LoopStatement;
14468
+ exports2.LoopClause = LoopClause;
14469
+ exports2.DoWhileStatement = DoWhileStatement;
14470
+ exports2.DoStatement = DoStatement;
14471
+ exports2.WhileStatement = WhileStatement;
14472
+ exports2.WhileClause = WhileClause;
14473
+ exports2.ForStatement = ForStatement;
14474
+ exports2.ForClause = ForClause;
14475
+ exports2.ForStatementControl = ForStatementControl;
14476
+ exports2.WhenCondition = WhenCondition;
14477
+ exports2.CoffeeForStatementParameters = CoffeeForStatementParameters;
14478
+ exports2.CoffeeForIndex = CoffeeForIndex;
14479
+ exports2.CoffeeForDeclaration = CoffeeForDeclaration;
14480
+ exports2.ForStatementParameters = ForStatementParameters;
14481
+ exports2.ForRangeParameters = ForRangeParameters;
14482
+ exports2.ForInOfDeclaration = ForInOfDeclaration;
14483
+ exports2.ForDeclaration = ForDeclaration;
14484
+ exports2.ForBinding = ForBinding;
14485
+ exports2.SwitchStatement = SwitchStatement;
14486
+ exports2.EmptyCondition = EmptyCondition;
14487
+ exports2.SwitchExpression = SwitchExpression;
14488
+ exports2.CaseBlock = CaseBlock;
14489
+ exports2.NestedCaseClauses = NestedCaseClauses;
14490
+ exports2.NestedCaseClause = NestedCaseClause;
14491
+ exports2.CaseClause = CaseClause;
14492
+ exports2.PatternExpressionList = PatternExpressionList;
14493
+ exports2.ConditionFragment = ConditionFragment;
14494
+ exports2.CaseExpressionList = CaseExpressionList;
14495
+ exports2.CaseExpression = CaseExpression;
14496
+ exports2.ImpliedColon = ImpliedColon;
14497
+ exports2.IgnoreColon = IgnoreColon;
14498
+ exports2.TryStatement = TryStatement;
14499
+ exports2.TryExpression = TryExpression;
14500
+ exports2.CatchClause = CatchClause;
14501
+ exports2.CatchBind = CatchBind;
14502
+ exports2.FinallyClause = FinallyClause;
14503
+ exports2.CatchParameter = CatchParameter;
14504
+ exports2.Condition = Condition;
14505
+ exports2.DeclarationCondition = DeclarationCondition;
14506
+ exports2.ExpressionWithIndentedApplicationForbidden = ExpressionWithIndentedApplicationForbidden;
14507
+ exports2.SingleLineExpressionWithIndentedApplicationForbidden = SingleLineExpressionWithIndentedApplicationForbidden;
14508
+ exports2.ExpressionWithObjectApplicationForbidden = ExpressionWithObjectApplicationForbidden;
14509
+ exports2.LeftHandSideExpressionWithObjectApplicationForbidden = LeftHandSideExpressionWithObjectApplicationForbidden;
14510
+ exports2.ForbidClassImplicitCall = ForbidClassImplicitCall;
14511
+ exports2.AllowClassImplicitCall = AllowClassImplicitCall;
14512
+ exports2.RestoreClassImplicitCall = RestoreClassImplicitCall;
14513
+ exports2.ClassImplicitCallForbidden = ClassImplicitCallForbidden;
14514
+ exports2.ForbidBracedApplication = ForbidBracedApplication;
14515
+ exports2.AllowBracedApplication = AllowBracedApplication;
14516
+ exports2.RestoreBracedApplication = RestoreBracedApplication;
14517
+ exports2.BracedApplicationAllowed = BracedApplicationAllowed;
14518
+ exports2.ForbidIndentedApplication = ForbidIndentedApplication;
14519
+ exports2.AllowIndentedApplication = AllowIndentedApplication;
14520
+ exports2.RestoreIndentedApplication = RestoreIndentedApplication;
14521
+ exports2.IndentedApplicationAllowed = IndentedApplicationAllowed;
14522
+ exports2.ForbidTrailingMemberProperty = ForbidTrailingMemberProperty;
14523
+ exports2.AllowTrailingMemberProperty = AllowTrailingMemberProperty;
14524
+ exports2.RestoreTrailingMemberProperty = RestoreTrailingMemberProperty;
14525
+ exports2.TrailingMemberPropertyAllowed = TrailingMemberPropertyAllowed;
14526
+ exports2.AllowNewlineBinaryOp = AllowNewlineBinaryOp;
14527
+ exports2.ForbidNewlineBinaryOp = ForbidNewlineBinaryOp;
14528
+ exports2.RestoreNewlineBinaryOp = RestoreNewlineBinaryOp;
14529
+ exports2.NewlineBinaryOpAllowed = NewlineBinaryOpAllowed;
14530
+ exports2.AllowAll = AllowAll;
14531
+ exports2.RestoreAll = RestoreAll;
14532
+ exports2.CommaExpressionStatement = CommaExpressionStatement;
14533
+ exports2.ExpressionStatement = ExpressionStatement;
14534
+ exports2.KeywordStatement = KeywordStatement;
14535
+ exports2.DebuggerStatement = DebuggerStatement;
14536
+ exports2.ThrowStatement = ThrowStatement;
14537
+ exports2.Break = Break;
14538
+ exports2.Continue = Continue;
14539
+ exports2.Debugger = Debugger;
14540
+ exports2.DebuggerExpression = DebuggerExpression;
14541
+ exports2.ThrowExpression = ThrowExpression;
14542
+ exports2.MaybeNestedExpression = MaybeNestedExpression;
14543
+ exports2.ImportDeclaration = ImportDeclaration;
14544
+ exports2.ImpliedImport = ImpliedImport;
14545
+ exports2.ImportClause = ImportClause;
14546
+ exports2.NameSpaceImport = NameSpaceImport;
14547
+ exports2.NamedImports = NamedImports;
14548
+ exports2.FromClause = FromClause;
14549
+ exports2.ImportAssertion = ImportAssertion;
14550
+ exports2.TypeAndImportSpecifier = TypeAndImportSpecifier;
14551
+ exports2.ImportSpecifier = ImportSpecifier;
14552
+ exports2.ImportAsToken = ImportAsToken;
14553
+ exports2.ModuleExportName = ModuleExportName;
14554
+ exports2.ModuleSpecifier = ModuleSpecifier;
14555
+ exports2.UnprocessedModuleSpecifier = UnprocessedModuleSpecifier;
14556
+ exports2.UnquotedSpecifier = UnquotedSpecifier;
14557
+ exports2.ImportedBinding = ImportedBinding;
14558
+ exports2.ExportDeclaration = ExportDeclaration;
14559
+ exports2.ExportVarDec = ExportVarDec;
14560
+ exports2.ExportFromClause = ExportFromClause;
14561
+ exports2.TypeAndNamedExports = TypeAndNamedExports;
14562
+ exports2.NamedExports = NamedExports;
14563
+ exports2.ExportSpecifier = ExportSpecifier;
14564
+ exports2.ImplicitExportSpecifier = ImplicitExportSpecifier;
14565
+ exports2.Declaration = Declaration;
14566
+ exports2.HoistableDeclaration = HoistableDeclaration;
14567
+ exports2.LexicalDeclaration = LexicalDeclaration;
14568
+ exports2.ConstAssignment = ConstAssignment;
14569
+ exports2.LetAssignment = LetAssignment;
14570
+ exports2.LexicalBinding = LexicalBinding;
14571
+ exports2.Initializer = Initializer;
14572
+ exports2.VariableStatement = VariableStatement;
14573
+ exports2.VariableDeclarationList = VariableDeclarationList;
14574
+ exports2.NumericLiteral = NumericLiteral;
14575
+ exports2.NumericLiteralKind = NumericLiteralKind;
14576
+ exports2.DecimalBigIntegerLiteral = DecimalBigIntegerLiteral;
14577
+ exports2.DecimalLiteral = DecimalLiteral;
14578
+ exports2.ExponentPart = ExponentPart;
14579
+ exports2.BinaryIntegerLiteral = BinaryIntegerLiteral;
14580
+ exports2.OctalIntegerLiteral = OctalIntegerLiteral;
14581
+ exports2.HexIntegerLiteral = HexIntegerLiteral;
14582
+ exports2.IntegerLiteral = IntegerLiteral;
14583
+ exports2.IntegerLiteralKind = IntegerLiteralKind;
14584
+ exports2.DecimalIntegerLiteral = DecimalIntegerLiteral;
14585
+ exports2.StringLiteral = StringLiteral;
14586
+ exports2.DoubleStringCharacters = DoubleStringCharacters;
14587
+ exports2.SingleStringCharacters = SingleStringCharacters;
14588
+ exports2.TripleDoubleStringCharacters = TripleDoubleStringCharacters;
14589
+ exports2.TripleSingleStringCharacters = TripleSingleStringCharacters;
14590
+ exports2.CoffeeStringSubstitution = CoffeeStringSubstitution;
14591
+ exports2.CoffeeInterpolatedDoubleQuotedString = CoffeeInterpolatedDoubleQuotedString;
14592
+ exports2.CoffeeDoubleQuotedStringCharacters = CoffeeDoubleQuotedStringCharacters;
14593
+ exports2.RegularExpressionLiteral = RegularExpressionLiteral;
14594
+ exports2.RegularExpressionClass = RegularExpressionClass;
14595
+ exports2.RegularExpressionClassCharacters = RegularExpressionClassCharacters;
14596
+ exports2.HeregexLiteral = HeregexLiteral;
14597
+ exports2.HeregexBody = HeregexBody;
14598
+ exports2.HeregexPart = HeregexPart;
14599
+ exports2.HeregexComment = HeregexComment;
14600
+ exports2.RegularExpressionBody = RegularExpressionBody;
14601
+ exports2.RegExpPart = RegExpPart;
14602
+ exports2.RegExpCharacter = RegExpCharacter;
14603
+ exports2.RegularExpressionFlags = RegularExpressionFlags;
14604
+ exports2.TemplateLiteral = TemplateLiteral;
14605
+ exports2._TemplateLiteral = _TemplateLiteral;
14606
+ exports2.TemplateSubstitution = TemplateSubstitution;
14607
+ exports2.TemplateCharacters = TemplateCharacters;
14608
+ exports2.TemplateBlockCharacters = TemplateBlockCharacters;
14609
+ exports2.ReservedWord = ReservedWord;
14610
+ exports2.Comment = Comment;
14611
+ exports2._Comment = _Comment;
14612
+ exports2.SingleLineComment = SingleLineComment;
14613
+ exports2.JSSingleLineComment = JSSingleLineComment;
14614
+ exports2.MultiLineComment = MultiLineComment;
14615
+ exports2.JSMultiLineComment = JSMultiLineComment;
14616
+ exports2.CoffeeSingleLineComment = CoffeeSingleLineComment;
14617
+ exports2.CoffeeMultiLineComment = CoffeeMultiLineComment;
14618
+ exports2.CoffeeHereCommentStart = CoffeeHereCommentStart;
14619
+ exports2.InlineComment = InlineComment;
14620
+ exports2.RestOfLine = RestOfLine;
14621
+ exports2.TrailingComment = TrailingComment;
14622
+ exports2._ = _;
14623
+ exports2.NonNewlineWhitespace = NonNewlineWhitespace;
14624
+ exports2.Trimmed_ = Trimmed_;
14625
+ exports2.__ = __;
14626
+ exports2.Whitespace = Whitespace;
14627
+ exports2.ExpressionDelimiter = ExpressionDelimiter;
14628
+ exports2.SimpleStatementDelimiter = SimpleStatementDelimiter;
14629
+ exports2.StatementDelimiter = StatementDelimiter;
14630
+ exports2.SemicolonDelimiter = SemicolonDelimiter;
14631
+ exports2.NonIdContinue = NonIdContinue;
14632
+ exports2.Loc = Loc;
14633
+ exports2.Abstract = Abstract;
14634
+ exports2.Ampersand = Ampersand;
14635
+ exports2.As = As;
14636
+ exports2.At = At;
14637
+ exports2.AtAt = AtAt;
14638
+ exports2.Async = Async;
14639
+ exports2.Await = Await;
14640
+ exports2.Backtick = Backtick;
14641
+ exports2.By = By;
14642
+ exports2.Caret = Caret;
14643
+ exports2.Case = Case;
14644
+ exports2.Catch = Catch;
14645
+ exports2.Class = Class;
14646
+ exports2.CloseAngleBracket = CloseAngleBracket;
14647
+ exports2.CloseBrace = CloseBrace;
14648
+ exports2.CloseBracket = CloseBracket;
14649
+ exports2.CloseParen = CloseParen;
14650
+ exports2.CoffeeSubstitutionStart = CoffeeSubstitutionStart;
14651
+ exports2.Colon = Colon;
14652
+ exports2.Comma = Comma;
14653
+ exports2.ConstructorShorthand = ConstructorShorthand;
14654
+ exports2.Declare = Declare;
14655
+ exports2.Default = Default;
14656
+ exports2.Delete = Delete;
14657
+ exports2.Do = Do;
14658
+ exports2.Dot = Dot;
14659
+ exports2.DotDot = DotDot;
14660
+ exports2.DotDotDot = DotDotDot;
14661
+ exports2.DoubleColon = DoubleColon;
14662
+ exports2.DoubleQuote = DoubleQuote;
14663
+ exports2.Each = Each;
14664
+ exports2.Else = Else;
14665
+ exports2.Equals = Equals;
14666
+ exports2.ExclamationPoint = ExclamationPoint;
14667
+ exports2.Export = Export;
14668
+ exports2.Extends = Extends;
14669
+ exports2.Finally = Finally;
14670
+ exports2.For = For;
14671
+ exports2.From = From;
14672
+ exports2.Function = Function;
14673
+ exports2.GetOrSet = GetOrSet;
14674
+ exports2.Hash = Hash;
14675
+ exports2.If = If;
14676
+ exports2.Import = Import;
14677
+ exports2.In = In;
14678
+ exports2.LetOrConst = LetOrConst;
14679
+ exports2.Const = Const;
14680
+ exports2.Is = Is;
14681
+ exports2.LetOrConstOrVar = LetOrConstOrVar;
14682
+ exports2.Loop = Loop;
14683
+ exports2.New = New;
14684
+ exports2.Not = Not;
14685
+ exports2.Of = Of;
14686
+ exports2.OpenAngleBracket = OpenAngleBracket;
14687
+ exports2.OpenBrace = OpenBrace;
14688
+ exports2.OpenBracket = OpenBracket;
14689
+ exports2.OpenParen = OpenParen;
14690
+ exports2.Operator = Operator;
14691
+ exports2.Own = Own;
14692
+ exports2.Public = Public;
14693
+ exports2.Private = Private;
14694
+ exports2.Protected = Protected;
14695
+ exports2.Pipe = Pipe;
14696
+ exports2.QuestionMark = QuestionMark;
14697
+ exports2.Readonly = Readonly;
14698
+ exports2.Return = Return;
14699
+ exports2.Satisfies = Satisfies;
14700
+ exports2.Semicolon = Semicolon;
14701
+ exports2.SingleQuote = SingleQuote;
14702
+ exports2.Star = Star;
14703
+ exports2.Static = Static;
14704
+ exports2.SubstitutionStart = SubstitutionStart;
14705
+ exports2.Super = Super;
14706
+ exports2.Switch = Switch;
14707
+ exports2.Target = Target;
14708
+ exports2.Then = Then;
14709
+ exports2.This = This;
14710
+ exports2.Throw = Throw;
14711
+ exports2.TripleDoubleQuote = TripleDoubleQuote;
14712
+ exports2.TripleSingleQuote = TripleSingleQuote;
14713
+ exports2.TripleSlash = TripleSlash;
14714
+ exports2.TripleTick = TripleTick;
14715
+ exports2.Try = Try;
14716
+ exports2.Typeof = Typeof;
14717
+ exports2.Unless = Unless;
14718
+ exports2.Until = Until;
14719
+ exports2.Using = Using;
14720
+ exports2.Var = Var;
14721
+ exports2.Void = Void;
14722
+ exports2.When = When;
14723
+ exports2.While = While;
14724
+ exports2.Yield = Yield;
14725
+ exports2.JSXImplicitFragment = JSXImplicitFragment;
14726
+ exports2.JSXTag = JSXTag;
14727
+ exports2._JSXTag = _JSXTag;
14728
+ exports2.JSXElement = JSXElement;
14729
+ exports2.JSXSelfClosingElement = JSXSelfClosingElement;
14730
+ exports2.PushJSXOpeningElement = PushJSXOpeningElement;
14731
+ exports2.PopJSXStack = PopJSXStack;
14732
+ exports2.JSXOpeningElement = JSXOpeningElement;
14733
+ exports2.JSXOptionalClosingElement = JSXOptionalClosingElement;
14734
+ exports2.JSXClosingElement = JSXClosingElement;
14735
+ exports2.JSXFragment = JSXFragment;
14736
+ exports2.PushJSXOpeningFragment = PushJSXOpeningFragment;
14737
+ exports2.JSXOptionalClosingFragment = JSXOptionalClosingFragment;
14738
+ exports2.JSXClosingFragment = JSXClosingFragment;
14739
+ exports2.JSXElementName = JSXElementName;
14740
+ exports2.JSXIdentifierName = JSXIdentifierName;
14741
+ exports2.JSXAttributes = JSXAttributes;
14742
+ exports2.JSXAttribute = JSXAttribute;
14743
+ exports2.JSXAttributeSpace = JSXAttributeSpace;
14744
+ exports2.JSXShorthandString = JSXShorthandString;
14745
+ exports2.JSXAttributeName = JSXAttributeName;
14746
+ exports2.JSXAttributeInitializer = JSXAttributeInitializer;
14747
+ exports2.JSXAttributeValue = JSXAttributeValue;
14748
+ exports2.InlineJSXAttributeValue = InlineJSXAttributeValue;
14749
+ exports2.InlineJSXBinaryOpRHS = InlineJSXBinaryOpRHS;
14750
+ exports2.InlineJSXUnaryExpression = InlineJSXUnaryExpression;
14751
+ exports2.InlineJSXUnaryOp = InlineJSXUnaryOp;
14752
+ exports2.InlineJSXUnaryPostfix = InlineJSXUnaryPostfix;
14753
+ exports2.InlineJSXUpdateExpression = InlineJSXUpdateExpression;
14754
+ exports2.InlineJSXCallExpression = InlineJSXCallExpression;
14755
+ exports2.InlineJSXCallExpressionRest = InlineJSXCallExpressionRest;
14756
+ exports2.InlineJSXMemberExpression = InlineJSXMemberExpression;
14757
+ exports2.InlineJSXMemberExpressionRest = InlineJSXMemberExpressionRest;
14758
+ exports2.InlineJSXPrimaryExpression = InlineJSXPrimaryExpression;
14759
+ exports2.JSXMixedChildren = JSXMixedChildren;
14760
+ exports2.JSXChildren = JSXChildren;
14761
+ exports2.JSXNestedChildren = JSXNestedChildren;
14762
+ exports2.JSXEOS = JSXEOS;
14763
+ exports2.JSXNested = JSXNested;
14764
+ exports2.JSXChild = JSXChild;
14765
+ exports2.JSXComment = JSXComment;
14766
+ exports2.JSXCommentContent = JSXCommentContent;
14767
+ exports2.JSXText = JSXText;
14768
+ exports2.JSXChildExpression = JSXChildExpression;
14769
+ exports2.IndentedJSXChildExpression = IndentedJSXChildExpression;
14770
+ exports2.NestedJSXChildExpression = NestedJSXChildExpression;
14771
+ exports2.UsingDeclaration = UsingDeclaration;
14772
+ exports2.UsingBinding = UsingBinding;
14773
+ exports2.UsingJSModeError = UsingJSModeError;
14774
+ exports2.TypeDeclaration = TypeDeclaration;
14775
+ exports2.TypeDeclarationRest = TypeDeclarationRest;
14776
+ exports2.OptionalEquals = OptionalEquals;
14777
+ exports2.TypeLexicalDeclaration = TypeLexicalDeclaration;
14778
+ exports2.TypeDeclarationBinding = TypeDeclarationBinding;
14779
+ exports2.InterfaceExtendsClause = InterfaceExtendsClause;
14780
+ exports2.InterfaceExtendsTarget = InterfaceExtendsTarget;
14781
+ exports2.TypeKeyword = TypeKeyword;
14782
+ exports2.Enum = Enum;
14783
+ exports2.Interface = Interface;
14784
+ exports2.Global = Global;
14785
+ exports2.Module = Module;
14786
+ exports2.Namespace = Namespace;
14787
+ exports2.InterfaceBlock = InterfaceBlock;
14788
+ exports2.NestedInterfaceProperties = NestedInterfaceProperties;
14789
+ exports2.NestedInterfaceProperty = NestedInterfaceProperty;
14790
+ exports2.InterfaceProperty = InterfaceProperty;
14791
+ exports2.BasicInterfaceProperty = BasicInterfaceProperty;
14792
+ exports2.InterfacePropertyDelimiter = InterfacePropertyDelimiter;
14793
+ exports2.ModuleBlock = ModuleBlock;
14794
+ exports2.NestedModuleItems = NestedModuleItems;
14795
+ exports2.NestedModuleItem = NestedModuleItem;
14796
+ exports2.DeclareBlock = DeclareBlock;
14797
+ exports2.NestedDeclareElements = NestedDeclareElements;
14798
+ exports2.NestedDeclareElement = NestedDeclareElement;
14799
+ exports2.DeclareElement = DeclareElement;
14800
+ exports2.EnumDeclaration = EnumDeclaration;
14801
+ exports2.EnumBlock = EnumBlock;
14802
+ exports2.NestedEnumProperties = NestedEnumProperties;
14803
+ exports2.NestedEnumProperty = NestedEnumProperty;
14804
+ exports2.EnumProperty = EnumProperty;
14805
+ exports2.TypeProperty = TypeProperty;
14806
+ exports2.TypeIndexSignature = TypeIndexSignature;
14807
+ exports2.TypeIndex = TypeIndex;
14808
+ exports2.TypeSuffix = TypeSuffix;
14809
+ exports2.MaybeIndentedType = MaybeIndentedType;
14810
+ exports2.ReturnTypeSuffix = ReturnTypeSuffix;
14811
+ exports2.ReturnType = ReturnType;
14812
+ exports2.TypePredicate = TypePredicate;
14813
+ exports2.Type = Type;
14814
+ exports2.TypeBinary = TypeBinary;
14815
+ exports2.TypeUnary = TypeUnary;
14816
+ exports2.TypeUnarySuffix = TypeUnarySuffix;
14817
+ exports2.TypeUnaryOp = TypeUnaryOp;
14818
+ exports2.TypeIndexedAccess = TypeIndexedAccess;
14819
+ exports2.UnknownAlias = UnknownAlias;
14820
+ exports2.TypePrimary = TypePrimary;
14821
+ exports2.ImportType = ImportType;
14822
+ exports2.TypeTuple = TypeTuple;
14823
+ exports2.TypeList = TypeList;
14824
+ exports2.TypeElement = TypeElement;
14825
+ exports2.NestedTypeList = NestedTypeList;
14826
+ exports2.NestedType = NestedType;
14827
+ exports2.TypeConditional = TypeConditional;
14828
+ exports2.TypeCondition = TypeCondition;
14829
+ exports2.TypeIfThenElse = TypeIfThenElse;
14830
+ exports2.TypeElse = TypeElse;
14831
+ exports2.TypeBlock = TypeBlock;
14832
+ exports2.TypeTemplateSubstitution = TypeTemplateSubstitution;
14833
+ exports2.TypeTemplateLiteral = TypeTemplateLiteral;
14834
+ exports2.CoffeeStringTypeSubstitution = CoffeeStringTypeSubstitution;
14835
+ exports2.CoffeeInterpolatedDoubleQuotedTypeLiteral = CoffeeInterpolatedDoubleQuotedTypeLiteral;
14836
+ exports2.TypeLiteral = TypeLiteral;
14837
+ exports2.InlineInterfaceLiteral = InlineInterfaceLiteral;
14838
+ exports2.InlineBasicInterfaceProperty = InlineBasicInterfaceProperty;
14839
+ exports2.InlineInterfacePropertyDelimiter = InlineInterfacePropertyDelimiter;
14840
+ exports2.TypeBinaryOp = TypeBinaryOp;
14841
+ exports2.FunctionType = FunctionType;
14842
+ exports2.TypeArrowFunction = TypeArrowFunction;
14843
+ exports2.TypeArguments = TypeArguments;
14844
+ exports2.TypeArgument = TypeArgument;
14845
+ exports2.TypeArgumentDelimiter = TypeArgumentDelimiter;
14846
+ exports2.TypeParameters = TypeParameters;
14847
+ exports2.TypeParameter = TypeParameter;
14848
+ exports2.TypeConstraint = TypeConstraint;
14849
+ exports2.TypeInitializer = TypeInitializer;
14850
+ exports2.TypeParameterDelimiter = TypeParameterDelimiter;
14851
+ exports2.ThisType = ThisType;
14852
+ exports2.Shebang = Shebang;
14853
+ exports2.CivetPrologue = CivetPrologue;
14854
+ exports2.CivetPrologueContent = CivetPrologueContent;
14855
+ exports2.CivetOption = CivetOption;
14856
+ exports2.UnknownPrologue = UnknownPrologue;
14857
+ exports2.TripleSlashDirective = TripleSlashDirective;
14858
+ exports2.DirectivePrologue = DirectivePrologue;
14859
+ exports2.PrologueString = PrologueString;
14860
+ exports2.EOS = EOS;
14861
+ exports2.EOL = EOL;
14862
+ exports2.DebugHere = DebugHere;
14863
+ exports2.InsertColon = InsertColon;
14864
+ exports2.InsertSemicolon = InsertSemicolon;
14865
+ exports2.InsertOpenParen = InsertOpenParen;
14866
+ exports2.InsertCloseParen = InsertCloseParen;
14867
+ exports2.InsertOpenBrace = InsertOpenBrace;
14868
+ exports2.InsertInlineOpenBrace = InsertInlineOpenBrace;
14869
+ exports2.InsertCloseBrace = InsertCloseBrace;
14870
+ exports2.InsertOpenBracket = InsertOpenBracket;
14871
+ exports2.InsertCloseBracket = InsertCloseBracket;
14872
+ exports2.InsertComma = InsertComma;
14873
+ exports2.InsertSpaceEquals = InsertSpaceEquals;
14874
+ exports2.InsertConst = InsertConst;
14875
+ exports2.InsertLet = InsertLet;
14876
+ exports2.InsertReadonly = InsertReadonly;
14877
+ exports2.InsertNewline = InsertNewline;
14878
+ exports2.InsertIndent = InsertIndent;
14879
+ exports2.InsertSpace = InsertSpace;
14880
+ exports2.InsertDot = InsertDot;
14881
+ exports2.InsertBreak = InsertBreak;
14882
+ exports2.InsertVar = InsertVar;
14883
+ exports2.CoffeeBinaryExistentialEnabled = CoffeeBinaryExistentialEnabled;
14884
+ exports2.CoffeeBooleansEnabled = CoffeeBooleansEnabled;
14885
+ exports2.CoffeeClassesEnabled = CoffeeClassesEnabled;
14886
+ exports2.CoffeeCommentEnabled = CoffeeCommentEnabled;
14887
+ exports2.CoffeeDoEnabled = CoffeeDoEnabled;
14888
+ exports2.CoffeeForLoopsEnabled = CoffeeForLoopsEnabled;
14889
+ exports2.CoffeeInterpolationEnabled = CoffeeInterpolationEnabled;
14890
+ exports2.CoffeeIsntEnabled = CoffeeIsntEnabled;
14891
+ exports2.CoffeeJSXEnabled = CoffeeJSXEnabled;
14892
+ exports2.CoffeeLineContinuationEnabled = CoffeeLineContinuationEnabled;
14893
+ exports2.CoffeeNotEnabled = CoffeeNotEnabled;
14894
+ exports2.CoffeeOfEnabled = CoffeeOfEnabled;
14895
+ exports2.CoffeePrototypeEnabled = CoffeePrototypeEnabled;
14896
+ exports2.ObjectIsEnabled = ObjectIsEnabled;
14897
+ exports2.Reset = Reset;
14898
+ exports2.Init = Init;
14899
+ exports2.Indent = Indent;
14900
+ exports2.TrackIndented = TrackIndented;
14901
+ exports2.PushIndent = PushIndent;
14902
+ exports2.PopIndent = PopIndent;
14903
+ exports2.Nested = Nested;
14904
+ exports2.IndentedFurther = IndentedFurther;
14905
+ exports2.IndentedAtLeast = IndentedAtLeast;
14906
+ exports2.NotDedented = NotDedented;
14907
+ exports2.Dedented = Dedented;
14683
14908
  var module2 = {};
14684
14909
  }
14685
14910
  });
@@ -14721,7 +14946,7 @@ function gen(node, options) {
14721
14946
  return "";
14722
14947
  }
14723
14948
  if (node.type === "Error") {
14724
- options.errors ?? (options.errors = []);
14949
+ options.errors ??= [];
14725
14950
  options.errors.push(node);
14726
14951
  return "";
14727
14952
  }
@@ -15118,9 +15343,7 @@ remapPosition = function(position, sourcemapLines) {
15118
15343
 
15119
15344
  // source/state-cache.civet
15120
15345
  var StateCache = class {
15121
- constructor() {
15122
- __publicField(this, "cache", /* @__PURE__ */ new Map());
15123
- }
15346
+ cache = /* @__PURE__ */ new Map();
15124
15347
  get(key) {
15125
15348
  return this.cache.get(key[0])?.get(key[1])?.get(key[2])?.get(key[3]);
15126
15349
  }
@@ -15206,7 +15429,7 @@ function compile(src, options) {
15206
15429
  } else {
15207
15430
  options = { ...options };
15208
15431
  }
15209
- options.parseOptions ?? (options.parseOptions = {});
15432
+ options.parseOptions ??= {};
15210
15433
  const filename = options.filename || "unknown";
15211
15434
  if (filename.endsWith(".coffee") && !/^(#![^\r\n]*(\r\n|\n|\r))?\s*['"]civet/.test(src)) {
15212
15435
  options.parseOptions.coffeeCompat = true;