@restura/core 0.1.0-alpha.6 → 0.1.0-alpha.7

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.
@@ -0,0 +1,3016 @@
1
+ import {
2
+ __spreadProps,
3
+ __spreadValues
4
+ } from "./chunk-TL4KRYOF.mjs";
5
+
6
+ // ../../node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/plugins/acorn.mjs
7
+ var di = Object.create;
8
+ var we = Object.defineProperty;
9
+ var mi = Object.getOwnPropertyDescriptor;
10
+ var xi = Object.getOwnPropertyNames;
11
+ var yi = Object.getPrototypeOf;
12
+ var gi = Object.prototype.hasOwnProperty;
13
+ var Ze = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports);
14
+ var vi = (e, t) => {
15
+ for (var i in t) we(e, i, { get: t[i], enumerable: true });
16
+ };
17
+ var bi = (e, t, i, s) => {
18
+ if (t && typeof t == "object" || typeof t == "function") for (let r of xi(t)) !gi.call(e, r) && r !== i && we(e, r, { get: () => t[r], enumerable: !(s = mi(t, r)) || s.enumerable });
19
+ return e;
20
+ };
21
+ var et = (e, t, i) => (i = e != null ? di(yi(e)) : {}, bi(t || !e || !e.__esModule ? we(i, "default", { value: e, enumerable: true }) : i, e));
22
+ var Jt = Ze((Hs, qt) => {
23
+ qt.exports = {};
24
+ });
25
+ var Ge = Ze((zs, Je) => {
26
+ "use strict";
27
+ var rs = Jt(), as = /^[\da-fA-F]+$/, ns = /^\d+$/, Gt = /* @__PURE__ */ new WeakMap();
28
+ function Kt(e) {
29
+ e = e.Parser.acorn || e;
30
+ let t = Gt.get(e);
31
+ if (!t) {
32
+ let i = e.tokTypes, s = e.TokContext, r = e.TokenType, n = new s("<tag", false), o = new s("</tag", false), u = new s("<tag>...</tag>", true, true), p = { tc_oTag: n, tc_cTag: o, tc_expr: u }, d = { jsxName: new r("jsxName"), jsxText: new r("jsxText", { beforeExpr: true }), jsxTagStart: new r("jsxTagStart", { startsExpr: true }), jsxTagEnd: new r("jsxTagEnd") };
33
+ d.jsxTagStart.updateContext = function() {
34
+ this.context.push(u), this.context.push(n), this.exprAllowed = false;
35
+ }, d.jsxTagEnd.updateContext = function(l) {
36
+ let C = this.context.pop();
37
+ C === n && l === i.slash || C === o ? (this.context.pop(), this.exprAllowed = this.curContext() === u) : this.exprAllowed = true;
38
+ }, t = { tokContexts: p, tokTypes: d }, Gt.set(e, t);
39
+ }
40
+ return t;
41
+ }
42
+ function ne(e) {
43
+ if (!e) return e;
44
+ if (e.type === "JSXIdentifier") return e.name;
45
+ if (e.type === "JSXNamespacedName") return e.namespace.name + ":" + e.name.name;
46
+ if (e.type === "JSXMemberExpression") return ne(e.object) + "." + ne(e.property);
47
+ }
48
+ Je.exports = function(e) {
49
+ return e = e || {}, function(t) {
50
+ return os({ allowNamespaces: e.allowNamespaces !== false, allowNamespacedObjects: !!e.allowNamespacedObjects }, t);
51
+ };
52
+ };
53
+ Object.defineProperty(Je.exports, "tokTypes", { get: function() {
54
+ return Kt(void 0).tokTypes;
55
+ }, configurable: true, enumerable: true });
56
+ function os(e, t) {
57
+ let i = t.acorn || void 0, s = Kt(i), r = i.tokTypes, n = s.tokTypes, o = i.tokContexts, u = s.tokContexts.tc_oTag, p = s.tokContexts.tc_cTag, d = s.tokContexts.tc_expr, l = i.isNewLine, C = i.isIdentifierStart, B = i.isIdentifierChar;
58
+ return class extends t {
59
+ static get acornJsx() {
60
+ return s;
61
+ }
62
+ jsx_readToken() {
63
+ let h = "", m = this.pos;
64
+ for (; ; ) {
65
+ this.pos >= this.input.length && this.raise(this.start, "Unterminated JSX contents");
66
+ let x = this.input.charCodeAt(this.pos);
67
+ switch (x) {
68
+ case 60:
69
+ case 123:
70
+ return this.pos === this.start ? x === 60 && this.exprAllowed ? (++this.pos, this.finishToken(n.jsxTagStart)) : this.getTokenFromCode(x) : (h += this.input.slice(m, this.pos), this.finishToken(n.jsxText, h));
71
+ case 38:
72
+ h += this.input.slice(m, this.pos), h += this.jsx_readEntity(), m = this.pos;
73
+ break;
74
+ case 62:
75
+ case 125:
76
+ this.raise(this.pos, "Unexpected token `" + this.input[this.pos] + "`. Did you mean `" + (x === 62 ? "&gt;" : "&rbrace;") + '` or `{"' + this.input[this.pos] + '"}`?');
77
+ default:
78
+ l(x) ? (h += this.input.slice(m, this.pos), h += this.jsx_readNewLine(true), m = this.pos) : ++this.pos;
79
+ }
80
+ }
81
+ }
82
+ jsx_readNewLine(h) {
83
+ let m = this.input.charCodeAt(this.pos), x;
84
+ return ++this.pos, m === 13 && this.input.charCodeAt(this.pos) === 10 ? (++this.pos, x = h ? `
85
+ ` : `\r
86
+ `) : x = String.fromCharCode(m), this.options.locations && (++this.curLine, this.lineStart = this.pos), x;
87
+ }
88
+ jsx_readString(h) {
89
+ let m = "", x = ++this.pos;
90
+ for (; ; ) {
91
+ this.pos >= this.input.length && this.raise(this.start, "Unterminated string constant");
92
+ let g = this.input.charCodeAt(this.pos);
93
+ if (g === h) break;
94
+ g === 38 ? (m += this.input.slice(x, this.pos), m += this.jsx_readEntity(), x = this.pos) : l(g) ? (m += this.input.slice(x, this.pos), m += this.jsx_readNewLine(false), x = this.pos) : ++this.pos;
95
+ }
96
+ return m += this.input.slice(x, this.pos++), this.finishToken(r.string, m);
97
+ }
98
+ jsx_readEntity() {
99
+ let h = "", m = 0, x, g = this.input[this.pos];
100
+ g !== "&" && this.raise(this.pos, "Entity must start with an ampersand");
101
+ let w = ++this.pos;
102
+ for (; this.pos < this.input.length && m++ < 10; ) {
103
+ if (g = this.input[this.pos++], g === ";") {
104
+ h[0] === "#" ? h[1] === "x" ? (h = h.substr(2), as.test(h) && (x = String.fromCharCode(parseInt(h, 16)))) : (h = h.substr(1), ns.test(h) && (x = String.fromCharCode(parseInt(h, 10)))) : x = rs[h];
105
+ break;
106
+ }
107
+ h += g;
108
+ }
109
+ return x || (this.pos = w, "&");
110
+ }
111
+ jsx_readWord() {
112
+ let h, m = this.pos;
113
+ do
114
+ h = this.input.charCodeAt(++this.pos);
115
+ while (B(h) || h === 45);
116
+ return this.finishToken(n.jsxName, this.input.slice(m, this.pos));
117
+ }
118
+ jsx_parseIdentifier() {
119
+ let h = this.startNode();
120
+ return this.type === n.jsxName ? h.name = this.value : this.type.keyword ? h.name = this.type.keyword : this.unexpected(), this.next(), this.finishNode(h, "JSXIdentifier");
121
+ }
122
+ jsx_parseNamespacedName() {
123
+ let h = this.start, m = this.startLoc, x = this.jsx_parseIdentifier();
124
+ if (!e.allowNamespaces || !this.eat(r.colon)) return x;
125
+ var g = this.startNodeAt(h, m);
126
+ return g.namespace = x, g.name = this.jsx_parseIdentifier(), this.finishNode(g, "JSXNamespacedName");
127
+ }
128
+ jsx_parseElementName() {
129
+ if (this.type === n.jsxTagEnd) return "";
130
+ let h = this.start, m = this.startLoc, x = this.jsx_parseNamespacedName();
131
+ for (this.type === r.dot && x.type === "JSXNamespacedName" && !e.allowNamespacedObjects && this.unexpected(); this.eat(r.dot); ) {
132
+ let g = this.startNodeAt(h, m);
133
+ g.object = x, g.property = this.jsx_parseIdentifier(), x = this.finishNode(g, "JSXMemberExpression");
134
+ }
135
+ return x;
136
+ }
137
+ jsx_parseAttributeValue() {
138
+ switch (this.type) {
139
+ case r.braceL:
140
+ let h = this.jsx_parseExpressionContainer();
141
+ return h.expression.type === "JSXEmptyExpression" && this.raise(h.start, "JSX attributes must only be assigned a non-empty expression"), h;
142
+ case n.jsxTagStart:
143
+ case r.string:
144
+ return this.parseExprAtom();
145
+ default:
146
+ this.raise(this.start, "JSX value should be either an expression or a quoted JSX text");
147
+ }
148
+ }
149
+ jsx_parseEmptyExpression() {
150
+ let h = this.startNodeAt(this.lastTokEnd, this.lastTokEndLoc);
151
+ return this.finishNodeAt(h, "JSXEmptyExpression", this.start, this.startLoc);
152
+ }
153
+ jsx_parseExpressionContainer() {
154
+ let h = this.startNode();
155
+ return this.next(), h.expression = this.type === r.braceR ? this.jsx_parseEmptyExpression() : this.parseExpression(), this.expect(r.braceR), this.finishNode(h, "JSXExpressionContainer");
156
+ }
157
+ jsx_parseAttribute() {
158
+ let h = this.startNode();
159
+ return this.eat(r.braceL) ? (this.expect(r.ellipsis), h.argument = this.parseMaybeAssign(), this.expect(r.braceR), this.finishNode(h, "JSXSpreadAttribute")) : (h.name = this.jsx_parseNamespacedName(), h.value = this.eat(r.eq) ? this.jsx_parseAttributeValue() : null, this.finishNode(h, "JSXAttribute"));
160
+ }
161
+ jsx_parseOpeningElementAt(h, m) {
162
+ let x = this.startNodeAt(h, m);
163
+ x.attributes = [];
164
+ let g = this.jsx_parseElementName();
165
+ for (g && (x.name = g); this.type !== r.slash && this.type !== n.jsxTagEnd; ) x.attributes.push(this.jsx_parseAttribute());
166
+ return x.selfClosing = this.eat(r.slash), this.expect(n.jsxTagEnd), this.finishNode(x, g ? "JSXOpeningElement" : "JSXOpeningFragment");
167
+ }
168
+ jsx_parseClosingElementAt(h, m) {
169
+ let x = this.startNodeAt(h, m), g = this.jsx_parseElementName();
170
+ return g && (x.name = g), this.expect(n.jsxTagEnd), this.finishNode(x, g ? "JSXClosingElement" : "JSXClosingFragment");
171
+ }
172
+ jsx_parseElementAt(h, m) {
173
+ let x = this.startNodeAt(h, m), g = [], w = this.jsx_parseOpeningElementAt(h, m), he = null;
174
+ if (!w.selfClosing) {
175
+ e: for (; ; ) switch (this.type) {
176
+ case n.jsxTagStart:
177
+ if (h = this.start, m = this.startLoc, this.next(), this.eat(r.slash)) {
178
+ he = this.jsx_parseClosingElementAt(h, m);
179
+ break e;
180
+ }
181
+ g.push(this.jsx_parseElementAt(h, m));
182
+ break;
183
+ case n.jsxText:
184
+ g.push(this.parseExprAtom());
185
+ break;
186
+ case r.braceL:
187
+ g.push(this.jsx_parseExpressionContainer());
188
+ break;
189
+ default:
190
+ this.unexpected();
191
+ }
192
+ ne(he.name) !== ne(w.name) && this.raise(he.start, "Expected corresponding JSX closing tag for <" + ne(w.name) + ">");
193
+ }
194
+ let Ee = w.name ? "Element" : "Fragment";
195
+ return x["opening" + Ee] = w, x["closing" + Ee] = he, x.children = g, this.type === r.relational && this.value === "<" && this.raise(this.start, "Adjacent JSX elements must be wrapped in an enclosing tag"), this.finishNode(x, "JSX" + Ee);
196
+ }
197
+ jsx_parseText() {
198
+ let h = this.parseLiteral(this.value);
199
+ return h.type = "JSXText", h;
200
+ }
201
+ jsx_parseElement() {
202
+ let h = this.start, m = this.startLoc;
203
+ return this.next(), this.jsx_parseElementAt(h, m);
204
+ }
205
+ parseExprAtom(h) {
206
+ return this.type === n.jsxText ? this.jsx_parseText() : this.type === n.jsxTagStart ? this.jsx_parseElement() : super.parseExprAtom(h);
207
+ }
208
+ readToken(h) {
209
+ let m = this.curContext();
210
+ if (m === d) return this.jsx_readToken();
211
+ if (m === u || m === p) {
212
+ if (C(h)) return this.jsx_readWord();
213
+ if (h == 62) return ++this.pos, this.finishToken(n.jsxTagEnd);
214
+ if ((h === 34 || h === 39) && m == u) return this.jsx_readString(h);
215
+ }
216
+ return h === 60 && this.exprAllowed && this.input.charCodeAt(this.pos + 1) !== 33 ? (++this.pos, this.finishToken(n.jsxTagStart)) : super.readToken(h);
217
+ }
218
+ updateContext(h) {
219
+ if (this.type == r.braceL) {
220
+ var m = this.curContext();
221
+ m == u ? this.context.push(o.b_expr) : m == d ? this.context.push(o.b_tmpl) : super.updateContext(h), this.exprAllowed = true;
222
+ } else if (this.type === r.slash && h === n.jsxTagStart) this.context.length -= 2, this.context.push(p), this.exprAllowed = false;
223
+ else return super.updateContext(h);
224
+ }
225
+ };
226
+ }
227
+ });
228
+ var $e = {};
229
+ vi($e, { parsers: () => Xs });
230
+ var Si = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 370, 1, 81, 2, 71, 10, 50, 3, 123, 2, 54, 14, 32, 10, 3, 1, 11, 3, 46, 10, 8, 0, 46, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 3, 0, 158, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 406, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 10, 1, 2, 0, 49, 6, 4, 4, 14, 9, 5351, 0, 7, 14, 13835, 9, 87, 9, 39, 4, 60, 6, 26, 9, 1014, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4706, 45, 3, 22, 543, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 101, 0, 161, 6, 10, 9, 357, 0, 62, 13, 499, 13, 983, 6, 110, 6, 6, 9, 4759, 9, 787719, 239];
231
+ var nt = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 13, 10, 2, 14, 2, 6, 2, 1, 2, 10, 2, 14, 2, 6, 2, 1, 68, 310, 10, 21, 11, 7, 25, 5, 2, 41, 2, 8, 70, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 349, 41, 7, 1, 79, 28, 11, 0, 9, 21, 43, 17, 47, 20, 28, 22, 13, 52, 58, 1, 3, 0, 14, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 20, 1, 64, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 38, 6, 186, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 19, 72, 264, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 328, 18, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 582, 8634, 568, 8, 30, 18, 78, 18, 29, 19, 47, 17, 3, 32, 20, 6, 18, 689, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 43, 8, 8936, 3, 2, 6, 2, 1, 2, 290, 16, 0, 30, 2, 3, 0, 15, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 1845, 30, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 6, 2, 3, 2, 1, 2, 14, 2, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42719, 33, 4153, 7, 221, 3, 5761, 15, 7472, 16, 621, 2467, 541, 1507, 4938, 6, 4191];
232
+ var Ci = "\u200C\u200D\xB7\u0300-\u036F\u0387\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u0669\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07C0-\u07C9\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0966-\u096F\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09E6-\u09EF\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A66-\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AE6-\u0AEF\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B66-\u0B6F\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0BE6-\u0BEF\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0CE6-\u0CEF\u0CF3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D66-\u0D6F\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0E50-\u0E59\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0ED0-\u0ED9\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1040-\u1049\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F-\u109D\u135D-\u135F\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u17E0-\u17E9\u180B-\u180D\u180F-\u1819\u18A9\u1920-\u192B\u1930-\u193B\u1946-\u194F\u19D0-\u19DA\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AB0-\u1ABD\u1ABF-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BB0-\u1BB9\u1BE6-\u1BF3\u1C24-\u1C37\u1C40-\u1C49\u1C50-\u1C59\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u200C\u200D\u203F\u2040\u2054\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\u30FB\uA620-\uA629\uA66F\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F1\uA8FF-\uA909\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9D0-\uA9D9\uA9E5\uA9F0-\uA9F9\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA50-\uAA59\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uABF0-\uABF9\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFF10-\uFF19\uFF3F\uFF65";
233
+ var ot = "\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC";
234
+ var Ae = { 3: "abstract boolean byte char class double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized throws transient volatile", 5: "class enum extends super const export import", 6: "enum", strict: "implements interface let package private protected public static yield", strictBind: "eval arguments" };
235
+ var Pe = "break case catch continue debugger default do else finally for function if return switch throw try var while with null true false instanceof typeof void delete new in this";
236
+ var _i = { 5: Pe, "5module": Pe + " export import", 6: Pe + " const class extends export import super" };
237
+ var Ti = /^in(stanceof)?$/;
238
+ var ki = new RegExp("[" + ot + "]");
239
+ var Ei = new RegExp("[" + ot + Ci + "]");
240
+ function Ne(e, t) {
241
+ for (var i = 65536, s = 0; s < t.length; s += 2) {
242
+ if (i += t[s], i > e) return false;
243
+ if (i += t[s + 1], i >= e) return true;
244
+ }
245
+ return false;
246
+ }
247
+ function U(e, t) {
248
+ return e < 65 ? e === 36 : e < 91 ? true : e < 97 ? e === 95 : e < 123 ? true : e <= 65535 ? e >= 170 && ki.test(String.fromCharCode(e)) : t === false ? false : Ne(e, nt);
249
+ }
250
+ function z(e, t) {
251
+ return e < 48 ? e === 36 : e < 58 ? true : e < 65 ? false : e < 91 ? true : e < 97 ? e === 95 : e < 123 ? true : e <= 65535 ? e >= 170 && Ei.test(String.fromCharCode(e)) : t === false ? false : Ne(e, nt) || Ne(e, Si);
252
+ }
253
+ var S = function(t, i) {
254
+ i === void 0 && (i = {}), this.label = t, this.keyword = i.keyword, this.beforeExpr = !!i.beforeExpr, this.startsExpr = !!i.startsExpr, this.isLoop = !!i.isLoop, this.isAssign = !!i.isAssign, this.prefix = !!i.prefix, this.postfix = !!i.postfix, this.binop = i.binop || null, this.updateContext = null;
255
+ };
256
+ function I(e, t) {
257
+ return new S(e, { beforeExpr: true, binop: t });
258
+ }
259
+ var N = { beforeExpr: true };
260
+ var A = { startsExpr: true };
261
+ var Oe = {};
262
+ function b(e, t) {
263
+ return t === void 0 && (t = {}), t.keyword = e, Oe[e] = new S(e, t);
264
+ }
265
+ var a = { num: new S("num", A), regexp: new S("regexp", A), string: new S("string", A), name: new S("name", A), privateId: new S("privateId", A), eof: new S("eof"), bracketL: new S("[", { beforeExpr: true, startsExpr: true }), bracketR: new S("]"), braceL: new S("{", { beforeExpr: true, startsExpr: true }), braceR: new S("}"), parenL: new S("(", { beforeExpr: true, startsExpr: true }), parenR: new S(")"), comma: new S(",", N), semi: new S(";", N), colon: new S(":", N), dot: new S("."), question: new S("?", N), questionDot: new S("?."), arrow: new S("=>", N), template: new S("template"), invalidTemplate: new S("invalidTemplate"), ellipsis: new S("...", N), backQuote: new S("`", A), dollarBraceL: new S("${", { beforeExpr: true, startsExpr: true }), eq: new S("=", { beforeExpr: true, isAssign: true }), assign: new S("_=", { beforeExpr: true, isAssign: true }), incDec: new S("++/--", { prefix: true, postfix: true, startsExpr: true }), prefix: new S("!/~", { beforeExpr: true, prefix: true, startsExpr: true }), logicalOR: I("||", 1), logicalAND: I("&&", 2), bitwiseOR: I("|", 3), bitwiseXOR: I("^", 4), bitwiseAND: I("&", 5), equality: I("==/!=/===/!==", 6), relational: I("</>/<=/>=", 7), bitShift: I("<</>>/>>>", 8), plusMin: new S("+/-", { beforeExpr: true, binop: 9, prefix: true, startsExpr: true }), modulo: I("%", 10), star: I("*", 10), slash: I("/", 10), starstar: new S("**", { beforeExpr: true }), coalesce: I("??", 1), _break: b("break"), _case: b("case", N), _catch: b("catch"), _continue: b("continue"), _debugger: b("debugger"), _default: b("default", N), _do: b("do", { isLoop: true, beforeExpr: true }), _else: b("else", N), _finally: b("finally"), _for: b("for", { isLoop: true }), _function: b("function", A), _if: b("if"), _return: b("return", N), _switch: b("switch"), _throw: b("throw", N), _try: b("try"), _var: b("var"), _const: b("const"), _while: b("while", { isLoop: true }), _with: b("with"), _new: b("new", { beforeExpr: true, startsExpr: true }), _this: b("this", A), _super: b("super", A), _class: b("class", A), _extends: b("extends", N), _export: b("export"), _import: b("import", A), _null: b("null", A), _true: b("true", A), _false: b("false", A), _in: b("in", { beforeExpr: true, binop: 7 }), _instanceof: b("instanceof", { beforeExpr: true, binop: 7 }), _typeof: b("typeof", { beforeExpr: true, prefix: true, startsExpr: true }), _void: b("void", { beforeExpr: true, prefix: true, startsExpr: true }), _delete: b("delete", { beforeExpr: true, prefix: true, startsExpr: true }) };
266
+ var R = /\r\n?|\n|\u2028|\u2029/;
267
+ var wi = new RegExp(R.source, "g");
268
+ function Q(e) {
269
+ return e === 10 || e === 13 || e === 8232 || e === 8233;
270
+ }
271
+ function ut(e, t, i) {
272
+ i === void 0 && (i = e.length);
273
+ for (var s = t; s < i; s++) {
274
+ var r = e.charCodeAt(s);
275
+ if (Q(r)) return s < i - 1 && r === 13 && e.charCodeAt(s + 1) === 10 ? s + 2 : s + 1;
276
+ }
277
+ return -1;
278
+ }
279
+ var pt = /[\u1680\u2000-\u200a\u202f\u205f\u3000\ufeff]/;
280
+ var V = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g;
281
+ var ht = Object.prototype;
282
+ var Ai = ht.hasOwnProperty;
283
+ var Pi = ht.toString;
284
+ var se = Object.hasOwn || function(e, t) {
285
+ return Ai.call(e, t);
286
+ };
287
+ var tt = Array.isArray || function(e) {
288
+ return Pi.call(e) === "[object Array]";
289
+ };
290
+ var it = /* @__PURE__ */ Object.create(null);
291
+ function G(e) {
292
+ return it[e] || (it[e] = new RegExp("^(?:" + e.replace(/ /g, "|") + ")$"));
293
+ }
294
+ function K(e) {
295
+ return e <= 65535 ? String.fromCharCode(e) : (e -= 65536, String.fromCharCode((e >> 10) + 55296, (e & 1023) + 56320));
296
+ }
297
+ var Ii = /(?:[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/;
298
+ var te = function(t, i) {
299
+ this.line = t, this.column = i;
300
+ };
301
+ te.prototype.offset = function(t) {
302
+ return new te(this.line, this.column + t);
303
+ };
304
+ var xe = function(t, i, s) {
305
+ this.start = i, this.end = s, t.sourceFile !== null && (this.source = t.sourceFile);
306
+ };
307
+ function ct(e, t) {
308
+ for (var i = 1, s = 0; ; ) {
309
+ var r = ut(e, s, t);
310
+ if (r < 0) return new te(i, t - s);
311
+ ++i, s = r;
312
+ }
313
+ }
314
+ var Ve = { ecmaVersion: null, sourceType: "script", onInsertedSemicolon: null, onTrailingComma: null, allowReserved: null, allowReturnOutsideFunction: false, allowImportExportEverywhere: false, allowAwaitOutsideFunction: null, allowSuperOutsideMethod: null, allowHashBang: false, checkPrivateFields: true, locations: false, onToken: null, onComment: null, ranges: false, program: null, sourceFile: null, directSourceFile: null, preserveParens: false };
315
+ var st = false;
316
+ function Ni(e) {
317
+ var t = {};
318
+ for (var i in Ve) t[i] = e && se(e, i) ? e[i] : Ve[i];
319
+ if (t.ecmaVersion === "latest" ? t.ecmaVersion = 1e8 : t.ecmaVersion == null ? (!st && typeof console == "object" && console.warn && (st = true, console.warn(`Since Acorn 8.0.0, options.ecmaVersion is required.
320
+ Defaulting to 2020, but this will stop working in the future.`)), t.ecmaVersion = 11) : t.ecmaVersion >= 2015 && (t.ecmaVersion -= 2009), t.allowReserved == null && (t.allowReserved = t.ecmaVersion < 5), (!e || e.allowHashBang == null) && (t.allowHashBang = t.ecmaVersion >= 14), tt(t.onToken)) {
321
+ var s = t.onToken;
322
+ t.onToken = function(r) {
323
+ return s.push(r);
324
+ };
325
+ }
326
+ return tt(t.onComment) && (t.onComment = Vi(t, t.onComment)), t;
327
+ }
328
+ function Vi(e, t) {
329
+ return function(i, s, r, n, o, u) {
330
+ var p = { type: i ? "Block" : "Line", value: s, start: r, end: n };
331
+ e.locations && (p.loc = new xe(this, o, u)), e.ranges && (p.range = [r, n]), t.push(p);
332
+ };
333
+ }
334
+ var ie = 1;
335
+ var Y = 2;
336
+ var Be = 4;
337
+ var lt = 8;
338
+ var ft = 16;
339
+ var dt = 32;
340
+ var De = 64;
341
+ var mt = 128;
342
+ var re = 256;
343
+ var Fe = ie | Y | re;
344
+ function Me(e, t) {
345
+ return Y | (e ? Be : 0) | (t ? lt : 0);
346
+ }
347
+ var le = 0;
348
+ var je = 1;
349
+ var J = 2;
350
+ var xt = 3;
351
+ var yt = 4;
352
+ var gt = 5;
353
+ var T = function(t, i, s) {
354
+ this.options = t = Ni(t), this.sourceFile = t.sourceFile, this.keywords = G(_i[t.ecmaVersion >= 6 ? 6 : t.sourceType === "module" ? "5module" : 5]);
355
+ var r = "";
356
+ t.allowReserved !== true && (r = Ae[t.ecmaVersion >= 6 ? 6 : t.ecmaVersion === 5 ? 5 : 3], t.sourceType === "module" && (r += " await")), this.reservedWords = G(r);
357
+ var n = (r ? r + " " : "") + Ae.strict;
358
+ this.reservedWordsStrict = G(n), this.reservedWordsStrictBind = G(n + " " + Ae.strictBind), this.input = String(i), this.containsEsc = false, s ? (this.pos = s, this.lineStart = this.input.lastIndexOf(`
359
+ `, s - 1) + 1, this.curLine = this.input.slice(0, this.lineStart).split(R).length) : (this.pos = this.lineStart = 0, this.curLine = 1), this.type = a.eof, this.value = null, this.start = this.end = this.pos, this.startLoc = this.endLoc = this.curPosition(), this.lastTokEndLoc = this.lastTokStartLoc = null, this.lastTokStart = this.lastTokEnd = this.pos, this.context = this.initialContext(), this.exprAllowed = true, this.inModule = t.sourceType === "module", this.strict = this.inModule || this.strictDirective(this.pos), this.potentialArrowAt = -1, this.potentialArrowInForAwait = false, this.yieldPos = this.awaitPos = this.awaitIdentPos = 0, this.labels = [], this.undefinedExports = /* @__PURE__ */ Object.create(null), this.pos === 0 && t.allowHashBang && this.input.slice(0, 2) === "#!" && this.skipLineComment(2), this.scopeStack = [], this.enterScope(ie), this.regexpState = null, this.privateNameStack = [];
360
+ };
361
+ var F = { inFunction: { configurable: true }, inGenerator: { configurable: true }, inAsync: { configurable: true }, canAwait: { configurable: true }, allowSuper: { configurable: true }, allowDirectSuper: { configurable: true }, treatFunctionsAsVar: { configurable: true }, allowNewDotTarget: { configurable: true }, inClassStaticBlock: { configurable: true } };
362
+ T.prototype.parse = function() {
363
+ var t = this.options.program || this.startNode();
364
+ return this.nextToken(), this.parseTopLevel(t);
365
+ };
366
+ F.inFunction.get = function() {
367
+ return (this.currentVarScope().flags & Y) > 0;
368
+ };
369
+ F.inGenerator.get = function() {
370
+ return (this.currentVarScope().flags & lt) > 0 && !this.currentVarScope().inClassFieldInit;
371
+ };
372
+ F.inAsync.get = function() {
373
+ return (this.currentVarScope().flags & Be) > 0 && !this.currentVarScope().inClassFieldInit;
374
+ };
375
+ F.canAwait.get = function() {
376
+ for (var e = this.scopeStack.length - 1; e >= 0; e--) {
377
+ var t = this.scopeStack[e];
378
+ if (t.inClassFieldInit || t.flags & re) return false;
379
+ if (t.flags & Y) return (t.flags & Be) > 0;
380
+ }
381
+ return this.inModule && this.options.ecmaVersion >= 13 || this.options.allowAwaitOutsideFunction;
382
+ };
383
+ F.allowSuper.get = function() {
384
+ var e = this.currentThisScope(), t = e.flags, i = e.inClassFieldInit;
385
+ return (t & De) > 0 || i || this.options.allowSuperOutsideMethod;
386
+ };
387
+ F.allowDirectSuper.get = function() {
388
+ return (this.currentThisScope().flags & mt) > 0;
389
+ };
390
+ F.treatFunctionsAsVar.get = function() {
391
+ return this.treatFunctionsAsVarInScope(this.currentScope());
392
+ };
393
+ F.allowNewDotTarget.get = function() {
394
+ var e = this.currentThisScope(), t = e.flags, i = e.inClassFieldInit;
395
+ return (t & (Y | re)) > 0 || i;
396
+ };
397
+ F.inClassStaticBlock.get = function() {
398
+ return (this.currentVarScope().flags & re) > 0;
399
+ };
400
+ T.extend = function() {
401
+ for (var t = [], i = arguments.length; i--; ) t[i] = arguments[i];
402
+ for (var s = this, r = 0; r < t.length; r++) s = t[r](s);
403
+ return s;
404
+ };
405
+ T.parse = function(t, i) {
406
+ return new this(i, t).parse();
407
+ };
408
+ T.parseExpressionAt = function(t, i, s) {
409
+ var r = new this(s, t, i);
410
+ return r.nextToken(), r.parseExpression();
411
+ };
412
+ T.tokenizer = function(t, i) {
413
+ return new this(i, t);
414
+ };
415
+ Object.defineProperties(T.prototype, F);
416
+ var k = T.prototype;
417
+ var Li = /^(?:'((?:\\[^]|[^'\\])*?)'|"((?:\\[^]|[^"\\])*?)")/;
418
+ k.strictDirective = function(e) {
419
+ if (this.options.ecmaVersion < 5) return false;
420
+ for (; ; ) {
421
+ V.lastIndex = e, e += V.exec(this.input)[0].length;
422
+ var t = Li.exec(this.input.slice(e));
423
+ if (!t) return false;
424
+ if ((t[1] || t[2]) === "use strict") {
425
+ V.lastIndex = e + t[0].length;
426
+ var i = V.exec(this.input), s = i.index + i[0].length, r = this.input.charAt(s);
427
+ return r === ";" || r === "}" || R.test(i[0]) && !(/[(`.[+\-/*%<>=,?^&]/.test(r) || r === "!" && this.input.charAt(s + 1) === "=");
428
+ }
429
+ e += t[0].length, V.lastIndex = e, e += V.exec(this.input)[0].length, this.input[e] === ";" && e++;
430
+ }
431
+ };
432
+ k.eat = function(e) {
433
+ return this.type === e ? (this.next(), true) : false;
434
+ };
435
+ k.isContextual = function(e) {
436
+ return this.type === a.name && this.value === e && !this.containsEsc;
437
+ };
438
+ k.eatContextual = function(e) {
439
+ return this.isContextual(e) ? (this.next(), true) : false;
440
+ };
441
+ k.expectContextual = function(e) {
442
+ this.eatContextual(e) || this.unexpected();
443
+ };
444
+ k.canInsertSemicolon = function() {
445
+ return this.type === a.eof || this.type === a.braceR || R.test(this.input.slice(this.lastTokEnd, this.start));
446
+ };
447
+ k.insertSemicolon = function() {
448
+ if (this.canInsertSemicolon()) return this.options.onInsertedSemicolon && this.options.onInsertedSemicolon(this.lastTokEnd, this.lastTokEndLoc), true;
449
+ };
450
+ k.semicolon = function() {
451
+ !this.eat(a.semi) && !this.insertSemicolon() && this.unexpected();
452
+ };
453
+ k.afterTrailingComma = function(e, t) {
454
+ if (this.type === e) return this.options.onTrailingComma && this.options.onTrailingComma(this.lastTokStart, this.lastTokStartLoc), t || this.next(), true;
455
+ };
456
+ k.expect = function(e) {
457
+ this.eat(e) || this.unexpected();
458
+ };
459
+ k.unexpected = function(e) {
460
+ this.raise(e != null ? e : this.start, "Unexpected token");
461
+ };
462
+ var ye = function() {
463
+ this.shorthandAssign = this.trailingComma = this.parenthesizedAssign = this.parenthesizedBind = this.doubleProto = -1;
464
+ };
465
+ k.checkPatternErrors = function(e, t) {
466
+ if (e) {
467
+ e.trailingComma > -1 && this.raiseRecoverable(e.trailingComma, "Comma is not permitted after the rest element");
468
+ var i = t ? e.parenthesizedAssign : e.parenthesizedBind;
469
+ i > -1 && this.raiseRecoverable(i, t ? "Assigning to rvalue" : "Parenthesized pattern");
470
+ }
471
+ };
472
+ k.checkExpressionErrors = function(e, t) {
473
+ if (!e) return false;
474
+ var i = e.shorthandAssign, s = e.doubleProto;
475
+ if (!t) return i >= 0 || s >= 0;
476
+ i >= 0 && this.raise(i, "Shorthand property assignments are valid only in destructuring patterns"), s >= 0 && this.raiseRecoverable(s, "Redefinition of __proto__ property");
477
+ };
478
+ k.checkYieldAwaitInDefaultParams = function() {
479
+ this.yieldPos && (!this.awaitPos || this.yieldPos < this.awaitPos) && this.raise(this.yieldPos, "Yield expression cannot be a default value"), this.awaitPos && this.raise(this.awaitPos, "Await expression cannot be a default value");
480
+ };
481
+ k.isSimpleAssignTarget = function(e) {
482
+ return e.type === "ParenthesizedExpression" ? this.isSimpleAssignTarget(e.expression) : e.type === "Identifier" || e.type === "MemberExpression";
483
+ };
484
+ var f = T.prototype;
485
+ f.parseTopLevel = function(e) {
486
+ var t = /* @__PURE__ */ Object.create(null);
487
+ for (e.body || (e.body = []); this.type !== a.eof; ) {
488
+ var i = this.parseStatement(null, true, t);
489
+ e.body.push(i);
490
+ }
491
+ if (this.inModule) for (var s = 0, r = Object.keys(this.undefinedExports); s < r.length; s += 1) {
492
+ var n = r[s];
493
+ this.raiseRecoverable(this.undefinedExports[n].start, "Export '" + n + "' is not defined");
494
+ }
495
+ return this.adaptDirectivePrologue(e.body), this.next(), e.sourceType = this.options.sourceType, this.finishNode(e, "Program");
496
+ };
497
+ var Ue = { kind: "loop" };
498
+ var Ri = { kind: "switch" };
499
+ f.isLet = function(e) {
500
+ if (this.options.ecmaVersion < 6 || !this.isContextual("let")) return false;
501
+ V.lastIndex = this.pos;
502
+ var t = V.exec(this.input), i = this.pos + t[0].length, s = this.input.charCodeAt(i);
503
+ if (s === 91 || s === 92) return true;
504
+ if (e) return false;
505
+ if (s === 123 || s > 55295 && s < 56320) return true;
506
+ if (U(s, true)) {
507
+ for (var r = i + 1; z(s = this.input.charCodeAt(r), true); ) ++r;
508
+ if (s === 92 || s > 55295 && s < 56320) return true;
509
+ var n = this.input.slice(i, r);
510
+ if (!Ti.test(n)) return true;
511
+ }
512
+ return false;
513
+ };
514
+ f.isAsyncFunction = function() {
515
+ if (this.options.ecmaVersion < 8 || !this.isContextual("async")) return false;
516
+ V.lastIndex = this.pos;
517
+ var e = V.exec(this.input), t = this.pos + e[0].length, i;
518
+ return !R.test(this.input.slice(this.pos, t)) && this.input.slice(t, t + 8) === "function" && (t + 8 === this.input.length || !(z(i = this.input.charCodeAt(t + 8)) || i > 55295 && i < 56320));
519
+ };
520
+ f.parseStatement = function(e, t, i) {
521
+ var s = this.type, r = this.startNode(), n;
522
+ switch (this.isLet(e) && (s = a._var, n = "let"), s) {
523
+ case a._break:
524
+ case a._continue:
525
+ return this.parseBreakContinueStatement(r, s.keyword);
526
+ case a._debugger:
527
+ return this.parseDebuggerStatement(r);
528
+ case a._do:
529
+ return this.parseDoStatement(r);
530
+ case a._for:
531
+ return this.parseForStatement(r);
532
+ case a._function:
533
+ return e && (this.strict || e !== "if" && e !== "label") && this.options.ecmaVersion >= 6 && this.unexpected(), this.parseFunctionStatement(r, false, !e);
534
+ case a._class:
535
+ return e && this.unexpected(), this.parseClass(r, true);
536
+ case a._if:
537
+ return this.parseIfStatement(r);
538
+ case a._return:
539
+ return this.parseReturnStatement(r);
540
+ case a._switch:
541
+ return this.parseSwitchStatement(r);
542
+ case a._throw:
543
+ return this.parseThrowStatement(r);
544
+ case a._try:
545
+ return this.parseTryStatement(r);
546
+ case a._const:
547
+ case a._var:
548
+ return n = n || this.value, e && n !== "var" && this.unexpected(), this.parseVarStatement(r, n);
549
+ case a._while:
550
+ return this.parseWhileStatement(r);
551
+ case a._with:
552
+ return this.parseWithStatement(r);
553
+ case a.braceL:
554
+ return this.parseBlock(true, r);
555
+ case a.semi:
556
+ return this.parseEmptyStatement(r);
557
+ case a._export:
558
+ case a._import:
559
+ if (this.options.ecmaVersion > 10 && s === a._import) {
560
+ V.lastIndex = this.pos;
561
+ var o = V.exec(this.input), u = this.pos + o[0].length, p = this.input.charCodeAt(u);
562
+ if (p === 40 || p === 46) return this.parseExpressionStatement(r, this.parseExpression());
563
+ }
564
+ return this.options.allowImportExportEverywhere || (t || this.raise(this.start, "'import' and 'export' may only appear at the top level"), this.inModule || this.raise(this.start, "'import' and 'export' may appear only with 'sourceType: module'")), s === a._import ? this.parseImport(r) : this.parseExport(r, i);
565
+ default:
566
+ if (this.isAsyncFunction()) return e && this.unexpected(), this.next(), this.parseFunctionStatement(r, true, !e);
567
+ var d = this.value, l = this.parseExpression();
568
+ return s === a.name && l.type === "Identifier" && this.eat(a.colon) ? this.parseLabeledStatement(r, d, l, e) : this.parseExpressionStatement(r, l);
569
+ }
570
+ };
571
+ f.parseBreakContinueStatement = function(e, t) {
572
+ var i = t === "break";
573
+ this.next(), this.eat(a.semi) || this.insertSemicolon() ? e.label = null : this.type !== a.name ? this.unexpected() : (e.label = this.parseIdent(), this.semicolon());
574
+ for (var s = 0; s < this.labels.length; ++s) {
575
+ var r = this.labels[s];
576
+ if ((e.label == null || r.name === e.label.name) && (r.kind != null && (i || r.kind === "loop") || e.label && i)) break;
577
+ }
578
+ return s === this.labels.length && this.raise(e.start, "Unsyntactic " + t), this.finishNode(e, i ? "BreakStatement" : "ContinueStatement");
579
+ };
580
+ f.parseDebuggerStatement = function(e) {
581
+ return this.next(), this.semicolon(), this.finishNode(e, "DebuggerStatement");
582
+ };
583
+ f.parseDoStatement = function(e) {
584
+ return this.next(), this.labels.push(Ue), e.body = this.parseStatement("do"), this.labels.pop(), this.expect(a._while), e.test = this.parseParenExpression(), this.options.ecmaVersion >= 6 ? this.eat(a.semi) : this.semicolon(), this.finishNode(e, "DoWhileStatement");
585
+ };
586
+ f.parseForStatement = function(e) {
587
+ this.next();
588
+ var t = this.options.ecmaVersion >= 9 && this.canAwait && this.eatContextual("await") ? this.lastTokStart : -1;
589
+ if (this.labels.push(Ue), this.enterScope(0), this.expect(a.parenL), this.type === a.semi) return t > -1 && this.unexpected(t), this.parseFor(e, null);
590
+ var i = this.isLet();
591
+ if (this.type === a._var || this.type === a._const || i) {
592
+ var s = this.startNode(), r = i ? "let" : this.value;
593
+ return this.next(), this.parseVar(s, true, r), this.finishNode(s, "VariableDeclaration"), (this.type === a._in || this.options.ecmaVersion >= 6 && this.isContextual("of")) && s.declarations.length === 1 ? (this.options.ecmaVersion >= 9 && (this.type === a._in ? t > -1 && this.unexpected(t) : e.await = t > -1), this.parseForIn(e, s)) : (t > -1 && this.unexpected(t), this.parseFor(e, s));
594
+ }
595
+ var n = this.isContextual("let"), o = false, u = this.containsEsc, p = new ye(), d = this.start, l = t > -1 ? this.parseExprSubscripts(p, "await") : this.parseExpression(true, p);
596
+ return this.type === a._in || (o = this.options.ecmaVersion >= 6 && this.isContextual("of")) ? (t > -1 ? (this.type === a._in && this.unexpected(t), e.await = true) : o && this.options.ecmaVersion >= 8 && (l.start === d && !u && l.type === "Identifier" && l.name === "async" ? this.unexpected() : this.options.ecmaVersion >= 9 && (e.await = false)), n && o && this.raise(l.start, "The left-hand side of a for-of loop may not start with 'let'."), this.toAssignable(l, false, p), this.checkLValPattern(l), this.parseForIn(e, l)) : (this.checkExpressionErrors(p, true), t > -1 && this.unexpected(t), this.parseFor(e, l));
597
+ };
598
+ f.parseFunctionStatement = function(e, t, i) {
599
+ return this.next(), this.parseFunction(e, ee | (i ? 0 : Le), false, t);
600
+ };
601
+ f.parseIfStatement = function(e) {
602
+ return this.next(), e.test = this.parseParenExpression(), e.consequent = this.parseStatement("if"), e.alternate = this.eat(a._else) ? this.parseStatement("if") : null, this.finishNode(e, "IfStatement");
603
+ };
604
+ f.parseReturnStatement = function(e) {
605
+ return !this.inFunction && !this.options.allowReturnOutsideFunction && this.raise(this.start, "'return' outside of function"), this.next(), this.eat(a.semi) || this.insertSemicolon() ? e.argument = null : (e.argument = this.parseExpression(), this.semicolon()), this.finishNode(e, "ReturnStatement");
606
+ };
607
+ f.parseSwitchStatement = function(e) {
608
+ this.next(), e.discriminant = this.parseParenExpression(), e.cases = [], this.expect(a.braceL), this.labels.push(Ri), this.enterScope(0);
609
+ for (var t, i = false; this.type !== a.braceR; ) if (this.type === a._case || this.type === a._default) {
610
+ var s = this.type === a._case;
611
+ t && this.finishNode(t, "SwitchCase"), e.cases.push(t = this.startNode()), t.consequent = [], this.next(), s ? t.test = this.parseExpression() : (i && this.raiseRecoverable(this.lastTokStart, "Multiple default clauses"), i = true, t.test = null), this.expect(a.colon);
612
+ } else t || this.unexpected(), t.consequent.push(this.parseStatement(null));
613
+ return this.exitScope(), t && this.finishNode(t, "SwitchCase"), this.next(), this.labels.pop(), this.finishNode(e, "SwitchStatement");
614
+ };
615
+ f.parseThrowStatement = function(e) {
616
+ return this.next(), R.test(this.input.slice(this.lastTokEnd, this.start)) && this.raise(this.lastTokEnd, "Illegal newline after throw"), e.argument = this.parseExpression(), this.semicolon(), this.finishNode(e, "ThrowStatement");
617
+ };
618
+ var Oi = [];
619
+ f.parseCatchClauseParam = function() {
620
+ var e = this.parseBindingAtom(), t = e.type === "Identifier";
621
+ return this.enterScope(t ? dt : 0), this.checkLValPattern(e, t ? yt : J), this.expect(a.parenR), e;
622
+ };
623
+ f.parseTryStatement = function(e) {
624
+ if (this.next(), e.block = this.parseBlock(), e.handler = null, this.type === a._catch) {
625
+ var t = this.startNode();
626
+ this.next(), this.eat(a.parenL) ? t.param = this.parseCatchClauseParam() : (this.options.ecmaVersion < 10 && this.unexpected(), t.param = null, this.enterScope(0)), t.body = this.parseBlock(false), this.exitScope(), e.handler = this.finishNode(t, "CatchClause");
627
+ }
628
+ return e.finalizer = this.eat(a._finally) ? this.parseBlock() : null, !e.handler && !e.finalizer && this.raise(e.start, "Missing catch or finally clause"), this.finishNode(e, "TryStatement");
629
+ };
630
+ f.parseVarStatement = function(e, t, i) {
631
+ return this.next(), this.parseVar(e, false, t, i), this.semicolon(), this.finishNode(e, "VariableDeclaration");
632
+ };
633
+ f.parseWhileStatement = function(e) {
634
+ return this.next(), e.test = this.parseParenExpression(), this.labels.push(Ue), e.body = this.parseStatement("while"), this.labels.pop(), this.finishNode(e, "WhileStatement");
635
+ };
636
+ f.parseWithStatement = function(e) {
637
+ return this.strict && this.raise(this.start, "'with' in strict mode"), this.next(), e.object = this.parseParenExpression(), e.body = this.parseStatement("with"), this.finishNode(e, "WithStatement");
638
+ };
639
+ f.parseEmptyStatement = function(e) {
640
+ return this.next(), this.finishNode(e, "EmptyStatement");
641
+ };
642
+ f.parseLabeledStatement = function(e, t, i, s) {
643
+ for (var r = 0, n = this.labels; r < n.length; r += 1) {
644
+ var o = n[r];
645
+ o.name === t && this.raise(i.start, "Label '" + t + "' is already declared");
646
+ }
647
+ for (var u = this.type.isLoop ? "loop" : this.type === a._switch ? "switch" : null, p = this.labels.length - 1; p >= 0; p--) {
648
+ var d = this.labels[p];
649
+ if (d.statementStart === e.start) d.statementStart = this.start, d.kind = u;
650
+ else break;
651
+ }
652
+ return this.labels.push({ name: t, kind: u, statementStart: this.start }), e.body = this.parseStatement(s ? s.indexOf("label") === -1 ? s + "label" : s : "label"), this.labels.pop(), e.label = i, this.finishNode(e, "LabeledStatement");
653
+ };
654
+ f.parseExpressionStatement = function(e, t) {
655
+ return e.expression = t, this.semicolon(), this.finishNode(e, "ExpressionStatement");
656
+ };
657
+ f.parseBlock = function(e, t, i) {
658
+ for (e === void 0 && (e = true), t === void 0 && (t = this.startNode()), t.body = [], this.expect(a.braceL), e && this.enterScope(0); this.type !== a.braceR; ) {
659
+ var s = this.parseStatement(null);
660
+ t.body.push(s);
661
+ }
662
+ return i && (this.strict = false), this.next(), e && this.exitScope(), this.finishNode(t, "BlockStatement");
663
+ };
664
+ f.parseFor = function(e, t) {
665
+ return e.init = t, this.expect(a.semi), e.test = this.type === a.semi ? null : this.parseExpression(), this.expect(a.semi), e.update = this.type === a.parenR ? null : this.parseExpression(), this.expect(a.parenR), e.body = this.parseStatement("for"), this.exitScope(), this.labels.pop(), this.finishNode(e, "ForStatement");
666
+ };
667
+ f.parseForIn = function(e, t) {
668
+ var i = this.type === a._in;
669
+ return this.next(), t.type === "VariableDeclaration" && t.declarations[0].init != null && (!i || this.options.ecmaVersion < 8 || this.strict || t.kind !== "var" || t.declarations[0].id.type !== "Identifier") && this.raise(t.start, (i ? "for-in" : "for-of") + " loop variable declaration may not have an initializer"), e.left = t, e.right = i ? this.parseExpression() : this.parseMaybeAssign(), this.expect(a.parenR), e.body = this.parseStatement("for"), this.exitScope(), this.labels.pop(), this.finishNode(e, i ? "ForInStatement" : "ForOfStatement");
670
+ };
671
+ f.parseVar = function(e, t, i, s) {
672
+ for (e.declarations = [], e.kind = i; ; ) {
673
+ var r = this.startNode();
674
+ if (this.parseVarId(r, i), this.eat(a.eq) ? r.init = this.parseMaybeAssign(t) : !s && i === "const" && !(this.type === a._in || this.options.ecmaVersion >= 6 && this.isContextual("of")) ? this.unexpected() : !s && r.id.type !== "Identifier" && !(t && (this.type === a._in || this.isContextual("of"))) ? this.raise(this.lastTokEnd, "Complex binding patterns require an initialization value") : r.init = null, e.declarations.push(this.finishNode(r, "VariableDeclarator")), !this.eat(a.comma)) break;
675
+ }
676
+ return e;
677
+ };
678
+ f.parseVarId = function(e, t) {
679
+ e.id = this.parseBindingAtom(), this.checkLValPattern(e.id, t === "var" ? je : J, false);
680
+ };
681
+ var ee = 1;
682
+ var Le = 2;
683
+ var vt = 4;
684
+ f.parseFunction = function(e, t, i, s, r) {
685
+ this.initFunction(e), (this.options.ecmaVersion >= 9 || this.options.ecmaVersion >= 6 && !s) && (this.type === a.star && t & Le && this.unexpected(), e.generator = this.eat(a.star)), this.options.ecmaVersion >= 8 && (e.async = !!s), t & ee && (e.id = t & vt && this.type !== a.name ? null : this.parseIdent(), e.id && !(t & Le) && this.checkLValSimple(e.id, this.strict || e.generator || e.async ? this.treatFunctionsAsVar ? je : J : xt));
686
+ var n = this.yieldPos, o = this.awaitPos, u = this.awaitIdentPos;
687
+ return this.yieldPos = 0, this.awaitPos = 0, this.awaitIdentPos = 0, this.enterScope(Me(e.async, e.generator)), t & ee || (e.id = this.type === a.name ? this.parseIdent() : null), this.parseFunctionParams(e), this.parseFunctionBody(e, i, false, r), this.yieldPos = n, this.awaitPos = o, this.awaitIdentPos = u, this.finishNode(e, t & ee ? "FunctionDeclaration" : "FunctionExpression");
688
+ };
689
+ f.parseFunctionParams = function(e) {
690
+ this.expect(a.parenL), e.params = this.parseBindingList(a.parenR, false, this.options.ecmaVersion >= 8), this.checkYieldAwaitInDefaultParams();
691
+ };
692
+ f.parseClass = function(e, t) {
693
+ this.next();
694
+ var i = this.strict;
695
+ this.strict = true, this.parseClassId(e, t), this.parseClassSuper(e);
696
+ var s = this.enterClassBody(), r = this.startNode(), n = false;
697
+ for (r.body = [], this.expect(a.braceL); this.type !== a.braceR; ) {
698
+ var o = this.parseClassElement(e.superClass !== null);
699
+ o && (r.body.push(o), o.type === "MethodDefinition" && o.kind === "constructor" ? (n && this.raiseRecoverable(o.start, "Duplicate constructor in the same class"), n = true) : o.key && o.key.type === "PrivateIdentifier" && Bi(s, o) && this.raiseRecoverable(o.key.start, "Identifier '#" + o.key.name + "' has already been declared"));
700
+ }
701
+ return this.strict = i, this.next(), e.body = this.finishNode(r, "ClassBody"), this.exitClassBody(), this.finishNode(e, t ? "ClassDeclaration" : "ClassExpression");
702
+ };
703
+ f.parseClassElement = function(e) {
704
+ if (this.eat(a.semi)) return null;
705
+ var t = this.options.ecmaVersion, i = this.startNode(), s = "", r = false, n = false, o = "method", u = false;
706
+ if (this.eatContextual("static")) {
707
+ if (t >= 13 && this.eat(a.braceL)) return this.parseClassStaticBlock(i), i;
708
+ this.isClassElementNameStart() || this.type === a.star ? u = true : s = "static";
709
+ }
710
+ if (i.static = u, !s && t >= 8 && this.eatContextual("async") && ((this.isClassElementNameStart() || this.type === a.star) && !this.canInsertSemicolon() ? n = true : s = "async"), !s && (t >= 9 || !n) && this.eat(a.star) && (r = true), !s && !n && !r) {
711
+ var p = this.value;
712
+ (this.eatContextual("get") || this.eatContextual("set")) && (this.isClassElementNameStart() ? o = p : s = p);
713
+ }
714
+ if (s ? (i.computed = false, i.key = this.startNodeAt(this.lastTokStart, this.lastTokStartLoc), i.key.name = s, this.finishNode(i.key, "Identifier")) : this.parseClassElementName(i), t < 13 || this.type === a.parenL || o !== "method" || r || n) {
715
+ var d = !i.static && fe(i, "constructor"), l = d && e;
716
+ d && o !== "method" && this.raise(i.key.start, "Constructor can't have get/set modifier"), i.kind = d ? "constructor" : o, this.parseClassMethod(i, r, n, l);
717
+ } else this.parseClassField(i);
718
+ return i;
719
+ };
720
+ f.isClassElementNameStart = function() {
721
+ return this.type === a.name || this.type === a.privateId || this.type === a.num || this.type === a.string || this.type === a.bracketL || this.type.keyword;
722
+ };
723
+ f.parseClassElementName = function(e) {
724
+ this.type === a.privateId ? (this.value === "constructor" && this.raise(this.start, "Classes can't have an element named '#constructor'"), e.computed = false, e.key = this.parsePrivateIdent()) : this.parsePropertyName(e);
725
+ };
726
+ f.parseClassMethod = function(e, t, i, s) {
727
+ var r = e.key;
728
+ e.kind === "constructor" ? (t && this.raise(r.start, "Constructor can't be a generator"), i && this.raise(r.start, "Constructor can't be an async method")) : e.static && fe(e, "prototype") && this.raise(r.start, "Classes may not have a static property named prototype");
729
+ var n = e.value = this.parseMethod(t, i, s);
730
+ return e.kind === "get" && n.params.length !== 0 && this.raiseRecoverable(n.start, "getter should have no params"), e.kind === "set" && n.params.length !== 1 && this.raiseRecoverable(n.start, "setter should have exactly one param"), e.kind === "set" && n.params[0].type === "RestElement" && this.raiseRecoverable(n.params[0].start, "Setter cannot use rest params"), this.finishNode(e, "MethodDefinition");
731
+ };
732
+ f.parseClassField = function(e) {
733
+ if (fe(e, "constructor") ? this.raise(e.key.start, "Classes can't have a field named 'constructor'") : e.static && fe(e, "prototype") && this.raise(e.key.start, "Classes can't have a static field named 'prototype'"), this.eat(a.eq)) {
734
+ var t = this.currentThisScope(), i = t.inClassFieldInit;
735
+ t.inClassFieldInit = true, e.value = this.parseMaybeAssign(), t.inClassFieldInit = i;
736
+ } else e.value = null;
737
+ return this.semicolon(), this.finishNode(e, "PropertyDefinition");
738
+ };
739
+ f.parseClassStaticBlock = function(e) {
740
+ e.body = [];
741
+ var t = this.labels;
742
+ for (this.labels = [], this.enterScope(re | De); this.type !== a.braceR; ) {
743
+ var i = this.parseStatement(null);
744
+ e.body.push(i);
745
+ }
746
+ return this.next(), this.exitScope(), this.labels = t, this.finishNode(e, "StaticBlock");
747
+ };
748
+ f.parseClassId = function(e, t) {
749
+ this.type === a.name ? (e.id = this.parseIdent(), t && this.checkLValSimple(e.id, J, false)) : (t === true && this.unexpected(), e.id = null);
750
+ };
751
+ f.parseClassSuper = function(e) {
752
+ e.superClass = this.eat(a._extends) ? this.parseExprSubscripts(null, false) : null;
753
+ };
754
+ f.enterClassBody = function() {
755
+ var e = { declared: /* @__PURE__ */ Object.create(null), used: [] };
756
+ return this.privateNameStack.push(e), e.declared;
757
+ };
758
+ f.exitClassBody = function() {
759
+ var e = this.privateNameStack.pop(), t = e.declared, i = e.used;
760
+ if (this.options.checkPrivateFields) for (var s = this.privateNameStack.length, r = s === 0 ? null : this.privateNameStack[s - 1], n = 0; n < i.length; ++n) {
761
+ var o = i[n];
762
+ se(t, o.name) || (r ? r.used.push(o) : this.raiseRecoverable(o.start, "Private field '#" + o.name + "' must be declared in an enclosing class"));
763
+ }
764
+ };
765
+ function Bi(e, t) {
766
+ var i = t.key.name, s = e[i], r = "true";
767
+ return t.type === "MethodDefinition" && (t.kind === "get" || t.kind === "set") && (r = (t.static ? "s" : "i") + t.kind), s === "iget" && r === "iset" || s === "iset" && r === "iget" || s === "sget" && r === "sset" || s === "sset" && r === "sget" ? (e[i] = "true", false) : s ? true : (e[i] = r, false);
768
+ }
769
+ function fe(e, t) {
770
+ var i = e.computed, s = e.key;
771
+ return !i && (s.type === "Identifier" && s.name === t || s.type === "Literal" && s.value === t);
772
+ }
773
+ f.parseExportAllDeclaration = function(e, t) {
774
+ return this.options.ecmaVersion >= 11 && (this.eatContextual("as") ? (e.exported = this.parseModuleExportName(), this.checkExport(t, e.exported, this.lastTokStart)) : e.exported = null), this.expectContextual("from"), this.type !== a.string && this.unexpected(), e.source = this.parseExprAtom(), this.semicolon(), this.finishNode(e, "ExportAllDeclaration");
775
+ };
776
+ f.parseExport = function(e, t) {
777
+ if (this.next(), this.eat(a.star)) return this.parseExportAllDeclaration(e, t);
778
+ if (this.eat(a._default)) return this.checkExport(t, "default", this.lastTokStart), e.declaration = this.parseExportDefaultDeclaration(), this.finishNode(e, "ExportDefaultDeclaration");
779
+ if (this.shouldParseExportStatement()) e.declaration = this.parseExportDeclaration(e), e.declaration.type === "VariableDeclaration" ? this.checkVariableExport(t, e.declaration.declarations) : this.checkExport(t, e.declaration.id, e.declaration.id.start), e.specifiers = [], e.source = null;
780
+ else {
781
+ if (e.declaration = null, e.specifiers = this.parseExportSpecifiers(t), this.eatContextual("from")) this.type !== a.string && this.unexpected(), e.source = this.parseExprAtom();
782
+ else {
783
+ for (var i = 0, s = e.specifiers; i < s.length; i += 1) {
784
+ var r = s[i];
785
+ this.checkUnreserved(r.local), this.checkLocalExport(r.local), r.local.type === "Literal" && this.raise(r.local.start, "A string literal cannot be used as an exported binding without `from`.");
786
+ }
787
+ e.source = null;
788
+ }
789
+ this.semicolon();
790
+ }
791
+ return this.finishNode(e, "ExportNamedDeclaration");
792
+ };
793
+ f.parseExportDeclaration = function(e) {
794
+ return this.parseStatement(null);
795
+ };
796
+ f.parseExportDefaultDeclaration = function() {
797
+ var e;
798
+ if (this.type === a._function || (e = this.isAsyncFunction())) {
799
+ var t = this.startNode();
800
+ return this.next(), e && this.next(), this.parseFunction(t, ee | vt, false, e);
801
+ } else if (this.type === a._class) {
802
+ var i = this.startNode();
803
+ return this.parseClass(i, "nullableID");
804
+ } else {
805
+ var s = this.parseMaybeAssign();
806
+ return this.semicolon(), s;
807
+ }
808
+ };
809
+ f.checkExport = function(e, t, i) {
810
+ e && (typeof t != "string" && (t = t.type === "Identifier" ? t.name : t.value), se(e, t) && this.raiseRecoverable(i, "Duplicate export '" + t + "'"), e[t] = true);
811
+ };
812
+ f.checkPatternExport = function(e, t) {
813
+ var i = t.type;
814
+ if (i === "Identifier") this.checkExport(e, t, t.start);
815
+ else if (i === "ObjectPattern") for (var s = 0, r = t.properties; s < r.length; s += 1) {
816
+ var n = r[s];
817
+ this.checkPatternExport(e, n);
818
+ }
819
+ else if (i === "ArrayPattern") for (var o = 0, u = t.elements; o < u.length; o += 1) {
820
+ var p = u[o];
821
+ p && this.checkPatternExport(e, p);
822
+ }
823
+ else i === "Property" ? this.checkPatternExport(e, t.value) : i === "AssignmentPattern" ? this.checkPatternExport(e, t.left) : i === "RestElement" && this.checkPatternExport(e, t.argument);
824
+ };
825
+ f.checkVariableExport = function(e, t) {
826
+ if (e) for (var i = 0, s = t; i < s.length; i += 1) {
827
+ var r = s[i];
828
+ this.checkPatternExport(e, r.id);
829
+ }
830
+ };
831
+ f.shouldParseExportStatement = function() {
832
+ return this.type.keyword === "var" || this.type.keyword === "const" || this.type.keyword === "class" || this.type.keyword === "function" || this.isLet() || this.isAsyncFunction();
833
+ };
834
+ f.parseExportSpecifier = function(e) {
835
+ var t = this.startNode();
836
+ return t.local = this.parseModuleExportName(), t.exported = this.eatContextual("as") ? this.parseModuleExportName() : t.local, this.checkExport(e, t.exported, t.exported.start), this.finishNode(t, "ExportSpecifier");
837
+ };
838
+ f.parseExportSpecifiers = function(e) {
839
+ var t = [], i = true;
840
+ for (this.expect(a.braceL); !this.eat(a.braceR); ) {
841
+ if (i) i = false;
842
+ else if (this.expect(a.comma), this.afterTrailingComma(a.braceR)) break;
843
+ t.push(this.parseExportSpecifier(e));
844
+ }
845
+ return t;
846
+ };
847
+ f.parseImport = function(e) {
848
+ return this.next(), this.type === a.string ? (e.specifiers = Oi, e.source = this.parseExprAtom()) : (e.specifiers = this.parseImportSpecifiers(), this.expectContextual("from"), e.source = this.type === a.string ? this.parseExprAtom() : this.unexpected()), this.semicolon(), this.finishNode(e, "ImportDeclaration");
849
+ };
850
+ f.parseImportSpecifier = function() {
851
+ var e = this.startNode();
852
+ return e.imported = this.parseModuleExportName(), this.eatContextual("as") ? e.local = this.parseIdent() : (this.checkUnreserved(e.imported), e.local = e.imported), this.checkLValSimple(e.local, J), this.finishNode(e, "ImportSpecifier");
853
+ };
854
+ f.parseImportDefaultSpecifier = function() {
855
+ var e = this.startNode();
856
+ return e.local = this.parseIdent(), this.checkLValSimple(e.local, J), this.finishNode(e, "ImportDefaultSpecifier");
857
+ };
858
+ f.parseImportNamespaceSpecifier = function() {
859
+ var e = this.startNode();
860
+ return this.next(), this.expectContextual("as"), e.local = this.parseIdent(), this.checkLValSimple(e.local, J), this.finishNode(e, "ImportNamespaceSpecifier");
861
+ };
862
+ f.parseImportSpecifiers = function() {
863
+ var e = [], t = true;
864
+ if (this.type === a.name && (e.push(this.parseImportDefaultSpecifier()), !this.eat(a.comma))) return e;
865
+ if (this.type === a.star) return e.push(this.parseImportNamespaceSpecifier()), e;
866
+ for (this.expect(a.braceL); !this.eat(a.braceR); ) {
867
+ if (t) t = false;
868
+ else if (this.expect(a.comma), this.afterTrailingComma(a.braceR)) break;
869
+ e.push(this.parseImportSpecifier());
870
+ }
871
+ return e;
872
+ };
873
+ f.parseModuleExportName = function() {
874
+ if (this.options.ecmaVersion >= 13 && this.type === a.string) {
875
+ var e = this.parseLiteral(this.value);
876
+ return Ii.test(e.value) && this.raise(e.start, "An export name cannot include a lone surrogate."), e;
877
+ }
878
+ return this.parseIdent(true);
879
+ };
880
+ f.adaptDirectivePrologue = function(e) {
881
+ for (var t = 0; t < e.length && this.isDirectiveCandidate(e[t]); ++t) e[t].directive = e[t].expression.raw.slice(1, -1);
882
+ };
883
+ f.isDirectiveCandidate = function(e) {
884
+ return this.options.ecmaVersion >= 5 && e.type === "ExpressionStatement" && e.expression.type === "Literal" && typeof e.expression.value == "string" && (this.input[e.start] === '"' || this.input[e.start] === "'");
885
+ };
886
+ var O = T.prototype;
887
+ O.toAssignable = function(e, t, i) {
888
+ if (this.options.ecmaVersion >= 6 && e) switch (e.type) {
889
+ case "Identifier":
890
+ this.inAsync && e.name === "await" && this.raise(e.start, "Cannot use 'await' as identifier inside an async function");
891
+ break;
892
+ case "ObjectPattern":
893
+ case "ArrayPattern":
894
+ case "AssignmentPattern":
895
+ case "RestElement":
896
+ break;
897
+ case "ObjectExpression":
898
+ e.type = "ObjectPattern", i && this.checkPatternErrors(i, true);
899
+ for (var s = 0, r = e.properties; s < r.length; s += 1) {
900
+ var n = r[s];
901
+ this.toAssignable(n, t), n.type === "RestElement" && (n.argument.type === "ArrayPattern" || n.argument.type === "ObjectPattern") && this.raise(n.argument.start, "Unexpected token");
902
+ }
903
+ break;
904
+ case "Property":
905
+ e.kind !== "init" && this.raise(e.key.start, "Object pattern can't contain getter or setter"), this.toAssignable(e.value, t);
906
+ break;
907
+ case "ArrayExpression":
908
+ e.type = "ArrayPattern", i && this.checkPatternErrors(i, true), this.toAssignableList(e.elements, t);
909
+ break;
910
+ case "SpreadElement":
911
+ e.type = "RestElement", this.toAssignable(e.argument, t), e.argument.type === "AssignmentPattern" && this.raise(e.argument.start, "Rest elements cannot have a default value");
912
+ break;
913
+ case "AssignmentExpression":
914
+ e.operator !== "=" && this.raise(e.left.end, "Only '=' operator can be used for specifying default value."), e.type = "AssignmentPattern", delete e.operator, this.toAssignable(e.left, t);
915
+ break;
916
+ case "ParenthesizedExpression":
917
+ this.toAssignable(e.expression, t, i);
918
+ break;
919
+ case "ChainExpression":
920
+ this.raiseRecoverable(e.start, "Optional chaining cannot appear in left-hand side");
921
+ break;
922
+ case "MemberExpression":
923
+ if (!t) break;
924
+ default:
925
+ this.raise(e.start, "Assigning to rvalue");
926
+ }
927
+ else i && this.checkPatternErrors(i, true);
928
+ return e;
929
+ };
930
+ O.toAssignableList = function(e, t) {
931
+ for (var i = e.length, s = 0; s < i; s++) {
932
+ var r = e[s];
933
+ r && this.toAssignable(r, t);
934
+ }
935
+ if (i) {
936
+ var n = e[i - 1];
937
+ this.options.ecmaVersion === 6 && t && n && n.type === "RestElement" && n.argument.type !== "Identifier" && this.unexpected(n.argument.start);
938
+ }
939
+ return e;
940
+ };
941
+ O.parseSpread = function(e) {
942
+ var t = this.startNode();
943
+ return this.next(), t.argument = this.parseMaybeAssign(false, e), this.finishNode(t, "SpreadElement");
944
+ };
945
+ O.parseRestBinding = function() {
946
+ var e = this.startNode();
947
+ return this.next(), this.options.ecmaVersion === 6 && this.type !== a.name && this.unexpected(), e.argument = this.parseBindingAtom(), this.finishNode(e, "RestElement");
948
+ };
949
+ O.parseBindingAtom = function() {
950
+ if (this.options.ecmaVersion >= 6) switch (this.type) {
951
+ case a.bracketL:
952
+ var e = this.startNode();
953
+ return this.next(), e.elements = this.parseBindingList(a.bracketR, true, true), this.finishNode(e, "ArrayPattern");
954
+ case a.braceL:
955
+ return this.parseObj(true);
956
+ }
957
+ return this.parseIdent();
958
+ };
959
+ O.parseBindingList = function(e, t, i, s) {
960
+ for (var r = [], n = true; !this.eat(e); ) if (n ? n = false : this.expect(a.comma), t && this.type === a.comma) r.push(null);
961
+ else {
962
+ if (i && this.afterTrailingComma(e)) break;
963
+ if (this.type === a.ellipsis) {
964
+ var o = this.parseRestBinding();
965
+ this.parseBindingListItem(o), r.push(o), this.type === a.comma && this.raiseRecoverable(this.start, "Comma is not permitted after the rest element"), this.expect(e);
966
+ break;
967
+ } else r.push(this.parseAssignableListItem(s));
968
+ }
969
+ return r;
970
+ };
971
+ O.parseAssignableListItem = function(e) {
972
+ var t = this.parseMaybeDefault(this.start, this.startLoc);
973
+ return this.parseBindingListItem(t), t;
974
+ };
975
+ O.parseBindingListItem = function(e) {
976
+ return e;
977
+ };
978
+ O.parseMaybeDefault = function(e, t, i) {
979
+ if (i = i || this.parseBindingAtom(), this.options.ecmaVersion < 6 || !this.eat(a.eq)) return i;
980
+ var s = this.startNodeAt(e, t);
981
+ return s.left = i, s.right = this.parseMaybeAssign(), this.finishNode(s, "AssignmentPattern");
982
+ };
983
+ O.checkLValSimple = function(e, t, i) {
984
+ t === void 0 && (t = le);
985
+ var s = t !== le;
986
+ switch (e.type) {
987
+ case "Identifier":
988
+ this.strict && this.reservedWordsStrictBind.test(e.name) && this.raiseRecoverable(e.start, (s ? "Binding " : "Assigning to ") + e.name + " in strict mode"), s && (t === J && e.name === "let" && this.raiseRecoverable(e.start, "let is disallowed as a lexically bound name"), i && (se(i, e.name) && this.raiseRecoverable(e.start, "Argument name clash"), i[e.name] = true), t !== gt && this.declareName(e.name, t, e.start));
989
+ break;
990
+ case "ChainExpression":
991
+ this.raiseRecoverable(e.start, "Optional chaining cannot appear in left-hand side");
992
+ break;
993
+ case "MemberExpression":
994
+ s && this.raiseRecoverable(e.start, "Binding member expression");
995
+ break;
996
+ case "ParenthesizedExpression":
997
+ return s && this.raiseRecoverable(e.start, "Binding parenthesized expression"), this.checkLValSimple(e.expression, t, i);
998
+ default:
999
+ this.raise(e.start, (s ? "Binding" : "Assigning to") + " rvalue");
1000
+ }
1001
+ };
1002
+ O.checkLValPattern = function(e, t, i) {
1003
+ switch (t === void 0 && (t = le), e.type) {
1004
+ case "ObjectPattern":
1005
+ for (var s = 0, r = e.properties; s < r.length; s += 1) {
1006
+ var n = r[s];
1007
+ this.checkLValInnerPattern(n, t, i);
1008
+ }
1009
+ break;
1010
+ case "ArrayPattern":
1011
+ for (var o = 0, u = e.elements; o < u.length; o += 1) {
1012
+ var p = u[o];
1013
+ p && this.checkLValInnerPattern(p, t, i);
1014
+ }
1015
+ break;
1016
+ default:
1017
+ this.checkLValSimple(e, t, i);
1018
+ }
1019
+ };
1020
+ O.checkLValInnerPattern = function(e, t, i) {
1021
+ switch (t === void 0 && (t = le), e.type) {
1022
+ case "Property":
1023
+ this.checkLValInnerPattern(e.value, t, i);
1024
+ break;
1025
+ case "AssignmentPattern":
1026
+ this.checkLValPattern(e.left, t, i);
1027
+ break;
1028
+ case "RestElement":
1029
+ this.checkLValPattern(e.argument, t, i);
1030
+ break;
1031
+ default:
1032
+ this.checkLValPattern(e, t, i);
1033
+ }
1034
+ };
1035
+ var D = function(t, i, s, r, n) {
1036
+ this.token = t, this.isExpr = !!i, this.preserveSpace = !!s, this.override = r, this.generator = !!n;
1037
+ };
1038
+ var _ = { b_stat: new D("{", false), b_expr: new D("{", true), b_tmpl: new D("${", false), p_stat: new D("(", false), p_expr: new D("(", true), q_tmpl: new D("`", true, true, function(e) {
1039
+ return e.tryReadTemplateToken();
1040
+ }), f_stat: new D("function", false), f_expr: new D("function", true), f_expr_gen: new D("function", true, false, null, true), f_gen: new D("function", false, false, null, true) };
1041
+ var $ = T.prototype;
1042
+ $.initialContext = function() {
1043
+ return [_.b_stat];
1044
+ };
1045
+ $.curContext = function() {
1046
+ return this.context[this.context.length - 1];
1047
+ };
1048
+ $.braceIsBlock = function(e) {
1049
+ var t = this.curContext();
1050
+ return t === _.f_expr || t === _.f_stat ? true : e === a.colon && (t === _.b_stat || t === _.b_expr) ? !t.isExpr : e === a._return || e === a.name && this.exprAllowed ? R.test(this.input.slice(this.lastTokEnd, this.start)) : e === a._else || e === a.semi || e === a.eof || e === a.parenR || e === a.arrow ? true : e === a.braceL ? t === _.b_stat : e === a._var || e === a._const || e === a.name ? false : !this.exprAllowed;
1051
+ };
1052
+ $.inGeneratorContext = function() {
1053
+ for (var e = this.context.length - 1; e >= 1; e--) {
1054
+ var t = this.context[e];
1055
+ if (t.token === "function") return t.generator;
1056
+ }
1057
+ return false;
1058
+ };
1059
+ $.updateContext = function(e) {
1060
+ var t, i = this.type;
1061
+ i.keyword && e === a.dot ? this.exprAllowed = false : (t = i.updateContext) ? t.call(this, e) : this.exprAllowed = i.beforeExpr;
1062
+ };
1063
+ $.overrideContext = function(e) {
1064
+ this.curContext() !== e && (this.context[this.context.length - 1] = e);
1065
+ };
1066
+ a.parenR.updateContext = a.braceR.updateContext = function() {
1067
+ if (this.context.length === 1) {
1068
+ this.exprAllowed = true;
1069
+ return;
1070
+ }
1071
+ var e = this.context.pop();
1072
+ e === _.b_stat && this.curContext().token === "function" && (e = this.context.pop()), this.exprAllowed = !e.isExpr;
1073
+ };
1074
+ a.braceL.updateContext = function(e) {
1075
+ this.context.push(this.braceIsBlock(e) ? _.b_stat : _.b_expr), this.exprAllowed = true;
1076
+ };
1077
+ a.dollarBraceL.updateContext = function() {
1078
+ this.context.push(_.b_tmpl), this.exprAllowed = true;
1079
+ };
1080
+ a.parenL.updateContext = function(e) {
1081
+ var t = e === a._if || e === a._for || e === a._with || e === a._while;
1082
+ this.context.push(t ? _.p_stat : _.p_expr), this.exprAllowed = true;
1083
+ };
1084
+ a.incDec.updateContext = function() {
1085
+ };
1086
+ a._function.updateContext = a._class.updateContext = function(e) {
1087
+ e.beforeExpr && e !== a._else && !(e === a.semi && this.curContext() !== _.p_stat) && !(e === a._return && R.test(this.input.slice(this.lastTokEnd, this.start))) && !((e === a.colon || e === a.braceL) && this.curContext() === _.b_stat) ? this.context.push(_.f_expr) : this.context.push(_.f_stat), this.exprAllowed = false;
1088
+ };
1089
+ a.colon.updateContext = function() {
1090
+ this.curContext().token === "function" && this.context.pop(), this.exprAllowed = true;
1091
+ };
1092
+ a.backQuote.updateContext = function() {
1093
+ this.curContext() === _.q_tmpl ? this.context.pop() : this.context.push(_.q_tmpl), this.exprAllowed = false;
1094
+ };
1095
+ a.star.updateContext = function(e) {
1096
+ if (e === a._function) {
1097
+ var t = this.context.length - 1;
1098
+ this.context[t] === _.f_expr ? this.context[t] = _.f_expr_gen : this.context[t] = _.f_gen;
1099
+ }
1100
+ this.exprAllowed = true;
1101
+ };
1102
+ a.name.updateContext = function(e) {
1103
+ var t = false;
1104
+ this.options.ecmaVersion >= 6 && e !== a.dot && (this.value === "of" && !this.exprAllowed || this.value === "yield" && this.inGeneratorContext()) && (t = true), this.exprAllowed = t;
1105
+ };
1106
+ var y = T.prototype;
1107
+ y.checkPropClash = function(e, t, i) {
1108
+ if (!(this.options.ecmaVersion >= 9 && e.type === "SpreadElement") && !(this.options.ecmaVersion >= 6 && (e.computed || e.method || e.shorthand))) {
1109
+ var s = e.key, r;
1110
+ switch (s.type) {
1111
+ case "Identifier":
1112
+ r = s.name;
1113
+ break;
1114
+ case "Literal":
1115
+ r = String(s.value);
1116
+ break;
1117
+ default:
1118
+ return;
1119
+ }
1120
+ var n = e.kind;
1121
+ if (this.options.ecmaVersion >= 6) {
1122
+ r === "__proto__" && n === "init" && (t.proto && (i ? i.doubleProto < 0 && (i.doubleProto = s.start) : this.raiseRecoverable(s.start, "Redefinition of __proto__ property")), t.proto = true);
1123
+ return;
1124
+ }
1125
+ r = "$" + r;
1126
+ var o = t[r];
1127
+ if (o) {
1128
+ var u;
1129
+ n === "init" ? u = this.strict && o.init || o.get || o.set : u = o.init || o[n], u && this.raiseRecoverable(s.start, "Redefinition of property");
1130
+ } else o = t[r] = { init: false, get: false, set: false };
1131
+ o[n] = true;
1132
+ }
1133
+ };
1134
+ y.parseExpression = function(e, t) {
1135
+ var i = this.start, s = this.startLoc, r = this.parseMaybeAssign(e, t);
1136
+ if (this.type === a.comma) {
1137
+ var n = this.startNodeAt(i, s);
1138
+ for (n.expressions = [r]; this.eat(a.comma); ) n.expressions.push(this.parseMaybeAssign(e, t));
1139
+ return this.finishNode(n, "SequenceExpression");
1140
+ }
1141
+ return r;
1142
+ };
1143
+ y.parseMaybeAssign = function(e, t, i) {
1144
+ if (this.isContextual("yield")) {
1145
+ if (this.inGenerator) return this.parseYield(e);
1146
+ this.exprAllowed = false;
1147
+ }
1148
+ var s = false, r = -1, n = -1, o = -1;
1149
+ t ? (r = t.parenthesizedAssign, n = t.trailingComma, o = t.doubleProto, t.parenthesizedAssign = t.trailingComma = -1) : (t = new ye(), s = true);
1150
+ var u = this.start, p = this.startLoc;
1151
+ (this.type === a.parenL || this.type === a.name) && (this.potentialArrowAt = this.start, this.potentialArrowInForAwait = e === "await");
1152
+ var d = this.parseMaybeConditional(e, t);
1153
+ if (i && (d = i.call(this, d, u, p)), this.type.isAssign) {
1154
+ var l = this.startNodeAt(u, p);
1155
+ return l.operator = this.value, this.type === a.eq && (d = this.toAssignable(d, false, t)), s || (t.parenthesizedAssign = t.trailingComma = t.doubleProto = -1), t.shorthandAssign >= d.start && (t.shorthandAssign = -1), this.type === a.eq ? this.checkLValPattern(d) : this.checkLValSimple(d), l.left = d, this.next(), l.right = this.parseMaybeAssign(e), o > -1 && (t.doubleProto = o), this.finishNode(l, "AssignmentExpression");
1156
+ } else s && this.checkExpressionErrors(t, true);
1157
+ return r > -1 && (t.parenthesizedAssign = r), n > -1 && (t.trailingComma = n), d;
1158
+ };
1159
+ y.parseMaybeConditional = function(e, t) {
1160
+ var i = this.start, s = this.startLoc, r = this.parseExprOps(e, t);
1161
+ if (this.checkExpressionErrors(t)) return r;
1162
+ if (this.eat(a.question)) {
1163
+ var n = this.startNodeAt(i, s);
1164
+ return n.test = r, n.consequent = this.parseMaybeAssign(), this.expect(a.colon), n.alternate = this.parseMaybeAssign(e), this.finishNode(n, "ConditionalExpression");
1165
+ }
1166
+ return r;
1167
+ };
1168
+ y.parseExprOps = function(e, t) {
1169
+ var i = this.start, s = this.startLoc, r = this.parseMaybeUnary(t, false, false, e);
1170
+ return this.checkExpressionErrors(t) || r.start === i && r.type === "ArrowFunctionExpression" ? r : this.parseExprOp(r, i, s, -1, e);
1171
+ };
1172
+ y.parseExprOp = function(e, t, i, s, r) {
1173
+ var n = this.type.binop;
1174
+ if (n != null && (!r || this.type !== a._in) && n > s) {
1175
+ var o = this.type === a.logicalOR || this.type === a.logicalAND, u = this.type === a.coalesce;
1176
+ u && (n = a.logicalAND.binop);
1177
+ var p = this.value;
1178
+ this.next();
1179
+ var d = this.start, l = this.startLoc, C = this.parseExprOp(this.parseMaybeUnary(null, false, false, r), d, l, n, r), B = this.buildBinary(t, i, e, C, p, o || u);
1180
+ return (o && this.type === a.coalesce || u && (this.type === a.logicalOR || this.type === a.logicalAND)) && this.raiseRecoverable(this.start, "Logical expressions and coalesce expressions cannot be mixed. Wrap either by parentheses"), this.parseExprOp(B, t, i, s, r);
1181
+ }
1182
+ return e;
1183
+ };
1184
+ y.buildBinary = function(e, t, i, s, r, n) {
1185
+ s.type === "PrivateIdentifier" && this.raise(s.start, "Private identifier can only be left side of binary expression");
1186
+ var o = this.startNodeAt(e, t);
1187
+ return o.left = i, o.operator = r, o.right = s, this.finishNode(o, n ? "LogicalExpression" : "BinaryExpression");
1188
+ };
1189
+ y.parseMaybeUnary = function(e, t, i, s) {
1190
+ var r = this.start, n = this.startLoc, o;
1191
+ if (this.isContextual("await") && this.canAwait) o = this.parseAwait(s), t = true;
1192
+ else if (this.type.prefix) {
1193
+ var u = this.startNode(), p = this.type === a.incDec;
1194
+ u.operator = this.value, u.prefix = true, this.next(), u.argument = this.parseMaybeUnary(null, true, p, s), this.checkExpressionErrors(e, true), p ? this.checkLValSimple(u.argument) : this.strict && u.operator === "delete" && bt(u.argument) ? this.raiseRecoverable(u.start, "Deleting local variable in strict mode") : u.operator === "delete" && Re(u.argument) ? this.raiseRecoverable(u.start, "Private fields can not be deleted") : t = true, o = this.finishNode(u, p ? "UpdateExpression" : "UnaryExpression");
1195
+ } else if (!t && this.type === a.privateId) (s || this.privateNameStack.length === 0) && this.options.checkPrivateFields && this.unexpected(), o = this.parsePrivateIdent(), this.type !== a._in && this.unexpected();
1196
+ else {
1197
+ if (o = this.parseExprSubscripts(e, s), this.checkExpressionErrors(e)) return o;
1198
+ for (; this.type.postfix && !this.canInsertSemicolon(); ) {
1199
+ var d = this.startNodeAt(r, n);
1200
+ d.operator = this.value, d.prefix = false, d.argument = o, this.checkLValSimple(o), this.next(), o = this.finishNode(d, "UpdateExpression");
1201
+ }
1202
+ }
1203
+ if (!i && this.eat(a.starstar)) if (t) this.unexpected(this.lastTokStart);
1204
+ else return this.buildBinary(r, n, o, this.parseMaybeUnary(null, false, false, s), "**", false);
1205
+ else return o;
1206
+ };
1207
+ function bt(e) {
1208
+ return e.type === "Identifier" || e.type === "ParenthesizedExpression" && bt(e.expression);
1209
+ }
1210
+ function Re(e) {
1211
+ return e.type === "MemberExpression" && e.property.type === "PrivateIdentifier" || e.type === "ChainExpression" && Re(e.expression) || e.type === "ParenthesizedExpression" && Re(e.expression);
1212
+ }
1213
+ y.parseExprSubscripts = function(e, t) {
1214
+ var i = this.start, s = this.startLoc, r = this.parseExprAtom(e, t);
1215
+ if (r.type === "ArrowFunctionExpression" && this.input.slice(this.lastTokStart, this.lastTokEnd) !== ")") return r;
1216
+ var n = this.parseSubscripts(r, i, s, false, t);
1217
+ return e && n.type === "MemberExpression" && (e.parenthesizedAssign >= n.start && (e.parenthesizedAssign = -1), e.parenthesizedBind >= n.start && (e.parenthesizedBind = -1), e.trailingComma >= n.start && (e.trailingComma = -1)), n;
1218
+ };
1219
+ y.parseSubscripts = function(e, t, i, s, r) {
1220
+ for (var n = this.options.ecmaVersion >= 8 && e.type === "Identifier" && e.name === "async" && this.lastTokEnd === e.end && !this.canInsertSemicolon() && e.end - e.start === 5 && this.potentialArrowAt === e.start, o = false; ; ) {
1221
+ var u = this.parseSubscript(e, t, i, s, n, o, r);
1222
+ if (u.optional && (o = true), u === e || u.type === "ArrowFunctionExpression") {
1223
+ if (o) {
1224
+ var p = this.startNodeAt(t, i);
1225
+ p.expression = u, u = this.finishNode(p, "ChainExpression");
1226
+ }
1227
+ return u;
1228
+ }
1229
+ e = u;
1230
+ }
1231
+ };
1232
+ y.shouldParseAsyncArrow = function() {
1233
+ return !this.canInsertSemicolon() && this.eat(a.arrow);
1234
+ };
1235
+ y.parseSubscriptAsyncArrow = function(e, t, i, s) {
1236
+ return this.parseArrowExpression(this.startNodeAt(e, t), i, true, s);
1237
+ };
1238
+ y.parseSubscript = function(e, t, i, s, r, n, o) {
1239
+ var u = this.options.ecmaVersion >= 11, p = u && this.eat(a.questionDot);
1240
+ s && p && this.raise(this.lastTokStart, "Optional chaining cannot appear in the callee of new expressions");
1241
+ var d = this.eat(a.bracketL);
1242
+ if (d || p && this.type !== a.parenL && this.type !== a.backQuote || this.eat(a.dot)) {
1243
+ var l = this.startNodeAt(t, i);
1244
+ l.object = e, d ? (l.property = this.parseExpression(), this.expect(a.bracketR)) : this.type === a.privateId && e.type !== "Super" ? l.property = this.parsePrivateIdent() : l.property = this.parseIdent(this.options.allowReserved !== "never"), l.computed = !!d, u && (l.optional = p), e = this.finishNode(l, "MemberExpression");
1245
+ } else if (!s && this.eat(a.parenL)) {
1246
+ var C = new ye(), B = this.yieldPos, h = this.awaitPos, m = this.awaitIdentPos;
1247
+ this.yieldPos = 0, this.awaitPos = 0, this.awaitIdentPos = 0;
1248
+ var x = this.parseExprList(a.parenR, this.options.ecmaVersion >= 8, false, C);
1249
+ if (r && !p && this.shouldParseAsyncArrow()) return this.checkPatternErrors(C, false), this.checkYieldAwaitInDefaultParams(), this.awaitIdentPos > 0 && this.raise(this.awaitIdentPos, "Cannot use 'await' as identifier inside an async function"), this.yieldPos = B, this.awaitPos = h, this.awaitIdentPos = m, this.parseSubscriptAsyncArrow(t, i, x, o);
1250
+ this.checkExpressionErrors(C, true), this.yieldPos = B || this.yieldPos, this.awaitPos = h || this.awaitPos, this.awaitIdentPos = m || this.awaitIdentPos;
1251
+ var g = this.startNodeAt(t, i);
1252
+ g.callee = e, g.arguments = x, u && (g.optional = p), e = this.finishNode(g, "CallExpression");
1253
+ } else if (this.type === a.backQuote) {
1254
+ (p || n) && this.raise(this.start, "Optional chaining cannot appear in the tag of tagged template expressions");
1255
+ var w = this.startNodeAt(t, i);
1256
+ w.tag = e, w.quasi = this.parseTemplate({ isTagged: true }), e = this.finishNode(w, "TaggedTemplateExpression");
1257
+ }
1258
+ return e;
1259
+ };
1260
+ y.parseExprAtom = function(e, t, i) {
1261
+ this.type === a.slash && this.readRegexp();
1262
+ var s, r = this.potentialArrowAt === this.start;
1263
+ switch (this.type) {
1264
+ case a._super:
1265
+ return this.allowSuper || this.raise(this.start, "'super' keyword outside a method"), s = this.startNode(), this.next(), this.type === a.parenL && !this.allowDirectSuper && this.raise(s.start, "super() call outside constructor of a subclass"), this.type !== a.dot && this.type !== a.bracketL && this.type !== a.parenL && this.unexpected(), this.finishNode(s, "Super");
1266
+ case a._this:
1267
+ return s = this.startNode(), this.next(), this.finishNode(s, "ThisExpression");
1268
+ case a.name:
1269
+ var n = this.start, o = this.startLoc, u = this.containsEsc, p = this.parseIdent(false);
1270
+ if (this.options.ecmaVersion >= 8 && !u && p.name === "async" && !this.canInsertSemicolon() && this.eat(a._function)) return this.overrideContext(_.f_expr), this.parseFunction(this.startNodeAt(n, o), 0, false, true, t);
1271
+ if (r && !this.canInsertSemicolon()) {
1272
+ if (this.eat(a.arrow)) return this.parseArrowExpression(this.startNodeAt(n, o), [p], false, t);
1273
+ if (this.options.ecmaVersion >= 8 && p.name === "async" && this.type === a.name && !u && (!this.potentialArrowInForAwait || this.value !== "of" || this.containsEsc)) return p = this.parseIdent(false), (this.canInsertSemicolon() || !this.eat(a.arrow)) && this.unexpected(), this.parseArrowExpression(this.startNodeAt(n, o), [p], true, t);
1274
+ }
1275
+ return p;
1276
+ case a.regexp:
1277
+ var d = this.value;
1278
+ return s = this.parseLiteral(d.value), s.regex = { pattern: d.pattern, flags: d.flags }, s;
1279
+ case a.num:
1280
+ case a.string:
1281
+ return this.parseLiteral(this.value);
1282
+ case a._null:
1283
+ case a._true:
1284
+ case a._false:
1285
+ return s = this.startNode(), s.value = this.type === a._null ? null : this.type === a._true, s.raw = this.type.keyword, this.next(), this.finishNode(s, "Literal");
1286
+ case a.parenL:
1287
+ var l = this.start, C = this.parseParenAndDistinguishExpression(r, t);
1288
+ return e && (e.parenthesizedAssign < 0 && !this.isSimpleAssignTarget(C) && (e.parenthesizedAssign = l), e.parenthesizedBind < 0 && (e.parenthesizedBind = l)), C;
1289
+ case a.bracketL:
1290
+ return s = this.startNode(), this.next(), s.elements = this.parseExprList(a.bracketR, true, true, e), this.finishNode(s, "ArrayExpression");
1291
+ case a.braceL:
1292
+ return this.overrideContext(_.b_expr), this.parseObj(false, e);
1293
+ case a._function:
1294
+ return s = this.startNode(), this.next(), this.parseFunction(s, 0);
1295
+ case a._class:
1296
+ return this.parseClass(this.startNode(), false);
1297
+ case a._new:
1298
+ return this.parseNew();
1299
+ case a.backQuote:
1300
+ return this.parseTemplate();
1301
+ case a._import:
1302
+ return this.options.ecmaVersion >= 11 ? this.parseExprImport(i) : this.unexpected();
1303
+ default:
1304
+ return this.parseExprAtomDefault();
1305
+ }
1306
+ };
1307
+ y.parseExprAtomDefault = function() {
1308
+ this.unexpected();
1309
+ };
1310
+ y.parseExprImport = function(e) {
1311
+ var t = this.startNode();
1312
+ if (this.containsEsc && this.raiseRecoverable(this.start, "Escape sequence in keyword import"), this.next(), this.type === a.parenL && !e) return this.parseDynamicImport(t);
1313
+ if (this.type === a.dot) {
1314
+ var i = this.startNodeAt(t.start, t.loc && t.loc.start);
1315
+ return i.name = "import", t.meta = this.finishNode(i, "Identifier"), this.parseImportMeta(t);
1316
+ } else this.unexpected();
1317
+ };
1318
+ y.parseDynamicImport = function(e) {
1319
+ if (this.next(), e.source = this.parseMaybeAssign(), !this.eat(a.parenR)) {
1320
+ var t = this.start;
1321
+ this.eat(a.comma) && this.eat(a.parenR) ? this.raiseRecoverable(t, "Trailing comma is not allowed in import()") : this.unexpected(t);
1322
+ }
1323
+ return this.finishNode(e, "ImportExpression");
1324
+ };
1325
+ y.parseImportMeta = function(e) {
1326
+ this.next();
1327
+ var t = this.containsEsc;
1328
+ return e.property = this.parseIdent(true), e.property.name !== "meta" && this.raiseRecoverable(e.property.start, "The only valid meta property for import is 'import.meta'"), t && this.raiseRecoverable(e.start, "'import.meta' must not contain escaped characters"), this.options.sourceType !== "module" && !this.options.allowImportExportEverywhere && this.raiseRecoverable(e.start, "Cannot use 'import.meta' outside a module"), this.finishNode(e, "MetaProperty");
1329
+ };
1330
+ y.parseLiteral = function(e) {
1331
+ var t = this.startNode();
1332
+ return t.value = e, t.raw = this.input.slice(this.start, this.end), t.raw.charCodeAt(t.raw.length - 1) === 110 && (t.bigint = t.raw.slice(0, -1).replace(/_/g, "")), this.next(), this.finishNode(t, "Literal");
1333
+ };
1334
+ y.parseParenExpression = function() {
1335
+ this.expect(a.parenL);
1336
+ var e = this.parseExpression();
1337
+ return this.expect(a.parenR), e;
1338
+ };
1339
+ y.shouldParseArrow = function(e) {
1340
+ return !this.canInsertSemicolon();
1341
+ };
1342
+ y.parseParenAndDistinguishExpression = function(e, t) {
1343
+ var i = this.start, s = this.startLoc, r, n = this.options.ecmaVersion >= 8;
1344
+ if (this.options.ecmaVersion >= 6) {
1345
+ this.next();
1346
+ var o = this.start, u = this.startLoc, p = [], d = true, l = false, C = new ye(), B = this.yieldPos, h = this.awaitPos, m;
1347
+ for (this.yieldPos = 0, this.awaitPos = 0; this.type !== a.parenR; ) if (d ? d = false : this.expect(a.comma), n && this.afterTrailingComma(a.parenR, true)) {
1348
+ l = true;
1349
+ break;
1350
+ } else if (this.type === a.ellipsis) {
1351
+ m = this.start, p.push(this.parseParenItem(this.parseRestBinding())), this.type === a.comma && this.raiseRecoverable(this.start, "Comma is not permitted after the rest element");
1352
+ break;
1353
+ } else p.push(this.parseMaybeAssign(false, C, this.parseParenItem));
1354
+ var x = this.lastTokEnd, g = this.lastTokEndLoc;
1355
+ if (this.expect(a.parenR), e && this.shouldParseArrow(p) && this.eat(a.arrow)) return this.checkPatternErrors(C, false), this.checkYieldAwaitInDefaultParams(), this.yieldPos = B, this.awaitPos = h, this.parseParenArrowList(i, s, p, t);
1356
+ (!p.length || l) && this.unexpected(this.lastTokStart), m && this.unexpected(m), this.checkExpressionErrors(C, true), this.yieldPos = B || this.yieldPos, this.awaitPos = h || this.awaitPos, p.length > 1 ? (r = this.startNodeAt(o, u), r.expressions = p, this.finishNodeAt(r, "SequenceExpression", x, g)) : r = p[0];
1357
+ } else r = this.parseParenExpression();
1358
+ if (this.options.preserveParens) {
1359
+ var w = this.startNodeAt(i, s);
1360
+ return w.expression = r, this.finishNode(w, "ParenthesizedExpression");
1361
+ } else return r;
1362
+ };
1363
+ y.parseParenItem = function(e) {
1364
+ return e;
1365
+ };
1366
+ y.parseParenArrowList = function(e, t, i, s) {
1367
+ return this.parseArrowExpression(this.startNodeAt(e, t), i, false, s);
1368
+ };
1369
+ var Di = [];
1370
+ y.parseNew = function() {
1371
+ this.containsEsc && this.raiseRecoverable(this.start, "Escape sequence in keyword new");
1372
+ var e = this.startNode();
1373
+ if (this.next(), this.options.ecmaVersion >= 6 && this.type === a.dot) {
1374
+ var t = this.startNodeAt(e.start, e.loc && e.loc.start);
1375
+ t.name = "new", e.meta = this.finishNode(t, "Identifier"), this.next();
1376
+ var i = this.containsEsc;
1377
+ return e.property = this.parseIdent(true), e.property.name !== "target" && this.raiseRecoverable(e.property.start, "The only valid meta property for new is 'new.target'"), i && this.raiseRecoverable(e.start, "'new.target' must not contain escaped characters"), this.allowNewDotTarget || this.raiseRecoverable(e.start, "'new.target' can only be used in functions and class static block"), this.finishNode(e, "MetaProperty");
1378
+ }
1379
+ var s = this.start, r = this.startLoc;
1380
+ return e.callee = this.parseSubscripts(this.parseExprAtom(null, false, true), s, r, true, false), this.eat(a.parenL) ? e.arguments = this.parseExprList(a.parenR, this.options.ecmaVersion >= 8, false) : e.arguments = Di, this.finishNode(e, "NewExpression");
1381
+ };
1382
+ y.parseTemplateElement = function(e) {
1383
+ var t = e.isTagged, i = this.startNode();
1384
+ return this.type === a.invalidTemplate ? (t || this.raiseRecoverable(this.start, "Bad escape sequence in untagged template literal"), i.value = { raw: this.value.replace(/\r\n?/g, `
1385
+ `), cooked: null }) : i.value = { raw: this.input.slice(this.start, this.end).replace(/\r\n?/g, `
1386
+ `), cooked: this.value }, this.next(), i.tail = this.type === a.backQuote, this.finishNode(i, "TemplateElement");
1387
+ };
1388
+ y.parseTemplate = function(e) {
1389
+ e === void 0 && (e = {});
1390
+ var t = e.isTagged;
1391
+ t === void 0 && (t = false);
1392
+ var i = this.startNode();
1393
+ this.next(), i.expressions = [];
1394
+ var s = this.parseTemplateElement({ isTagged: t });
1395
+ for (i.quasis = [s]; !s.tail; ) this.type === a.eof && this.raise(this.pos, "Unterminated template literal"), this.expect(a.dollarBraceL), i.expressions.push(this.parseExpression()), this.expect(a.braceR), i.quasis.push(s = this.parseTemplateElement({ isTagged: t }));
1396
+ return this.next(), this.finishNode(i, "TemplateLiteral");
1397
+ };
1398
+ y.isAsyncProp = function(e) {
1399
+ return !e.computed && e.key.type === "Identifier" && e.key.name === "async" && (this.type === a.name || this.type === a.num || this.type === a.string || this.type === a.bracketL || this.type.keyword || this.options.ecmaVersion >= 9 && this.type === a.star) && !R.test(this.input.slice(this.lastTokEnd, this.start));
1400
+ };
1401
+ y.parseObj = function(e, t) {
1402
+ var i = this.startNode(), s = true, r = {};
1403
+ for (i.properties = [], this.next(); !this.eat(a.braceR); ) {
1404
+ if (s) s = false;
1405
+ else if (this.expect(a.comma), this.options.ecmaVersion >= 5 && this.afterTrailingComma(a.braceR)) break;
1406
+ var n = this.parseProperty(e, t);
1407
+ e || this.checkPropClash(n, r, t), i.properties.push(n);
1408
+ }
1409
+ return this.finishNode(i, e ? "ObjectPattern" : "ObjectExpression");
1410
+ };
1411
+ y.parseProperty = function(e, t) {
1412
+ var i = this.startNode(), s, r, n, o;
1413
+ if (this.options.ecmaVersion >= 9 && this.eat(a.ellipsis)) return e ? (i.argument = this.parseIdent(false), this.type === a.comma && this.raiseRecoverable(this.start, "Comma is not permitted after the rest element"), this.finishNode(i, "RestElement")) : (i.argument = this.parseMaybeAssign(false, t), this.type === a.comma && t && t.trailingComma < 0 && (t.trailingComma = this.start), this.finishNode(i, "SpreadElement"));
1414
+ this.options.ecmaVersion >= 6 && (i.method = false, i.shorthand = false, (e || t) && (n = this.start, o = this.startLoc), e || (s = this.eat(a.star)));
1415
+ var u = this.containsEsc;
1416
+ return this.parsePropertyName(i), !e && !u && this.options.ecmaVersion >= 8 && !s && this.isAsyncProp(i) ? (r = true, s = this.options.ecmaVersion >= 9 && this.eat(a.star), this.parsePropertyName(i)) : r = false, this.parsePropertyValue(i, e, s, r, n, o, t, u), this.finishNode(i, "Property");
1417
+ };
1418
+ y.parseGetterSetter = function(e) {
1419
+ e.kind = e.key.name, this.parsePropertyName(e), e.value = this.parseMethod(false);
1420
+ var t = e.kind === "get" ? 0 : 1;
1421
+ if (e.value.params.length !== t) {
1422
+ var i = e.value.start;
1423
+ e.kind === "get" ? this.raiseRecoverable(i, "getter should have no params") : this.raiseRecoverable(i, "setter should have exactly one param");
1424
+ } else e.kind === "set" && e.value.params[0].type === "RestElement" && this.raiseRecoverable(e.value.params[0].start, "Setter cannot use rest params");
1425
+ };
1426
+ y.parsePropertyValue = function(e, t, i, s, r, n, o, u) {
1427
+ (i || s) && this.type === a.colon && this.unexpected(), this.eat(a.colon) ? (e.value = t ? this.parseMaybeDefault(this.start, this.startLoc) : this.parseMaybeAssign(false, o), e.kind = "init") : this.options.ecmaVersion >= 6 && this.type === a.parenL ? (t && this.unexpected(), e.kind = "init", e.method = true, e.value = this.parseMethod(i, s)) : !t && !u && this.options.ecmaVersion >= 5 && !e.computed && e.key.type === "Identifier" && (e.key.name === "get" || e.key.name === "set") && this.type !== a.comma && this.type !== a.braceR && this.type !== a.eq ? ((i || s) && this.unexpected(), this.parseGetterSetter(e)) : this.options.ecmaVersion >= 6 && !e.computed && e.key.type === "Identifier" ? ((i || s) && this.unexpected(), this.checkUnreserved(e.key), e.key.name === "await" && !this.awaitIdentPos && (this.awaitIdentPos = r), e.kind = "init", t ? e.value = this.parseMaybeDefault(r, n, this.copyNode(e.key)) : this.type === a.eq && o ? (o.shorthandAssign < 0 && (o.shorthandAssign = this.start), e.value = this.parseMaybeDefault(r, n, this.copyNode(e.key))) : e.value = this.copyNode(e.key), e.shorthand = true) : this.unexpected();
1428
+ };
1429
+ y.parsePropertyName = function(e) {
1430
+ if (this.options.ecmaVersion >= 6) {
1431
+ if (this.eat(a.bracketL)) return e.computed = true, e.key = this.parseMaybeAssign(), this.expect(a.bracketR), e.key;
1432
+ e.computed = false;
1433
+ }
1434
+ return e.key = this.type === a.num || this.type === a.string ? this.parseExprAtom() : this.parseIdent(this.options.allowReserved !== "never");
1435
+ };
1436
+ y.initFunction = function(e) {
1437
+ e.id = null, this.options.ecmaVersion >= 6 && (e.generator = e.expression = false), this.options.ecmaVersion >= 8 && (e.async = false);
1438
+ };
1439
+ y.parseMethod = function(e, t, i) {
1440
+ var s = this.startNode(), r = this.yieldPos, n = this.awaitPos, o = this.awaitIdentPos;
1441
+ return this.initFunction(s), this.options.ecmaVersion >= 6 && (s.generator = e), this.options.ecmaVersion >= 8 && (s.async = !!t), this.yieldPos = 0, this.awaitPos = 0, this.awaitIdentPos = 0, this.enterScope(Me(t, s.generator) | De | (i ? mt : 0)), this.expect(a.parenL), s.params = this.parseBindingList(a.parenR, false, this.options.ecmaVersion >= 8), this.checkYieldAwaitInDefaultParams(), this.parseFunctionBody(s, false, true, false), this.yieldPos = r, this.awaitPos = n, this.awaitIdentPos = o, this.finishNode(s, "FunctionExpression");
1442
+ };
1443
+ y.parseArrowExpression = function(e, t, i, s) {
1444
+ var r = this.yieldPos, n = this.awaitPos, o = this.awaitIdentPos;
1445
+ return this.enterScope(Me(i, false) | ft), this.initFunction(e), this.options.ecmaVersion >= 8 && (e.async = !!i), this.yieldPos = 0, this.awaitPos = 0, this.awaitIdentPos = 0, e.params = this.toAssignableList(t, true), this.parseFunctionBody(e, true, false, s), this.yieldPos = r, this.awaitPos = n, this.awaitIdentPos = o, this.finishNode(e, "ArrowFunctionExpression");
1446
+ };
1447
+ y.parseFunctionBody = function(e, t, i, s) {
1448
+ var r = t && this.type !== a.braceL, n = this.strict, o = false;
1449
+ if (r) e.body = this.parseMaybeAssign(s), e.expression = true, this.checkParams(e, false);
1450
+ else {
1451
+ var u = this.options.ecmaVersion >= 7 && !this.isSimpleParamList(e.params);
1452
+ (!n || u) && (o = this.strictDirective(this.end), o && u && this.raiseRecoverable(e.start, "Illegal 'use strict' directive in function with non-simple parameter list"));
1453
+ var p = this.labels;
1454
+ this.labels = [], o && (this.strict = true), this.checkParams(e, !n && !o && !t && !i && this.isSimpleParamList(e.params)), this.strict && e.id && this.checkLValSimple(e.id, gt), e.body = this.parseBlock(false, void 0, o && !n), e.expression = false, this.adaptDirectivePrologue(e.body.body), this.labels = p;
1455
+ }
1456
+ this.exitScope();
1457
+ };
1458
+ y.isSimpleParamList = function(e) {
1459
+ for (var t = 0, i = e; t < i.length; t += 1) {
1460
+ var s = i[t];
1461
+ if (s.type !== "Identifier") return false;
1462
+ }
1463
+ return true;
1464
+ };
1465
+ y.checkParams = function(e, t) {
1466
+ for (var i = /* @__PURE__ */ Object.create(null), s = 0, r = e.params; s < r.length; s += 1) {
1467
+ var n = r[s];
1468
+ this.checkLValInnerPattern(n, je, t ? null : i);
1469
+ }
1470
+ };
1471
+ y.parseExprList = function(e, t, i, s) {
1472
+ for (var r = [], n = true; !this.eat(e); ) {
1473
+ if (n) n = false;
1474
+ else if (this.expect(a.comma), t && this.afterTrailingComma(e)) break;
1475
+ var o = void 0;
1476
+ i && this.type === a.comma ? o = null : this.type === a.ellipsis ? (o = this.parseSpread(s), s && this.type === a.comma && s.trailingComma < 0 && (s.trailingComma = this.start)) : o = this.parseMaybeAssign(false, s), r.push(o);
1477
+ }
1478
+ return r;
1479
+ };
1480
+ y.checkUnreserved = function(e) {
1481
+ var t = e.start, i = e.end, s = e.name;
1482
+ if (this.inGenerator && s === "yield" && this.raiseRecoverable(t, "Cannot use 'yield' as identifier inside a generator"), this.inAsync && s === "await" && this.raiseRecoverable(t, "Cannot use 'await' as identifier inside an async function"), this.currentThisScope().inClassFieldInit && s === "arguments" && this.raiseRecoverable(t, "Cannot use 'arguments' in class field initializer"), this.inClassStaticBlock && (s === "arguments" || s === "await") && this.raise(t, "Cannot use " + s + " in class static initialization block"), this.keywords.test(s) && this.raise(t, "Unexpected keyword '" + s + "'"), !(this.options.ecmaVersion < 6 && this.input.slice(t, i).indexOf("\\") !== -1)) {
1483
+ var r = this.strict ? this.reservedWordsStrict : this.reservedWords;
1484
+ r.test(s) && (!this.inAsync && s === "await" && this.raiseRecoverable(t, "Cannot use keyword 'await' outside an async function"), this.raiseRecoverable(t, "The keyword '" + s + "' is reserved"));
1485
+ }
1486
+ };
1487
+ y.parseIdent = function(e) {
1488
+ var t = this.parseIdentNode();
1489
+ return this.next(!!e), this.finishNode(t, "Identifier"), e || (this.checkUnreserved(t), t.name === "await" && !this.awaitIdentPos && (this.awaitIdentPos = t.start)), t;
1490
+ };
1491
+ y.parseIdentNode = function() {
1492
+ var e = this.startNode();
1493
+ return this.type === a.name ? e.name = this.value : this.type.keyword ? (e.name = this.type.keyword, (e.name === "class" || e.name === "function") && (this.lastTokEnd !== this.lastTokStart + 1 || this.input.charCodeAt(this.lastTokStart) !== 46) && this.context.pop(), this.type = a.name) : this.unexpected(), e;
1494
+ };
1495
+ y.parsePrivateIdent = function() {
1496
+ var e = this.startNode();
1497
+ return this.type === a.privateId ? e.name = this.value : this.unexpected(), this.next(), this.finishNode(e, "PrivateIdentifier"), this.options.checkPrivateFields && (this.privateNameStack.length === 0 ? this.raise(e.start, "Private field '#" + e.name + "' must be declared in an enclosing class") : this.privateNameStack[this.privateNameStack.length - 1].used.push(e)), e;
1498
+ };
1499
+ y.parseYield = function(e) {
1500
+ this.yieldPos || (this.yieldPos = this.start);
1501
+ var t = this.startNode();
1502
+ return this.next(), this.type === a.semi || this.canInsertSemicolon() || this.type !== a.star && !this.type.startsExpr ? (t.delegate = false, t.argument = null) : (t.delegate = this.eat(a.star), t.argument = this.parseMaybeAssign(e)), this.finishNode(t, "YieldExpression");
1503
+ };
1504
+ y.parseAwait = function(e) {
1505
+ this.awaitPos || (this.awaitPos = this.start);
1506
+ var t = this.startNode();
1507
+ return this.next(), t.argument = this.parseMaybeUnary(null, true, false, e), this.finishNode(t, "AwaitExpression");
1508
+ };
1509
+ var de = T.prototype;
1510
+ de.raise = function(e, t) {
1511
+ var i = ct(this.input, e);
1512
+ t += " (" + i.line + ":" + i.column + ")";
1513
+ var s = new SyntaxError(t);
1514
+ throw s.pos = e, s.loc = i, s.raisedAt = this.pos, s;
1515
+ };
1516
+ de.raiseRecoverable = de.raise;
1517
+ de.curPosition = function() {
1518
+ if (this.options.locations) return new te(this.curLine, this.pos - this.lineStart);
1519
+ };
1520
+ var X = T.prototype;
1521
+ var Fi = function(t) {
1522
+ this.flags = t, this.var = [], this.lexical = [], this.functions = [], this.inClassFieldInit = false;
1523
+ };
1524
+ X.enterScope = function(e) {
1525
+ this.scopeStack.push(new Fi(e));
1526
+ };
1527
+ X.exitScope = function() {
1528
+ this.scopeStack.pop();
1529
+ };
1530
+ X.treatFunctionsAsVarInScope = function(e) {
1531
+ return e.flags & Y || !this.inModule && e.flags & ie;
1532
+ };
1533
+ X.declareName = function(e, t, i) {
1534
+ var s = false;
1535
+ if (t === J) {
1536
+ var r = this.currentScope();
1537
+ s = r.lexical.indexOf(e) > -1 || r.functions.indexOf(e) > -1 || r.var.indexOf(e) > -1, r.lexical.push(e), this.inModule && r.flags & ie && delete this.undefinedExports[e];
1538
+ } else if (t === yt) {
1539
+ var n = this.currentScope();
1540
+ n.lexical.push(e);
1541
+ } else if (t === xt) {
1542
+ var o = this.currentScope();
1543
+ this.treatFunctionsAsVar ? s = o.lexical.indexOf(e) > -1 : s = o.lexical.indexOf(e) > -1 || o.var.indexOf(e) > -1, o.functions.push(e);
1544
+ } else for (var u = this.scopeStack.length - 1; u >= 0; --u) {
1545
+ var p = this.scopeStack[u];
1546
+ if (p.lexical.indexOf(e) > -1 && !(p.flags & dt && p.lexical[0] === e) || !this.treatFunctionsAsVarInScope(p) && p.functions.indexOf(e) > -1) {
1547
+ s = true;
1548
+ break;
1549
+ }
1550
+ if (p.var.push(e), this.inModule && p.flags & ie && delete this.undefinedExports[e], p.flags & Fe) break;
1551
+ }
1552
+ s && this.raiseRecoverable(i, "Identifier '" + e + "' has already been declared");
1553
+ };
1554
+ X.checkLocalExport = function(e) {
1555
+ this.scopeStack[0].lexical.indexOf(e.name) === -1 && this.scopeStack[0].var.indexOf(e.name) === -1 && (this.undefinedExports[e.name] = e);
1556
+ };
1557
+ X.currentScope = function() {
1558
+ return this.scopeStack[this.scopeStack.length - 1];
1559
+ };
1560
+ X.currentVarScope = function() {
1561
+ for (var e = this.scopeStack.length - 1; ; e--) {
1562
+ var t = this.scopeStack[e];
1563
+ if (t.flags & Fe) return t;
1564
+ }
1565
+ };
1566
+ X.currentThisScope = function() {
1567
+ for (var e = this.scopeStack.length - 1; ; e--) {
1568
+ var t = this.scopeStack[e];
1569
+ if (t.flags & Fe && !(t.flags & ft)) return t;
1570
+ }
1571
+ };
1572
+ var ge = function(t, i, s) {
1573
+ this.type = "", this.start = i, this.end = 0, t.options.locations && (this.loc = new xe(t, s)), t.options.directSourceFile && (this.sourceFile = t.options.directSourceFile), t.options.ranges && (this.range = [i, 0]);
1574
+ };
1575
+ var ae = T.prototype;
1576
+ ae.startNode = function() {
1577
+ return new ge(this, this.start, this.startLoc);
1578
+ };
1579
+ ae.startNodeAt = function(e, t) {
1580
+ return new ge(this, e, t);
1581
+ };
1582
+ function St(e, t, i, s) {
1583
+ return e.type = t, e.end = i, this.options.locations && (e.loc.end = s), this.options.ranges && (e.range[1] = i), e;
1584
+ }
1585
+ ae.finishNode = function(e, t) {
1586
+ return St.call(this, e, t, this.lastTokEnd, this.lastTokEndLoc);
1587
+ };
1588
+ ae.finishNodeAt = function(e, t, i, s) {
1589
+ return St.call(this, e, t, i, s);
1590
+ };
1591
+ ae.copyNode = function(e) {
1592
+ var t = new ge(this, e.start, this.startLoc);
1593
+ for (var i in e) t[i] = e[i];
1594
+ return t;
1595
+ };
1596
+ var Ct = "ASCII ASCII_Hex_Digit AHex Alphabetic Alpha Any Assigned Bidi_Control Bidi_C Bidi_Mirrored Bidi_M Case_Ignorable CI Cased Changes_When_Casefolded CWCF Changes_When_Casemapped CWCM Changes_When_Lowercased CWL Changes_When_NFKC_Casefolded CWKCF Changes_When_Titlecased CWT Changes_When_Uppercased CWU Dash Default_Ignorable_Code_Point DI Deprecated Dep Diacritic Dia Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Extender Ext Grapheme_Base Gr_Base Grapheme_Extend Gr_Ext Hex_Digit Hex IDS_Binary_Operator IDSB IDS_Trinary_Operator IDST ID_Continue IDC ID_Start IDS Ideographic Ideo Join_Control Join_C Logical_Order_Exception LOE Lowercase Lower Math Noncharacter_Code_Point NChar Pattern_Syntax Pat_Syn Pattern_White_Space Pat_WS Quotation_Mark QMark Radical Regional_Indicator RI Sentence_Terminal STerm Soft_Dotted SD Terminal_Punctuation Term Unified_Ideograph UIdeo Uppercase Upper Variation_Selector VS White_Space space XID_Continue XIDC XID_Start XIDS";
1597
+ var _t = Ct + " Extended_Pictographic";
1598
+ var Tt = _t;
1599
+ var kt = Tt + " EBase EComp EMod EPres ExtPict";
1600
+ var Et = kt;
1601
+ var Mi = Et;
1602
+ var ji = { 9: Ct, 10: _t, 11: Tt, 12: kt, 13: Et, 14: Mi };
1603
+ var Ui = "Basic_Emoji Emoji_Keycap_Sequence RGI_Emoji_Modifier_Sequence RGI_Emoji_Flag_Sequence RGI_Emoji_Tag_Sequence RGI_Emoji_ZWJ_Sequence RGI_Emoji";
1604
+ var qi = { 9: "", 10: "", 11: "", 12: "", 13: "", 14: Ui };
1605
+ var rt = "Cased_Letter LC Close_Punctuation Pe Connector_Punctuation Pc Control Cc cntrl Currency_Symbol Sc Dash_Punctuation Pd Decimal_Number Nd digit Enclosing_Mark Me Final_Punctuation Pf Format Cf Initial_Punctuation Pi Letter L Letter_Number Nl Line_Separator Zl Lowercase_Letter Ll Mark M Combining_Mark Math_Symbol Sm Modifier_Letter Lm Modifier_Symbol Sk Nonspacing_Mark Mn Number N Open_Punctuation Ps Other C Other_Letter Lo Other_Number No Other_Punctuation Po Other_Symbol So Paragraph_Separator Zp Private_Use Co Punctuation P punct Separator Z Space_Separator Zs Spacing_Mark Mc Surrogate Cs Symbol S Titlecase_Letter Lt Unassigned Cn Uppercase_Letter Lu";
1606
+ var wt = "Adlam Adlm Ahom Anatolian_Hieroglyphs Hluw Arabic Arab Armenian Armn Avestan Avst Balinese Bali Bamum Bamu Bassa_Vah Bass Batak Batk Bengali Beng Bhaiksuki Bhks Bopomofo Bopo Brahmi Brah Braille Brai Buginese Bugi Buhid Buhd Canadian_Aboriginal Cans Carian Cari Caucasian_Albanian Aghb Chakma Cakm Cham Cham Cherokee Cher Common Zyyy Coptic Copt Qaac Cuneiform Xsux Cypriot Cprt Cyrillic Cyrl Deseret Dsrt Devanagari Deva Duployan Dupl Egyptian_Hieroglyphs Egyp Elbasan Elba Ethiopic Ethi Georgian Geor Glagolitic Glag Gothic Goth Grantha Gran Greek Grek Gujarati Gujr Gurmukhi Guru Han Hani Hangul Hang Hanunoo Hano Hatran Hatr Hebrew Hebr Hiragana Hira Imperial_Aramaic Armi Inherited Zinh Qaai Inscriptional_Pahlavi Phli Inscriptional_Parthian Prti Javanese Java Kaithi Kthi Kannada Knda Katakana Kana Kayah_Li Kali Kharoshthi Khar Khmer Khmr Khojki Khoj Khudawadi Sind Lao Laoo Latin Latn Lepcha Lepc Limbu Limb Linear_A Lina Linear_B Linb Lisu Lisu Lycian Lyci Lydian Lydi Mahajani Mahj Malayalam Mlym Mandaic Mand Manichaean Mani Marchen Marc Masaram_Gondi Gonm Meetei_Mayek Mtei Mende_Kikakui Mend Meroitic_Cursive Merc Meroitic_Hieroglyphs Mero Miao Plrd Modi Mongolian Mong Mro Mroo Multani Mult Myanmar Mymr Nabataean Nbat New_Tai_Lue Talu Newa Newa Nko Nkoo Nushu Nshu Ogham Ogam Ol_Chiki Olck Old_Hungarian Hung Old_Italic Ital Old_North_Arabian Narb Old_Permic Perm Old_Persian Xpeo Old_South_Arabian Sarb Old_Turkic Orkh Oriya Orya Osage Osge Osmanya Osma Pahawh_Hmong Hmng Palmyrene Palm Pau_Cin_Hau Pauc Phags_Pa Phag Phoenician Phnx Psalter_Pahlavi Phlp Rejang Rjng Runic Runr Samaritan Samr Saurashtra Saur Sharada Shrd Shavian Shaw Siddham Sidd SignWriting Sgnw Sinhala Sinh Sora_Sompeng Sora Soyombo Soyo Sundanese Sund Syloti_Nagri Sylo Syriac Syrc Tagalog Tglg Tagbanwa Tagb Tai_Le Tale Tai_Tham Lana Tai_Viet Tavt Takri Takr Tamil Taml Tangut Tang Telugu Telu Thaana Thaa Thai Thai Tibetan Tibt Tifinagh Tfng Tirhuta Tirh Ugaritic Ugar Vai Vaii Warang_Citi Wara Yi Yiii Zanabazar_Square Zanb";
1607
+ var At = wt + " Dogra Dogr Gunjala_Gondi Gong Hanifi_Rohingya Rohg Makasar Maka Medefaidrin Medf Old_Sogdian Sogo Sogdian Sogd";
1608
+ var Pt = At + " Elymaic Elym Nandinagari Nand Nyiakeng_Puachue_Hmong Hmnp Wancho Wcho";
1609
+ var It = Pt + " Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi";
1610
+ var Nt = It + " Cypro_Minoan Cpmn Old_Uyghur Ougr Tangsa Tnsa Toto Vithkuqi Vith";
1611
+ var Ji = Nt + " Hrkt Katakana_Or_Hiragana Kawi Nag_Mundari Nagm Unknown Zzzz";
1612
+ var Gi = { 9: wt, 10: At, 11: Pt, 12: It, 13: Nt, 14: Ji };
1613
+ var Vt = {};
1614
+ function Ki(e) {
1615
+ var t = Vt[e] = { binary: G(ji[e] + " " + rt), binaryOfStrings: G(qi[e]), nonBinary: { General_Category: G(rt), Script: G(Gi[e]) } };
1616
+ t.nonBinary.Script_Extensions = t.nonBinary.Script, t.nonBinary.gc = t.nonBinary.General_Category, t.nonBinary.sc = t.nonBinary.Script, t.nonBinary.scx = t.nonBinary.Script_Extensions;
1617
+ }
1618
+ for (ce = 0, Ie = [9, 10, 11, 12, 13, 14]; ce < Ie.length; ce += 1) at = Ie[ce], Ki(at);
1619
+ var at;
1620
+ var ce;
1621
+ var Ie;
1622
+ var c = T.prototype;
1623
+ var me = function(t, i) {
1624
+ this.parent = t, this.base = i || this;
1625
+ };
1626
+ me.prototype.separatedFrom = function(t) {
1627
+ for (var i = this; i; i = i.parent) for (var s = t; s; s = s.parent) if (i.base === s.base && i !== s) return true;
1628
+ return false;
1629
+ };
1630
+ me.prototype.sibling = function() {
1631
+ return new me(this.parent, this.base);
1632
+ };
1633
+ var M = function(t) {
1634
+ this.parser = t, this.validFlags = "gim" + (t.options.ecmaVersion >= 6 ? "uy" : "") + (t.options.ecmaVersion >= 9 ? "s" : "") + (t.options.ecmaVersion >= 13 ? "d" : "") + (t.options.ecmaVersion >= 15 ? "v" : ""), this.unicodeProperties = Vt[t.options.ecmaVersion >= 14 ? 14 : t.options.ecmaVersion], this.source = "", this.flags = "", this.start = 0, this.switchU = false, this.switchV = false, this.switchN = false, this.pos = 0, this.lastIntValue = 0, this.lastStringValue = "", this.lastAssertionIsQuantifiable = false, this.numCapturingParens = 0, this.maxBackReference = 0, this.groupNames = /* @__PURE__ */ Object.create(null), this.backReferenceNames = [], this.branchID = null;
1635
+ };
1636
+ M.prototype.reset = function(t, i, s) {
1637
+ var r = s.indexOf("v") !== -1, n = s.indexOf("u") !== -1;
1638
+ this.start = t | 0, this.source = i + "", this.flags = s, r && this.parser.options.ecmaVersion >= 15 ? (this.switchU = true, this.switchV = true, this.switchN = true) : (this.switchU = n && this.parser.options.ecmaVersion >= 6, this.switchV = false, this.switchN = n && this.parser.options.ecmaVersion >= 9);
1639
+ };
1640
+ M.prototype.raise = function(t) {
1641
+ this.parser.raiseRecoverable(this.start, "Invalid regular expression: /" + this.source + "/: " + t);
1642
+ };
1643
+ M.prototype.at = function(t, i) {
1644
+ i === void 0 && (i = false);
1645
+ var s = this.source, r = s.length;
1646
+ if (t >= r) return -1;
1647
+ var n = s.charCodeAt(t);
1648
+ if (!(i || this.switchU) || n <= 55295 || n >= 57344 || t + 1 >= r) return n;
1649
+ var o = s.charCodeAt(t + 1);
1650
+ return o >= 56320 && o <= 57343 ? (n << 10) + o - 56613888 : n;
1651
+ };
1652
+ M.prototype.nextIndex = function(t, i) {
1653
+ i === void 0 && (i = false);
1654
+ var s = this.source, r = s.length;
1655
+ if (t >= r) return r;
1656
+ var n = s.charCodeAt(t), o;
1657
+ return !(i || this.switchU) || n <= 55295 || n >= 57344 || t + 1 >= r || (o = s.charCodeAt(t + 1)) < 56320 || o > 57343 ? t + 1 : t + 2;
1658
+ };
1659
+ M.prototype.current = function(t) {
1660
+ return t === void 0 && (t = false), this.at(this.pos, t);
1661
+ };
1662
+ M.prototype.lookahead = function(t) {
1663
+ return t === void 0 && (t = false), this.at(this.nextIndex(this.pos, t), t);
1664
+ };
1665
+ M.prototype.advance = function(t) {
1666
+ t === void 0 && (t = false), this.pos = this.nextIndex(this.pos, t);
1667
+ };
1668
+ M.prototype.eat = function(t, i) {
1669
+ return i === void 0 && (i = false), this.current(i) === t ? (this.advance(i), true) : false;
1670
+ };
1671
+ M.prototype.eatChars = function(t, i) {
1672
+ i === void 0 && (i = false);
1673
+ for (var s = this.pos, r = 0, n = t; r < n.length; r += 1) {
1674
+ var o = n[r], u = this.at(s, i);
1675
+ if (u === -1 || u !== o) return false;
1676
+ s = this.nextIndex(s, i);
1677
+ }
1678
+ return this.pos = s, true;
1679
+ };
1680
+ c.validateRegExpFlags = function(e) {
1681
+ for (var t = e.validFlags, i = e.flags, s = false, r = false, n = 0; n < i.length; n++) {
1682
+ var o = i.charAt(n);
1683
+ t.indexOf(o) === -1 && this.raise(e.start, "Invalid regular expression flag"), i.indexOf(o, n + 1) > -1 && this.raise(e.start, "Duplicate regular expression flag"), o === "u" && (s = true), o === "v" && (r = true);
1684
+ }
1685
+ this.options.ecmaVersion >= 15 && s && r && this.raise(e.start, "Invalid regular expression flag");
1686
+ };
1687
+ function Xi(e) {
1688
+ for (var t in e) return true;
1689
+ return false;
1690
+ }
1691
+ c.validateRegExpPattern = function(e) {
1692
+ this.regexp_pattern(e), !e.switchN && this.options.ecmaVersion >= 9 && Xi(e.groupNames) && (e.switchN = true, this.regexp_pattern(e));
1693
+ };
1694
+ c.regexp_pattern = function(e) {
1695
+ e.pos = 0, e.lastIntValue = 0, e.lastStringValue = "", e.lastAssertionIsQuantifiable = false, e.numCapturingParens = 0, e.maxBackReference = 0, e.groupNames = /* @__PURE__ */ Object.create(null), e.backReferenceNames.length = 0, e.branchID = null, this.regexp_disjunction(e), e.pos !== e.source.length && (e.eat(41) && e.raise("Unmatched ')'"), (e.eat(93) || e.eat(125)) && e.raise("Lone quantifier brackets")), e.maxBackReference > e.numCapturingParens && e.raise("Invalid escape");
1696
+ for (var t = 0, i = e.backReferenceNames; t < i.length; t += 1) {
1697
+ var s = i[t];
1698
+ e.groupNames[s] || e.raise("Invalid named capture referenced");
1699
+ }
1700
+ };
1701
+ c.regexp_disjunction = function(e) {
1702
+ var t = this.options.ecmaVersion >= 16;
1703
+ for (t && (e.branchID = new me(e.branchID, null)), this.regexp_alternative(e); e.eat(124); ) t && (e.branchID = e.branchID.sibling()), this.regexp_alternative(e);
1704
+ t && (e.branchID = e.branchID.parent), this.regexp_eatQuantifier(e, true) && e.raise("Nothing to repeat"), e.eat(123) && e.raise("Lone quantifier brackets");
1705
+ };
1706
+ c.regexp_alternative = function(e) {
1707
+ for (; e.pos < e.source.length && this.regexp_eatTerm(e); ) ;
1708
+ };
1709
+ c.regexp_eatTerm = function(e) {
1710
+ return this.regexp_eatAssertion(e) ? (e.lastAssertionIsQuantifiable && this.regexp_eatQuantifier(e) && e.switchU && e.raise("Invalid quantifier"), true) : (e.switchU ? this.regexp_eatAtom(e) : this.regexp_eatExtendedAtom(e)) ? (this.regexp_eatQuantifier(e), true) : false;
1711
+ };
1712
+ c.regexp_eatAssertion = function(e) {
1713
+ var t = e.pos;
1714
+ if (e.lastAssertionIsQuantifiable = false, e.eat(94) || e.eat(36)) return true;
1715
+ if (e.eat(92)) {
1716
+ if (e.eat(66) || e.eat(98)) return true;
1717
+ e.pos = t;
1718
+ }
1719
+ if (e.eat(40) && e.eat(63)) {
1720
+ var i = false;
1721
+ if (this.options.ecmaVersion >= 9 && (i = e.eat(60)), e.eat(61) || e.eat(33)) return this.regexp_disjunction(e), e.eat(41) || e.raise("Unterminated group"), e.lastAssertionIsQuantifiable = !i, true;
1722
+ }
1723
+ return e.pos = t, false;
1724
+ };
1725
+ c.regexp_eatQuantifier = function(e, t) {
1726
+ return t === void 0 && (t = false), this.regexp_eatQuantifierPrefix(e, t) ? (e.eat(63), true) : false;
1727
+ };
1728
+ c.regexp_eatQuantifierPrefix = function(e, t) {
1729
+ return e.eat(42) || e.eat(43) || e.eat(63) || this.regexp_eatBracedQuantifier(e, t);
1730
+ };
1731
+ c.regexp_eatBracedQuantifier = function(e, t) {
1732
+ var i = e.pos;
1733
+ if (e.eat(123)) {
1734
+ var s = 0, r = -1;
1735
+ if (this.regexp_eatDecimalDigits(e) && (s = e.lastIntValue, e.eat(44) && this.regexp_eatDecimalDigits(e) && (r = e.lastIntValue), e.eat(125))) return r !== -1 && r < s && !t && e.raise("numbers out of order in {} quantifier"), true;
1736
+ e.switchU && !t && e.raise("Incomplete quantifier"), e.pos = i;
1737
+ }
1738
+ return false;
1739
+ };
1740
+ c.regexp_eatAtom = function(e) {
1741
+ return this.regexp_eatPatternCharacters(e) || e.eat(46) || this.regexp_eatReverseSolidusAtomEscape(e) || this.regexp_eatCharacterClass(e) || this.regexp_eatUncapturingGroup(e) || this.regexp_eatCapturingGroup(e);
1742
+ };
1743
+ c.regexp_eatReverseSolidusAtomEscape = function(e) {
1744
+ var t = e.pos;
1745
+ if (e.eat(92)) {
1746
+ if (this.regexp_eatAtomEscape(e)) return true;
1747
+ e.pos = t;
1748
+ }
1749
+ return false;
1750
+ };
1751
+ c.regexp_eatUncapturingGroup = function(e) {
1752
+ var t = e.pos;
1753
+ if (e.eat(40)) {
1754
+ if (e.eat(63) && e.eat(58)) {
1755
+ if (this.regexp_disjunction(e), e.eat(41)) return true;
1756
+ e.raise("Unterminated group");
1757
+ }
1758
+ e.pos = t;
1759
+ }
1760
+ return false;
1761
+ };
1762
+ c.regexp_eatCapturingGroup = function(e) {
1763
+ if (e.eat(40)) {
1764
+ if (this.options.ecmaVersion >= 9 ? this.regexp_groupSpecifier(e) : e.current() === 63 && e.raise("Invalid group"), this.regexp_disjunction(e), e.eat(41)) return e.numCapturingParens += 1, true;
1765
+ e.raise("Unterminated group");
1766
+ }
1767
+ return false;
1768
+ };
1769
+ c.regexp_eatExtendedAtom = function(e) {
1770
+ return e.eat(46) || this.regexp_eatReverseSolidusAtomEscape(e) || this.regexp_eatCharacterClass(e) || this.regexp_eatUncapturingGroup(e) || this.regexp_eatCapturingGroup(e) || this.regexp_eatInvalidBracedQuantifier(e) || this.regexp_eatExtendedPatternCharacter(e);
1771
+ };
1772
+ c.regexp_eatInvalidBracedQuantifier = function(e) {
1773
+ return this.regexp_eatBracedQuantifier(e, true) && e.raise("Nothing to repeat"), false;
1774
+ };
1775
+ c.regexp_eatSyntaxCharacter = function(e) {
1776
+ var t = e.current();
1777
+ return Lt(t) ? (e.lastIntValue = t, e.advance(), true) : false;
1778
+ };
1779
+ function Lt(e) {
1780
+ return e === 36 || e >= 40 && e <= 43 || e === 46 || e === 63 || e >= 91 && e <= 94 || e >= 123 && e <= 125;
1781
+ }
1782
+ c.regexp_eatPatternCharacters = function(e) {
1783
+ for (var t = e.pos, i = 0; (i = e.current()) !== -1 && !Lt(i); ) e.advance();
1784
+ return e.pos !== t;
1785
+ };
1786
+ c.regexp_eatExtendedPatternCharacter = function(e) {
1787
+ var t = e.current();
1788
+ return t !== -1 && t !== 36 && !(t >= 40 && t <= 43) && t !== 46 && t !== 63 && t !== 91 && t !== 94 && t !== 124 ? (e.advance(), true) : false;
1789
+ };
1790
+ c.regexp_groupSpecifier = function(e) {
1791
+ if (e.eat(63)) {
1792
+ this.regexp_eatGroupName(e) || e.raise("Invalid group");
1793
+ var t = this.options.ecmaVersion >= 16, i = e.groupNames[e.lastStringValue];
1794
+ if (i) if (t) for (var s = 0, r = i; s < r.length; s += 1) {
1795
+ var n = r[s];
1796
+ n.separatedFrom(e.branchID) || e.raise("Duplicate capture group name");
1797
+ }
1798
+ else e.raise("Duplicate capture group name");
1799
+ t ? (i || (e.groupNames[e.lastStringValue] = [])).push(e.branchID) : e.groupNames[e.lastStringValue] = true;
1800
+ }
1801
+ };
1802
+ c.regexp_eatGroupName = function(e) {
1803
+ if (e.lastStringValue = "", e.eat(60)) {
1804
+ if (this.regexp_eatRegExpIdentifierName(e) && e.eat(62)) return true;
1805
+ e.raise("Invalid capture group name");
1806
+ }
1807
+ return false;
1808
+ };
1809
+ c.regexp_eatRegExpIdentifierName = function(e) {
1810
+ if (e.lastStringValue = "", this.regexp_eatRegExpIdentifierStart(e)) {
1811
+ for (e.lastStringValue += K(e.lastIntValue); this.regexp_eatRegExpIdentifierPart(e); ) e.lastStringValue += K(e.lastIntValue);
1812
+ return true;
1813
+ }
1814
+ return false;
1815
+ };
1816
+ c.regexp_eatRegExpIdentifierStart = function(e) {
1817
+ var t = e.pos, i = this.options.ecmaVersion >= 11, s = e.current(i);
1818
+ return e.advance(i), s === 92 && this.regexp_eatRegExpUnicodeEscapeSequence(e, i) && (s = e.lastIntValue), Wi(s) ? (e.lastIntValue = s, true) : (e.pos = t, false);
1819
+ };
1820
+ function Wi(e) {
1821
+ return U(e, true) || e === 36 || e === 95;
1822
+ }
1823
+ c.regexp_eatRegExpIdentifierPart = function(e) {
1824
+ var t = e.pos, i = this.options.ecmaVersion >= 11, s = e.current(i);
1825
+ return e.advance(i), s === 92 && this.regexp_eatRegExpUnicodeEscapeSequence(e, i) && (s = e.lastIntValue), Hi(s) ? (e.lastIntValue = s, true) : (e.pos = t, false);
1826
+ };
1827
+ function Hi(e) {
1828
+ return z(e, true) || e === 36 || e === 95 || e === 8204 || e === 8205;
1829
+ }
1830
+ c.regexp_eatAtomEscape = function(e) {
1831
+ return this.regexp_eatBackReference(e) || this.regexp_eatCharacterClassEscape(e) || this.regexp_eatCharacterEscape(e) || e.switchN && this.regexp_eatKGroupName(e) ? true : (e.switchU && (e.current() === 99 && e.raise("Invalid unicode escape"), e.raise("Invalid escape")), false);
1832
+ };
1833
+ c.regexp_eatBackReference = function(e) {
1834
+ var t = e.pos;
1835
+ if (this.regexp_eatDecimalEscape(e)) {
1836
+ var i = e.lastIntValue;
1837
+ if (e.switchU) return i > e.maxBackReference && (e.maxBackReference = i), true;
1838
+ if (i <= e.numCapturingParens) return true;
1839
+ e.pos = t;
1840
+ }
1841
+ return false;
1842
+ };
1843
+ c.regexp_eatKGroupName = function(e) {
1844
+ if (e.eat(107)) {
1845
+ if (this.regexp_eatGroupName(e)) return e.backReferenceNames.push(e.lastStringValue), true;
1846
+ e.raise("Invalid named reference");
1847
+ }
1848
+ return false;
1849
+ };
1850
+ c.regexp_eatCharacterEscape = function(e) {
1851
+ return this.regexp_eatControlEscape(e) || this.regexp_eatCControlLetter(e) || this.regexp_eatZero(e) || this.regexp_eatHexEscapeSequence(e) || this.regexp_eatRegExpUnicodeEscapeSequence(e, false) || !e.switchU && this.regexp_eatLegacyOctalEscapeSequence(e) || this.regexp_eatIdentityEscape(e);
1852
+ };
1853
+ c.regexp_eatCControlLetter = function(e) {
1854
+ var t = e.pos;
1855
+ if (e.eat(99)) {
1856
+ if (this.regexp_eatControlLetter(e)) return true;
1857
+ e.pos = t;
1858
+ }
1859
+ return false;
1860
+ };
1861
+ c.regexp_eatZero = function(e) {
1862
+ return e.current() === 48 && !ve(e.lookahead()) ? (e.lastIntValue = 0, e.advance(), true) : false;
1863
+ };
1864
+ c.regexp_eatControlEscape = function(e) {
1865
+ var t = e.current();
1866
+ return t === 116 ? (e.lastIntValue = 9, e.advance(), true) : t === 110 ? (e.lastIntValue = 10, e.advance(), true) : t === 118 ? (e.lastIntValue = 11, e.advance(), true) : t === 102 ? (e.lastIntValue = 12, e.advance(), true) : t === 114 ? (e.lastIntValue = 13, e.advance(), true) : false;
1867
+ };
1868
+ c.regexp_eatControlLetter = function(e) {
1869
+ var t = e.current();
1870
+ return Rt(t) ? (e.lastIntValue = t % 32, e.advance(), true) : false;
1871
+ };
1872
+ function Rt(e) {
1873
+ return e >= 65 && e <= 90 || e >= 97 && e <= 122;
1874
+ }
1875
+ c.regexp_eatRegExpUnicodeEscapeSequence = function(e, t) {
1876
+ t === void 0 && (t = false);
1877
+ var i = e.pos, s = t || e.switchU;
1878
+ if (e.eat(117)) {
1879
+ if (this.regexp_eatFixedHexDigits(e, 4)) {
1880
+ var r = e.lastIntValue;
1881
+ if (s && r >= 55296 && r <= 56319) {
1882
+ var n = e.pos;
1883
+ if (e.eat(92) && e.eat(117) && this.regexp_eatFixedHexDigits(e, 4)) {
1884
+ var o = e.lastIntValue;
1885
+ if (o >= 56320 && o <= 57343) return e.lastIntValue = (r - 55296) * 1024 + (o - 56320) + 65536, true;
1886
+ }
1887
+ e.pos = n, e.lastIntValue = r;
1888
+ }
1889
+ return true;
1890
+ }
1891
+ if (s && e.eat(123) && this.regexp_eatHexDigits(e) && e.eat(125) && zi(e.lastIntValue)) return true;
1892
+ s && e.raise("Invalid unicode escape"), e.pos = i;
1893
+ }
1894
+ return false;
1895
+ };
1896
+ function zi(e) {
1897
+ return e >= 0 && e <= 1114111;
1898
+ }
1899
+ c.regexp_eatIdentityEscape = function(e) {
1900
+ if (e.switchU) return this.regexp_eatSyntaxCharacter(e) ? true : e.eat(47) ? (e.lastIntValue = 47, true) : false;
1901
+ var t = e.current();
1902
+ return t !== 99 && (!e.switchN || t !== 107) ? (e.lastIntValue = t, e.advance(), true) : false;
1903
+ };
1904
+ c.regexp_eatDecimalEscape = function(e) {
1905
+ e.lastIntValue = 0;
1906
+ var t = e.current();
1907
+ if (t >= 49 && t <= 57) {
1908
+ do
1909
+ e.lastIntValue = 10 * e.lastIntValue + (t - 48), e.advance();
1910
+ while ((t = e.current()) >= 48 && t <= 57);
1911
+ return true;
1912
+ }
1913
+ return false;
1914
+ };
1915
+ var Ot = 0;
1916
+ var q = 1;
1917
+ var L = 2;
1918
+ c.regexp_eatCharacterClassEscape = function(e) {
1919
+ var t = e.current();
1920
+ if (Qi(t)) return e.lastIntValue = -1, e.advance(), q;
1921
+ var i = false;
1922
+ if (e.switchU && this.options.ecmaVersion >= 9 && ((i = t === 80) || t === 112)) {
1923
+ e.lastIntValue = -1, e.advance();
1924
+ var s;
1925
+ if (e.eat(123) && (s = this.regexp_eatUnicodePropertyValueExpression(e)) && e.eat(125)) return i && s === L && e.raise("Invalid property name"), s;
1926
+ e.raise("Invalid property name");
1927
+ }
1928
+ return Ot;
1929
+ };
1930
+ function Qi(e) {
1931
+ return e === 100 || e === 68 || e === 115 || e === 83 || e === 119 || e === 87;
1932
+ }
1933
+ c.regexp_eatUnicodePropertyValueExpression = function(e) {
1934
+ var t = e.pos;
1935
+ if (this.regexp_eatUnicodePropertyName(e) && e.eat(61)) {
1936
+ var i = e.lastStringValue;
1937
+ if (this.regexp_eatUnicodePropertyValue(e)) {
1938
+ var s = e.lastStringValue;
1939
+ return this.regexp_validateUnicodePropertyNameAndValue(e, i, s), q;
1940
+ }
1941
+ }
1942
+ if (e.pos = t, this.regexp_eatLoneUnicodePropertyNameOrValue(e)) {
1943
+ var r = e.lastStringValue;
1944
+ return this.regexp_validateUnicodePropertyNameOrValue(e, r);
1945
+ }
1946
+ return Ot;
1947
+ };
1948
+ c.regexp_validateUnicodePropertyNameAndValue = function(e, t, i) {
1949
+ se(e.unicodeProperties.nonBinary, t) || e.raise("Invalid property name"), e.unicodeProperties.nonBinary[t].test(i) || e.raise("Invalid property value");
1950
+ };
1951
+ c.regexp_validateUnicodePropertyNameOrValue = function(e, t) {
1952
+ if (e.unicodeProperties.binary.test(t)) return q;
1953
+ if (e.switchV && e.unicodeProperties.binaryOfStrings.test(t)) return L;
1954
+ e.raise("Invalid property name");
1955
+ };
1956
+ c.regexp_eatUnicodePropertyName = function(e) {
1957
+ var t = 0;
1958
+ for (e.lastStringValue = ""; Bt(t = e.current()); ) e.lastStringValue += K(t), e.advance();
1959
+ return e.lastStringValue !== "";
1960
+ };
1961
+ function Bt(e) {
1962
+ return Rt(e) || e === 95;
1963
+ }
1964
+ c.regexp_eatUnicodePropertyValue = function(e) {
1965
+ var t = 0;
1966
+ for (e.lastStringValue = ""; Yi(t = e.current()); ) e.lastStringValue += K(t), e.advance();
1967
+ return e.lastStringValue !== "";
1968
+ };
1969
+ function Yi(e) {
1970
+ return Bt(e) || ve(e);
1971
+ }
1972
+ c.regexp_eatLoneUnicodePropertyNameOrValue = function(e) {
1973
+ return this.regexp_eatUnicodePropertyValue(e);
1974
+ };
1975
+ c.regexp_eatCharacterClass = function(e) {
1976
+ if (e.eat(91)) {
1977
+ var t = e.eat(94), i = this.regexp_classContents(e);
1978
+ return e.eat(93) || e.raise("Unterminated character class"), t && i === L && e.raise("Negated character class may contain strings"), true;
1979
+ }
1980
+ return false;
1981
+ };
1982
+ c.regexp_classContents = function(e) {
1983
+ return e.current() === 93 ? q : e.switchV ? this.regexp_classSetExpression(e) : (this.regexp_nonEmptyClassRanges(e), q);
1984
+ };
1985
+ c.regexp_nonEmptyClassRanges = function(e) {
1986
+ for (; this.regexp_eatClassAtom(e); ) {
1987
+ var t = e.lastIntValue;
1988
+ if (e.eat(45) && this.regexp_eatClassAtom(e)) {
1989
+ var i = e.lastIntValue;
1990
+ e.switchU && (t === -1 || i === -1) && e.raise("Invalid character class"), t !== -1 && i !== -1 && t > i && e.raise("Range out of order in character class");
1991
+ }
1992
+ }
1993
+ };
1994
+ c.regexp_eatClassAtom = function(e) {
1995
+ var t = e.pos;
1996
+ if (e.eat(92)) {
1997
+ if (this.regexp_eatClassEscape(e)) return true;
1998
+ if (e.switchU) {
1999
+ var i = e.current();
2000
+ (i === 99 || Mt(i)) && e.raise("Invalid class escape"), e.raise("Invalid escape");
2001
+ }
2002
+ e.pos = t;
2003
+ }
2004
+ var s = e.current();
2005
+ return s !== 93 ? (e.lastIntValue = s, e.advance(), true) : false;
2006
+ };
2007
+ c.regexp_eatClassEscape = function(e) {
2008
+ var t = e.pos;
2009
+ if (e.eat(98)) return e.lastIntValue = 8, true;
2010
+ if (e.switchU && e.eat(45)) return e.lastIntValue = 45, true;
2011
+ if (!e.switchU && e.eat(99)) {
2012
+ if (this.regexp_eatClassControlLetter(e)) return true;
2013
+ e.pos = t;
2014
+ }
2015
+ return this.regexp_eatCharacterClassEscape(e) || this.regexp_eatCharacterEscape(e);
2016
+ };
2017
+ c.regexp_classSetExpression = function(e) {
2018
+ var t = q, i;
2019
+ if (!this.regexp_eatClassSetRange(e)) if (i = this.regexp_eatClassSetOperand(e)) {
2020
+ i === L && (t = L);
2021
+ for (var s = e.pos; e.eatChars([38, 38]); ) {
2022
+ if (e.current() !== 38 && (i = this.regexp_eatClassSetOperand(e))) {
2023
+ i !== L && (t = q);
2024
+ continue;
2025
+ }
2026
+ e.raise("Invalid character in character class");
2027
+ }
2028
+ if (s !== e.pos) return t;
2029
+ for (; e.eatChars([45, 45]); ) this.regexp_eatClassSetOperand(e) || e.raise("Invalid character in character class");
2030
+ if (s !== e.pos) return t;
2031
+ } else e.raise("Invalid character in character class");
2032
+ for (; ; ) if (!this.regexp_eatClassSetRange(e)) {
2033
+ if (i = this.regexp_eatClassSetOperand(e), !i) return t;
2034
+ i === L && (t = L);
2035
+ }
2036
+ };
2037
+ c.regexp_eatClassSetRange = function(e) {
2038
+ var t = e.pos;
2039
+ if (this.regexp_eatClassSetCharacter(e)) {
2040
+ var i = e.lastIntValue;
2041
+ if (e.eat(45) && this.regexp_eatClassSetCharacter(e)) {
2042
+ var s = e.lastIntValue;
2043
+ return i !== -1 && s !== -1 && i > s && e.raise("Range out of order in character class"), true;
2044
+ }
2045
+ e.pos = t;
2046
+ }
2047
+ return false;
2048
+ };
2049
+ c.regexp_eatClassSetOperand = function(e) {
2050
+ return this.regexp_eatClassSetCharacter(e) ? q : this.regexp_eatClassStringDisjunction(e) || this.regexp_eatNestedClass(e);
2051
+ };
2052
+ c.regexp_eatNestedClass = function(e) {
2053
+ var t = e.pos;
2054
+ if (e.eat(91)) {
2055
+ var i = e.eat(94), s = this.regexp_classContents(e);
2056
+ if (e.eat(93)) return i && s === L && e.raise("Negated character class may contain strings"), s;
2057
+ e.pos = t;
2058
+ }
2059
+ if (e.eat(92)) {
2060
+ var r = this.regexp_eatCharacterClassEscape(e);
2061
+ if (r) return r;
2062
+ e.pos = t;
2063
+ }
2064
+ return null;
2065
+ };
2066
+ c.regexp_eatClassStringDisjunction = function(e) {
2067
+ var t = e.pos;
2068
+ if (e.eatChars([92, 113])) {
2069
+ if (e.eat(123)) {
2070
+ var i = this.regexp_classStringDisjunctionContents(e);
2071
+ if (e.eat(125)) return i;
2072
+ } else e.raise("Invalid escape");
2073
+ e.pos = t;
2074
+ }
2075
+ return null;
2076
+ };
2077
+ c.regexp_classStringDisjunctionContents = function(e) {
2078
+ for (var t = this.regexp_classString(e); e.eat(124); ) this.regexp_classString(e) === L && (t = L);
2079
+ return t;
2080
+ };
2081
+ c.regexp_classString = function(e) {
2082
+ for (var t = 0; this.regexp_eatClassSetCharacter(e); ) t++;
2083
+ return t === 1 ? q : L;
2084
+ };
2085
+ c.regexp_eatClassSetCharacter = function(e) {
2086
+ var t = e.pos;
2087
+ if (e.eat(92)) return this.regexp_eatCharacterEscape(e) || this.regexp_eatClassSetReservedPunctuator(e) ? true : e.eat(98) ? (e.lastIntValue = 8, true) : (e.pos = t, false);
2088
+ var i = e.current();
2089
+ return i < 0 || i === e.lookahead() && $i(i) || Zi(i) ? false : (e.advance(), e.lastIntValue = i, true);
2090
+ };
2091
+ function $i(e) {
2092
+ return e === 33 || e >= 35 && e <= 38 || e >= 42 && e <= 44 || e === 46 || e >= 58 && e <= 64 || e === 94 || e === 96 || e === 126;
2093
+ }
2094
+ function Zi(e) {
2095
+ return e === 40 || e === 41 || e === 45 || e === 47 || e >= 91 && e <= 93 || e >= 123 && e <= 125;
2096
+ }
2097
+ c.regexp_eatClassSetReservedPunctuator = function(e) {
2098
+ var t = e.current();
2099
+ return es(t) ? (e.lastIntValue = t, e.advance(), true) : false;
2100
+ };
2101
+ function es(e) {
2102
+ return e === 33 || e === 35 || e === 37 || e === 38 || e === 44 || e === 45 || e >= 58 && e <= 62 || e === 64 || e === 96 || e === 126;
2103
+ }
2104
+ c.regexp_eatClassControlLetter = function(e) {
2105
+ var t = e.current();
2106
+ return ve(t) || t === 95 ? (e.lastIntValue = t % 32, e.advance(), true) : false;
2107
+ };
2108
+ c.regexp_eatHexEscapeSequence = function(e) {
2109
+ var t = e.pos;
2110
+ if (e.eat(120)) {
2111
+ if (this.regexp_eatFixedHexDigits(e, 2)) return true;
2112
+ e.switchU && e.raise("Invalid escape"), e.pos = t;
2113
+ }
2114
+ return false;
2115
+ };
2116
+ c.regexp_eatDecimalDigits = function(e) {
2117
+ var t = e.pos, i = 0;
2118
+ for (e.lastIntValue = 0; ve(i = e.current()); ) e.lastIntValue = 10 * e.lastIntValue + (i - 48), e.advance();
2119
+ return e.pos !== t;
2120
+ };
2121
+ function ve(e) {
2122
+ return e >= 48 && e <= 57;
2123
+ }
2124
+ c.regexp_eatHexDigits = function(e) {
2125
+ var t = e.pos, i = 0;
2126
+ for (e.lastIntValue = 0; Dt(i = e.current()); ) e.lastIntValue = 16 * e.lastIntValue + Ft(i), e.advance();
2127
+ return e.pos !== t;
2128
+ };
2129
+ function Dt(e) {
2130
+ return e >= 48 && e <= 57 || e >= 65 && e <= 70 || e >= 97 && e <= 102;
2131
+ }
2132
+ function Ft(e) {
2133
+ return e >= 65 && e <= 70 ? 10 + (e - 65) : e >= 97 && e <= 102 ? 10 + (e - 97) : e - 48;
2134
+ }
2135
+ c.regexp_eatLegacyOctalEscapeSequence = function(e) {
2136
+ if (this.regexp_eatOctalDigit(e)) {
2137
+ var t = e.lastIntValue;
2138
+ if (this.regexp_eatOctalDigit(e)) {
2139
+ var i = e.lastIntValue;
2140
+ t <= 3 && this.regexp_eatOctalDigit(e) ? e.lastIntValue = t * 64 + i * 8 + e.lastIntValue : e.lastIntValue = t * 8 + i;
2141
+ } else e.lastIntValue = t;
2142
+ return true;
2143
+ }
2144
+ return false;
2145
+ };
2146
+ c.regexp_eatOctalDigit = function(e) {
2147
+ var t = e.current();
2148
+ return Mt(t) ? (e.lastIntValue = t - 48, e.advance(), true) : (e.lastIntValue = 0, false);
2149
+ };
2150
+ function Mt(e) {
2151
+ return e >= 48 && e <= 55;
2152
+ }
2153
+ c.regexp_eatFixedHexDigits = function(e, t) {
2154
+ var i = e.pos;
2155
+ e.lastIntValue = 0;
2156
+ for (var s = 0; s < t; ++s) {
2157
+ var r = e.current();
2158
+ if (!Dt(r)) return e.pos = i, false;
2159
+ e.lastIntValue = 16 * e.lastIntValue + Ft(r), e.advance();
2160
+ }
2161
+ return true;
2162
+ };
2163
+ var qe = function(t) {
2164
+ this.type = t.type, this.value = t.value, this.start = t.start, this.end = t.end, t.options.locations && (this.loc = new xe(t, t.startLoc, t.endLoc)), t.options.ranges && (this.range = [t.start, t.end]);
2165
+ };
2166
+ var v = T.prototype;
2167
+ v.next = function(e) {
2168
+ !e && this.type.keyword && this.containsEsc && this.raiseRecoverable(this.start, "Escape sequence in keyword " + this.type.keyword), this.options.onToken && this.options.onToken(new qe(this)), this.lastTokEnd = this.end, this.lastTokStart = this.start, this.lastTokEndLoc = this.endLoc, this.lastTokStartLoc = this.startLoc, this.nextToken();
2169
+ };
2170
+ v.getToken = function() {
2171
+ return this.next(), new qe(this);
2172
+ };
2173
+ typeof Symbol < "u" && (v[Symbol.iterator] = function() {
2174
+ var e = this;
2175
+ return { next: function() {
2176
+ var t = e.getToken();
2177
+ return { done: t.type === a.eof, value: t };
2178
+ } };
2179
+ });
2180
+ v.nextToken = function() {
2181
+ var e = this.curContext();
2182
+ if ((!e || !e.preserveSpace) && this.skipSpace(), this.start = this.pos, this.options.locations && (this.startLoc = this.curPosition()), this.pos >= this.input.length) return this.finishToken(a.eof);
2183
+ if (e.override) return e.override(this);
2184
+ this.readToken(this.fullCharCodeAtPos());
2185
+ };
2186
+ v.readToken = function(e) {
2187
+ return U(e, this.options.ecmaVersion >= 6) || e === 92 ? this.readWord() : this.getTokenFromCode(e);
2188
+ };
2189
+ v.fullCharCodeAtPos = function() {
2190
+ var e = this.input.charCodeAt(this.pos);
2191
+ if (e <= 55295 || e >= 56320) return e;
2192
+ var t = this.input.charCodeAt(this.pos + 1);
2193
+ return t <= 56319 || t >= 57344 ? e : (e << 10) + t - 56613888;
2194
+ };
2195
+ v.skipBlockComment = function() {
2196
+ var e = this.options.onComment && this.curPosition(), t = this.pos, i = this.input.indexOf("*/", this.pos += 2);
2197
+ if (i === -1 && this.raise(this.pos - 2, "Unterminated comment"), this.pos = i + 2, this.options.locations) for (var s = void 0, r = t; (s = ut(this.input, r, this.pos)) > -1; ) ++this.curLine, r = this.lineStart = s;
2198
+ this.options.onComment && this.options.onComment(true, this.input.slice(t + 2, i), t, this.pos, e, this.curPosition());
2199
+ };
2200
+ v.skipLineComment = function(e) {
2201
+ for (var t = this.pos, i = this.options.onComment && this.curPosition(), s = this.input.charCodeAt(this.pos += e); this.pos < this.input.length && !Q(s); ) s = this.input.charCodeAt(++this.pos);
2202
+ this.options.onComment && this.options.onComment(false, this.input.slice(t + e, this.pos), t, this.pos, i, this.curPosition());
2203
+ };
2204
+ v.skipSpace = function() {
2205
+ e: for (; this.pos < this.input.length; ) {
2206
+ var e = this.input.charCodeAt(this.pos);
2207
+ switch (e) {
2208
+ case 32:
2209
+ case 160:
2210
+ ++this.pos;
2211
+ break;
2212
+ case 13:
2213
+ this.input.charCodeAt(this.pos + 1) === 10 && ++this.pos;
2214
+ case 10:
2215
+ case 8232:
2216
+ case 8233:
2217
+ ++this.pos, this.options.locations && (++this.curLine, this.lineStart = this.pos);
2218
+ break;
2219
+ case 47:
2220
+ switch (this.input.charCodeAt(this.pos + 1)) {
2221
+ case 42:
2222
+ this.skipBlockComment();
2223
+ break;
2224
+ case 47:
2225
+ this.skipLineComment(2);
2226
+ break;
2227
+ default:
2228
+ break e;
2229
+ }
2230
+ break;
2231
+ default:
2232
+ if (e > 8 && e < 14 || e >= 5760 && pt.test(String.fromCharCode(e))) ++this.pos;
2233
+ else break e;
2234
+ }
2235
+ }
2236
+ };
2237
+ v.finishToken = function(e, t) {
2238
+ this.end = this.pos, this.options.locations && (this.endLoc = this.curPosition());
2239
+ var i = this.type;
2240
+ this.type = e, this.value = t, this.updateContext(i);
2241
+ };
2242
+ v.readToken_dot = function() {
2243
+ var e = this.input.charCodeAt(this.pos + 1);
2244
+ if (e >= 48 && e <= 57) return this.readNumber(true);
2245
+ var t = this.input.charCodeAt(this.pos + 2);
2246
+ return this.options.ecmaVersion >= 6 && e === 46 && t === 46 ? (this.pos += 3, this.finishToken(a.ellipsis)) : (++this.pos, this.finishToken(a.dot));
2247
+ };
2248
+ v.readToken_slash = function() {
2249
+ var e = this.input.charCodeAt(this.pos + 1);
2250
+ return this.exprAllowed ? (++this.pos, this.readRegexp()) : e === 61 ? this.finishOp(a.assign, 2) : this.finishOp(a.slash, 1);
2251
+ };
2252
+ v.readToken_mult_modulo_exp = function(e) {
2253
+ var t = this.input.charCodeAt(this.pos + 1), i = 1, s = e === 42 ? a.star : a.modulo;
2254
+ return this.options.ecmaVersion >= 7 && e === 42 && t === 42 && (++i, s = a.starstar, t = this.input.charCodeAt(this.pos + 2)), t === 61 ? this.finishOp(a.assign, i + 1) : this.finishOp(s, i);
2255
+ };
2256
+ v.readToken_pipe_amp = function(e) {
2257
+ var t = this.input.charCodeAt(this.pos + 1);
2258
+ if (t === e) {
2259
+ if (this.options.ecmaVersion >= 12) {
2260
+ var i = this.input.charCodeAt(this.pos + 2);
2261
+ if (i === 61) return this.finishOp(a.assign, 3);
2262
+ }
2263
+ return this.finishOp(e === 124 ? a.logicalOR : a.logicalAND, 2);
2264
+ }
2265
+ return t === 61 ? this.finishOp(a.assign, 2) : this.finishOp(e === 124 ? a.bitwiseOR : a.bitwiseAND, 1);
2266
+ };
2267
+ v.readToken_caret = function() {
2268
+ var e = this.input.charCodeAt(this.pos + 1);
2269
+ return e === 61 ? this.finishOp(a.assign, 2) : this.finishOp(a.bitwiseXOR, 1);
2270
+ };
2271
+ v.readToken_plus_min = function(e) {
2272
+ var t = this.input.charCodeAt(this.pos + 1);
2273
+ return t === e ? t === 45 && !this.inModule && this.input.charCodeAt(this.pos + 2) === 62 && (this.lastTokEnd === 0 || R.test(this.input.slice(this.lastTokEnd, this.pos))) ? (this.skipLineComment(3), this.skipSpace(), this.nextToken()) : this.finishOp(a.incDec, 2) : t === 61 ? this.finishOp(a.assign, 2) : this.finishOp(a.plusMin, 1);
2274
+ };
2275
+ v.readToken_lt_gt = function(e) {
2276
+ var t = this.input.charCodeAt(this.pos + 1), i = 1;
2277
+ return t === e ? (i = e === 62 && this.input.charCodeAt(this.pos + 2) === 62 ? 3 : 2, this.input.charCodeAt(this.pos + i) === 61 ? this.finishOp(a.assign, i + 1) : this.finishOp(a.bitShift, i)) : t === 33 && e === 60 && !this.inModule && this.input.charCodeAt(this.pos + 2) === 45 && this.input.charCodeAt(this.pos + 3) === 45 ? (this.skipLineComment(4), this.skipSpace(), this.nextToken()) : (t === 61 && (i = 2), this.finishOp(a.relational, i));
2278
+ };
2279
+ v.readToken_eq_excl = function(e) {
2280
+ var t = this.input.charCodeAt(this.pos + 1);
2281
+ return t === 61 ? this.finishOp(a.equality, this.input.charCodeAt(this.pos + 2) === 61 ? 3 : 2) : e === 61 && t === 62 && this.options.ecmaVersion >= 6 ? (this.pos += 2, this.finishToken(a.arrow)) : this.finishOp(e === 61 ? a.eq : a.prefix, 1);
2282
+ };
2283
+ v.readToken_question = function() {
2284
+ var e = this.options.ecmaVersion;
2285
+ if (e >= 11) {
2286
+ var t = this.input.charCodeAt(this.pos + 1);
2287
+ if (t === 46) {
2288
+ var i = this.input.charCodeAt(this.pos + 2);
2289
+ if (i < 48 || i > 57) return this.finishOp(a.questionDot, 2);
2290
+ }
2291
+ if (t === 63) {
2292
+ if (e >= 12) {
2293
+ var s = this.input.charCodeAt(this.pos + 2);
2294
+ if (s === 61) return this.finishOp(a.assign, 3);
2295
+ }
2296
+ return this.finishOp(a.coalesce, 2);
2297
+ }
2298
+ }
2299
+ return this.finishOp(a.question, 1);
2300
+ };
2301
+ v.readToken_numberSign = function() {
2302
+ var e = this.options.ecmaVersion, t = 35;
2303
+ if (e >= 13 && (++this.pos, t = this.fullCharCodeAtPos(), U(t, true) || t === 92)) return this.finishToken(a.privateId, this.readWord1());
2304
+ this.raise(this.pos, "Unexpected character '" + K(t) + "'");
2305
+ };
2306
+ v.getTokenFromCode = function(e) {
2307
+ switch (e) {
2308
+ case 46:
2309
+ return this.readToken_dot();
2310
+ case 40:
2311
+ return ++this.pos, this.finishToken(a.parenL);
2312
+ case 41:
2313
+ return ++this.pos, this.finishToken(a.parenR);
2314
+ case 59:
2315
+ return ++this.pos, this.finishToken(a.semi);
2316
+ case 44:
2317
+ return ++this.pos, this.finishToken(a.comma);
2318
+ case 91:
2319
+ return ++this.pos, this.finishToken(a.bracketL);
2320
+ case 93:
2321
+ return ++this.pos, this.finishToken(a.bracketR);
2322
+ case 123:
2323
+ return ++this.pos, this.finishToken(a.braceL);
2324
+ case 125:
2325
+ return ++this.pos, this.finishToken(a.braceR);
2326
+ case 58:
2327
+ return ++this.pos, this.finishToken(a.colon);
2328
+ case 96:
2329
+ if (this.options.ecmaVersion < 6) break;
2330
+ return ++this.pos, this.finishToken(a.backQuote);
2331
+ case 48:
2332
+ var t = this.input.charCodeAt(this.pos + 1);
2333
+ if (t === 120 || t === 88) return this.readRadixNumber(16);
2334
+ if (this.options.ecmaVersion >= 6) {
2335
+ if (t === 111 || t === 79) return this.readRadixNumber(8);
2336
+ if (t === 98 || t === 66) return this.readRadixNumber(2);
2337
+ }
2338
+ case 49:
2339
+ case 50:
2340
+ case 51:
2341
+ case 52:
2342
+ case 53:
2343
+ case 54:
2344
+ case 55:
2345
+ case 56:
2346
+ case 57:
2347
+ return this.readNumber(false);
2348
+ case 34:
2349
+ case 39:
2350
+ return this.readString(e);
2351
+ case 47:
2352
+ return this.readToken_slash();
2353
+ case 37:
2354
+ case 42:
2355
+ return this.readToken_mult_modulo_exp(e);
2356
+ case 124:
2357
+ case 38:
2358
+ return this.readToken_pipe_amp(e);
2359
+ case 94:
2360
+ return this.readToken_caret();
2361
+ case 43:
2362
+ case 45:
2363
+ return this.readToken_plus_min(e);
2364
+ case 60:
2365
+ case 62:
2366
+ return this.readToken_lt_gt(e);
2367
+ case 61:
2368
+ case 33:
2369
+ return this.readToken_eq_excl(e);
2370
+ case 63:
2371
+ return this.readToken_question();
2372
+ case 126:
2373
+ return this.finishOp(a.prefix, 1);
2374
+ case 35:
2375
+ return this.readToken_numberSign();
2376
+ }
2377
+ this.raise(this.pos, "Unexpected character '" + K(e) + "'");
2378
+ };
2379
+ v.finishOp = function(e, t) {
2380
+ var i = this.input.slice(this.pos, this.pos + t);
2381
+ return this.pos += t, this.finishToken(e, i);
2382
+ };
2383
+ v.readRegexp = function() {
2384
+ for (var e, t, i = this.pos; ; ) {
2385
+ this.pos >= this.input.length && this.raise(i, "Unterminated regular expression");
2386
+ var s = this.input.charAt(this.pos);
2387
+ if (R.test(s) && this.raise(i, "Unterminated regular expression"), e) e = false;
2388
+ else {
2389
+ if (s === "[") t = true;
2390
+ else if (s === "]" && t) t = false;
2391
+ else if (s === "/" && !t) break;
2392
+ e = s === "\\";
2393
+ }
2394
+ ++this.pos;
2395
+ }
2396
+ var r = this.input.slice(i, this.pos);
2397
+ ++this.pos;
2398
+ var n = this.pos, o = this.readWord1();
2399
+ this.containsEsc && this.unexpected(n);
2400
+ var u = this.regexpState || (this.regexpState = new M(this));
2401
+ u.reset(i, r, o), this.validateRegExpFlags(u), this.validateRegExpPattern(u);
2402
+ var p = null;
2403
+ try {
2404
+ p = new RegExp(r, o);
2405
+ } catch (e2) {
2406
+ }
2407
+ return this.finishToken(a.regexp, { pattern: r, flags: o, value: p });
2408
+ };
2409
+ v.readInt = function(e, t, i) {
2410
+ for (var s = this.options.ecmaVersion >= 12 && t === void 0, r = i && this.input.charCodeAt(this.pos) === 48, n = this.pos, o = 0, u = 0, p = 0, d = t != null ? t : 1 / 0; p < d; ++p, ++this.pos) {
2411
+ var l = this.input.charCodeAt(this.pos), C = void 0;
2412
+ if (s && l === 95) {
2413
+ r && this.raiseRecoverable(this.pos, "Numeric separator is not allowed in legacy octal numeric literals"), u === 95 && this.raiseRecoverable(this.pos, "Numeric separator must be exactly one underscore"), p === 0 && this.raiseRecoverable(this.pos, "Numeric separator is not allowed at the first of digits"), u = l;
2414
+ continue;
2415
+ }
2416
+ if (l >= 97 ? C = l - 97 + 10 : l >= 65 ? C = l - 65 + 10 : l >= 48 && l <= 57 ? C = l - 48 : C = 1 / 0, C >= e) break;
2417
+ u = l, o = o * e + C;
2418
+ }
2419
+ return s && u === 95 && this.raiseRecoverable(this.pos - 1, "Numeric separator is not allowed at the last of digits"), this.pos === n || t != null && this.pos - n !== t ? null : o;
2420
+ };
2421
+ function ts(e, t) {
2422
+ return t ? parseInt(e, 8) : parseFloat(e.replace(/_/g, ""));
2423
+ }
2424
+ function jt(e) {
2425
+ return typeof BigInt != "function" ? null : BigInt(e.replace(/_/g, ""));
2426
+ }
2427
+ v.readRadixNumber = function(e) {
2428
+ var t = this.pos;
2429
+ this.pos += 2;
2430
+ var i = this.readInt(e);
2431
+ return i == null && this.raise(this.start + 2, "Expected number in radix " + e), this.options.ecmaVersion >= 11 && this.input.charCodeAt(this.pos) === 110 ? (i = jt(this.input.slice(t, this.pos)), ++this.pos) : U(this.fullCharCodeAtPos()) && this.raise(this.pos, "Identifier directly after number"), this.finishToken(a.num, i);
2432
+ };
2433
+ v.readNumber = function(e) {
2434
+ var t = this.pos;
2435
+ !e && this.readInt(10, void 0, true) === null && this.raise(t, "Invalid number");
2436
+ var i = this.pos - t >= 2 && this.input.charCodeAt(t) === 48;
2437
+ i && this.strict && this.raise(t, "Invalid number");
2438
+ var s = this.input.charCodeAt(this.pos);
2439
+ if (!i && !e && this.options.ecmaVersion >= 11 && s === 110) {
2440
+ var r = jt(this.input.slice(t, this.pos));
2441
+ return ++this.pos, U(this.fullCharCodeAtPos()) && this.raise(this.pos, "Identifier directly after number"), this.finishToken(a.num, r);
2442
+ }
2443
+ i && /[89]/.test(this.input.slice(t, this.pos)) && (i = false), s === 46 && !i && (++this.pos, this.readInt(10), s = this.input.charCodeAt(this.pos)), (s === 69 || s === 101) && !i && (s = this.input.charCodeAt(++this.pos), (s === 43 || s === 45) && ++this.pos, this.readInt(10) === null && this.raise(t, "Invalid number")), U(this.fullCharCodeAtPos()) && this.raise(this.pos, "Identifier directly after number");
2444
+ var n = ts(this.input.slice(t, this.pos), i);
2445
+ return this.finishToken(a.num, n);
2446
+ };
2447
+ v.readCodePoint = function() {
2448
+ var e = this.input.charCodeAt(this.pos), t;
2449
+ if (e === 123) {
2450
+ this.options.ecmaVersion < 6 && this.unexpected();
2451
+ var i = ++this.pos;
2452
+ t = this.readHexChar(this.input.indexOf("}", this.pos) - this.pos), ++this.pos, t > 1114111 && this.invalidStringToken(i, "Code point out of bounds");
2453
+ } else t = this.readHexChar(4);
2454
+ return t;
2455
+ };
2456
+ v.readString = function(e) {
2457
+ for (var t = "", i = ++this.pos; ; ) {
2458
+ this.pos >= this.input.length && this.raise(this.start, "Unterminated string constant");
2459
+ var s = this.input.charCodeAt(this.pos);
2460
+ if (s === e) break;
2461
+ s === 92 ? (t += this.input.slice(i, this.pos), t += this.readEscapedChar(false), i = this.pos) : s === 8232 || s === 8233 ? (this.options.ecmaVersion < 10 && this.raise(this.start, "Unterminated string constant"), ++this.pos, this.options.locations && (this.curLine++, this.lineStart = this.pos)) : (Q(s) && this.raise(this.start, "Unterminated string constant"), ++this.pos);
2462
+ }
2463
+ return t += this.input.slice(i, this.pos++), this.finishToken(a.string, t);
2464
+ };
2465
+ var Ut = {};
2466
+ v.tryReadTemplateToken = function() {
2467
+ this.inTemplateElement = true;
2468
+ try {
2469
+ this.readTmplToken();
2470
+ } catch (e) {
2471
+ if (e === Ut) this.readInvalidTemplateToken();
2472
+ else throw e;
2473
+ }
2474
+ this.inTemplateElement = false;
2475
+ };
2476
+ v.invalidStringToken = function(e, t) {
2477
+ if (this.inTemplateElement && this.options.ecmaVersion >= 9) throw Ut;
2478
+ this.raise(e, t);
2479
+ };
2480
+ v.readTmplToken = function() {
2481
+ for (var e = "", t = this.pos; ; ) {
2482
+ this.pos >= this.input.length && this.raise(this.start, "Unterminated template");
2483
+ var i = this.input.charCodeAt(this.pos);
2484
+ if (i === 96 || i === 36 && this.input.charCodeAt(this.pos + 1) === 123) return this.pos === this.start && (this.type === a.template || this.type === a.invalidTemplate) ? i === 36 ? (this.pos += 2, this.finishToken(a.dollarBraceL)) : (++this.pos, this.finishToken(a.backQuote)) : (e += this.input.slice(t, this.pos), this.finishToken(a.template, e));
2485
+ if (i === 92) e += this.input.slice(t, this.pos), e += this.readEscapedChar(true), t = this.pos;
2486
+ else if (Q(i)) {
2487
+ switch (e += this.input.slice(t, this.pos), ++this.pos, i) {
2488
+ case 13:
2489
+ this.input.charCodeAt(this.pos) === 10 && ++this.pos;
2490
+ case 10:
2491
+ e += `
2492
+ `;
2493
+ break;
2494
+ default:
2495
+ e += String.fromCharCode(i);
2496
+ break;
2497
+ }
2498
+ this.options.locations && (++this.curLine, this.lineStart = this.pos), t = this.pos;
2499
+ } else ++this.pos;
2500
+ }
2501
+ };
2502
+ v.readInvalidTemplateToken = function() {
2503
+ for (; this.pos < this.input.length; this.pos++) switch (this.input[this.pos]) {
2504
+ case "\\":
2505
+ ++this.pos;
2506
+ break;
2507
+ case "$":
2508
+ if (this.input[this.pos + 1] !== "{") break;
2509
+ case "`":
2510
+ return this.finishToken(a.invalidTemplate, this.input.slice(this.start, this.pos));
2511
+ case "\r":
2512
+ this.input[this.pos + 1] === `
2513
+ ` && ++this.pos;
2514
+ case `
2515
+ `:
2516
+ case "\u2028":
2517
+ case "\u2029":
2518
+ ++this.curLine, this.lineStart = this.pos + 1;
2519
+ break;
2520
+ }
2521
+ this.raise(this.start, "Unterminated template");
2522
+ };
2523
+ v.readEscapedChar = function(e) {
2524
+ var t = this.input.charCodeAt(++this.pos);
2525
+ switch (++this.pos, t) {
2526
+ case 110:
2527
+ return `
2528
+ `;
2529
+ case 114:
2530
+ return "\r";
2531
+ case 120:
2532
+ return String.fromCharCode(this.readHexChar(2));
2533
+ case 117:
2534
+ return K(this.readCodePoint());
2535
+ case 116:
2536
+ return " ";
2537
+ case 98:
2538
+ return "\b";
2539
+ case 118:
2540
+ return "\v";
2541
+ case 102:
2542
+ return "\f";
2543
+ case 13:
2544
+ this.input.charCodeAt(this.pos) === 10 && ++this.pos;
2545
+ case 10:
2546
+ return this.options.locations && (this.lineStart = this.pos, ++this.curLine), "";
2547
+ case 56:
2548
+ case 57:
2549
+ if (this.strict && this.invalidStringToken(this.pos - 1, "Invalid escape sequence"), e) {
2550
+ var i = this.pos - 1;
2551
+ this.invalidStringToken(i, "Invalid escape sequence in template string");
2552
+ }
2553
+ default:
2554
+ if (t >= 48 && t <= 55) {
2555
+ var s = this.input.substr(this.pos - 1, 3).match(/^[0-7]+/)[0], r = parseInt(s, 8);
2556
+ return r > 255 && (s = s.slice(0, -1), r = parseInt(s, 8)), this.pos += s.length - 1, t = this.input.charCodeAt(this.pos), (s !== "0" || t === 56 || t === 57) && (this.strict || e) && this.invalidStringToken(this.pos - 1 - s.length, e ? "Octal literal in template string" : "Octal literal in strict mode"), String.fromCharCode(r);
2557
+ }
2558
+ return Q(t) ? (this.options.locations && (this.lineStart = this.pos, ++this.curLine), "") : String.fromCharCode(t);
2559
+ }
2560
+ };
2561
+ v.readHexChar = function(e) {
2562
+ var t = this.pos, i = this.readInt(16, e);
2563
+ return i === null && this.invalidStringToken(t, "Bad character escape sequence"), i;
2564
+ };
2565
+ v.readWord1 = function() {
2566
+ this.containsEsc = false;
2567
+ for (var e = "", t = true, i = this.pos, s = this.options.ecmaVersion >= 6; this.pos < this.input.length; ) {
2568
+ var r = this.fullCharCodeAtPos();
2569
+ if (z(r, s)) this.pos += r <= 65535 ? 1 : 2;
2570
+ else if (r === 92) {
2571
+ this.containsEsc = true, e += this.input.slice(i, this.pos);
2572
+ var n = this.pos;
2573
+ this.input.charCodeAt(++this.pos) !== 117 && this.invalidStringToken(this.pos, "Expecting Unicode escape sequence \\uXXXX"), ++this.pos;
2574
+ var o = this.readCodePoint();
2575
+ (t ? U : z)(o, s) || this.invalidStringToken(n, "Invalid Unicode escape"), e += K(o), i = this.pos;
2576
+ } else break;
2577
+ t = false;
2578
+ }
2579
+ return e + this.input.slice(i, this.pos);
2580
+ };
2581
+ v.readWord = function() {
2582
+ var e = this.readWord1(), t = a.name;
2583
+ return this.keywords.test(e) && (t = Oe[e]), this.finishToken(t, e);
2584
+ };
2585
+ var is = "8.12.1";
2586
+ T.acorn = { Parser: T, version: is, defaultOptions: Ve, Position: te, SourceLocation: xe, getLineInfo: ct, Node: ge, TokenType: S, tokTypes: a, keywordTypes: Oe, TokContext: D, tokContexts: _, isIdentifierChar: z, isIdentifierStart: U, Token: qe, isNewLine: Q, lineBreak: R, lineBreakG: wi, nonASCIIwhitespace: pt };
2587
+ var ni = et(Ge(), 1);
2588
+ function us(e, t) {
2589
+ let i = new SyntaxError(e + " (" + t.loc.start.line + ":" + t.loc.start.column + ")");
2590
+ return Object.assign(i, t);
2591
+ }
2592
+ var be = us;
2593
+ function ps(e) {
2594
+ let t = [];
2595
+ for (let i of e) try {
2596
+ return i();
2597
+ } catch (s) {
2598
+ t.push(s);
2599
+ }
2600
+ throw Object.assign(new Error("All combinations failed"), { errors: t });
2601
+ }
2602
+ var Se = ps;
2603
+ var hs = (e, t, i) => {
2604
+ if (!(e && t == null)) return Array.isArray(t) || typeof t == "string" ? t[i < 0 ? t.length + i : i] : t.at(i);
2605
+ };
2606
+ var W = hs;
2607
+ function cs(e) {
2608
+ return Array.isArray(e) && e.length > 0;
2609
+ }
2610
+ var Xt = cs;
2611
+ function P(e) {
2612
+ var _a, _b;
2613
+ var s, r, n;
2614
+ let t = (_a = (s = e.range) == null ? void 0 : s[0]) != null ? _a : e.start, i = (n = (_b = (r = e.declaration) == null ? void 0 : r.decorators) != null ? _b : e.decorators) == null ? void 0 : n[0];
2615
+ return i ? Math.min(P(i), t) : t;
2616
+ }
2617
+ function j(e) {
2618
+ var _a;
2619
+ var t;
2620
+ return (_a = (t = e.range) == null ? void 0 : t[1]) != null ? _a : e.end;
2621
+ }
2622
+ function ls(e) {
2623
+ let t = new Set(e);
2624
+ return (i) => t.has(i == null ? void 0 : i.type);
2625
+ }
2626
+ var Wt = ls;
2627
+ var fs = Wt(["Block", "CommentBlock", "MultiLine"]);
2628
+ var oe = fs;
2629
+ function ds(e) {
2630
+ let t = `*${e.value}*`.split(`
2631
+ `);
2632
+ return t.length > 1 && t.every((i) => i.trimStart()[0] === "*");
2633
+ }
2634
+ var Ke = ds;
2635
+ function ms(e) {
2636
+ return oe(e) && e.value[0] === "*" && /@(?:type|satisfies)\b/u.test(e.value);
2637
+ }
2638
+ var Ht = ms;
2639
+ var ue = null;
2640
+ function pe(e) {
2641
+ if (ue !== null && typeof ue.property) {
2642
+ let t = ue;
2643
+ return ue = pe.prototype = null, t;
2644
+ }
2645
+ return ue = pe.prototype = e != null ? e : /* @__PURE__ */ Object.create(null), new pe();
2646
+ }
2647
+ var xs = 10;
2648
+ for (let e = 0; e <= xs; e++) pe();
2649
+ function Xe(e) {
2650
+ return pe(e);
2651
+ }
2652
+ function ys(e, t = "type") {
2653
+ Xe(e);
2654
+ function i(s) {
2655
+ let r = s[t], n = e[r];
2656
+ if (!Array.isArray(n)) throw Object.assign(new Error(`Missing visitor keys for '${r}'.`), { node: s });
2657
+ return n;
2658
+ }
2659
+ return i;
2660
+ }
2661
+ var zt = ys;
2662
+ var Qt = { ArrayExpression: ["elements"], AssignmentExpression: ["left", "right"], BinaryExpression: ["left", "right"], InterpreterDirective: [], Directive: ["value"], DirectiveLiteral: [], BlockStatement: ["directives", "body"], BreakStatement: ["label"], CallExpression: ["callee", "arguments", "typeParameters", "typeArguments"], CatchClause: ["param", "body"], ConditionalExpression: ["test", "consequent", "alternate"], ContinueStatement: ["label"], DebuggerStatement: [], DoWhileStatement: ["test", "body"], EmptyStatement: [], ExpressionStatement: ["expression"], File: ["program"], ForInStatement: ["left", "right", "body"], ForStatement: ["init", "test", "update", "body"], FunctionDeclaration: ["id", "params", "body", "returnType", "typeParameters", "predicate"], FunctionExpression: ["id", "params", "body", "returnType", "typeParameters"], Identifier: ["typeAnnotation", "decorators"], IfStatement: ["test", "consequent", "alternate"], LabeledStatement: ["label", "body"], StringLiteral: [], NumericLiteral: [], NullLiteral: [], BooleanLiteral: [], RegExpLiteral: [], LogicalExpression: ["left", "right"], MemberExpression: ["object", "property"], NewExpression: ["callee", "arguments", "typeParameters", "typeArguments"], Program: ["directives", "body"], ObjectExpression: ["properties"], ObjectMethod: ["key", "params", "body", "decorators", "returnType", "typeParameters"], ObjectProperty: ["key", "value", "decorators"], RestElement: ["argument", "typeAnnotation", "decorators"], ReturnStatement: ["argument"], SequenceExpression: ["expressions"], ParenthesizedExpression: ["expression"], SwitchCase: ["test", "consequent"], SwitchStatement: ["discriminant", "cases"], ThisExpression: [], ThrowStatement: ["argument"], TryStatement: ["block", "handler", "finalizer"], UnaryExpression: ["argument"], UpdateExpression: ["argument"], VariableDeclaration: ["declarations"], VariableDeclarator: ["id", "init"], WhileStatement: ["test", "body"], WithStatement: ["object", "body"], AssignmentPattern: ["left", "right", "decorators", "typeAnnotation"], ArrayPattern: ["elements", "typeAnnotation", "decorators"], ArrowFunctionExpression: ["params", "body", "returnType", "typeParameters", "predicate"], ClassBody: ["body"], ClassExpression: ["id", "body", "superClass", "mixins", "typeParameters", "superTypeParameters", "implements", "decorators", "superTypeArguments"], ClassDeclaration: ["id", "body", "superClass", "mixins", "typeParameters", "superTypeParameters", "implements", "decorators", "superTypeArguments"], ExportAllDeclaration: ["source", "attributes", "exported"], ExportDefaultDeclaration: ["declaration"], ExportNamedDeclaration: ["declaration", "specifiers", "source", "attributes"], ExportSpecifier: ["local", "exported"], ForOfStatement: ["left", "right", "body"], ImportDeclaration: ["specifiers", "source", "attributes"], ImportDefaultSpecifier: ["local"], ImportNamespaceSpecifier: ["local"], ImportSpecifier: ["local", "imported"], ImportExpression: ["source", "options", "attributes"], MetaProperty: ["meta", "property"], ClassMethod: ["key", "params", "body", "decorators", "returnType", "typeParameters"], ObjectPattern: ["properties", "typeAnnotation", "decorators"], SpreadElement: ["argument"], Super: [], TaggedTemplateExpression: ["tag", "quasi", "typeParameters", "typeArguments"], TemplateElement: [], TemplateLiteral: ["quasis", "expressions"], YieldExpression: ["argument"], AwaitExpression: ["argument"], Import: [], BigIntLiteral: [], ExportNamespaceSpecifier: ["exported"], OptionalMemberExpression: ["object", "property"], OptionalCallExpression: ["callee", "arguments", "typeParameters", "typeArguments"], ClassProperty: ["key", "value", "typeAnnotation", "decorators", "variance"], ClassAccessorProperty: ["key", "value", "typeAnnotation", "decorators"], ClassPrivateProperty: ["key", "value", "decorators", "typeAnnotation", "variance"], ClassPrivateMethod: ["key", "params", "body", "decorators", "returnType", "typeParameters"], PrivateName: ["id"], StaticBlock: ["body"], AnyTypeAnnotation: [], ArrayTypeAnnotation: ["elementType"], BooleanTypeAnnotation: [], BooleanLiteralTypeAnnotation: [], NullLiteralTypeAnnotation: [], ClassImplements: ["id", "typeParameters"], DeclareClass: ["id", "typeParameters", "extends", "mixins", "implements", "body"], DeclareFunction: ["id", "predicate"], DeclareInterface: ["id", "typeParameters", "extends", "body"], DeclareModule: ["id", "body"], DeclareModuleExports: ["typeAnnotation"], DeclareTypeAlias: ["id", "typeParameters", "right"], DeclareOpaqueType: ["id", "typeParameters", "supertype"], DeclareVariable: ["id"], DeclareExportDeclaration: ["declaration", "specifiers", "source"], DeclareExportAllDeclaration: ["source"], DeclaredPredicate: ["value"], ExistsTypeAnnotation: [], FunctionTypeAnnotation: ["typeParameters", "params", "rest", "returnType", "this"], FunctionTypeParam: ["name", "typeAnnotation"], GenericTypeAnnotation: ["id", "typeParameters"], InferredPredicate: [], InterfaceExtends: ["id", "typeParameters"], InterfaceDeclaration: ["id", "typeParameters", "extends", "body"], InterfaceTypeAnnotation: ["extends", "body"], IntersectionTypeAnnotation: ["types"], MixedTypeAnnotation: [], EmptyTypeAnnotation: [], NullableTypeAnnotation: ["typeAnnotation"], NumberLiteralTypeAnnotation: [], NumberTypeAnnotation: [], ObjectTypeAnnotation: ["properties", "indexers", "callProperties", "internalSlots"], ObjectTypeInternalSlot: ["id", "value"], ObjectTypeCallProperty: ["value"], ObjectTypeIndexer: ["id", "key", "value", "variance"], ObjectTypeProperty: ["key", "value", "variance"], ObjectTypeSpreadProperty: ["argument"], OpaqueType: ["id", "typeParameters", "supertype", "impltype"], QualifiedTypeIdentifier: ["id", "qualification"], StringLiteralTypeAnnotation: [], StringTypeAnnotation: [], SymbolTypeAnnotation: [], ThisTypeAnnotation: [], TupleTypeAnnotation: ["types", "elementTypes"], TypeofTypeAnnotation: ["argument", "typeArguments"], TypeAlias: ["id", "typeParameters", "right"], TypeAnnotation: ["typeAnnotation"], TypeCastExpression: ["expression", "typeAnnotation"], TypeParameter: ["bound", "default", "variance"], TypeParameterDeclaration: ["params"], TypeParameterInstantiation: ["params"], UnionTypeAnnotation: ["types"], Variance: [], VoidTypeAnnotation: [], EnumDeclaration: ["id", "body"], EnumBooleanBody: ["members"], EnumNumberBody: ["members"], EnumStringBody: ["members"], EnumSymbolBody: ["members"], EnumBooleanMember: ["id", "init"], EnumNumberMember: ["id", "init"], EnumStringMember: ["id", "init"], EnumDefaultedMember: ["id"], IndexedAccessType: ["objectType", "indexType"], OptionalIndexedAccessType: ["objectType", "indexType"], JSXAttribute: ["name", "value"], JSXClosingElement: ["name"], JSXElement: ["openingElement", "children", "closingElement"], JSXEmptyExpression: [], JSXExpressionContainer: ["expression"], JSXSpreadChild: ["expression"], JSXIdentifier: [], JSXMemberExpression: ["object", "property"], JSXNamespacedName: ["namespace", "name"], JSXOpeningElement: ["name", "attributes", "typeArguments", "typeParameters"], JSXSpreadAttribute: ["argument"], JSXText: [], JSXFragment: ["openingFragment", "children", "closingFragment"], JSXOpeningFragment: [], JSXClosingFragment: [], Noop: [], Placeholder: [], V8IntrinsicIdentifier: [], ArgumentPlaceholder: [], BindExpression: ["object", "callee"], ImportAttribute: ["key", "value"], Decorator: ["expression"], DoExpression: ["body"], ExportDefaultSpecifier: ["exported"], RecordExpression: ["properties"], TupleExpression: ["elements"], DecimalLiteral: [], ModuleExpression: ["body"], TopicReference: [], PipelineTopicExpression: ["expression"], PipelineBareFunction: ["callee"], PipelinePrimaryTopicReference: [], TSParameterProperty: ["parameter", "decorators"], TSDeclareFunction: ["id", "typeParameters", "params", "returnType", "body"], TSDeclareMethod: ["decorators", "key", "typeParameters", "params", "returnType"], TSQualifiedName: ["left", "right"], TSCallSignatureDeclaration: ["typeParameters", "parameters", "typeAnnotation", "params", "returnType"], TSConstructSignatureDeclaration: ["typeParameters", "parameters", "typeAnnotation", "params", "returnType"], TSPropertySignature: ["key", "typeAnnotation"], TSMethodSignature: ["key", "typeParameters", "parameters", "typeAnnotation", "params", "returnType"], TSIndexSignature: ["parameters", "typeAnnotation"], TSAnyKeyword: [], TSBooleanKeyword: [], TSBigIntKeyword: [], TSIntrinsicKeyword: [], TSNeverKeyword: [], TSNullKeyword: [], TSNumberKeyword: [], TSObjectKeyword: [], TSStringKeyword: [], TSSymbolKeyword: [], TSUndefinedKeyword: [], TSUnknownKeyword: [], TSVoidKeyword: [], TSThisType: [], TSFunctionType: ["typeParameters", "parameters", "typeAnnotation", "params", "returnType"], TSConstructorType: ["typeParameters", "parameters", "typeAnnotation", "params", "returnType"], TSTypeReference: ["typeName", "typeParameters", "typeArguments"], TSTypePredicate: ["parameterName", "typeAnnotation"], TSTypeQuery: ["exprName", "typeParameters", "typeArguments"], TSTypeLiteral: ["members"], TSArrayType: ["elementType"], TSTupleType: ["elementTypes"], TSOptionalType: ["typeAnnotation"], TSRestType: ["typeAnnotation"], TSNamedTupleMember: ["label", "elementType"], TSUnionType: ["types"], TSIntersectionType: ["types"], TSConditionalType: ["checkType", "extendsType", "trueType", "falseType"], TSInferType: ["typeParameter"], TSParenthesizedType: ["typeAnnotation"], TSTypeOperator: ["typeAnnotation"], TSIndexedAccessType: ["objectType", "indexType"], TSMappedType: ["typeParameter", "typeAnnotation", "nameType"], TSLiteralType: ["literal"], TSExpressionWithTypeArguments: ["expression", "typeParameters"], TSInterfaceDeclaration: ["id", "typeParameters", "extends", "body"], TSInterfaceBody: ["body"], TSTypeAliasDeclaration: ["id", "typeParameters", "typeAnnotation"], TSInstantiationExpression: ["expression", "typeParameters", "typeArguments"], TSAsExpression: ["expression", "typeAnnotation"], TSSatisfiesExpression: ["expression", "typeAnnotation"], TSTypeAssertion: ["typeAnnotation", "expression"], TSEnumDeclaration: ["id", "members"], TSEnumMember: ["id", "initializer"], TSModuleDeclaration: ["id", "body"], TSModuleBlock: ["body"], TSImportType: ["argument", "qualifier", "typeParameters", "typeArguments"], TSImportEqualsDeclaration: ["id", "moduleReference"], TSExternalModuleReference: ["expression"], TSNonNullExpression: ["expression"], TSExportAssignment: ["expression"], TSNamespaceExportDeclaration: ["id"], TSTypeAnnotation: ["typeAnnotation"], TSTypeParameterInstantiation: ["params"], TSTypeParameterDeclaration: ["params"], TSTypeParameter: ["constraint", "default", "name"], ChainExpression: ["expression"], ExperimentalRestProperty: ["argument"], ExperimentalSpreadProperty: ["argument"], Literal: [], MethodDefinition: ["decorators", "key", "value"], PrivateIdentifier: [], Property: ["key", "value"], PropertyDefinition: ["decorators", "key", "typeAnnotation", "value", "variance"], AccessorProperty: ["decorators", "key", "typeAnnotation", "value"], TSAbstractAccessorProperty: ["decorators", "key", "typeAnnotation"], TSAbstractKeyword: [], TSAbstractMethodDefinition: ["key", "value"], TSAbstractPropertyDefinition: ["decorators", "key", "typeAnnotation"], TSAsyncKeyword: [], TSClassImplements: ["expression", "typeArguments", "typeParameters"], TSDeclareKeyword: [], TSEmptyBodyFunctionExpression: ["id", "typeParameters", "params", "returnType"], TSEnumBody: ["members"], TSExportKeyword: [], TSInterfaceHeritage: ["expression", "typeArguments", "typeParameters"], TSPrivateKeyword: [], TSProtectedKeyword: [], TSPublicKeyword: [], TSReadonlyKeyword: [], TSStaticKeyword: [], TSTemplateLiteralType: ["quasis", "types"], AsConstExpression: ["expression"], AsExpression: ["expression", "typeAnnotation"], BigIntLiteralTypeAnnotation: [], BigIntTypeAnnotation: [], ComponentDeclaration: ["id", "params", "body", "typeParameters", "rendersType"], ComponentParameter: ["name", "local"], ComponentTypeAnnotation: ["params", "rest", "typeParameters", "rendersType"], ComponentTypeParameter: ["name", "typeAnnotation"], ConditionalTypeAnnotation: ["checkType", "extendsType", "trueType", "falseType"], DeclareComponent: ["id", "params", "rest", "typeParameters", "rendersType"], DeclareEnum: ["id", "body"], DeclareHook: ["id"], DeclareNamespace: ["id", "body"], EnumBigIntBody: ["members"], EnumBigIntMember: ["id", "init"], HookDeclaration: ["id", "params", "body", "typeParameters", "returnType"], HookTypeAnnotation: ["params", "returnType", "rest", "typeParameters"], InferTypeAnnotation: ["typeParameter"], KeyofTypeAnnotation: ["argument"], ObjectTypeMappedTypeProperty: ["keyTparam", "propType", "sourceType", "variance"], QualifiedTypeofIdentifier: ["qualification", "id"], TupleTypeLabeledElement: ["label", "elementType", "variance"], TupleTypeSpreadElement: ["label", "typeAnnotation"], TypeOperator: ["typeAnnotation"], TypePredicate: ["parameterName", "typeAnnotation", "asserts"], NGRoot: ["node"], NGPipeExpression: ["left", "right", "arguments"], NGChainedExpression: ["expressions"], NGEmptyExpression: [], NGMicrosyntax: ["body"], NGMicrosyntaxKey: [], NGMicrosyntaxExpression: ["expression", "alias"], NGMicrosyntaxKeyedExpression: ["key", "expression"], NGMicrosyntaxLet: ["key", "value"], NGMicrosyntaxAs: ["key", "alias"], JsExpressionRoot: ["node"], JsonRoot: ["node"], TSJSDocAllType: [], TSJSDocUnknownType: [], TSJSDocNullableType: ["typeAnnotation"], TSJSDocNonNullableType: ["typeAnnotation"], NeverTypeAnnotation: [], UndefinedTypeAnnotation: [], UnknownTypeAnnotation: [], SatisfiesExpression: ["expression", "typeAnnotation"] };
2663
+ var gs = zt(Qt);
2664
+ var Yt = gs;
2665
+ function We(e, t) {
2666
+ if (!(e !== null && typeof e == "object")) return e;
2667
+ if (Array.isArray(e)) {
2668
+ for (let s = 0; s < e.length; s++) e[s] = We(e[s], t);
2669
+ return e;
2670
+ }
2671
+ let i = Yt(e);
2672
+ for (let s = 0; s < i.length; s++) e[i[s]] = We(e[i[s]], t);
2673
+ return t(e) || e;
2674
+ }
2675
+ var Ce = We;
2676
+ function vs(e, t) {
2677
+ let { parser: i, text: s } = t;
2678
+ if (e.type === "File" && e.program.interpreter) {
2679
+ let { program: { interpreter: r }, comments: n } = e;
2680
+ delete e.program.interpreter, n.unshift(r);
2681
+ }
2682
+ if (i === "babel") {
2683
+ let r = /* @__PURE__ */ new Set();
2684
+ e = Ce(e, (n) => {
2685
+ var o;
2686
+ (o = n.leadingComments) != null && o.some(Ht) && r.add(P(n));
2687
+ }), e = Ce(e, (n) => {
2688
+ if (n.type === "ParenthesizedExpression") {
2689
+ let { expression: o } = n;
2690
+ if (o.type === "TypeCastExpression") return o.range = [...n.range], o;
2691
+ let u = P(n);
2692
+ if (!r.has(u)) return o.extra = __spreadProps(__spreadValues({}, o.extra), { parenthesized: true }), o;
2693
+ }
2694
+ });
2695
+ }
2696
+ if (e = Ce(e, (r) => {
2697
+ var n;
2698
+ switch (r.type) {
2699
+ case "LogicalExpression":
2700
+ if ($t(r)) return He(r);
2701
+ break;
2702
+ case "VariableDeclaration": {
2703
+ let o = W(false, r.declarations, -1);
2704
+ o != null && o.init && s[j(o)] !== ";" && (r.range = [P(r), j(o)]);
2705
+ break;
2706
+ }
2707
+ case "TSParenthesizedType":
2708
+ return r.typeAnnotation;
2709
+ case "TSTypeParameter":
2710
+ if (typeof r.name == "string") {
2711
+ let o = P(r);
2712
+ r.name = { type: "Identifier", name: r.name, range: [o, o + r.name.length] };
2713
+ }
2714
+ break;
2715
+ case "TopicReference":
2716
+ e.extra = __spreadProps(__spreadValues({}, e.extra), { __isUsingHackPipeline: true });
2717
+ break;
2718
+ case "ExportAllDeclaration":
2719
+ if (i === "meriyah" && ((n = r.exported) == null ? void 0 : n.type) === "Identifier") {
2720
+ let { exported: o } = r, u = s.slice(P(o), j(o));
2721
+ (u.startsWith('"') || u.startsWith("'")) && (r.exported = __spreadProps(__spreadValues({}, r.exported), { type: "Literal", value: r.exported.name, raw: u }));
2722
+ }
2723
+ break;
2724
+ case "TSUnionType":
2725
+ case "TSIntersectionType":
2726
+ if (r.types.length === 1) return r.types[0];
2727
+ break;
2728
+ }
2729
+ }), Xt(e.comments)) {
2730
+ let r = W(false, e.comments, -1);
2731
+ for (let n = e.comments.length - 2; n >= 0; n--) {
2732
+ let o = e.comments[n];
2733
+ j(o) === P(r) && oe(o) && oe(r) && Ke(o) && Ke(r) && (e.comments.splice(n + 1, 1), o.value += "*//*" + r.value, o.range = [P(o), j(r)]), r = o;
2734
+ }
2735
+ }
2736
+ return e.type === "Program" && (e.range = [0, s.length]), e;
2737
+ }
2738
+ function $t(e) {
2739
+ return e.type === "LogicalExpression" && e.right.type === "LogicalExpression" && e.operator === e.right.operator;
2740
+ }
2741
+ function He(e) {
2742
+ return $t(e) ? He({ type: "LogicalExpression", operator: e.operator, left: He({ type: "LogicalExpression", operator: e.operator, left: e.left, right: e.right.left, range: [P(e.left), j(e.right.left)] }), right: e.right.right, range: [P(e), j(e)] }) : e;
2743
+ }
2744
+ var _e = vs;
2745
+ var bs = (e, t, i, s) => {
2746
+ if (!(e && t == null)) return t.replaceAll ? t.replaceAll(i, s) : i.global ? t.replace(i, s) : t.split(i).join(s);
2747
+ };
2748
+ var Z = bs;
2749
+ var Ss = /\*\/$/;
2750
+ var Cs = /^\/\*\*?/;
2751
+ var _s = /^\s*(\/\*\*?(.|\r?\n)*?\*\/)/;
2752
+ var Ts = /(^|\s+)\/\/([^\n\r]*)/g;
2753
+ var Zt = /^(\r?\n)+/;
2754
+ var ks = /(?:^|\r?\n) *(@[^\n\r]*?) *\r?\n *(?![^\n\r@]*\/\/[^]*)([^\s@][^\n\r@]+?) *\r?\n/g;
2755
+ var ei = /(?:^|\r?\n) *@(\S+) *([^\n\r]*)/g;
2756
+ var Es = /(\r?\n|^) *\* ?/g;
2757
+ var ws = [];
2758
+ function ti(e) {
2759
+ let t = e.match(_s);
2760
+ return t ? t[0].trimStart() : "";
2761
+ }
2762
+ function ii(e) {
2763
+ let t = `
2764
+ `;
2765
+ e = Z(false, e.replace(Cs, "").replace(Ss, ""), Es, "$1");
2766
+ let i = "";
2767
+ for (; i !== e; ) i = e, e = Z(false, e, ks, `${t}$1 $2${t}`);
2768
+ e = e.replace(Zt, "").trimEnd();
2769
+ let s = /* @__PURE__ */ Object.create(null), r = Z(false, e, ei, "").replace(Zt, "").trimEnd(), n;
2770
+ for (; n = ei.exec(e); ) {
2771
+ let o = Z(false, n[2], Ts, "");
2772
+ if (typeof s[n[1]] == "string" || Array.isArray(s[n[1]])) {
2773
+ let u = s[n[1]];
2774
+ s[n[1]] = [...ws, ...Array.isArray(u) ? u : [u], o];
2775
+ } else s[n[1]] = o;
2776
+ }
2777
+ return { comments: r, pragmas: s };
2778
+ }
2779
+ function As(e) {
2780
+ if (!e.startsWith("#!")) return "";
2781
+ let t = e.indexOf(`
2782
+ `);
2783
+ return t === -1 ? e : e.slice(0, t);
2784
+ }
2785
+ var si = As;
2786
+ function Ps(e) {
2787
+ let t = si(e);
2788
+ t && (e = e.slice(t.length + 1));
2789
+ let i = ti(e), { pragmas: s, comments: r } = ii(i);
2790
+ return { shebang: t, text: e, pragmas: s, comments: r };
2791
+ }
2792
+ function ri(e) {
2793
+ let { pragmas: t } = Ps(e);
2794
+ return Object.prototype.hasOwnProperty.call(t, "prettier") || Object.prototype.hasOwnProperty.call(t, "format");
2795
+ }
2796
+ function Is(e) {
2797
+ return e = typeof e == "function" ? { parse: e } : e, __spreadValues({ astFormat: "estree", hasPragma: ri, locStart: P, locEnd: j }, e);
2798
+ }
2799
+ var Te = Is;
2800
+ function Ns(e) {
2801
+ let { filepath: t } = e;
2802
+ if (t) {
2803
+ if (t = t.toLowerCase(), t.endsWith(".cjs")) return "script";
2804
+ if (t.endsWith(".mjs")) return "module";
2805
+ }
2806
+ }
2807
+ var ke = Ns;
2808
+ var Vs = { ecmaVersion: "latest", allowReturnOutsideFunction: true, allowSuperOutsideMethod: true, locations: true, ranges: true };
2809
+ function Ls(e) {
2810
+ let { message: t, loc: i } = e;
2811
+ if (!i) return e;
2812
+ let { line: s, column: r } = i;
2813
+ return be(t.replace(/ \(\d+:\d+\)$/u, ""), { loc: { start: { line: s, column: r + 1 } }, cause: e });
2814
+ }
2815
+ var ai;
2816
+ var Rs = () => (ai != null ? ai : ai = T.extend((0, ni.default)()), ai);
2817
+ function Os(e, t) {
2818
+ let i = Rs(), s = [], r = [], n = i.parse(e, __spreadProps(__spreadValues({}, Vs), { sourceType: t, allowImportExportEverywhere: t === "module", onComment: s, onToken: r }));
2819
+ return n.comments = s, n.tokens = r, n;
2820
+ }
2821
+ function Bs(e, t = {}) {
2822
+ let i = ke(t), s = (i ? [i] : ["module", "script"]).map((n) => () => Os(e, n)), r;
2823
+ try {
2824
+ r = Se(s);
2825
+ } catch ({ errors: [n] }) {
2826
+ throw Ls(n);
2827
+ }
2828
+ return _e(r, { text: e });
2829
+ }
2830
+ var oi = Te(Bs);
2831
+ var ci = et(Ge(), 1);
2832
+ var E = { Boolean: "Boolean", EOF: "<end>", Identifier: "Identifier", PrivateIdentifier: "PrivateIdentifier", Keyword: "Keyword", Null: "Null", Numeric: "Numeric", Punctuator: "Punctuator", String: "String", RegularExpression: "RegularExpression", Template: "Template", JSXIdentifier: "JSXIdentifier", JSXText: "JSXText" };
2833
+ function Ds(e, t) {
2834
+ let i = e[0], s = W(false, e, -1), r = { type: E.Template, value: t.slice(i.start, s.end) };
2835
+ return i.loc && (r.loc = { start: i.loc.start, end: s.loc.end }), i.range && (r.start = i.range[0], r.end = s.range[1], r.range = [r.start, r.end]), r;
2836
+ }
2837
+ function ze(e, t) {
2838
+ this._acornTokTypes = e, this._tokens = [], this._curlyBrace = null, this._code = t;
2839
+ }
2840
+ ze.prototype = { constructor: ze, translate(e, t) {
2841
+ let i = e.type, s = this._acornTokTypes;
2842
+ if (i === s.name) e.type = E.Identifier, e.value === "static" && (e.type = E.Keyword), t.ecmaVersion > 5 && (e.value === "yield" || e.value === "let") && (e.type = E.Keyword);
2843
+ else if (i === s.privateId) e.type = E.PrivateIdentifier;
2844
+ else if (i === s.semi || i === s.comma || i === s.parenL || i === s.parenR || i === s.braceL || i === s.braceR || i === s.dot || i === s.bracketL || i === s.colon || i === s.question || i === s.bracketR || i === s.ellipsis || i === s.arrow || i === s.jsxTagStart || i === s.incDec || i === s.starstar || i === s.jsxTagEnd || i === s.prefix || i === s.questionDot || i.binop && !i.keyword || i.isAssign) e.type = E.Punctuator, e.value = this._code.slice(e.start, e.end);
2845
+ else if (i === s.jsxName) e.type = E.JSXIdentifier;
2846
+ else if (i.label === "jsxText" || i === s.jsxAttrValueToken) e.type = E.JSXText;
2847
+ else if (i.keyword) i.keyword === "true" || i.keyword === "false" ? e.type = E.Boolean : i.keyword === "null" ? e.type = E.Null : e.type = E.Keyword;
2848
+ else if (i === s.num) e.type = E.Numeric, e.value = this._code.slice(e.start, e.end);
2849
+ else if (i === s.string) t.jsxAttrValueToken ? (t.jsxAttrValueToken = false, e.type = E.JSXText) : e.type = E.String, e.value = this._code.slice(e.start, e.end);
2850
+ else if (i === s.regexp) {
2851
+ e.type = E.RegularExpression;
2852
+ let r = e.value;
2853
+ e.regex = { flags: r.flags, pattern: r.pattern }, e.value = `/${r.pattern}/${r.flags}`;
2854
+ }
2855
+ return e;
2856
+ }, onToken(e, t) {
2857
+ let i = this._acornTokTypes, s = t.tokens, r = this._tokens, n = () => {
2858
+ s.push(Ds(this._tokens, this._code)), this._tokens = [];
2859
+ };
2860
+ if (e.type === i.eof) {
2861
+ this._curlyBrace && s.push(this.translate(this._curlyBrace, t));
2862
+ return;
2863
+ }
2864
+ if (e.type === i.backQuote) {
2865
+ this._curlyBrace && (s.push(this.translate(this._curlyBrace, t)), this._curlyBrace = null), r.push(e), r.length > 1 && n();
2866
+ return;
2867
+ }
2868
+ if (e.type === i.dollarBraceL) {
2869
+ r.push(e), n();
2870
+ return;
2871
+ }
2872
+ if (e.type === i.braceR) {
2873
+ this._curlyBrace && s.push(this.translate(this._curlyBrace, t)), this._curlyBrace = e;
2874
+ return;
2875
+ }
2876
+ if (e.type === i.template || e.type === i.invalidTemplate) {
2877
+ this._curlyBrace && (r.push(this._curlyBrace), this._curlyBrace = null), r.push(e);
2878
+ return;
2879
+ }
2880
+ this._curlyBrace && (s.push(this.translate(this._curlyBrace, t)), this._curlyBrace = null), s.push(this.translate(e, t));
2881
+ } };
2882
+ var ui = ze;
2883
+ var pi = [3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16];
2884
+ function Fs() {
2885
+ return W(false, pi, -1);
2886
+ }
2887
+ function Ms(e = 5) {
2888
+ let t = e === "latest" ? Fs() : e;
2889
+ if (typeof t != "number") throw new Error(`ecmaVersion must be a number or "latest". Received value of type ${typeof e} instead.`);
2890
+ if (t >= 2015 && (t -= 2009), !pi.includes(t)) throw new Error("Invalid ecmaVersion.");
2891
+ return t;
2892
+ }
2893
+ function js(e = "script") {
2894
+ if (e === "script" || e === "module") return e;
2895
+ if (e === "commonjs") return "script";
2896
+ throw new Error("Invalid sourceType.");
2897
+ }
2898
+ function hi(e) {
2899
+ let t = Ms(e.ecmaVersion), i = js(e.sourceType), s = e.range === true, r = e.loc === true;
2900
+ if (t !== 3 && e.allowReserved) throw new Error("`allowReserved` is only supported when ecmaVersion is 3");
2901
+ if (typeof e.allowReserved < "u" && typeof e.allowReserved != "boolean") throw new Error("`allowReserved`, when present, must be `true` or `false`");
2902
+ let n = t === 3 ? e.allowReserved || "never" : false, o = e.ecmaFeatures || {}, u = e.sourceType === "commonjs" || !!o.globalReturn;
2903
+ if (i === "module" && t < 6) throw new Error("sourceType 'module' is not supported when ecmaVersion < 2015. Consider adding `{ ecmaVersion: 2015 }` to the parser options.");
2904
+ return Object.assign({}, e, { ecmaVersion: t, sourceType: i, ranges: s, locations: r, allowReserved: n, allowReturnOutsideFunction: u });
2905
+ }
2906
+ var H = Symbol("espree's internal state");
2907
+ var Qe = Symbol("espree's esprimaFinishNode");
2908
+ function Us(e, t, i, s, r, n, o) {
2909
+ let u;
2910
+ e ? u = "Block" : o.slice(i, i + 2) === "#!" ? u = "Hashbang" : u = "Line";
2911
+ let p = { type: u, value: t };
2912
+ return typeof i == "number" && (p.start = i, p.end = s, p.range = [i, s]), typeof r == "object" && (p.loc = { start: r, end: n }), p;
2913
+ }
2914
+ var Ye = () => (e) => {
2915
+ let t = Object.assign({}, e.acorn.tokTypes);
2916
+ return e.acornJsx && Object.assign(t, e.acornJsx.tokTypes), class extends e {
2917
+ constructor(s, r) {
2918
+ (typeof s != "object" || s === null) && (s = {}), typeof r != "string" && !(r instanceof String) && (r = String(r));
2919
+ let n = s.sourceType, o = hi(s), u = o.ecmaFeatures || {}, p = o.tokens === true ? new ui(t, r) : null, d = { originalSourceType: n || o.sourceType, tokens: p ? [] : null, comments: o.comment === true ? [] : null, impliedStrict: u.impliedStrict === true && o.ecmaVersion >= 5, ecmaVersion: o.ecmaVersion, jsxAttrValueToken: false, lastToken: null, templateElements: [] };
2920
+ super({ ecmaVersion: o.ecmaVersion, sourceType: o.sourceType, ranges: o.ranges, locations: o.locations, allowReserved: o.allowReserved, allowReturnOutsideFunction: o.allowReturnOutsideFunction, onToken(l) {
2921
+ p && p.onToken(l, d), l.type !== t.eof && (d.lastToken = l);
2922
+ }, onComment(l, C, B, h, m, x) {
2923
+ if (d.comments) {
2924
+ let g = Us(l, C, B, h, m, x, r);
2925
+ d.comments.push(g);
2926
+ }
2927
+ } }, r), this[H] = d;
2928
+ }
2929
+ tokenize() {
2930
+ do
2931
+ this.next();
2932
+ while (this.type !== t.eof);
2933
+ this.next();
2934
+ let s = this[H], r = s.tokens;
2935
+ return s.comments && (r.comments = s.comments), r;
2936
+ }
2937
+ finishNode(...s) {
2938
+ let r = super.finishNode(...s);
2939
+ return this[Qe](r);
2940
+ }
2941
+ finishNodeAt(...s) {
2942
+ let r = super.finishNodeAt(...s);
2943
+ return this[Qe](r);
2944
+ }
2945
+ parse() {
2946
+ let s = this[H], r = super.parse();
2947
+ if (r.sourceType = s.originalSourceType, s.comments && (r.comments = s.comments), s.tokens && (r.tokens = s.tokens), r.body.length) {
2948
+ let [n] = r.body;
2949
+ r.range && (r.range[0] = n.range[0]), r.loc && (r.loc.start = n.loc.start), r.start = n.start;
2950
+ }
2951
+ return s.lastToken && (r.range && (r.range[1] = s.lastToken.range[1]), r.loc && (r.loc.end = s.lastToken.loc.end), r.end = s.lastToken.end), this[H].templateElements.forEach((n) => {
2952
+ let u = n.tail ? 1 : 2;
2953
+ n.start += -1, n.end += u, n.range && (n.range[0] += -1, n.range[1] += u), n.loc && (n.loc.start.column += -1, n.loc.end.column += u);
2954
+ }), r;
2955
+ }
2956
+ parseTopLevel(s) {
2957
+ return this[H].impliedStrict && (this.strict = true), super.parseTopLevel(s);
2958
+ }
2959
+ raise(s, r) {
2960
+ let n = e.acorn.getLineInfo(this.input, s), o = new SyntaxError(r);
2961
+ throw o.index = s, o.lineNumber = n.line, o.column = n.column + 1, o;
2962
+ }
2963
+ raiseRecoverable(s, r) {
2964
+ this.raise(s, r);
2965
+ }
2966
+ unexpected(s) {
2967
+ let r = "Unexpected token";
2968
+ if (s != null) {
2969
+ if (this.pos = s, this.options.locations) for (; this.pos < this.lineStart; ) this.lineStart = this.input.lastIndexOf(`
2970
+ `, this.lineStart - 2) + 1, --this.curLine;
2971
+ this.nextToken();
2972
+ }
2973
+ this.end > this.start && (r += ` ${this.input.slice(this.start, this.end)}`), this.raise(this.start, r);
2974
+ }
2975
+ jsx_readString(s) {
2976
+ let r = super.jsx_readString(s);
2977
+ return this.type === t.string && (this[H].jsxAttrValueToken = true), r;
2978
+ }
2979
+ [Qe](s) {
2980
+ return s.type === "TemplateElement" && this[H].templateElements.push(s), s.type.includes("Function") && !s.generator && (s.generator = false), s;
2981
+ }
2982
+ };
2983
+ };
2984
+ var qs = { _regular: null, _jsx: null, get regular() {
2985
+ return this._regular === null && (this._regular = T.extend(Ye())), this._regular;
2986
+ }, get jsx() {
2987
+ return this._jsx === null && (this._jsx = T.extend((0, ci.default)(), Ye())), this._jsx;
2988
+ }, get(e) {
2989
+ return !!(e && e.ecmaFeatures && e.ecmaFeatures.jsx) ? this.jsx : this.regular;
2990
+ } };
2991
+ function li(e, t) {
2992
+ let i = qs.get(t);
2993
+ return new i(t, e).parse();
2994
+ }
2995
+ var Js = { ecmaVersion: "latest", range: true, loc: true, comment: true, tokens: true, sourceType: "module", ecmaFeatures: { jsx: true, globalReturn: true, impliedStrict: false } };
2996
+ function Gs(e) {
2997
+ let { message: t, lineNumber: i, column: s } = e;
2998
+ return typeof i != "number" ? e : be(t, { loc: { start: { line: i, column: s } }, cause: e });
2999
+ }
3000
+ function Ks(e, t = {}) {
3001
+ let i = ke(t), s = (i ? [i] : ["module", "script"]).map((n) => () => li(e, __spreadProps(__spreadValues({}, Js), { sourceType: n }))), r;
3002
+ try {
3003
+ r = Se(s);
3004
+ } catch ({ errors: [n] }) {
3005
+ throw Gs(n);
3006
+ }
3007
+ return _e(r, { text: e });
3008
+ }
3009
+ var fi = Te(Ks);
3010
+ var Xs = { acorn: oi, espree: fi };
3011
+ var ba = $e;
3012
+ export {
3013
+ ba as default,
3014
+ Xs as parsers
3015
+ };
3016
+ //# sourceMappingURL=acorn-SW5GI5G7.mjs.map