api-farmer 0.0.19 → 0.0.21

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.
@@ -1,3047 +0,0 @@
1
- import "./chunk-6OIOYGN7.js";
2
-
3
- // node_modules/.pnpm/prettier@3.4.2/node_modules/prettier/plugins/acorn.mjs
4
- var di = Object.create;
5
- var we = Object.defineProperty;
6
- var mi = Object.getOwnPropertyDescriptor;
7
- var xi = Object.getOwnPropertyNames;
8
- var yi = Object.getPrototypeOf;
9
- var gi = Object.prototype.hasOwnProperty;
10
- var $e = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports);
11
- var vi = (e, t) => {
12
- for (var i in t) we(e, i, { get: t[i], enumerable: true });
13
- };
14
- var bi = (e, t, i, s) => {
15
- 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 });
16
- return e;
17
- };
18
- 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));
19
- var Gt = $e((Qs, qt) => {
20
- qt.exports = {};
21
- });
22
- var Je = $e((Ys, Ge) => {
23
- "use strict";
24
- var ns = Gt(), os = /^[\da-fA-F]+$/, us = /^\d+$/, Jt = /* @__PURE__ */ new WeakMap();
25
- function Kt(e) {
26
- e = e.Parser.acorn || e;
27
- let t = Jt.get(e);
28
- if (!t) {
29
- 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") };
30
- d.jsxTagStart.updateContext = function() {
31
- this.context.push(u), this.context.push(n), this.exprAllowed = false;
32
- }, d.jsxTagEnd.updateContext = function(f) {
33
- let C = this.context.pop();
34
- C === n && f === i.slash || C === o ? (this.context.pop(), this.exprAllowed = this.curContext() === u) : this.exprAllowed = true;
35
- }, t = { tokContexts: p, tokTypes: d }, Jt.set(e, t);
36
- }
37
- return t;
38
- }
39
- function ne(e) {
40
- if (!e) return e;
41
- if (e.type === "JSXIdentifier") return e.name;
42
- if (e.type === "JSXNamespacedName") return e.namespace.name + ":" + e.name.name;
43
- if (e.type === "JSXMemberExpression") return ne(e.object) + "." + ne(e.property);
44
- }
45
- Ge.exports = function(e) {
46
- return e = e || {}, function(t) {
47
- return ps({ allowNamespaces: e.allowNamespaces !== false, allowNamespacedObjects: !!e.allowNamespacedObjects }, t);
48
- };
49
- };
50
- Object.defineProperty(Ge.exports, "tokTypes", { get: function() {
51
- return Kt(void 0).tokTypes;
52
- }, configurable: true, enumerable: true });
53
- function ps(e, t) {
54
- 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, f = i.isNewLine, C = i.isIdentifierStart, B = i.isIdentifierChar;
55
- return class extends t {
56
- static get acornJsx() {
57
- return s;
58
- }
59
- jsx_readToken() {
60
- let h = "", m = this.pos;
61
- for (; ; ) {
62
- this.pos >= this.input.length && this.raise(this.start, "Unterminated JSX contents");
63
- let x = this.input.charCodeAt(this.pos);
64
- switch (x) {
65
- case 60:
66
- case 123:
67
- 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));
68
- case 38:
69
- h += this.input.slice(m, this.pos), h += this.jsx_readEntity(), m = this.pos;
70
- break;
71
- case 62:
72
- case 125:
73
- this.raise(this.pos, "Unexpected token `" + this.input[this.pos] + "`. Did you mean `" + (x === 62 ? "&gt;" : "&rbrace;") + '` or `{"' + this.input[this.pos] + '"}`?');
74
- default:
75
- f(x) ? (h += this.input.slice(m, this.pos), h += this.jsx_readNewLine(true), m = this.pos) : ++this.pos;
76
- }
77
- }
78
- }
79
- jsx_readNewLine(h) {
80
- let m = this.input.charCodeAt(this.pos), x;
81
- return ++this.pos, m === 13 && this.input.charCodeAt(this.pos) === 10 ? (++this.pos, x = h ? `
82
- ` : `\r
83
- `) : x = String.fromCharCode(m), this.options.locations && (++this.curLine, this.lineStart = this.pos), x;
84
- }
85
- jsx_readString(h) {
86
- let m = "", x = ++this.pos;
87
- for (; ; ) {
88
- this.pos >= this.input.length && this.raise(this.start, "Unterminated string constant");
89
- let g = this.input.charCodeAt(this.pos);
90
- if (g === h) break;
91
- g === 38 ? (m += this.input.slice(x, this.pos), m += this.jsx_readEntity(), x = this.pos) : f(g) ? (m += this.input.slice(x, this.pos), m += this.jsx_readNewLine(false), x = this.pos) : ++this.pos;
92
- }
93
- return m += this.input.slice(x, this.pos++), this.finishToken(r.string, m);
94
- }
95
- jsx_readEntity() {
96
- let h = "", m = 0, x, g = this.input[this.pos];
97
- g !== "&" && this.raise(this.pos, "Entity must start with an ampersand");
98
- let w = ++this.pos;
99
- for (; this.pos < this.input.length && m++ < 10; ) {
100
- if (g = this.input[this.pos++], g === ";") {
101
- h[0] === "#" ? h[1] === "x" ? (h = h.substr(2), os.test(h) && (x = String.fromCharCode(parseInt(h, 16)))) : (h = h.substr(1), us.test(h) && (x = String.fromCharCode(parseInt(h, 10)))) : x = ns[h];
102
- break;
103
- }
104
- h += g;
105
- }
106
- return x || (this.pos = w, "&");
107
- }
108
- jsx_readWord() {
109
- let h, m = this.pos;
110
- do
111
- h = this.input.charCodeAt(++this.pos);
112
- while (B(h) || h === 45);
113
- return this.finishToken(n.jsxName, this.input.slice(m, this.pos));
114
- }
115
- jsx_parseIdentifier() {
116
- let h = this.startNode();
117
- 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");
118
- }
119
- jsx_parseNamespacedName() {
120
- let h = this.start, m = this.startLoc, x = this.jsx_parseIdentifier();
121
- if (!e.allowNamespaces || !this.eat(r.colon)) return x;
122
- var g = this.startNodeAt(h, m);
123
- return g.namespace = x, g.name = this.jsx_parseIdentifier(), this.finishNode(g, "JSXNamespacedName");
124
- }
125
- jsx_parseElementName() {
126
- if (this.type === n.jsxTagEnd) return "";
127
- let h = this.start, m = this.startLoc, x = this.jsx_parseNamespacedName();
128
- for (this.type === r.dot && x.type === "JSXNamespacedName" && !e.allowNamespacedObjects && this.unexpected(); this.eat(r.dot); ) {
129
- let g = this.startNodeAt(h, m);
130
- g.object = x, g.property = this.jsx_parseIdentifier(), x = this.finishNode(g, "JSXMemberExpression");
131
- }
132
- return x;
133
- }
134
- jsx_parseAttributeValue() {
135
- switch (this.type) {
136
- case r.braceL:
137
- let h = this.jsx_parseExpressionContainer();
138
- return h.expression.type === "JSXEmptyExpression" && this.raise(h.start, "JSX attributes must only be assigned a non-empty expression"), h;
139
- case n.jsxTagStart:
140
- case r.string:
141
- return this.parseExprAtom();
142
- default:
143
- this.raise(this.start, "JSX value should be either an expression or a quoted JSX text");
144
- }
145
- }
146
- jsx_parseEmptyExpression() {
147
- let h = this.startNodeAt(this.lastTokEnd, this.lastTokEndLoc);
148
- return this.finishNodeAt(h, "JSXEmptyExpression", this.start, this.startLoc);
149
- }
150
- jsx_parseExpressionContainer() {
151
- let h = this.startNode();
152
- return this.next(), h.expression = this.type === r.braceR ? this.jsx_parseEmptyExpression() : this.parseExpression(), this.expect(r.braceR), this.finishNode(h, "JSXExpressionContainer");
153
- }
154
- jsx_parseAttribute() {
155
- let h = this.startNode();
156
- 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"));
157
- }
158
- jsx_parseOpeningElementAt(h, m) {
159
- let x = this.startNodeAt(h, m);
160
- x.attributes = [];
161
- let g = this.jsx_parseElementName();
162
- for (g && (x.name = g); this.type !== r.slash && this.type !== n.jsxTagEnd; ) x.attributes.push(this.jsx_parseAttribute());
163
- return x.selfClosing = this.eat(r.slash), this.expect(n.jsxTagEnd), this.finishNode(x, g ? "JSXOpeningElement" : "JSXOpeningFragment");
164
- }
165
- jsx_parseClosingElementAt(h, m) {
166
- let x = this.startNodeAt(h, m), g = this.jsx_parseElementName();
167
- return g && (x.name = g), this.expect(n.jsxTagEnd), this.finishNode(x, g ? "JSXClosingElement" : "JSXClosingFragment");
168
- }
169
- jsx_parseElementAt(h, m) {
170
- let x = this.startNodeAt(h, m), g = [], w = this.jsx_parseOpeningElementAt(h, m), he = null;
171
- if (!w.selfClosing) {
172
- e: for (; ; ) switch (this.type) {
173
- case n.jsxTagStart:
174
- if (h = this.start, m = this.startLoc, this.next(), this.eat(r.slash)) {
175
- he = this.jsx_parseClosingElementAt(h, m);
176
- break e;
177
- }
178
- g.push(this.jsx_parseElementAt(h, m));
179
- break;
180
- case n.jsxText:
181
- g.push(this.parseExprAtom());
182
- break;
183
- case r.braceL:
184
- g.push(this.jsx_parseExpressionContainer());
185
- break;
186
- default:
187
- this.unexpected();
188
- }
189
- ne(he.name) !== ne(w.name) && this.raise(he.start, "Expected corresponding JSX closing tag for <" + ne(w.name) + ">");
190
- }
191
- let Ee = w.name ? "Element" : "Fragment";
192
- 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);
193
- }
194
- jsx_parseText() {
195
- let h = this.parseLiteral(this.value);
196
- return h.type = "JSXText", h;
197
- }
198
- jsx_parseElement() {
199
- let h = this.start, m = this.startLoc;
200
- return this.next(), this.jsx_parseElementAt(h, m);
201
- }
202
- parseExprAtom(h) {
203
- return this.type === n.jsxText ? this.jsx_parseText() : this.type === n.jsxTagStart ? this.jsx_parseElement() : super.parseExprAtom(h);
204
- }
205
- readToken(h) {
206
- let m = this.curContext();
207
- if (m === d) return this.jsx_readToken();
208
- if (m === u || m === p) {
209
- if (C(h)) return this.jsx_readWord();
210
- if (h == 62) return ++this.pos, this.finishToken(n.jsxTagEnd);
211
- if ((h === 34 || h === 39) && m == u) return this.jsx_readString(h);
212
- }
213
- return h === 60 && this.exprAllowed && this.input.charCodeAt(this.pos + 1) !== 33 ? (++this.pos, this.finishToken(n.jsxTagStart)) : super.readToken(h);
214
- }
215
- updateContext(h) {
216
- if (this.type == r.braceL) {
217
- var m = this.curContext();
218
- m == u ? this.context.push(o.b_expr) : m == d ? this.context.push(o.b_tmpl) : super.updateContext(h), this.exprAllowed = true;
219
- } else if (this.type === r.slash && h === n.jsxTagStart) this.context.length -= 2, this.context.push(p), this.exprAllowed = false;
220
- else return super.updateContext(h);
221
- }
222
- };
223
- }
224
- });
225
- var Ze = {};
226
- vi(Ze, { parsers: () => zs });
227
- 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, 7, 9, 32, 4, 318, 1, 80, 3, 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, 68, 8, 2, 0, 3, 0, 2, 3, 2, 4, 2, 0, 15, 1, 83, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 7, 19, 58, 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, 343, 9, 54, 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, 10, 5350, 0, 7, 14, 11465, 27, 2343, 9, 87, 9, 39, 4, 60, 6, 26, 9, 535, 9, 470, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4178, 9, 519, 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, 245, 1, 2, 9, 726, 6, 110, 6, 6, 9, 4759, 9, 787719, 239];
228
- 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, 4, 51, 13, 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, 39, 27, 10, 22, 251, 41, 7, 1, 17, 2, 60, 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, 31, 9, 2, 0, 3, 0, 2, 37, 2, 0, 26, 0, 2, 0, 45, 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, 200, 32, 32, 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, 26, 3994, 6, 582, 6842, 29, 1763, 568, 8, 30, 18, 78, 18, 29, 19, 47, 17, 3, 32, 20, 6, 18, 433, 44, 212, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 42, 9, 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, 229, 29, 3, 0, 496, 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];
229
- 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\u0897-\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";
230
- 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-\u1C8A\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-\uA7CD\uA7D0\uA7D1\uA7D3\uA7D5-\uA7DC\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";
231
- 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" };
232
- 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";
233
- var _i = { 5: Pe, "5module": Pe + " export import", 6: Pe + " const class extends export import super" };
234
- var Ti = /^in(stanceof)?$/;
235
- var ki = new RegExp("[" + ot + "]");
236
- var Ei = new RegExp("[" + ot + Ci + "]");
237
- function Ne(e, t) {
238
- for (var i = 65536, s = 0; s < t.length; s += 2) {
239
- if (i += t[s], i > e) return false;
240
- if (i += t[s + 1], i >= e) return true;
241
- }
242
- return false;
243
- }
244
- function M(e, t) {
245
- 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);
246
- }
247
- function H(e, t) {
248
- 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);
249
- }
250
- var S = function(t, i) {
251
- 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;
252
- };
253
- function P(e, t) {
254
- return new S(e, { beforeExpr: true, binop: t });
255
- }
256
- var I = { beforeExpr: true };
257
- var A = { startsExpr: true };
258
- var Oe = {};
259
- function b(e, t) {
260
- return t === void 0 && (t = {}), t.keyword = e, Oe[e] = new S(e, t);
261
- }
262
- 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(",", I), semi: new S(";", I), colon: new S(":", I), dot: new S("."), question: new S("?", I), questionDot: new S("?."), arrow: new S("=>", I), template: new S("template"), invalidTemplate: new S("invalidTemplate"), ellipsis: new S("...", I), 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: P("||", 1), logicalAND: P("&&", 2), bitwiseOR: P("|", 3), bitwiseXOR: P("^", 4), bitwiseAND: P("&", 5), equality: P("==/!=/===/!==", 6), relational: P("</>/<=/>=", 7), bitShift: P("<</>>/>>>", 8), plusMin: new S("+/-", { beforeExpr: true, binop: 9, prefix: true, startsExpr: true }), modulo: P("%", 10), star: P("*", 10), slash: P("/", 10), starstar: new S("**", { beforeExpr: true }), coalesce: P("??", 1), _break: b("break"), _case: b("case", I), _catch: b("catch"), _continue: b("continue"), _debugger: b("debugger"), _default: b("default", I), _do: b("do", { isLoop: true, beforeExpr: true }), _else: b("else", I), _finally: b("finally"), _for: b("for", { isLoop: true }), _function: b("function", A), _if: b("if"), _return: b("return", I), _switch: b("switch"), _throw: b("throw", I), _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", I), _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 }) };
263
- var L = /\r\n?|\n|\u2028|\u2029/;
264
- var wi = new RegExp(L.source, "g");
265
- function Q(e) {
266
- return e === 10 || e === 13 || e === 8232 || e === 8233;
267
- }
268
- function ut(e, t, i) {
269
- i === void 0 && (i = e.length);
270
- for (var s = t; s < i; s++) {
271
- var r = e.charCodeAt(s);
272
- if (Q(r)) return s < i - 1 && r === 13 && e.charCodeAt(s + 1) === 10 ? s + 2 : s + 1;
273
- }
274
- return -1;
275
- }
276
- var pt = /[\u1680\u2000-\u200a\u202f\u205f\u3000\ufeff]/;
277
- var N = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g;
278
- var ht = Object.prototype;
279
- var Ai = ht.hasOwnProperty;
280
- var Pi = ht.toString;
281
- var Y = Object.hasOwn || function(e, t) {
282
- return Ai.call(e, t);
283
- };
284
- var tt = Array.isArray || function(e) {
285
- return Pi.call(e) === "[object Array]";
286
- };
287
- var it = /* @__PURE__ */ Object.create(null);
288
- function K(e) {
289
- return it[e] || (it[e] = new RegExp("^(?:" + e.replace(/ /g, "|") + ")$"));
290
- }
291
- function U(e) {
292
- return e <= 65535 ? String.fromCharCode(e) : (e -= 65536, String.fromCharCode((e >> 10) + 55296, (e & 1023) + 56320));
293
- }
294
- var Ii = /(?:[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/;
295
- var ie = function(t, i) {
296
- this.line = t, this.column = i;
297
- };
298
- ie.prototype.offset = function(t) {
299
- return new ie(this.line, this.column + t);
300
- };
301
- var xe = function(t, i, s) {
302
- this.start = i, this.end = s, t.sourceFile !== null && (this.source = t.sourceFile);
303
- };
304
- function ct(e, t) {
305
- for (var i = 1, s = 0; ; ) {
306
- var r = ut(e, s, t);
307
- if (r < 0) return new ie(i, t - s);
308
- ++i, s = r;
309
- }
310
- }
311
- 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 };
312
- var st = false;
313
- function Ni(e) {
314
- var t = {};
315
- for (var i in Ve) t[i] = e && Y(e, i) ? e[i] : Ve[i];
316
- 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.
317
- 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)) {
318
- var s = t.onToken;
319
- t.onToken = function(r) {
320
- return s.push(r);
321
- };
322
- }
323
- return tt(t.onComment) && (t.onComment = Vi(t, t.onComment)), t;
324
- }
325
- function Vi(e, t) {
326
- return function(i, s, r, n, o, u) {
327
- var p = { type: i ? "Block" : "Line", value: s, start: r, end: n };
328
- e.locations && (p.loc = new xe(this, o, u)), e.ranges && (p.range = [r, n]), t.push(p);
329
- };
330
- }
331
- var se = 1;
332
- var Z = 2;
333
- var Be = 4;
334
- var lt = 8;
335
- var ft = 16;
336
- var dt = 32;
337
- var De = 64;
338
- var mt = 128;
339
- var re = 256;
340
- var Fe = se | Z | re;
341
- function je(e, t) {
342
- return Z | (e ? Be : 0) | (t ? lt : 0);
343
- }
344
- var le = 0;
345
- var Me = 1;
346
- var G = 2;
347
- var xt = 3;
348
- var yt = 4;
349
- var gt = 5;
350
- var T = function(t, i, s) {
351
- this.options = t = Ni(t), this.sourceFile = t.sourceFile, this.keywords = K(_i[t.ecmaVersion >= 6 ? 6 : t.sourceType === "module" ? "5module" : 5]);
352
- var r = "";
353
- t.allowReserved !== true && (r = Ae[t.ecmaVersion >= 6 ? 6 : t.ecmaVersion === 5 ? 5 : 3], t.sourceType === "module" && (r += " await")), this.reservedWords = K(r);
354
- var n = (r ? r + " " : "") + Ae.strict;
355
- this.reservedWordsStrict = K(n), this.reservedWordsStrictBind = K(n + " " + Ae.strictBind), this.input = String(i), this.containsEsc = false, s ? (this.pos = s, this.lineStart = this.input.lastIndexOf(`
356
- `, s - 1) + 1, this.curLine = this.input.slice(0, this.lineStart).split(L).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(se), this.regexpState = null, this.privateNameStack = [];
357
- };
358
- 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 } };
359
- T.prototype.parse = function() {
360
- var t = this.options.program || this.startNode();
361
- return this.nextToken(), this.parseTopLevel(t);
362
- };
363
- F.inFunction.get = function() {
364
- return (this.currentVarScope().flags & Z) > 0;
365
- };
366
- F.inGenerator.get = function() {
367
- return (this.currentVarScope().flags & lt) > 0 && !this.currentVarScope().inClassFieldInit;
368
- };
369
- F.inAsync.get = function() {
370
- return (this.currentVarScope().flags & Be) > 0 && !this.currentVarScope().inClassFieldInit;
371
- };
372
- F.canAwait.get = function() {
373
- for (var e = this.scopeStack.length - 1; e >= 0; e--) {
374
- var t = this.scopeStack[e];
375
- if (t.inClassFieldInit || t.flags & re) return false;
376
- if (t.flags & Z) return (t.flags & Be) > 0;
377
- }
378
- return this.inModule && this.options.ecmaVersion >= 13 || this.options.allowAwaitOutsideFunction;
379
- };
380
- F.allowSuper.get = function() {
381
- var e = this.currentThisScope(), t = e.flags, i = e.inClassFieldInit;
382
- return (t & De) > 0 || i || this.options.allowSuperOutsideMethod;
383
- };
384
- F.allowDirectSuper.get = function() {
385
- return (this.currentThisScope().flags & mt) > 0;
386
- };
387
- F.treatFunctionsAsVar.get = function() {
388
- return this.treatFunctionsAsVarInScope(this.currentScope());
389
- };
390
- F.allowNewDotTarget.get = function() {
391
- var e = this.currentThisScope(), t = e.flags, i = e.inClassFieldInit;
392
- return (t & (Z | re)) > 0 || i;
393
- };
394
- F.inClassStaticBlock.get = function() {
395
- return (this.currentVarScope().flags & re) > 0;
396
- };
397
- T.extend = function() {
398
- for (var t = [], i = arguments.length; i--; ) t[i] = arguments[i];
399
- for (var s = this, r = 0; r < t.length; r++) s = t[r](s);
400
- return s;
401
- };
402
- T.parse = function(t, i) {
403
- return new this(i, t).parse();
404
- };
405
- T.parseExpressionAt = function(t, i, s) {
406
- var r = new this(s, t, i);
407
- return r.nextToken(), r.parseExpression();
408
- };
409
- T.tokenizer = function(t, i) {
410
- return new this(i, t);
411
- };
412
- Object.defineProperties(T.prototype, F);
413
- var k = T.prototype;
414
- var Li = /^(?:'((?:\\[^]|[^'\\])*?)'|"((?:\\[^]|[^"\\])*?)")/;
415
- k.strictDirective = function(e) {
416
- if (this.options.ecmaVersion < 5) return false;
417
- for (; ; ) {
418
- N.lastIndex = e, e += N.exec(this.input)[0].length;
419
- var t = Li.exec(this.input.slice(e));
420
- if (!t) return false;
421
- if ((t[1] || t[2]) === "use strict") {
422
- N.lastIndex = e + t[0].length;
423
- var i = N.exec(this.input), s = i.index + i[0].length, r = this.input.charAt(s);
424
- return r === ";" || r === "}" || L.test(i[0]) && !(/[(`.[+\-/*%<>=,?^&]/.test(r) || r === "!" && this.input.charAt(s + 1) === "=");
425
- }
426
- e += t[0].length, N.lastIndex = e, e += N.exec(this.input)[0].length, this.input[e] === ";" && e++;
427
- }
428
- };
429
- k.eat = function(e) {
430
- return this.type === e ? (this.next(), true) : false;
431
- };
432
- k.isContextual = function(e) {
433
- return this.type === a.name && this.value === e && !this.containsEsc;
434
- };
435
- k.eatContextual = function(e) {
436
- return this.isContextual(e) ? (this.next(), true) : false;
437
- };
438
- k.expectContextual = function(e) {
439
- this.eatContextual(e) || this.unexpected();
440
- };
441
- k.canInsertSemicolon = function() {
442
- return this.type === a.eof || this.type === a.braceR || L.test(this.input.slice(this.lastTokEnd, this.start));
443
- };
444
- k.insertSemicolon = function() {
445
- if (this.canInsertSemicolon()) return this.options.onInsertedSemicolon && this.options.onInsertedSemicolon(this.lastTokEnd, this.lastTokEndLoc), true;
446
- };
447
- k.semicolon = function() {
448
- !this.eat(a.semi) && !this.insertSemicolon() && this.unexpected();
449
- };
450
- k.afterTrailingComma = function(e, t) {
451
- if (this.type === e) return this.options.onTrailingComma && this.options.onTrailingComma(this.lastTokStart, this.lastTokStartLoc), t || this.next(), true;
452
- };
453
- k.expect = function(e) {
454
- this.eat(e) || this.unexpected();
455
- };
456
- k.unexpected = function(e) {
457
- this.raise(e ?? this.start, "Unexpected token");
458
- };
459
- var ye = function() {
460
- this.shorthandAssign = this.trailingComma = this.parenthesizedAssign = this.parenthesizedBind = this.doubleProto = -1;
461
- };
462
- k.checkPatternErrors = function(e, t) {
463
- if (e) {
464
- e.trailingComma > -1 && this.raiseRecoverable(e.trailingComma, "Comma is not permitted after the rest element");
465
- var i = t ? e.parenthesizedAssign : e.parenthesizedBind;
466
- i > -1 && this.raiseRecoverable(i, t ? "Assigning to rvalue" : "Parenthesized pattern");
467
- }
468
- };
469
- k.checkExpressionErrors = function(e, t) {
470
- if (!e) return false;
471
- var i = e.shorthandAssign, s = e.doubleProto;
472
- if (!t) return i >= 0 || s >= 0;
473
- i >= 0 && this.raise(i, "Shorthand property assignments are valid only in destructuring patterns"), s >= 0 && this.raiseRecoverable(s, "Redefinition of __proto__ property");
474
- };
475
- k.checkYieldAwaitInDefaultParams = function() {
476
- 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");
477
- };
478
- k.isSimpleAssignTarget = function(e) {
479
- return e.type === "ParenthesizedExpression" ? this.isSimpleAssignTarget(e.expression) : e.type === "Identifier" || e.type === "MemberExpression";
480
- };
481
- var l = T.prototype;
482
- l.parseTopLevel = function(e) {
483
- var t = /* @__PURE__ */ Object.create(null);
484
- for (e.body || (e.body = []); this.type !== a.eof; ) {
485
- var i = this.parseStatement(null, true, t);
486
- e.body.push(i);
487
- }
488
- if (this.inModule) for (var s = 0, r = Object.keys(this.undefinedExports); s < r.length; s += 1) {
489
- var n = r[s];
490
- this.raiseRecoverable(this.undefinedExports[n].start, "Export '" + n + "' is not defined");
491
- }
492
- return this.adaptDirectivePrologue(e.body), this.next(), e.sourceType = this.options.sourceType, this.finishNode(e, "Program");
493
- };
494
- var Ue = { kind: "loop" };
495
- var Ri = { kind: "switch" };
496
- l.isLet = function(e) {
497
- if (this.options.ecmaVersion < 6 || !this.isContextual("let")) return false;
498
- N.lastIndex = this.pos;
499
- var t = N.exec(this.input), i = this.pos + t[0].length, s = this.input.charCodeAt(i);
500
- if (s === 91 || s === 92) return true;
501
- if (e) return false;
502
- if (s === 123 || s > 55295 && s < 56320) return true;
503
- if (M(s, true)) {
504
- for (var r = i + 1; H(s = this.input.charCodeAt(r), true); ) ++r;
505
- if (s === 92 || s > 55295 && s < 56320) return true;
506
- var n = this.input.slice(i, r);
507
- if (!Ti.test(n)) return true;
508
- }
509
- return false;
510
- };
511
- l.isAsyncFunction = function() {
512
- if (this.options.ecmaVersion < 8 || !this.isContextual("async")) return false;
513
- N.lastIndex = this.pos;
514
- var e = N.exec(this.input), t = this.pos + e[0].length, i;
515
- return !L.test(this.input.slice(this.pos, t)) && this.input.slice(t, t + 8) === "function" && (t + 8 === this.input.length || !(H(i = this.input.charCodeAt(t + 8)) || i > 55295 && i < 56320));
516
- };
517
- l.parseStatement = function(e, t, i) {
518
- var s = this.type, r = this.startNode(), n;
519
- switch (this.isLet(e) && (s = a._var, n = "let"), s) {
520
- case a._break:
521
- case a._continue:
522
- return this.parseBreakContinueStatement(r, s.keyword);
523
- case a._debugger:
524
- return this.parseDebuggerStatement(r);
525
- case a._do:
526
- return this.parseDoStatement(r);
527
- case a._for:
528
- return this.parseForStatement(r);
529
- case a._function:
530
- return e && (this.strict || e !== "if" && e !== "label") && this.options.ecmaVersion >= 6 && this.unexpected(), this.parseFunctionStatement(r, false, !e);
531
- case a._class:
532
- return e && this.unexpected(), this.parseClass(r, true);
533
- case a._if:
534
- return this.parseIfStatement(r);
535
- case a._return:
536
- return this.parseReturnStatement(r);
537
- case a._switch:
538
- return this.parseSwitchStatement(r);
539
- case a._throw:
540
- return this.parseThrowStatement(r);
541
- case a._try:
542
- return this.parseTryStatement(r);
543
- case a._const:
544
- case a._var:
545
- return n = n || this.value, e && n !== "var" && this.unexpected(), this.parseVarStatement(r, n);
546
- case a._while:
547
- return this.parseWhileStatement(r);
548
- case a._with:
549
- return this.parseWithStatement(r);
550
- case a.braceL:
551
- return this.parseBlock(true, r);
552
- case a.semi:
553
- return this.parseEmptyStatement(r);
554
- case a._export:
555
- case a._import:
556
- if (this.options.ecmaVersion > 10 && s === a._import) {
557
- N.lastIndex = this.pos;
558
- var o = N.exec(this.input), u = this.pos + o[0].length, p = this.input.charCodeAt(u);
559
- if (p === 40 || p === 46) return this.parseExpressionStatement(r, this.parseExpression());
560
- }
561
- 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);
562
- default:
563
- if (this.isAsyncFunction()) return e && this.unexpected(), this.next(), this.parseFunctionStatement(r, true, !e);
564
- var d = this.value, f = this.parseExpression();
565
- return s === a.name && f.type === "Identifier" && this.eat(a.colon) ? this.parseLabeledStatement(r, d, f, e) : this.parseExpressionStatement(r, f);
566
- }
567
- };
568
- l.parseBreakContinueStatement = function(e, t) {
569
- var i = t === "break";
570
- this.next(), this.eat(a.semi) || this.insertSemicolon() ? e.label = null : this.type !== a.name ? this.unexpected() : (e.label = this.parseIdent(), this.semicolon());
571
- for (var s = 0; s < this.labels.length; ++s) {
572
- var r = this.labels[s];
573
- if ((e.label == null || r.name === e.label.name) && (r.kind != null && (i || r.kind === "loop") || e.label && i)) break;
574
- }
575
- return s === this.labels.length && this.raise(e.start, "Unsyntactic " + t), this.finishNode(e, i ? "BreakStatement" : "ContinueStatement");
576
- };
577
- l.parseDebuggerStatement = function(e) {
578
- return this.next(), this.semicolon(), this.finishNode(e, "DebuggerStatement");
579
- };
580
- l.parseDoStatement = function(e) {
581
- 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");
582
- };
583
- l.parseForStatement = function(e) {
584
- this.next();
585
- var t = this.options.ecmaVersion >= 9 && this.canAwait && this.eatContextual("await") ? this.lastTokStart : -1;
586
- 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);
587
- var i = this.isLet();
588
- if (this.type === a._var || this.type === a._const || i) {
589
- var s = this.startNode(), r = i ? "let" : this.value;
590
- 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));
591
- }
592
- var n = this.isContextual("let"), o = false, u = this.containsEsc, p = new ye(), d = this.start, f = t > -1 ? this.parseExprSubscripts(p, "await") : this.parseExpression(true, p);
593
- 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 && (f.start === d && !u && f.type === "Identifier" && f.name === "async" ? this.unexpected() : this.options.ecmaVersion >= 9 && (e.await = false)), n && o && this.raise(f.start, "The left-hand side of a for-of loop may not start with 'let'."), this.toAssignable(f, false, p), this.checkLValPattern(f), this.parseForIn(e, f)) : (this.checkExpressionErrors(p, true), t > -1 && this.unexpected(t), this.parseFor(e, f));
594
- };
595
- l.parseFunctionStatement = function(e, t, i) {
596
- return this.next(), this.parseFunction(e, te | (i ? 0 : Le), false, t);
597
- };
598
- l.parseIfStatement = function(e) {
599
- 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");
600
- };
601
- l.parseReturnStatement = function(e) {
602
- 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");
603
- };
604
- l.parseSwitchStatement = function(e) {
605
- this.next(), e.discriminant = this.parseParenExpression(), e.cases = [], this.expect(a.braceL), this.labels.push(Ri), this.enterScope(0);
606
- for (var t, i = false; this.type !== a.braceR; ) if (this.type === a._case || this.type === a._default) {
607
- var s = this.type === a._case;
608
- 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);
609
- } else t || this.unexpected(), t.consequent.push(this.parseStatement(null));
610
- return this.exitScope(), t && this.finishNode(t, "SwitchCase"), this.next(), this.labels.pop(), this.finishNode(e, "SwitchStatement");
611
- };
612
- l.parseThrowStatement = function(e) {
613
- return this.next(), L.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");
614
- };
615
- var Oi = [];
616
- l.parseCatchClauseParam = function() {
617
- var e = this.parseBindingAtom(), t = e.type === "Identifier";
618
- return this.enterScope(t ? dt : 0), this.checkLValPattern(e, t ? yt : G), this.expect(a.parenR), e;
619
- };
620
- l.parseTryStatement = function(e) {
621
- if (this.next(), e.block = this.parseBlock(), e.handler = null, this.type === a._catch) {
622
- var t = this.startNode();
623
- 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");
624
- }
625
- 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");
626
- };
627
- l.parseVarStatement = function(e, t, i) {
628
- return this.next(), this.parseVar(e, false, t, i), this.semicolon(), this.finishNode(e, "VariableDeclaration");
629
- };
630
- l.parseWhileStatement = function(e) {
631
- return this.next(), e.test = this.parseParenExpression(), this.labels.push(Ue), e.body = this.parseStatement("while"), this.labels.pop(), this.finishNode(e, "WhileStatement");
632
- };
633
- l.parseWithStatement = function(e) {
634
- 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");
635
- };
636
- l.parseEmptyStatement = function(e) {
637
- return this.next(), this.finishNode(e, "EmptyStatement");
638
- };
639
- l.parseLabeledStatement = function(e, t, i, s) {
640
- for (var r = 0, n = this.labels; r < n.length; r += 1) {
641
- var o = n[r];
642
- o.name === t && this.raise(i.start, "Label '" + t + "' is already declared");
643
- }
644
- for (var u = this.type.isLoop ? "loop" : this.type === a._switch ? "switch" : null, p = this.labels.length - 1; p >= 0; p--) {
645
- var d = this.labels[p];
646
- if (d.statementStart === e.start) d.statementStart = this.start, d.kind = u;
647
- else break;
648
- }
649
- 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");
650
- };
651
- l.parseExpressionStatement = function(e, t) {
652
- return e.expression = t, this.semicolon(), this.finishNode(e, "ExpressionStatement");
653
- };
654
- l.parseBlock = function(e, t, i) {
655
- 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; ) {
656
- var s = this.parseStatement(null);
657
- t.body.push(s);
658
- }
659
- return i && (this.strict = false), this.next(), e && this.exitScope(), this.finishNode(t, "BlockStatement");
660
- };
661
- l.parseFor = function(e, t) {
662
- 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");
663
- };
664
- l.parseForIn = function(e, t) {
665
- var i = this.type === a._in;
666
- 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");
667
- };
668
- l.parseVar = function(e, t, i, s) {
669
- for (e.declarations = [], e.kind = i; ; ) {
670
- var r = this.startNode();
671
- 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;
672
- }
673
- return e;
674
- };
675
- l.parseVarId = function(e, t) {
676
- e.id = this.parseBindingAtom(), this.checkLValPattern(e.id, t === "var" ? Me : G, false);
677
- };
678
- var te = 1;
679
- var Le = 2;
680
- var vt = 4;
681
- l.parseFunction = function(e, t, i, s, r) {
682
- 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 & te && (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 ? Me : G : xt));
683
- var n = this.yieldPos, o = this.awaitPos, u = this.awaitIdentPos;
684
- return this.yieldPos = 0, this.awaitPos = 0, this.awaitIdentPos = 0, this.enterScope(je(e.async, e.generator)), t & te || (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 & te ? "FunctionDeclaration" : "FunctionExpression");
685
- };
686
- l.parseFunctionParams = function(e) {
687
- this.expect(a.parenL), e.params = this.parseBindingList(a.parenR, false, this.options.ecmaVersion >= 8), this.checkYieldAwaitInDefaultParams();
688
- };
689
- l.parseClass = function(e, t) {
690
- this.next();
691
- var i = this.strict;
692
- this.strict = true, this.parseClassId(e, t), this.parseClassSuper(e);
693
- var s = this.enterClassBody(), r = this.startNode(), n = false;
694
- for (r.body = [], this.expect(a.braceL); this.type !== a.braceR; ) {
695
- var o = this.parseClassElement(e.superClass !== null);
696
- 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"));
697
- }
698
- return this.strict = i, this.next(), e.body = this.finishNode(r, "ClassBody"), this.exitClassBody(), this.finishNode(e, t ? "ClassDeclaration" : "ClassExpression");
699
- };
700
- l.parseClassElement = function(e) {
701
- if (this.eat(a.semi)) return null;
702
- var t = this.options.ecmaVersion, i = this.startNode(), s = "", r = false, n = false, o = "method", u = false;
703
- if (this.eatContextual("static")) {
704
- if (t >= 13 && this.eat(a.braceL)) return this.parseClassStaticBlock(i), i;
705
- this.isClassElementNameStart() || this.type === a.star ? u = true : s = "static";
706
- }
707
- 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) {
708
- var p = this.value;
709
- (this.eatContextual("get") || this.eatContextual("set")) && (this.isClassElementNameStart() ? o = p : s = p);
710
- }
711
- 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) {
712
- var d = !i.static && fe(i, "constructor"), f = d && e;
713
- 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, f);
714
- } else this.parseClassField(i);
715
- return i;
716
- };
717
- l.isClassElementNameStart = function() {
718
- return this.type === a.name || this.type === a.privateId || this.type === a.num || this.type === a.string || this.type === a.bracketL || this.type.keyword;
719
- };
720
- l.parseClassElementName = function(e) {
721
- 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);
722
- };
723
- l.parseClassMethod = function(e, t, i, s) {
724
- var r = e.key;
725
- 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");
726
- var n = e.value = this.parseMethod(t, i, s);
727
- 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");
728
- };
729
- l.parseClassField = function(e) {
730
- 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)) {
731
- var t = this.currentThisScope(), i = t.inClassFieldInit;
732
- t.inClassFieldInit = true, e.value = this.parseMaybeAssign(), t.inClassFieldInit = i;
733
- } else e.value = null;
734
- return this.semicolon(), this.finishNode(e, "PropertyDefinition");
735
- };
736
- l.parseClassStaticBlock = function(e) {
737
- e.body = [];
738
- var t = this.labels;
739
- for (this.labels = [], this.enterScope(re | De); this.type !== a.braceR; ) {
740
- var i = this.parseStatement(null);
741
- e.body.push(i);
742
- }
743
- return this.next(), this.exitScope(), this.labels = t, this.finishNode(e, "StaticBlock");
744
- };
745
- l.parseClassId = function(e, t) {
746
- this.type === a.name ? (e.id = this.parseIdent(), t && this.checkLValSimple(e.id, G, false)) : (t === true && this.unexpected(), e.id = null);
747
- };
748
- l.parseClassSuper = function(e) {
749
- e.superClass = this.eat(a._extends) ? this.parseExprSubscripts(null, false) : null;
750
- };
751
- l.enterClassBody = function() {
752
- var e = { declared: /* @__PURE__ */ Object.create(null), used: [] };
753
- return this.privateNameStack.push(e), e.declared;
754
- };
755
- l.exitClassBody = function() {
756
- var e = this.privateNameStack.pop(), t = e.declared, i = e.used;
757
- if (this.options.checkPrivateFields) for (var s = this.privateNameStack.length, r = s === 0 ? null : this.privateNameStack[s - 1], n = 0; n < i.length; ++n) {
758
- var o = i[n];
759
- Y(t, o.name) || (r ? r.used.push(o) : this.raiseRecoverable(o.start, "Private field '#" + o.name + "' must be declared in an enclosing class"));
760
- }
761
- };
762
- function Bi(e, t) {
763
- var i = t.key.name, s = e[i], r = "true";
764
- 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);
765
- }
766
- function fe(e, t) {
767
- var i = e.computed, s = e.key;
768
- return !i && (s.type === "Identifier" && s.name === t || s.type === "Literal" && s.value === t);
769
- }
770
- l.parseExportAllDeclaration = function(e, t) {
771
- 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.options.ecmaVersion >= 16 && (e.attributes = this.parseWithClause()), this.semicolon(), this.finishNode(e, "ExportAllDeclaration");
772
- };
773
- l.parseExport = function(e, t) {
774
- if (this.next(), this.eat(a.star)) return this.parseExportAllDeclaration(e, t);
775
- if (this.eat(a._default)) return this.checkExport(t, "default", this.lastTokStart), e.declaration = this.parseExportDefaultDeclaration(), this.finishNode(e, "ExportDefaultDeclaration");
776
- 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;
777
- else {
778
- if (e.declaration = null, e.specifiers = this.parseExportSpecifiers(t), this.eatContextual("from")) this.type !== a.string && this.unexpected(), e.source = this.parseExprAtom(), this.options.ecmaVersion >= 16 && (e.attributes = this.parseWithClause());
779
- else {
780
- for (var i = 0, s = e.specifiers; i < s.length; i += 1) {
781
- var r = s[i];
782
- 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`.");
783
- }
784
- e.source = null;
785
- }
786
- this.semicolon();
787
- }
788
- return this.finishNode(e, "ExportNamedDeclaration");
789
- };
790
- l.parseExportDeclaration = function(e) {
791
- return this.parseStatement(null);
792
- };
793
- l.parseExportDefaultDeclaration = function() {
794
- var e;
795
- if (this.type === a._function || (e = this.isAsyncFunction())) {
796
- var t = this.startNode();
797
- return this.next(), e && this.next(), this.parseFunction(t, te | vt, false, e);
798
- } else if (this.type === a._class) {
799
- var i = this.startNode();
800
- return this.parseClass(i, "nullableID");
801
- } else {
802
- var s = this.parseMaybeAssign();
803
- return this.semicolon(), s;
804
- }
805
- };
806
- l.checkExport = function(e, t, i) {
807
- e && (typeof t != "string" && (t = t.type === "Identifier" ? t.name : t.value), Y(e, t) && this.raiseRecoverable(i, "Duplicate export '" + t + "'"), e[t] = true);
808
- };
809
- l.checkPatternExport = function(e, t) {
810
- var i = t.type;
811
- if (i === "Identifier") this.checkExport(e, t, t.start);
812
- else if (i === "ObjectPattern") for (var s = 0, r = t.properties; s < r.length; s += 1) {
813
- var n = r[s];
814
- this.checkPatternExport(e, n);
815
- }
816
- else if (i === "ArrayPattern") for (var o = 0, u = t.elements; o < u.length; o += 1) {
817
- var p = u[o];
818
- p && this.checkPatternExport(e, p);
819
- }
820
- else i === "Property" ? this.checkPatternExport(e, t.value) : i === "AssignmentPattern" ? this.checkPatternExport(e, t.left) : i === "RestElement" && this.checkPatternExport(e, t.argument);
821
- };
822
- l.checkVariableExport = function(e, t) {
823
- if (e) for (var i = 0, s = t; i < s.length; i += 1) {
824
- var r = s[i];
825
- this.checkPatternExport(e, r.id);
826
- }
827
- };
828
- l.shouldParseExportStatement = function() {
829
- return this.type.keyword === "var" || this.type.keyword === "const" || this.type.keyword === "class" || this.type.keyword === "function" || this.isLet() || this.isAsyncFunction();
830
- };
831
- l.parseExportSpecifier = function(e) {
832
- var t = this.startNode();
833
- 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");
834
- };
835
- l.parseExportSpecifiers = function(e) {
836
- var t = [], i = true;
837
- for (this.expect(a.braceL); !this.eat(a.braceR); ) {
838
- if (i) i = false;
839
- else if (this.expect(a.comma), this.afterTrailingComma(a.braceR)) break;
840
- t.push(this.parseExportSpecifier(e));
841
- }
842
- return t;
843
- };
844
- l.parseImport = function(e) {
845
- 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.options.ecmaVersion >= 16 && (e.attributes = this.parseWithClause()), this.semicolon(), this.finishNode(e, "ImportDeclaration");
846
- };
847
- l.parseImportSpecifier = function() {
848
- var e = this.startNode();
849
- return e.imported = this.parseModuleExportName(), this.eatContextual("as") ? e.local = this.parseIdent() : (this.checkUnreserved(e.imported), e.local = e.imported), this.checkLValSimple(e.local, G), this.finishNode(e, "ImportSpecifier");
850
- };
851
- l.parseImportDefaultSpecifier = function() {
852
- var e = this.startNode();
853
- return e.local = this.parseIdent(), this.checkLValSimple(e.local, G), this.finishNode(e, "ImportDefaultSpecifier");
854
- };
855
- l.parseImportNamespaceSpecifier = function() {
856
- var e = this.startNode();
857
- return this.next(), this.expectContextual("as"), e.local = this.parseIdent(), this.checkLValSimple(e.local, G), this.finishNode(e, "ImportNamespaceSpecifier");
858
- };
859
- l.parseImportSpecifiers = function() {
860
- var e = [], t = true;
861
- if (this.type === a.name && (e.push(this.parseImportDefaultSpecifier()), !this.eat(a.comma))) return e;
862
- if (this.type === a.star) return e.push(this.parseImportNamespaceSpecifier()), e;
863
- for (this.expect(a.braceL); !this.eat(a.braceR); ) {
864
- if (t) t = false;
865
- else if (this.expect(a.comma), this.afterTrailingComma(a.braceR)) break;
866
- e.push(this.parseImportSpecifier());
867
- }
868
- return e;
869
- };
870
- l.parseWithClause = function() {
871
- var e = [];
872
- if (!this.eat(a._with)) return e;
873
- this.expect(a.braceL);
874
- for (var t = {}, i = true; !this.eat(a.braceR); ) {
875
- if (i) i = false;
876
- else if (this.expect(a.comma), this.afterTrailingComma(a.braceR)) break;
877
- var s = this.parseImportAttribute(), r = s.key.type === "Identifier" ? s.key.name : s.key.value;
878
- Y(t, r) && this.raiseRecoverable(s.key.start, "Duplicate attribute key '" + r + "'"), t[r] = true, e.push(s);
879
- }
880
- return e;
881
- };
882
- l.parseImportAttribute = function() {
883
- var e = this.startNode();
884
- return e.key = this.type === a.string ? this.parseExprAtom() : this.parseIdent(this.options.allowReserved !== "never"), this.expect(a.colon), this.type !== a.string && this.unexpected(), e.value = this.parseExprAtom(), this.finishNode(e, "ImportAttribute");
885
- };
886
- l.parseModuleExportName = function() {
887
- if (this.options.ecmaVersion >= 13 && this.type === a.string) {
888
- var e = this.parseLiteral(this.value);
889
- return Ii.test(e.value) && this.raise(e.start, "An export name cannot include a lone surrogate."), e;
890
- }
891
- return this.parseIdent(true);
892
- };
893
- l.adaptDirectivePrologue = function(e) {
894
- for (var t = 0; t < e.length && this.isDirectiveCandidate(e[t]); ++t) e[t].directive = e[t].expression.raw.slice(1, -1);
895
- };
896
- l.isDirectiveCandidate = function(e) {
897
- 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] === "'");
898
- };
899
- var R = T.prototype;
900
- R.toAssignable = function(e, t, i) {
901
- if (this.options.ecmaVersion >= 6 && e) switch (e.type) {
902
- case "Identifier":
903
- this.inAsync && e.name === "await" && this.raise(e.start, "Cannot use 'await' as identifier inside an async function");
904
- break;
905
- case "ObjectPattern":
906
- case "ArrayPattern":
907
- case "AssignmentPattern":
908
- case "RestElement":
909
- break;
910
- case "ObjectExpression":
911
- e.type = "ObjectPattern", i && this.checkPatternErrors(i, true);
912
- for (var s = 0, r = e.properties; s < r.length; s += 1) {
913
- var n = r[s];
914
- this.toAssignable(n, t), n.type === "RestElement" && (n.argument.type === "ArrayPattern" || n.argument.type === "ObjectPattern") && this.raise(n.argument.start, "Unexpected token");
915
- }
916
- break;
917
- case "Property":
918
- e.kind !== "init" && this.raise(e.key.start, "Object pattern can't contain getter or setter"), this.toAssignable(e.value, t);
919
- break;
920
- case "ArrayExpression":
921
- e.type = "ArrayPattern", i && this.checkPatternErrors(i, true), this.toAssignableList(e.elements, t);
922
- break;
923
- case "SpreadElement":
924
- e.type = "RestElement", this.toAssignable(e.argument, t), e.argument.type === "AssignmentPattern" && this.raise(e.argument.start, "Rest elements cannot have a default value");
925
- break;
926
- case "AssignmentExpression":
927
- 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);
928
- break;
929
- case "ParenthesizedExpression":
930
- this.toAssignable(e.expression, t, i);
931
- break;
932
- case "ChainExpression":
933
- this.raiseRecoverable(e.start, "Optional chaining cannot appear in left-hand side");
934
- break;
935
- case "MemberExpression":
936
- if (!t) break;
937
- default:
938
- this.raise(e.start, "Assigning to rvalue");
939
- }
940
- else i && this.checkPatternErrors(i, true);
941
- return e;
942
- };
943
- R.toAssignableList = function(e, t) {
944
- for (var i = e.length, s = 0; s < i; s++) {
945
- var r = e[s];
946
- r && this.toAssignable(r, t);
947
- }
948
- if (i) {
949
- var n = e[i - 1];
950
- this.options.ecmaVersion === 6 && t && n && n.type === "RestElement" && n.argument.type !== "Identifier" && this.unexpected(n.argument.start);
951
- }
952
- return e;
953
- };
954
- R.parseSpread = function(e) {
955
- var t = this.startNode();
956
- return this.next(), t.argument = this.parseMaybeAssign(false, e), this.finishNode(t, "SpreadElement");
957
- };
958
- R.parseRestBinding = function() {
959
- var e = this.startNode();
960
- return this.next(), this.options.ecmaVersion === 6 && this.type !== a.name && this.unexpected(), e.argument = this.parseBindingAtom(), this.finishNode(e, "RestElement");
961
- };
962
- R.parseBindingAtom = function() {
963
- if (this.options.ecmaVersion >= 6) switch (this.type) {
964
- case a.bracketL:
965
- var e = this.startNode();
966
- return this.next(), e.elements = this.parseBindingList(a.bracketR, true, true), this.finishNode(e, "ArrayPattern");
967
- case a.braceL:
968
- return this.parseObj(true);
969
- }
970
- return this.parseIdent();
971
- };
972
- R.parseBindingList = function(e, t, i, s) {
973
- for (var r = [], n = true; !this.eat(e); ) if (n ? n = false : this.expect(a.comma), t && this.type === a.comma) r.push(null);
974
- else {
975
- if (i && this.afterTrailingComma(e)) break;
976
- if (this.type === a.ellipsis) {
977
- var o = this.parseRestBinding();
978
- 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);
979
- break;
980
- } else r.push(this.parseAssignableListItem(s));
981
- }
982
- return r;
983
- };
984
- R.parseAssignableListItem = function(e) {
985
- var t = this.parseMaybeDefault(this.start, this.startLoc);
986
- return this.parseBindingListItem(t), t;
987
- };
988
- R.parseBindingListItem = function(e) {
989
- return e;
990
- };
991
- R.parseMaybeDefault = function(e, t, i) {
992
- if (i = i || this.parseBindingAtom(), this.options.ecmaVersion < 6 || !this.eat(a.eq)) return i;
993
- var s = this.startNodeAt(e, t);
994
- return s.left = i, s.right = this.parseMaybeAssign(), this.finishNode(s, "AssignmentPattern");
995
- };
996
- R.checkLValSimple = function(e, t, i) {
997
- t === void 0 && (t = le);
998
- var s = t !== le;
999
- switch (e.type) {
1000
- case "Identifier":
1001
- this.strict && this.reservedWordsStrictBind.test(e.name) && this.raiseRecoverable(e.start, (s ? "Binding " : "Assigning to ") + e.name + " in strict mode"), s && (t === G && e.name === "let" && this.raiseRecoverable(e.start, "let is disallowed as a lexically bound name"), i && (Y(i, e.name) && this.raiseRecoverable(e.start, "Argument name clash"), i[e.name] = true), t !== gt && this.declareName(e.name, t, e.start));
1002
- break;
1003
- case "ChainExpression":
1004
- this.raiseRecoverable(e.start, "Optional chaining cannot appear in left-hand side");
1005
- break;
1006
- case "MemberExpression":
1007
- s && this.raiseRecoverable(e.start, "Binding member expression");
1008
- break;
1009
- case "ParenthesizedExpression":
1010
- return s && this.raiseRecoverable(e.start, "Binding parenthesized expression"), this.checkLValSimple(e.expression, t, i);
1011
- default:
1012
- this.raise(e.start, (s ? "Binding" : "Assigning to") + " rvalue");
1013
- }
1014
- };
1015
- R.checkLValPattern = function(e, t, i) {
1016
- switch (t === void 0 && (t = le), e.type) {
1017
- case "ObjectPattern":
1018
- for (var s = 0, r = e.properties; s < r.length; s += 1) {
1019
- var n = r[s];
1020
- this.checkLValInnerPattern(n, t, i);
1021
- }
1022
- break;
1023
- case "ArrayPattern":
1024
- for (var o = 0, u = e.elements; o < u.length; o += 1) {
1025
- var p = u[o];
1026
- p && this.checkLValInnerPattern(p, t, i);
1027
- }
1028
- break;
1029
- default:
1030
- this.checkLValSimple(e, t, i);
1031
- }
1032
- };
1033
- R.checkLValInnerPattern = function(e, t, i) {
1034
- switch (t === void 0 && (t = le), e.type) {
1035
- case "Property":
1036
- this.checkLValInnerPattern(e.value, t, i);
1037
- break;
1038
- case "AssignmentPattern":
1039
- this.checkLValPattern(e.left, t, i);
1040
- break;
1041
- case "RestElement":
1042
- this.checkLValPattern(e.argument, t, i);
1043
- break;
1044
- default:
1045
- this.checkLValPattern(e, t, i);
1046
- }
1047
- };
1048
- var D = function(t, i, s, r, n) {
1049
- this.token = t, this.isExpr = !!i, this.preserveSpace = !!s, this.override = r, this.generator = !!n;
1050
- };
1051
- 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) {
1052
- return e.tryReadTemplateToken();
1053
- }), 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) };
1054
- var $ = T.prototype;
1055
- $.initialContext = function() {
1056
- return [_.b_stat];
1057
- };
1058
- $.curContext = function() {
1059
- return this.context[this.context.length - 1];
1060
- };
1061
- $.braceIsBlock = function(e) {
1062
- var t = this.curContext();
1063
- 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 ? L.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;
1064
- };
1065
- $.inGeneratorContext = function() {
1066
- for (var e = this.context.length - 1; e >= 1; e--) {
1067
- var t = this.context[e];
1068
- if (t.token === "function") return t.generator;
1069
- }
1070
- return false;
1071
- };
1072
- $.updateContext = function(e) {
1073
- var t, i = this.type;
1074
- i.keyword && e === a.dot ? this.exprAllowed = false : (t = i.updateContext) ? t.call(this, e) : this.exprAllowed = i.beforeExpr;
1075
- };
1076
- $.overrideContext = function(e) {
1077
- this.curContext() !== e && (this.context[this.context.length - 1] = e);
1078
- };
1079
- a.parenR.updateContext = a.braceR.updateContext = function() {
1080
- if (this.context.length === 1) {
1081
- this.exprAllowed = true;
1082
- return;
1083
- }
1084
- var e = this.context.pop();
1085
- e === _.b_stat && this.curContext().token === "function" && (e = this.context.pop()), this.exprAllowed = !e.isExpr;
1086
- };
1087
- a.braceL.updateContext = function(e) {
1088
- this.context.push(this.braceIsBlock(e) ? _.b_stat : _.b_expr), this.exprAllowed = true;
1089
- };
1090
- a.dollarBraceL.updateContext = function() {
1091
- this.context.push(_.b_tmpl), this.exprAllowed = true;
1092
- };
1093
- a.parenL.updateContext = function(e) {
1094
- var t = e === a._if || e === a._for || e === a._with || e === a._while;
1095
- this.context.push(t ? _.p_stat : _.p_expr), this.exprAllowed = true;
1096
- };
1097
- a.incDec.updateContext = function() {
1098
- };
1099
- a._function.updateContext = a._class.updateContext = function(e) {
1100
- e.beforeExpr && e !== a._else && !(e === a.semi && this.curContext() !== _.p_stat) && !(e === a._return && L.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;
1101
- };
1102
- a.colon.updateContext = function() {
1103
- this.curContext().token === "function" && this.context.pop(), this.exprAllowed = true;
1104
- };
1105
- a.backQuote.updateContext = function() {
1106
- this.curContext() === _.q_tmpl ? this.context.pop() : this.context.push(_.q_tmpl), this.exprAllowed = false;
1107
- };
1108
- a.star.updateContext = function(e) {
1109
- if (e === a._function) {
1110
- var t = this.context.length - 1;
1111
- this.context[t] === _.f_expr ? this.context[t] = _.f_expr_gen : this.context[t] = _.f_gen;
1112
- }
1113
- this.exprAllowed = true;
1114
- };
1115
- a.name.updateContext = function(e) {
1116
- var t = false;
1117
- this.options.ecmaVersion >= 6 && e !== a.dot && (this.value === "of" && !this.exprAllowed || this.value === "yield" && this.inGeneratorContext()) && (t = true), this.exprAllowed = t;
1118
- };
1119
- var y = T.prototype;
1120
- y.checkPropClash = function(e, t, i) {
1121
- if (!(this.options.ecmaVersion >= 9 && e.type === "SpreadElement") && !(this.options.ecmaVersion >= 6 && (e.computed || e.method || e.shorthand))) {
1122
- var s = e.key, r;
1123
- switch (s.type) {
1124
- case "Identifier":
1125
- r = s.name;
1126
- break;
1127
- case "Literal":
1128
- r = String(s.value);
1129
- break;
1130
- default:
1131
- return;
1132
- }
1133
- var n = e.kind;
1134
- if (this.options.ecmaVersion >= 6) {
1135
- 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);
1136
- return;
1137
- }
1138
- r = "$" + r;
1139
- var o = t[r];
1140
- if (o) {
1141
- var u;
1142
- n === "init" ? u = this.strict && o.init || o.get || o.set : u = o.init || o[n], u && this.raiseRecoverable(s.start, "Redefinition of property");
1143
- } else o = t[r] = { init: false, get: false, set: false };
1144
- o[n] = true;
1145
- }
1146
- };
1147
- y.parseExpression = function(e, t) {
1148
- var i = this.start, s = this.startLoc, r = this.parseMaybeAssign(e, t);
1149
- if (this.type === a.comma) {
1150
- var n = this.startNodeAt(i, s);
1151
- for (n.expressions = [r]; this.eat(a.comma); ) n.expressions.push(this.parseMaybeAssign(e, t));
1152
- return this.finishNode(n, "SequenceExpression");
1153
- }
1154
- return r;
1155
- };
1156
- y.parseMaybeAssign = function(e, t, i) {
1157
- if (this.isContextual("yield")) {
1158
- if (this.inGenerator) return this.parseYield(e);
1159
- this.exprAllowed = false;
1160
- }
1161
- var s = false, r = -1, n = -1, o = -1;
1162
- t ? (r = t.parenthesizedAssign, n = t.trailingComma, o = t.doubleProto, t.parenthesizedAssign = t.trailingComma = -1) : (t = new ye(), s = true);
1163
- var u = this.start, p = this.startLoc;
1164
- (this.type === a.parenL || this.type === a.name) && (this.potentialArrowAt = this.start, this.potentialArrowInForAwait = e === "await");
1165
- var d = this.parseMaybeConditional(e, t);
1166
- if (i && (d = i.call(this, d, u, p)), this.type.isAssign) {
1167
- var f = this.startNodeAt(u, p);
1168
- return f.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), f.left = d, this.next(), f.right = this.parseMaybeAssign(e), o > -1 && (t.doubleProto = o), this.finishNode(f, "AssignmentExpression");
1169
- } else s && this.checkExpressionErrors(t, true);
1170
- return r > -1 && (t.parenthesizedAssign = r), n > -1 && (t.trailingComma = n), d;
1171
- };
1172
- y.parseMaybeConditional = function(e, t) {
1173
- var i = this.start, s = this.startLoc, r = this.parseExprOps(e, t);
1174
- if (this.checkExpressionErrors(t)) return r;
1175
- if (this.eat(a.question)) {
1176
- var n = this.startNodeAt(i, s);
1177
- return n.test = r, n.consequent = this.parseMaybeAssign(), this.expect(a.colon), n.alternate = this.parseMaybeAssign(e), this.finishNode(n, "ConditionalExpression");
1178
- }
1179
- return r;
1180
- };
1181
- y.parseExprOps = function(e, t) {
1182
- var i = this.start, s = this.startLoc, r = this.parseMaybeUnary(t, false, false, e);
1183
- return this.checkExpressionErrors(t) || r.start === i && r.type === "ArrowFunctionExpression" ? r : this.parseExprOp(r, i, s, -1, e);
1184
- };
1185
- y.parseExprOp = function(e, t, i, s, r) {
1186
- var n = this.type.binop;
1187
- if (n != null && (!r || this.type !== a._in) && n > s) {
1188
- var o = this.type === a.logicalOR || this.type === a.logicalAND, u = this.type === a.coalesce;
1189
- u && (n = a.logicalAND.binop);
1190
- var p = this.value;
1191
- this.next();
1192
- var d = this.start, f = this.startLoc, C = this.parseExprOp(this.parseMaybeUnary(null, false, false, r), d, f, n, r), B = this.buildBinary(t, i, e, C, p, o || u);
1193
- 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);
1194
- }
1195
- return e;
1196
- };
1197
- y.buildBinary = function(e, t, i, s, r, n) {
1198
- s.type === "PrivateIdentifier" && this.raise(s.start, "Private identifier can only be left side of binary expression");
1199
- var o = this.startNodeAt(e, t);
1200
- return o.left = i, o.operator = r, o.right = s, this.finishNode(o, n ? "LogicalExpression" : "BinaryExpression");
1201
- };
1202
- y.parseMaybeUnary = function(e, t, i, s) {
1203
- var r = this.start, n = this.startLoc, o;
1204
- if (this.isContextual("await") && this.canAwait) o = this.parseAwait(s), t = true;
1205
- else if (this.type.prefix) {
1206
- var u = this.startNode(), p = this.type === a.incDec;
1207
- 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");
1208
- } 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();
1209
- else {
1210
- if (o = this.parseExprSubscripts(e, s), this.checkExpressionErrors(e)) return o;
1211
- for (; this.type.postfix && !this.canInsertSemicolon(); ) {
1212
- var d = this.startNodeAt(r, n);
1213
- d.operator = this.value, d.prefix = false, d.argument = o, this.checkLValSimple(o), this.next(), o = this.finishNode(d, "UpdateExpression");
1214
- }
1215
- }
1216
- if (!i && this.eat(a.starstar)) if (t) this.unexpected(this.lastTokStart);
1217
- else return this.buildBinary(r, n, o, this.parseMaybeUnary(null, false, false, s), "**", false);
1218
- else return o;
1219
- };
1220
- function bt(e) {
1221
- return e.type === "Identifier" || e.type === "ParenthesizedExpression" && bt(e.expression);
1222
- }
1223
- function Re(e) {
1224
- return e.type === "MemberExpression" && e.property.type === "PrivateIdentifier" || e.type === "ChainExpression" && Re(e.expression) || e.type === "ParenthesizedExpression" && Re(e.expression);
1225
- }
1226
- y.parseExprSubscripts = function(e, t) {
1227
- var i = this.start, s = this.startLoc, r = this.parseExprAtom(e, t);
1228
- if (r.type === "ArrowFunctionExpression" && this.input.slice(this.lastTokStart, this.lastTokEnd) !== ")") return r;
1229
- var n = this.parseSubscripts(r, i, s, false, t);
1230
- 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;
1231
- };
1232
- y.parseSubscripts = function(e, t, i, s, r) {
1233
- 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; ; ) {
1234
- var u = this.parseSubscript(e, t, i, s, n, o, r);
1235
- if (u.optional && (o = true), u === e || u.type === "ArrowFunctionExpression") {
1236
- if (o) {
1237
- var p = this.startNodeAt(t, i);
1238
- p.expression = u, u = this.finishNode(p, "ChainExpression");
1239
- }
1240
- return u;
1241
- }
1242
- e = u;
1243
- }
1244
- };
1245
- y.shouldParseAsyncArrow = function() {
1246
- return !this.canInsertSemicolon() && this.eat(a.arrow);
1247
- };
1248
- y.parseSubscriptAsyncArrow = function(e, t, i, s) {
1249
- return this.parseArrowExpression(this.startNodeAt(e, t), i, true, s);
1250
- };
1251
- y.parseSubscript = function(e, t, i, s, r, n, o) {
1252
- var u = this.options.ecmaVersion >= 11, p = u && this.eat(a.questionDot);
1253
- s && p && this.raise(this.lastTokStart, "Optional chaining cannot appear in the callee of new expressions");
1254
- var d = this.eat(a.bracketL);
1255
- if (d || p && this.type !== a.parenL && this.type !== a.backQuote || this.eat(a.dot)) {
1256
- var f = this.startNodeAt(t, i);
1257
- f.object = e, d ? (f.property = this.parseExpression(), this.expect(a.bracketR)) : this.type === a.privateId && e.type !== "Super" ? f.property = this.parsePrivateIdent() : f.property = this.parseIdent(this.options.allowReserved !== "never"), f.computed = !!d, u && (f.optional = p), e = this.finishNode(f, "MemberExpression");
1258
- } else if (!s && this.eat(a.parenL)) {
1259
- var C = new ye(), B = this.yieldPos, h = this.awaitPos, m = this.awaitIdentPos;
1260
- this.yieldPos = 0, this.awaitPos = 0, this.awaitIdentPos = 0;
1261
- var x = this.parseExprList(a.parenR, this.options.ecmaVersion >= 8, false, C);
1262
- 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);
1263
- this.checkExpressionErrors(C, true), this.yieldPos = B || this.yieldPos, this.awaitPos = h || this.awaitPos, this.awaitIdentPos = m || this.awaitIdentPos;
1264
- var g = this.startNodeAt(t, i);
1265
- g.callee = e, g.arguments = x, u && (g.optional = p), e = this.finishNode(g, "CallExpression");
1266
- } else if (this.type === a.backQuote) {
1267
- (p || n) && this.raise(this.start, "Optional chaining cannot appear in the tag of tagged template expressions");
1268
- var w = this.startNodeAt(t, i);
1269
- w.tag = e, w.quasi = this.parseTemplate({ isTagged: true }), e = this.finishNode(w, "TaggedTemplateExpression");
1270
- }
1271
- return e;
1272
- };
1273
- y.parseExprAtom = function(e, t, i) {
1274
- this.type === a.slash && this.readRegexp();
1275
- var s, r = this.potentialArrowAt === this.start;
1276
- switch (this.type) {
1277
- case a._super:
1278
- 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");
1279
- case a._this:
1280
- return s = this.startNode(), this.next(), this.finishNode(s, "ThisExpression");
1281
- case a.name:
1282
- var n = this.start, o = this.startLoc, u = this.containsEsc, p = this.parseIdent(false);
1283
- 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);
1284
- if (r && !this.canInsertSemicolon()) {
1285
- if (this.eat(a.arrow)) return this.parseArrowExpression(this.startNodeAt(n, o), [p], false, t);
1286
- 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);
1287
- }
1288
- return p;
1289
- case a.regexp:
1290
- var d = this.value;
1291
- return s = this.parseLiteral(d.value), s.regex = { pattern: d.pattern, flags: d.flags }, s;
1292
- case a.num:
1293
- case a.string:
1294
- return this.parseLiteral(this.value);
1295
- case a._null:
1296
- case a._true:
1297
- case a._false:
1298
- 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");
1299
- case a.parenL:
1300
- var f = this.start, C = this.parseParenAndDistinguishExpression(r, t);
1301
- return e && (e.parenthesizedAssign < 0 && !this.isSimpleAssignTarget(C) && (e.parenthesizedAssign = f), e.parenthesizedBind < 0 && (e.parenthesizedBind = f)), C;
1302
- case a.bracketL:
1303
- return s = this.startNode(), this.next(), s.elements = this.parseExprList(a.bracketR, true, true, e), this.finishNode(s, "ArrayExpression");
1304
- case a.braceL:
1305
- return this.overrideContext(_.b_expr), this.parseObj(false, e);
1306
- case a._function:
1307
- return s = this.startNode(), this.next(), this.parseFunction(s, 0);
1308
- case a._class:
1309
- return this.parseClass(this.startNode(), false);
1310
- case a._new:
1311
- return this.parseNew();
1312
- case a.backQuote:
1313
- return this.parseTemplate();
1314
- case a._import:
1315
- return this.options.ecmaVersion >= 11 ? this.parseExprImport(i) : this.unexpected();
1316
- default:
1317
- return this.parseExprAtomDefault();
1318
- }
1319
- };
1320
- y.parseExprAtomDefault = function() {
1321
- this.unexpected();
1322
- };
1323
- y.parseExprImport = function(e) {
1324
- var t = this.startNode();
1325
- if (this.containsEsc && this.raiseRecoverable(this.start, "Escape sequence in keyword import"), this.next(), this.type === a.parenL && !e) return this.parseDynamicImport(t);
1326
- if (this.type === a.dot) {
1327
- var i = this.startNodeAt(t.start, t.loc && t.loc.start);
1328
- return i.name = "import", t.meta = this.finishNode(i, "Identifier"), this.parseImportMeta(t);
1329
- } else this.unexpected();
1330
- };
1331
- y.parseDynamicImport = function(e) {
1332
- if (this.next(), e.source = this.parseMaybeAssign(), this.options.ecmaVersion >= 16) this.eat(a.parenR) ? e.options = null : (this.expect(a.comma), this.afterTrailingComma(a.parenR) ? e.options = null : (e.options = this.parseMaybeAssign(), this.eat(a.parenR) || (this.expect(a.comma), this.afterTrailingComma(a.parenR) || this.unexpected())));
1333
- else if (!this.eat(a.parenR)) {
1334
- var t = this.start;
1335
- this.eat(a.comma) && this.eat(a.parenR) ? this.raiseRecoverable(t, "Trailing comma is not allowed in import()") : this.unexpected(t);
1336
- }
1337
- return this.finishNode(e, "ImportExpression");
1338
- };
1339
- y.parseImportMeta = function(e) {
1340
- this.next();
1341
- var t = this.containsEsc;
1342
- 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");
1343
- };
1344
- y.parseLiteral = function(e) {
1345
- var t = this.startNode();
1346
- 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");
1347
- };
1348
- y.parseParenExpression = function() {
1349
- this.expect(a.parenL);
1350
- var e = this.parseExpression();
1351
- return this.expect(a.parenR), e;
1352
- };
1353
- y.shouldParseArrow = function(e) {
1354
- return !this.canInsertSemicolon();
1355
- };
1356
- y.parseParenAndDistinguishExpression = function(e, t) {
1357
- var i = this.start, s = this.startLoc, r, n = this.options.ecmaVersion >= 8;
1358
- if (this.options.ecmaVersion >= 6) {
1359
- this.next();
1360
- var o = this.start, u = this.startLoc, p = [], d = true, f = false, C = new ye(), B = this.yieldPos, h = this.awaitPos, m;
1361
- 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)) {
1362
- f = true;
1363
- break;
1364
- } else if (this.type === a.ellipsis) {
1365
- 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");
1366
- break;
1367
- } else p.push(this.parseMaybeAssign(false, C, this.parseParenItem));
1368
- var x = this.lastTokEnd, g = this.lastTokEndLoc;
1369
- 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);
1370
- (!p.length || f) && 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];
1371
- } else r = this.parseParenExpression();
1372
- if (this.options.preserveParens) {
1373
- var w = this.startNodeAt(i, s);
1374
- return w.expression = r, this.finishNode(w, "ParenthesizedExpression");
1375
- } else return r;
1376
- };
1377
- y.parseParenItem = function(e) {
1378
- return e;
1379
- };
1380
- y.parseParenArrowList = function(e, t, i, s) {
1381
- return this.parseArrowExpression(this.startNodeAt(e, t), i, false, s);
1382
- };
1383
- var Di = [];
1384
- y.parseNew = function() {
1385
- this.containsEsc && this.raiseRecoverable(this.start, "Escape sequence in keyword new");
1386
- var e = this.startNode();
1387
- if (this.next(), this.options.ecmaVersion >= 6 && this.type === a.dot) {
1388
- var t = this.startNodeAt(e.start, e.loc && e.loc.start);
1389
- t.name = "new", e.meta = this.finishNode(t, "Identifier"), this.next();
1390
- var i = this.containsEsc;
1391
- 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");
1392
- }
1393
- var s = this.start, r = this.startLoc;
1394
- 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");
1395
- };
1396
- y.parseTemplateElement = function(e) {
1397
- var t = e.isTagged, i = this.startNode();
1398
- 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, `
1399
- `), cooked: null }) : i.value = { raw: this.input.slice(this.start, this.end).replace(/\r\n?/g, `
1400
- `), cooked: this.value }, this.next(), i.tail = this.type === a.backQuote, this.finishNode(i, "TemplateElement");
1401
- };
1402
- y.parseTemplate = function(e) {
1403
- e === void 0 && (e = {});
1404
- var t = e.isTagged;
1405
- t === void 0 && (t = false);
1406
- var i = this.startNode();
1407
- this.next(), i.expressions = [];
1408
- var s = this.parseTemplateElement({ isTagged: t });
1409
- 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 }));
1410
- return this.next(), this.finishNode(i, "TemplateLiteral");
1411
- };
1412
- y.isAsyncProp = function(e) {
1413
- 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) && !L.test(this.input.slice(this.lastTokEnd, this.start));
1414
- };
1415
- y.parseObj = function(e, t) {
1416
- var i = this.startNode(), s = true, r = {};
1417
- for (i.properties = [], this.next(); !this.eat(a.braceR); ) {
1418
- if (s) s = false;
1419
- else if (this.expect(a.comma), this.options.ecmaVersion >= 5 && this.afterTrailingComma(a.braceR)) break;
1420
- var n = this.parseProperty(e, t);
1421
- e || this.checkPropClash(n, r, t), i.properties.push(n);
1422
- }
1423
- return this.finishNode(i, e ? "ObjectPattern" : "ObjectExpression");
1424
- };
1425
- y.parseProperty = function(e, t) {
1426
- var i = this.startNode(), s, r, n, o;
1427
- 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"));
1428
- this.options.ecmaVersion >= 6 && (i.method = false, i.shorthand = false, (e || t) && (n = this.start, o = this.startLoc), e || (s = this.eat(a.star)));
1429
- var u = this.containsEsc;
1430
- 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");
1431
- };
1432
- y.parseGetterSetter = function(e) {
1433
- e.kind = e.key.name, this.parsePropertyName(e), e.value = this.parseMethod(false);
1434
- var t = e.kind === "get" ? 0 : 1;
1435
- if (e.value.params.length !== t) {
1436
- var i = e.value.start;
1437
- e.kind === "get" ? this.raiseRecoverable(i, "getter should have no params") : this.raiseRecoverable(i, "setter should have exactly one param");
1438
- } else e.kind === "set" && e.value.params[0].type === "RestElement" && this.raiseRecoverable(e.value.params[0].start, "Setter cannot use rest params");
1439
- };
1440
- y.parsePropertyValue = function(e, t, i, s, r, n, o, u) {
1441
- (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();
1442
- };
1443
- y.parsePropertyName = function(e) {
1444
- if (this.options.ecmaVersion >= 6) {
1445
- if (this.eat(a.bracketL)) return e.computed = true, e.key = this.parseMaybeAssign(), this.expect(a.bracketR), e.key;
1446
- e.computed = false;
1447
- }
1448
- return e.key = this.type === a.num || this.type === a.string ? this.parseExprAtom() : this.parseIdent(this.options.allowReserved !== "never");
1449
- };
1450
- y.initFunction = function(e) {
1451
- e.id = null, this.options.ecmaVersion >= 6 && (e.generator = e.expression = false), this.options.ecmaVersion >= 8 && (e.async = false);
1452
- };
1453
- y.parseMethod = function(e, t, i) {
1454
- var s = this.startNode(), r = this.yieldPos, n = this.awaitPos, o = this.awaitIdentPos;
1455
- 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(je(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");
1456
- };
1457
- y.parseArrowExpression = function(e, t, i, s) {
1458
- var r = this.yieldPos, n = this.awaitPos, o = this.awaitIdentPos;
1459
- return this.enterScope(je(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");
1460
- };
1461
- y.parseFunctionBody = function(e, t, i, s) {
1462
- var r = t && this.type !== a.braceL, n = this.strict, o = false;
1463
- if (r) e.body = this.parseMaybeAssign(s), e.expression = true, this.checkParams(e, false);
1464
- else {
1465
- var u = this.options.ecmaVersion >= 7 && !this.isSimpleParamList(e.params);
1466
- (!n || u) && (o = this.strictDirective(this.end), o && u && this.raiseRecoverable(e.start, "Illegal 'use strict' directive in function with non-simple parameter list"));
1467
- var p = this.labels;
1468
- 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;
1469
- }
1470
- this.exitScope();
1471
- };
1472
- y.isSimpleParamList = function(e) {
1473
- for (var t = 0, i = e; t < i.length; t += 1) {
1474
- var s = i[t];
1475
- if (s.type !== "Identifier") return false;
1476
- }
1477
- return true;
1478
- };
1479
- y.checkParams = function(e, t) {
1480
- for (var i = /* @__PURE__ */ Object.create(null), s = 0, r = e.params; s < r.length; s += 1) {
1481
- var n = r[s];
1482
- this.checkLValInnerPattern(n, Me, t ? null : i);
1483
- }
1484
- };
1485
- y.parseExprList = function(e, t, i, s) {
1486
- for (var r = [], n = true; !this.eat(e); ) {
1487
- if (n) n = false;
1488
- else if (this.expect(a.comma), t && this.afterTrailingComma(e)) break;
1489
- var o = void 0;
1490
- 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);
1491
- }
1492
- return r;
1493
- };
1494
- y.checkUnreserved = function(e) {
1495
- var t = e.start, i = e.end, s = e.name;
1496
- 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)) {
1497
- var r = this.strict ? this.reservedWordsStrict : this.reservedWords;
1498
- 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"));
1499
- }
1500
- };
1501
- y.parseIdent = function(e) {
1502
- var t = this.parseIdentNode();
1503
- return this.next(!!e), this.finishNode(t, "Identifier"), e || (this.checkUnreserved(t), t.name === "await" && !this.awaitIdentPos && (this.awaitIdentPos = t.start)), t;
1504
- };
1505
- y.parseIdentNode = function() {
1506
- var e = this.startNode();
1507
- 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;
1508
- };
1509
- y.parsePrivateIdent = function() {
1510
- var e = this.startNode();
1511
- 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;
1512
- };
1513
- y.parseYield = function(e) {
1514
- this.yieldPos || (this.yieldPos = this.start);
1515
- var t = this.startNode();
1516
- 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");
1517
- };
1518
- y.parseAwait = function(e) {
1519
- this.awaitPos || (this.awaitPos = this.start);
1520
- var t = this.startNode();
1521
- return this.next(), t.argument = this.parseMaybeUnary(null, true, false, e), this.finishNode(t, "AwaitExpression");
1522
- };
1523
- var de = T.prototype;
1524
- de.raise = function(e, t) {
1525
- var i = ct(this.input, e);
1526
- t += " (" + i.line + ":" + i.column + ")";
1527
- var s = new SyntaxError(t);
1528
- throw s.pos = e, s.loc = i, s.raisedAt = this.pos, s;
1529
- };
1530
- de.raiseRecoverable = de.raise;
1531
- de.curPosition = function() {
1532
- if (this.options.locations) return new ie(this.curLine, this.pos - this.lineStart);
1533
- };
1534
- var W = T.prototype;
1535
- var Fi = function(t) {
1536
- this.flags = t, this.var = [], this.lexical = [], this.functions = [], this.inClassFieldInit = false;
1537
- };
1538
- W.enterScope = function(e) {
1539
- this.scopeStack.push(new Fi(e));
1540
- };
1541
- W.exitScope = function() {
1542
- this.scopeStack.pop();
1543
- };
1544
- W.treatFunctionsAsVarInScope = function(e) {
1545
- return e.flags & Z || !this.inModule && e.flags & se;
1546
- };
1547
- W.declareName = function(e, t, i) {
1548
- var s = false;
1549
- if (t === G) {
1550
- var r = this.currentScope();
1551
- s = r.lexical.indexOf(e) > -1 || r.functions.indexOf(e) > -1 || r.var.indexOf(e) > -1, r.lexical.push(e), this.inModule && r.flags & se && delete this.undefinedExports[e];
1552
- } else if (t === yt) {
1553
- var n = this.currentScope();
1554
- n.lexical.push(e);
1555
- } else if (t === xt) {
1556
- var o = this.currentScope();
1557
- this.treatFunctionsAsVar ? s = o.lexical.indexOf(e) > -1 : s = o.lexical.indexOf(e) > -1 || o.var.indexOf(e) > -1, o.functions.push(e);
1558
- } else for (var u = this.scopeStack.length - 1; u >= 0; --u) {
1559
- var p = this.scopeStack[u];
1560
- if (p.lexical.indexOf(e) > -1 && !(p.flags & dt && p.lexical[0] === e) || !this.treatFunctionsAsVarInScope(p) && p.functions.indexOf(e) > -1) {
1561
- s = true;
1562
- break;
1563
- }
1564
- if (p.var.push(e), this.inModule && p.flags & se && delete this.undefinedExports[e], p.flags & Fe) break;
1565
- }
1566
- s && this.raiseRecoverable(i, "Identifier '" + e + "' has already been declared");
1567
- };
1568
- W.checkLocalExport = function(e) {
1569
- this.scopeStack[0].lexical.indexOf(e.name) === -1 && this.scopeStack[0].var.indexOf(e.name) === -1 && (this.undefinedExports[e.name] = e);
1570
- };
1571
- W.currentScope = function() {
1572
- return this.scopeStack[this.scopeStack.length - 1];
1573
- };
1574
- W.currentVarScope = function() {
1575
- for (var e = this.scopeStack.length - 1; ; e--) {
1576
- var t = this.scopeStack[e];
1577
- if (t.flags & Fe) return t;
1578
- }
1579
- };
1580
- W.currentThisScope = function() {
1581
- for (var e = this.scopeStack.length - 1; ; e--) {
1582
- var t = this.scopeStack[e];
1583
- if (t.flags & Fe && !(t.flags & ft)) return t;
1584
- }
1585
- };
1586
- var ge = function(t, i, s) {
1587
- 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]);
1588
- };
1589
- var ae = T.prototype;
1590
- ae.startNode = function() {
1591
- return new ge(this, this.start, this.startLoc);
1592
- };
1593
- ae.startNodeAt = function(e, t) {
1594
- return new ge(this, e, t);
1595
- };
1596
- function St(e, t, i, s) {
1597
- return e.type = t, e.end = i, this.options.locations && (e.loc.end = s), this.options.ranges && (e.range[1] = i), e;
1598
- }
1599
- ae.finishNode = function(e, t) {
1600
- return St.call(this, e, t, this.lastTokEnd, this.lastTokEndLoc);
1601
- };
1602
- ae.finishNodeAt = function(e, t, i, s) {
1603
- return St.call(this, e, t, i, s);
1604
- };
1605
- ae.copyNode = function(e) {
1606
- var t = new ge(this, e.start, this.startLoc);
1607
- for (var i in e) t[i] = e[i];
1608
- return t;
1609
- };
1610
- var ji = "Gara Garay Gukh Gurung_Khema Hrkt Katakana_Or_Hiragana Kawi Kirat_Rai Krai Nag_Mundari Nagm Ol_Onal Onao Sunu Sunuwar Todhri Todr Tulu_Tigalari Tutg Unknown Zzzz";
1611
- 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";
1612
- var _t = Ct + " Extended_Pictographic";
1613
- var Tt = _t;
1614
- var kt = Tt + " EBase EComp EMod EPres ExtPict";
1615
- var Et = kt;
1616
- var Mi = Et;
1617
- var Ui = { 9: Ct, 10: _t, 11: Tt, 12: kt, 13: Et, 14: Mi };
1618
- var qi = "Basic_Emoji Emoji_Keycap_Sequence RGI_Emoji_Modifier_Sequence RGI_Emoji_Flag_Sequence RGI_Emoji_Tag_Sequence RGI_Emoji_ZWJ_Sequence RGI_Emoji";
1619
- var Gi = { 9: "", 10: "", 11: "", 12: "", 13: "", 14: qi };
1620
- 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";
1621
- 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";
1622
- var At = wt + " Dogra Dogr Gunjala_Gondi Gong Hanifi_Rohingya Rohg Makasar Maka Medefaidrin Medf Old_Sogdian Sogo Sogdian Sogd";
1623
- var Pt = At + " Elymaic Elym Nandinagari Nand Nyiakeng_Puachue_Hmong Hmnp Wancho Wcho";
1624
- var It = Pt + " Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi";
1625
- var Nt = It + " Cypro_Minoan Cpmn Old_Uyghur Ougr Tangsa Tnsa Toto Vithkuqi Vith";
1626
- var Ji = Nt + " " + ji;
1627
- var Ki = { 9: wt, 10: At, 11: Pt, 12: It, 13: Nt, 14: Ji };
1628
- var Vt = {};
1629
- function Wi(e) {
1630
- var t = Vt[e] = { binary: K(Ui[e] + " " + rt), binaryOfStrings: K(Gi[e]), nonBinary: { General_Category: K(rt), Script: K(Ki[e]) } };
1631
- 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;
1632
- }
1633
- for (ce = 0, Ie = [9, 10, 11, 12, 13, 14]; ce < Ie.length; ce += 1) at = Ie[ce], Wi(at);
1634
- var at;
1635
- var ce;
1636
- var Ie;
1637
- var c = T.prototype;
1638
- var me = function(t, i) {
1639
- this.parent = t, this.base = i || this;
1640
- };
1641
- me.prototype.separatedFrom = function(t) {
1642
- 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;
1643
- return false;
1644
- };
1645
- me.prototype.sibling = function() {
1646
- return new me(this.parent, this.base);
1647
- };
1648
- var j = function(t) {
1649
- 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;
1650
- };
1651
- j.prototype.reset = function(t, i, s) {
1652
- var r = s.indexOf("v") !== -1, n = s.indexOf("u") !== -1;
1653
- 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);
1654
- };
1655
- j.prototype.raise = function(t) {
1656
- this.parser.raiseRecoverable(this.start, "Invalid regular expression: /" + this.source + "/: " + t);
1657
- };
1658
- j.prototype.at = function(t, i) {
1659
- i === void 0 && (i = false);
1660
- var s = this.source, r = s.length;
1661
- if (t >= r) return -1;
1662
- var n = s.charCodeAt(t);
1663
- if (!(i || this.switchU) || n <= 55295 || n >= 57344 || t + 1 >= r) return n;
1664
- var o = s.charCodeAt(t + 1);
1665
- return o >= 56320 && o <= 57343 ? (n << 10) + o - 56613888 : n;
1666
- };
1667
- j.prototype.nextIndex = function(t, i) {
1668
- i === void 0 && (i = false);
1669
- var s = this.source, r = s.length;
1670
- if (t >= r) return r;
1671
- var n = s.charCodeAt(t), o;
1672
- return !(i || this.switchU) || n <= 55295 || n >= 57344 || t + 1 >= r || (o = s.charCodeAt(t + 1)) < 56320 || o > 57343 ? t + 1 : t + 2;
1673
- };
1674
- j.prototype.current = function(t) {
1675
- return t === void 0 && (t = false), this.at(this.pos, t);
1676
- };
1677
- j.prototype.lookahead = function(t) {
1678
- return t === void 0 && (t = false), this.at(this.nextIndex(this.pos, t), t);
1679
- };
1680
- j.prototype.advance = function(t) {
1681
- t === void 0 && (t = false), this.pos = this.nextIndex(this.pos, t);
1682
- };
1683
- j.prototype.eat = function(t, i) {
1684
- return i === void 0 && (i = false), this.current(i) === t ? (this.advance(i), true) : false;
1685
- };
1686
- j.prototype.eatChars = function(t, i) {
1687
- i === void 0 && (i = false);
1688
- for (var s = this.pos, r = 0, n = t; r < n.length; r += 1) {
1689
- var o = n[r], u = this.at(s, i);
1690
- if (u === -1 || u !== o) return false;
1691
- s = this.nextIndex(s, i);
1692
- }
1693
- return this.pos = s, true;
1694
- };
1695
- c.validateRegExpFlags = function(e) {
1696
- for (var t = e.validFlags, i = e.flags, s = false, r = false, n = 0; n < i.length; n++) {
1697
- var o = i.charAt(n);
1698
- 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);
1699
- }
1700
- this.options.ecmaVersion >= 15 && s && r && this.raise(e.start, "Invalid regular expression flag");
1701
- };
1702
- function Xi(e) {
1703
- for (var t in e) return true;
1704
- return false;
1705
- }
1706
- c.validateRegExpPattern = function(e) {
1707
- this.regexp_pattern(e), !e.switchN && this.options.ecmaVersion >= 9 && Xi(e.groupNames) && (e.switchN = true, this.regexp_pattern(e));
1708
- };
1709
- c.regexp_pattern = function(e) {
1710
- 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");
1711
- for (var t = 0, i = e.backReferenceNames; t < i.length; t += 1) {
1712
- var s = i[t];
1713
- e.groupNames[s] || e.raise("Invalid named capture referenced");
1714
- }
1715
- };
1716
- c.regexp_disjunction = function(e) {
1717
- var t = this.options.ecmaVersion >= 16;
1718
- 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);
1719
- t && (e.branchID = e.branchID.parent), this.regexp_eatQuantifier(e, true) && e.raise("Nothing to repeat"), e.eat(123) && e.raise("Lone quantifier brackets");
1720
- };
1721
- c.regexp_alternative = function(e) {
1722
- for (; e.pos < e.source.length && this.regexp_eatTerm(e); ) ;
1723
- };
1724
- c.regexp_eatTerm = function(e) {
1725
- 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;
1726
- };
1727
- c.regexp_eatAssertion = function(e) {
1728
- var t = e.pos;
1729
- if (e.lastAssertionIsQuantifiable = false, e.eat(94) || e.eat(36)) return true;
1730
- if (e.eat(92)) {
1731
- if (e.eat(66) || e.eat(98)) return true;
1732
- e.pos = t;
1733
- }
1734
- if (e.eat(40) && e.eat(63)) {
1735
- var i = false;
1736
- 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;
1737
- }
1738
- return e.pos = t, false;
1739
- };
1740
- c.regexp_eatQuantifier = function(e, t) {
1741
- return t === void 0 && (t = false), this.regexp_eatQuantifierPrefix(e, t) ? (e.eat(63), true) : false;
1742
- };
1743
- c.regexp_eatQuantifierPrefix = function(e, t) {
1744
- return e.eat(42) || e.eat(43) || e.eat(63) || this.regexp_eatBracedQuantifier(e, t);
1745
- };
1746
- c.regexp_eatBracedQuantifier = function(e, t) {
1747
- var i = e.pos;
1748
- if (e.eat(123)) {
1749
- var s = 0, r = -1;
1750
- 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;
1751
- e.switchU && !t && e.raise("Incomplete quantifier"), e.pos = i;
1752
- }
1753
- return false;
1754
- };
1755
- c.regexp_eatAtom = function(e) {
1756
- return this.regexp_eatPatternCharacters(e) || e.eat(46) || this.regexp_eatReverseSolidusAtomEscape(e) || this.regexp_eatCharacterClass(e) || this.regexp_eatUncapturingGroup(e) || this.regexp_eatCapturingGroup(e);
1757
- };
1758
- c.regexp_eatReverseSolidusAtomEscape = function(e) {
1759
- var t = e.pos;
1760
- if (e.eat(92)) {
1761
- if (this.regexp_eatAtomEscape(e)) return true;
1762
- e.pos = t;
1763
- }
1764
- return false;
1765
- };
1766
- c.regexp_eatUncapturingGroup = function(e) {
1767
- var t = e.pos;
1768
- if (e.eat(40)) {
1769
- if (e.eat(63)) {
1770
- if (this.options.ecmaVersion >= 16) {
1771
- var i = this.regexp_eatModifiers(e), s = e.eat(45);
1772
- if (i || s) {
1773
- for (var r = 0; r < i.length; r++) {
1774
- var n = i.charAt(r);
1775
- i.indexOf(n, r + 1) > -1 && e.raise("Duplicate regular expression modifiers");
1776
- }
1777
- if (s) {
1778
- var o = this.regexp_eatModifiers(e);
1779
- !i && !o && e.current() === 58 && e.raise("Invalid regular expression modifiers");
1780
- for (var u = 0; u < o.length; u++) {
1781
- var p = o.charAt(u);
1782
- (o.indexOf(p, u + 1) > -1 || i.indexOf(p) > -1) && e.raise("Duplicate regular expression modifiers");
1783
- }
1784
- }
1785
- }
1786
- }
1787
- if (e.eat(58)) {
1788
- if (this.regexp_disjunction(e), e.eat(41)) return true;
1789
- e.raise("Unterminated group");
1790
- }
1791
- }
1792
- e.pos = t;
1793
- }
1794
- return false;
1795
- };
1796
- c.regexp_eatCapturingGroup = function(e) {
1797
- if (e.eat(40)) {
1798
- 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;
1799
- e.raise("Unterminated group");
1800
- }
1801
- return false;
1802
- };
1803
- c.regexp_eatModifiers = function(e) {
1804
- for (var t = "", i = 0; (i = e.current()) !== -1 && zi(i); ) t += U(i), e.advance();
1805
- return t;
1806
- };
1807
- function zi(e) {
1808
- return e === 105 || e === 109 || e === 115;
1809
- }
1810
- c.regexp_eatExtendedAtom = function(e) {
1811
- 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);
1812
- };
1813
- c.regexp_eatInvalidBracedQuantifier = function(e) {
1814
- return this.regexp_eatBracedQuantifier(e, true) && e.raise("Nothing to repeat"), false;
1815
- };
1816
- c.regexp_eatSyntaxCharacter = function(e) {
1817
- var t = e.current();
1818
- return Lt(t) ? (e.lastIntValue = t, e.advance(), true) : false;
1819
- };
1820
- function Lt(e) {
1821
- return e === 36 || e >= 40 && e <= 43 || e === 46 || e === 63 || e >= 91 && e <= 94 || e >= 123 && e <= 125;
1822
- }
1823
- c.regexp_eatPatternCharacters = function(e) {
1824
- for (var t = e.pos, i = 0; (i = e.current()) !== -1 && !Lt(i); ) e.advance();
1825
- return e.pos !== t;
1826
- };
1827
- c.regexp_eatExtendedPatternCharacter = function(e) {
1828
- var t = e.current();
1829
- return t !== -1 && t !== 36 && !(t >= 40 && t <= 43) && t !== 46 && t !== 63 && t !== 91 && t !== 94 && t !== 124 ? (e.advance(), true) : false;
1830
- };
1831
- c.regexp_groupSpecifier = function(e) {
1832
- if (e.eat(63)) {
1833
- this.regexp_eatGroupName(e) || e.raise("Invalid group");
1834
- var t = this.options.ecmaVersion >= 16, i = e.groupNames[e.lastStringValue];
1835
- if (i) if (t) for (var s = 0, r = i; s < r.length; s += 1) {
1836
- var n = r[s];
1837
- n.separatedFrom(e.branchID) || e.raise("Duplicate capture group name");
1838
- }
1839
- else e.raise("Duplicate capture group name");
1840
- t ? (i || (e.groupNames[e.lastStringValue] = [])).push(e.branchID) : e.groupNames[e.lastStringValue] = true;
1841
- }
1842
- };
1843
- c.regexp_eatGroupName = function(e) {
1844
- if (e.lastStringValue = "", e.eat(60)) {
1845
- if (this.regexp_eatRegExpIdentifierName(e) && e.eat(62)) return true;
1846
- e.raise("Invalid capture group name");
1847
- }
1848
- return false;
1849
- };
1850
- c.regexp_eatRegExpIdentifierName = function(e) {
1851
- if (e.lastStringValue = "", this.regexp_eatRegExpIdentifierStart(e)) {
1852
- for (e.lastStringValue += U(e.lastIntValue); this.regexp_eatRegExpIdentifierPart(e); ) e.lastStringValue += U(e.lastIntValue);
1853
- return true;
1854
- }
1855
- return false;
1856
- };
1857
- c.regexp_eatRegExpIdentifierStart = function(e) {
1858
- var t = e.pos, i = this.options.ecmaVersion >= 11, s = e.current(i);
1859
- return e.advance(i), s === 92 && this.regexp_eatRegExpUnicodeEscapeSequence(e, i) && (s = e.lastIntValue), Hi(s) ? (e.lastIntValue = s, true) : (e.pos = t, false);
1860
- };
1861
- function Hi(e) {
1862
- return M(e, true) || e === 36 || e === 95;
1863
- }
1864
- c.regexp_eatRegExpIdentifierPart = function(e) {
1865
- var t = e.pos, i = this.options.ecmaVersion >= 11, s = e.current(i);
1866
- return e.advance(i), s === 92 && this.regexp_eatRegExpUnicodeEscapeSequence(e, i) && (s = e.lastIntValue), Qi(s) ? (e.lastIntValue = s, true) : (e.pos = t, false);
1867
- };
1868
- function Qi(e) {
1869
- return H(e, true) || e === 36 || e === 95 || e === 8204 || e === 8205;
1870
- }
1871
- c.regexp_eatAtomEscape = function(e) {
1872
- 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);
1873
- };
1874
- c.regexp_eatBackReference = function(e) {
1875
- var t = e.pos;
1876
- if (this.regexp_eatDecimalEscape(e)) {
1877
- var i = e.lastIntValue;
1878
- if (e.switchU) return i > e.maxBackReference && (e.maxBackReference = i), true;
1879
- if (i <= e.numCapturingParens) return true;
1880
- e.pos = t;
1881
- }
1882
- return false;
1883
- };
1884
- c.regexp_eatKGroupName = function(e) {
1885
- if (e.eat(107)) {
1886
- if (this.regexp_eatGroupName(e)) return e.backReferenceNames.push(e.lastStringValue), true;
1887
- e.raise("Invalid named reference");
1888
- }
1889
- return false;
1890
- };
1891
- c.regexp_eatCharacterEscape = function(e) {
1892
- 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);
1893
- };
1894
- c.regexp_eatCControlLetter = function(e) {
1895
- var t = e.pos;
1896
- if (e.eat(99)) {
1897
- if (this.regexp_eatControlLetter(e)) return true;
1898
- e.pos = t;
1899
- }
1900
- return false;
1901
- };
1902
- c.regexp_eatZero = function(e) {
1903
- return e.current() === 48 && !ve(e.lookahead()) ? (e.lastIntValue = 0, e.advance(), true) : false;
1904
- };
1905
- c.regexp_eatControlEscape = function(e) {
1906
- var t = e.current();
1907
- 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;
1908
- };
1909
- c.regexp_eatControlLetter = function(e) {
1910
- var t = e.current();
1911
- return Rt(t) ? (e.lastIntValue = t % 32, e.advance(), true) : false;
1912
- };
1913
- function Rt(e) {
1914
- return e >= 65 && e <= 90 || e >= 97 && e <= 122;
1915
- }
1916
- c.regexp_eatRegExpUnicodeEscapeSequence = function(e, t) {
1917
- t === void 0 && (t = false);
1918
- var i = e.pos, s = t || e.switchU;
1919
- if (e.eat(117)) {
1920
- if (this.regexp_eatFixedHexDigits(e, 4)) {
1921
- var r = e.lastIntValue;
1922
- if (s && r >= 55296 && r <= 56319) {
1923
- var n = e.pos;
1924
- if (e.eat(92) && e.eat(117) && this.regexp_eatFixedHexDigits(e, 4)) {
1925
- var o = e.lastIntValue;
1926
- if (o >= 56320 && o <= 57343) return e.lastIntValue = (r - 55296) * 1024 + (o - 56320) + 65536, true;
1927
- }
1928
- e.pos = n, e.lastIntValue = r;
1929
- }
1930
- return true;
1931
- }
1932
- if (s && e.eat(123) && this.regexp_eatHexDigits(e) && e.eat(125) && Yi(e.lastIntValue)) return true;
1933
- s && e.raise("Invalid unicode escape"), e.pos = i;
1934
- }
1935
- return false;
1936
- };
1937
- function Yi(e) {
1938
- return e >= 0 && e <= 1114111;
1939
- }
1940
- c.regexp_eatIdentityEscape = function(e) {
1941
- if (e.switchU) return this.regexp_eatSyntaxCharacter(e) ? true : e.eat(47) ? (e.lastIntValue = 47, true) : false;
1942
- var t = e.current();
1943
- return t !== 99 && (!e.switchN || t !== 107) ? (e.lastIntValue = t, e.advance(), true) : false;
1944
- };
1945
- c.regexp_eatDecimalEscape = function(e) {
1946
- e.lastIntValue = 0;
1947
- var t = e.current();
1948
- if (t >= 49 && t <= 57) {
1949
- do
1950
- e.lastIntValue = 10 * e.lastIntValue + (t - 48), e.advance();
1951
- while ((t = e.current()) >= 48 && t <= 57);
1952
- return true;
1953
- }
1954
- return false;
1955
- };
1956
- var Ot = 0;
1957
- var q = 1;
1958
- var V = 2;
1959
- c.regexp_eatCharacterClassEscape = function(e) {
1960
- var t = e.current();
1961
- if (Zi(t)) return e.lastIntValue = -1, e.advance(), q;
1962
- var i = false;
1963
- if (e.switchU && this.options.ecmaVersion >= 9 && ((i = t === 80) || t === 112)) {
1964
- e.lastIntValue = -1, e.advance();
1965
- var s;
1966
- if (e.eat(123) && (s = this.regexp_eatUnicodePropertyValueExpression(e)) && e.eat(125)) return i && s === V && e.raise("Invalid property name"), s;
1967
- e.raise("Invalid property name");
1968
- }
1969
- return Ot;
1970
- };
1971
- function Zi(e) {
1972
- return e === 100 || e === 68 || e === 115 || e === 83 || e === 119 || e === 87;
1973
- }
1974
- c.regexp_eatUnicodePropertyValueExpression = function(e) {
1975
- var t = e.pos;
1976
- if (this.regexp_eatUnicodePropertyName(e) && e.eat(61)) {
1977
- var i = e.lastStringValue;
1978
- if (this.regexp_eatUnicodePropertyValue(e)) {
1979
- var s = e.lastStringValue;
1980
- return this.regexp_validateUnicodePropertyNameAndValue(e, i, s), q;
1981
- }
1982
- }
1983
- if (e.pos = t, this.regexp_eatLoneUnicodePropertyNameOrValue(e)) {
1984
- var r = e.lastStringValue;
1985
- return this.regexp_validateUnicodePropertyNameOrValue(e, r);
1986
- }
1987
- return Ot;
1988
- };
1989
- c.regexp_validateUnicodePropertyNameAndValue = function(e, t, i) {
1990
- Y(e.unicodeProperties.nonBinary, t) || e.raise("Invalid property name"), e.unicodeProperties.nonBinary[t].test(i) || e.raise("Invalid property value");
1991
- };
1992
- c.regexp_validateUnicodePropertyNameOrValue = function(e, t) {
1993
- if (e.unicodeProperties.binary.test(t)) return q;
1994
- if (e.switchV && e.unicodeProperties.binaryOfStrings.test(t)) return V;
1995
- e.raise("Invalid property name");
1996
- };
1997
- c.regexp_eatUnicodePropertyName = function(e) {
1998
- var t = 0;
1999
- for (e.lastStringValue = ""; Bt(t = e.current()); ) e.lastStringValue += U(t), e.advance();
2000
- return e.lastStringValue !== "";
2001
- };
2002
- function Bt(e) {
2003
- return Rt(e) || e === 95;
2004
- }
2005
- c.regexp_eatUnicodePropertyValue = function(e) {
2006
- var t = 0;
2007
- for (e.lastStringValue = ""; $i(t = e.current()); ) e.lastStringValue += U(t), e.advance();
2008
- return e.lastStringValue !== "";
2009
- };
2010
- function $i(e) {
2011
- return Bt(e) || ve(e);
2012
- }
2013
- c.regexp_eatLoneUnicodePropertyNameOrValue = function(e) {
2014
- return this.regexp_eatUnicodePropertyValue(e);
2015
- };
2016
- c.regexp_eatCharacterClass = function(e) {
2017
- if (e.eat(91)) {
2018
- var t = e.eat(94), i = this.regexp_classContents(e);
2019
- return e.eat(93) || e.raise("Unterminated character class"), t && i === V && e.raise("Negated character class may contain strings"), true;
2020
- }
2021
- return false;
2022
- };
2023
- c.regexp_classContents = function(e) {
2024
- return e.current() === 93 ? q : e.switchV ? this.regexp_classSetExpression(e) : (this.regexp_nonEmptyClassRanges(e), q);
2025
- };
2026
- c.regexp_nonEmptyClassRanges = function(e) {
2027
- for (; this.regexp_eatClassAtom(e); ) {
2028
- var t = e.lastIntValue;
2029
- if (e.eat(45) && this.regexp_eatClassAtom(e)) {
2030
- var i = e.lastIntValue;
2031
- 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");
2032
- }
2033
- }
2034
- };
2035
- c.regexp_eatClassAtom = function(e) {
2036
- var t = e.pos;
2037
- if (e.eat(92)) {
2038
- if (this.regexp_eatClassEscape(e)) return true;
2039
- if (e.switchU) {
2040
- var i = e.current();
2041
- (i === 99 || jt(i)) && e.raise("Invalid class escape"), e.raise("Invalid escape");
2042
- }
2043
- e.pos = t;
2044
- }
2045
- var s = e.current();
2046
- return s !== 93 ? (e.lastIntValue = s, e.advance(), true) : false;
2047
- };
2048
- c.regexp_eatClassEscape = function(e) {
2049
- var t = e.pos;
2050
- if (e.eat(98)) return e.lastIntValue = 8, true;
2051
- if (e.switchU && e.eat(45)) return e.lastIntValue = 45, true;
2052
- if (!e.switchU && e.eat(99)) {
2053
- if (this.regexp_eatClassControlLetter(e)) return true;
2054
- e.pos = t;
2055
- }
2056
- return this.regexp_eatCharacterClassEscape(e) || this.regexp_eatCharacterEscape(e);
2057
- };
2058
- c.regexp_classSetExpression = function(e) {
2059
- var t = q, i;
2060
- if (!this.regexp_eatClassSetRange(e)) if (i = this.regexp_eatClassSetOperand(e)) {
2061
- i === V && (t = V);
2062
- for (var s = e.pos; e.eatChars([38, 38]); ) {
2063
- if (e.current() !== 38 && (i = this.regexp_eatClassSetOperand(e))) {
2064
- i !== V && (t = q);
2065
- continue;
2066
- }
2067
- e.raise("Invalid character in character class");
2068
- }
2069
- if (s !== e.pos) return t;
2070
- for (; e.eatChars([45, 45]); ) this.regexp_eatClassSetOperand(e) || e.raise("Invalid character in character class");
2071
- if (s !== e.pos) return t;
2072
- } else e.raise("Invalid character in character class");
2073
- for (; ; ) if (!this.regexp_eatClassSetRange(e)) {
2074
- if (i = this.regexp_eatClassSetOperand(e), !i) return t;
2075
- i === V && (t = V);
2076
- }
2077
- };
2078
- c.regexp_eatClassSetRange = function(e) {
2079
- var t = e.pos;
2080
- if (this.regexp_eatClassSetCharacter(e)) {
2081
- var i = e.lastIntValue;
2082
- if (e.eat(45) && this.regexp_eatClassSetCharacter(e)) {
2083
- var s = e.lastIntValue;
2084
- return i !== -1 && s !== -1 && i > s && e.raise("Range out of order in character class"), true;
2085
- }
2086
- e.pos = t;
2087
- }
2088
- return false;
2089
- };
2090
- c.regexp_eatClassSetOperand = function(e) {
2091
- return this.regexp_eatClassSetCharacter(e) ? q : this.regexp_eatClassStringDisjunction(e) || this.regexp_eatNestedClass(e);
2092
- };
2093
- c.regexp_eatNestedClass = function(e) {
2094
- var t = e.pos;
2095
- if (e.eat(91)) {
2096
- var i = e.eat(94), s = this.regexp_classContents(e);
2097
- if (e.eat(93)) return i && s === V && e.raise("Negated character class may contain strings"), s;
2098
- e.pos = t;
2099
- }
2100
- if (e.eat(92)) {
2101
- var r = this.regexp_eatCharacterClassEscape(e);
2102
- if (r) return r;
2103
- e.pos = t;
2104
- }
2105
- return null;
2106
- };
2107
- c.regexp_eatClassStringDisjunction = function(e) {
2108
- var t = e.pos;
2109
- if (e.eatChars([92, 113])) {
2110
- if (e.eat(123)) {
2111
- var i = this.regexp_classStringDisjunctionContents(e);
2112
- if (e.eat(125)) return i;
2113
- } else e.raise("Invalid escape");
2114
- e.pos = t;
2115
- }
2116
- return null;
2117
- };
2118
- c.regexp_classStringDisjunctionContents = function(e) {
2119
- for (var t = this.regexp_classString(e); e.eat(124); ) this.regexp_classString(e) === V && (t = V);
2120
- return t;
2121
- };
2122
- c.regexp_classString = function(e) {
2123
- for (var t = 0; this.regexp_eatClassSetCharacter(e); ) t++;
2124
- return t === 1 ? q : V;
2125
- };
2126
- c.regexp_eatClassSetCharacter = function(e) {
2127
- var t = e.pos;
2128
- 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);
2129
- var i = e.current();
2130
- return i < 0 || i === e.lookahead() && es(i) || ts(i) ? false : (e.advance(), e.lastIntValue = i, true);
2131
- };
2132
- function es(e) {
2133
- return e === 33 || e >= 35 && e <= 38 || e >= 42 && e <= 44 || e === 46 || e >= 58 && e <= 64 || e === 94 || e === 96 || e === 126;
2134
- }
2135
- function ts(e) {
2136
- return e === 40 || e === 41 || e === 45 || e === 47 || e >= 91 && e <= 93 || e >= 123 && e <= 125;
2137
- }
2138
- c.regexp_eatClassSetReservedPunctuator = function(e) {
2139
- var t = e.current();
2140
- return is(t) ? (e.lastIntValue = t, e.advance(), true) : false;
2141
- };
2142
- function is(e) {
2143
- return e === 33 || e === 35 || e === 37 || e === 38 || e === 44 || e === 45 || e >= 58 && e <= 62 || e === 64 || e === 96 || e === 126;
2144
- }
2145
- c.regexp_eatClassControlLetter = function(e) {
2146
- var t = e.current();
2147
- return ve(t) || t === 95 ? (e.lastIntValue = t % 32, e.advance(), true) : false;
2148
- };
2149
- c.regexp_eatHexEscapeSequence = function(e) {
2150
- var t = e.pos;
2151
- if (e.eat(120)) {
2152
- if (this.regexp_eatFixedHexDigits(e, 2)) return true;
2153
- e.switchU && e.raise("Invalid escape"), e.pos = t;
2154
- }
2155
- return false;
2156
- };
2157
- c.regexp_eatDecimalDigits = function(e) {
2158
- var t = e.pos, i = 0;
2159
- for (e.lastIntValue = 0; ve(i = e.current()); ) e.lastIntValue = 10 * e.lastIntValue + (i - 48), e.advance();
2160
- return e.pos !== t;
2161
- };
2162
- function ve(e) {
2163
- return e >= 48 && e <= 57;
2164
- }
2165
- c.regexp_eatHexDigits = function(e) {
2166
- var t = e.pos, i = 0;
2167
- for (e.lastIntValue = 0; Dt(i = e.current()); ) e.lastIntValue = 16 * e.lastIntValue + Ft(i), e.advance();
2168
- return e.pos !== t;
2169
- };
2170
- function Dt(e) {
2171
- return e >= 48 && e <= 57 || e >= 65 && e <= 70 || e >= 97 && e <= 102;
2172
- }
2173
- function Ft(e) {
2174
- return e >= 65 && e <= 70 ? 10 + (e - 65) : e >= 97 && e <= 102 ? 10 + (e - 97) : e - 48;
2175
- }
2176
- c.regexp_eatLegacyOctalEscapeSequence = function(e) {
2177
- if (this.regexp_eatOctalDigit(e)) {
2178
- var t = e.lastIntValue;
2179
- if (this.regexp_eatOctalDigit(e)) {
2180
- var i = e.lastIntValue;
2181
- t <= 3 && this.regexp_eatOctalDigit(e) ? e.lastIntValue = t * 64 + i * 8 + e.lastIntValue : e.lastIntValue = t * 8 + i;
2182
- } else e.lastIntValue = t;
2183
- return true;
2184
- }
2185
- return false;
2186
- };
2187
- c.regexp_eatOctalDigit = function(e) {
2188
- var t = e.current();
2189
- return jt(t) ? (e.lastIntValue = t - 48, e.advance(), true) : (e.lastIntValue = 0, false);
2190
- };
2191
- function jt(e) {
2192
- return e >= 48 && e <= 55;
2193
- }
2194
- c.regexp_eatFixedHexDigits = function(e, t) {
2195
- var i = e.pos;
2196
- e.lastIntValue = 0;
2197
- for (var s = 0; s < t; ++s) {
2198
- var r = e.current();
2199
- if (!Dt(r)) return e.pos = i, false;
2200
- e.lastIntValue = 16 * e.lastIntValue + Ft(r), e.advance();
2201
- }
2202
- return true;
2203
- };
2204
- var qe = function(t) {
2205
- 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]);
2206
- };
2207
- var v = T.prototype;
2208
- v.next = function(e) {
2209
- !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();
2210
- };
2211
- v.getToken = function() {
2212
- return this.next(), new qe(this);
2213
- };
2214
- typeof Symbol < "u" && (v[Symbol.iterator] = function() {
2215
- var e = this;
2216
- return { next: function() {
2217
- var t = e.getToken();
2218
- return { done: t.type === a.eof, value: t };
2219
- } };
2220
- });
2221
- v.nextToken = function() {
2222
- var e = this.curContext();
2223
- 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);
2224
- if (e.override) return e.override(this);
2225
- this.readToken(this.fullCharCodeAtPos());
2226
- };
2227
- v.readToken = function(e) {
2228
- return M(e, this.options.ecmaVersion >= 6) || e === 92 ? this.readWord() : this.getTokenFromCode(e);
2229
- };
2230
- v.fullCharCodeAtPos = function() {
2231
- var e = this.input.charCodeAt(this.pos);
2232
- if (e <= 55295 || e >= 56320) return e;
2233
- var t = this.input.charCodeAt(this.pos + 1);
2234
- return t <= 56319 || t >= 57344 ? e : (e << 10) + t - 56613888;
2235
- };
2236
- v.skipBlockComment = function() {
2237
- var e = this.options.onComment && this.curPosition(), t = this.pos, i = this.input.indexOf("*/", this.pos += 2);
2238
- 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;
2239
- this.options.onComment && this.options.onComment(true, this.input.slice(t + 2, i), t, this.pos, e, this.curPosition());
2240
- };
2241
- v.skipLineComment = function(e) {
2242
- 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);
2243
- this.options.onComment && this.options.onComment(false, this.input.slice(t + e, this.pos), t, this.pos, i, this.curPosition());
2244
- };
2245
- v.skipSpace = function() {
2246
- e: for (; this.pos < this.input.length; ) {
2247
- var e = this.input.charCodeAt(this.pos);
2248
- switch (e) {
2249
- case 32:
2250
- case 160:
2251
- ++this.pos;
2252
- break;
2253
- case 13:
2254
- this.input.charCodeAt(this.pos + 1) === 10 && ++this.pos;
2255
- case 10:
2256
- case 8232:
2257
- case 8233:
2258
- ++this.pos, this.options.locations && (++this.curLine, this.lineStart = this.pos);
2259
- break;
2260
- case 47:
2261
- switch (this.input.charCodeAt(this.pos + 1)) {
2262
- case 42:
2263
- this.skipBlockComment();
2264
- break;
2265
- case 47:
2266
- this.skipLineComment(2);
2267
- break;
2268
- default:
2269
- break e;
2270
- }
2271
- break;
2272
- default:
2273
- if (e > 8 && e < 14 || e >= 5760 && pt.test(String.fromCharCode(e))) ++this.pos;
2274
- else break e;
2275
- }
2276
- }
2277
- };
2278
- v.finishToken = function(e, t) {
2279
- this.end = this.pos, this.options.locations && (this.endLoc = this.curPosition());
2280
- var i = this.type;
2281
- this.type = e, this.value = t, this.updateContext(i);
2282
- };
2283
- v.readToken_dot = function() {
2284
- var e = this.input.charCodeAt(this.pos + 1);
2285
- if (e >= 48 && e <= 57) return this.readNumber(true);
2286
- var t = this.input.charCodeAt(this.pos + 2);
2287
- return this.options.ecmaVersion >= 6 && e === 46 && t === 46 ? (this.pos += 3, this.finishToken(a.ellipsis)) : (++this.pos, this.finishToken(a.dot));
2288
- };
2289
- v.readToken_slash = function() {
2290
- var e = this.input.charCodeAt(this.pos + 1);
2291
- return this.exprAllowed ? (++this.pos, this.readRegexp()) : e === 61 ? this.finishOp(a.assign, 2) : this.finishOp(a.slash, 1);
2292
- };
2293
- v.readToken_mult_modulo_exp = function(e) {
2294
- var t = this.input.charCodeAt(this.pos + 1), i = 1, s = e === 42 ? a.star : a.modulo;
2295
- 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);
2296
- };
2297
- v.readToken_pipe_amp = function(e) {
2298
- var t = this.input.charCodeAt(this.pos + 1);
2299
- if (t === e) {
2300
- if (this.options.ecmaVersion >= 12) {
2301
- var i = this.input.charCodeAt(this.pos + 2);
2302
- if (i === 61) return this.finishOp(a.assign, 3);
2303
- }
2304
- return this.finishOp(e === 124 ? a.logicalOR : a.logicalAND, 2);
2305
- }
2306
- return t === 61 ? this.finishOp(a.assign, 2) : this.finishOp(e === 124 ? a.bitwiseOR : a.bitwiseAND, 1);
2307
- };
2308
- v.readToken_caret = function() {
2309
- var e = this.input.charCodeAt(this.pos + 1);
2310
- return e === 61 ? this.finishOp(a.assign, 2) : this.finishOp(a.bitwiseXOR, 1);
2311
- };
2312
- v.readToken_plus_min = function(e) {
2313
- var t = this.input.charCodeAt(this.pos + 1);
2314
- return t === e ? t === 45 && !this.inModule && this.input.charCodeAt(this.pos + 2) === 62 && (this.lastTokEnd === 0 || L.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);
2315
- };
2316
- v.readToken_lt_gt = function(e) {
2317
- var t = this.input.charCodeAt(this.pos + 1), i = 1;
2318
- 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));
2319
- };
2320
- v.readToken_eq_excl = function(e) {
2321
- var t = this.input.charCodeAt(this.pos + 1);
2322
- 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);
2323
- };
2324
- v.readToken_question = function() {
2325
- var e = this.options.ecmaVersion;
2326
- if (e >= 11) {
2327
- var t = this.input.charCodeAt(this.pos + 1);
2328
- if (t === 46) {
2329
- var i = this.input.charCodeAt(this.pos + 2);
2330
- if (i < 48 || i > 57) return this.finishOp(a.questionDot, 2);
2331
- }
2332
- if (t === 63) {
2333
- if (e >= 12) {
2334
- var s = this.input.charCodeAt(this.pos + 2);
2335
- if (s === 61) return this.finishOp(a.assign, 3);
2336
- }
2337
- return this.finishOp(a.coalesce, 2);
2338
- }
2339
- }
2340
- return this.finishOp(a.question, 1);
2341
- };
2342
- v.readToken_numberSign = function() {
2343
- var e = this.options.ecmaVersion, t = 35;
2344
- if (e >= 13 && (++this.pos, t = this.fullCharCodeAtPos(), M(t, true) || t === 92)) return this.finishToken(a.privateId, this.readWord1());
2345
- this.raise(this.pos, "Unexpected character '" + U(t) + "'");
2346
- };
2347
- v.getTokenFromCode = function(e) {
2348
- switch (e) {
2349
- case 46:
2350
- return this.readToken_dot();
2351
- case 40:
2352
- return ++this.pos, this.finishToken(a.parenL);
2353
- case 41:
2354
- return ++this.pos, this.finishToken(a.parenR);
2355
- case 59:
2356
- return ++this.pos, this.finishToken(a.semi);
2357
- case 44:
2358
- return ++this.pos, this.finishToken(a.comma);
2359
- case 91:
2360
- return ++this.pos, this.finishToken(a.bracketL);
2361
- case 93:
2362
- return ++this.pos, this.finishToken(a.bracketR);
2363
- case 123:
2364
- return ++this.pos, this.finishToken(a.braceL);
2365
- case 125:
2366
- return ++this.pos, this.finishToken(a.braceR);
2367
- case 58:
2368
- return ++this.pos, this.finishToken(a.colon);
2369
- case 96:
2370
- if (this.options.ecmaVersion < 6) break;
2371
- return ++this.pos, this.finishToken(a.backQuote);
2372
- case 48:
2373
- var t = this.input.charCodeAt(this.pos + 1);
2374
- if (t === 120 || t === 88) return this.readRadixNumber(16);
2375
- if (this.options.ecmaVersion >= 6) {
2376
- if (t === 111 || t === 79) return this.readRadixNumber(8);
2377
- if (t === 98 || t === 66) return this.readRadixNumber(2);
2378
- }
2379
- case 49:
2380
- case 50:
2381
- case 51:
2382
- case 52:
2383
- case 53:
2384
- case 54:
2385
- case 55:
2386
- case 56:
2387
- case 57:
2388
- return this.readNumber(false);
2389
- case 34:
2390
- case 39:
2391
- return this.readString(e);
2392
- case 47:
2393
- return this.readToken_slash();
2394
- case 37:
2395
- case 42:
2396
- return this.readToken_mult_modulo_exp(e);
2397
- case 124:
2398
- case 38:
2399
- return this.readToken_pipe_amp(e);
2400
- case 94:
2401
- return this.readToken_caret();
2402
- case 43:
2403
- case 45:
2404
- return this.readToken_plus_min(e);
2405
- case 60:
2406
- case 62:
2407
- return this.readToken_lt_gt(e);
2408
- case 61:
2409
- case 33:
2410
- return this.readToken_eq_excl(e);
2411
- case 63:
2412
- return this.readToken_question();
2413
- case 126:
2414
- return this.finishOp(a.prefix, 1);
2415
- case 35:
2416
- return this.readToken_numberSign();
2417
- }
2418
- this.raise(this.pos, "Unexpected character '" + U(e) + "'");
2419
- };
2420
- v.finishOp = function(e, t) {
2421
- var i = this.input.slice(this.pos, this.pos + t);
2422
- return this.pos += t, this.finishToken(e, i);
2423
- };
2424
- v.readRegexp = function() {
2425
- for (var e, t, i = this.pos; ; ) {
2426
- this.pos >= this.input.length && this.raise(i, "Unterminated regular expression");
2427
- var s = this.input.charAt(this.pos);
2428
- if (L.test(s) && this.raise(i, "Unterminated regular expression"), e) e = false;
2429
- else {
2430
- if (s === "[") t = true;
2431
- else if (s === "]" && t) t = false;
2432
- else if (s === "/" && !t) break;
2433
- e = s === "\\";
2434
- }
2435
- ++this.pos;
2436
- }
2437
- var r = this.input.slice(i, this.pos);
2438
- ++this.pos;
2439
- var n = this.pos, o = this.readWord1();
2440
- this.containsEsc && this.unexpected(n);
2441
- var u = this.regexpState || (this.regexpState = new j(this));
2442
- u.reset(i, r, o), this.validateRegExpFlags(u), this.validateRegExpPattern(u);
2443
- var p = null;
2444
- try {
2445
- p = new RegExp(r, o);
2446
- } catch {
2447
- }
2448
- return this.finishToken(a.regexp, { pattern: r, flags: o, value: p });
2449
- };
2450
- v.readInt = function(e, t, i) {
2451
- 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 ?? 1 / 0; p < d; ++p, ++this.pos) {
2452
- var f = this.input.charCodeAt(this.pos), C = void 0;
2453
- if (s && f === 95) {
2454
- 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 = f;
2455
- continue;
2456
- }
2457
- if (f >= 97 ? C = f - 97 + 10 : f >= 65 ? C = f - 65 + 10 : f >= 48 && f <= 57 ? C = f - 48 : C = 1 / 0, C >= e) break;
2458
- u = f, o = o * e + C;
2459
- }
2460
- 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;
2461
- };
2462
- function ss(e, t) {
2463
- return t ? parseInt(e, 8) : parseFloat(e.replace(/_/g, ""));
2464
- }
2465
- function Mt(e) {
2466
- return typeof BigInt != "function" ? null : BigInt(e.replace(/_/g, ""));
2467
- }
2468
- v.readRadixNumber = function(e) {
2469
- var t = this.pos;
2470
- this.pos += 2;
2471
- var i = this.readInt(e);
2472
- return i == null && this.raise(this.start + 2, "Expected number in radix " + e), this.options.ecmaVersion >= 11 && this.input.charCodeAt(this.pos) === 110 ? (i = Mt(this.input.slice(t, this.pos)), ++this.pos) : M(this.fullCharCodeAtPos()) && this.raise(this.pos, "Identifier directly after number"), this.finishToken(a.num, i);
2473
- };
2474
- v.readNumber = function(e) {
2475
- var t = this.pos;
2476
- !e && this.readInt(10, void 0, true) === null && this.raise(t, "Invalid number");
2477
- var i = this.pos - t >= 2 && this.input.charCodeAt(t) === 48;
2478
- i && this.strict && this.raise(t, "Invalid number");
2479
- var s = this.input.charCodeAt(this.pos);
2480
- if (!i && !e && this.options.ecmaVersion >= 11 && s === 110) {
2481
- var r = Mt(this.input.slice(t, this.pos));
2482
- return ++this.pos, M(this.fullCharCodeAtPos()) && this.raise(this.pos, "Identifier directly after number"), this.finishToken(a.num, r);
2483
- }
2484
- 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")), M(this.fullCharCodeAtPos()) && this.raise(this.pos, "Identifier directly after number");
2485
- var n = ss(this.input.slice(t, this.pos), i);
2486
- return this.finishToken(a.num, n);
2487
- };
2488
- v.readCodePoint = function() {
2489
- var e = this.input.charCodeAt(this.pos), t;
2490
- if (e === 123) {
2491
- this.options.ecmaVersion < 6 && this.unexpected();
2492
- var i = ++this.pos;
2493
- t = this.readHexChar(this.input.indexOf("}", this.pos) - this.pos), ++this.pos, t > 1114111 && this.invalidStringToken(i, "Code point out of bounds");
2494
- } else t = this.readHexChar(4);
2495
- return t;
2496
- };
2497
- v.readString = function(e) {
2498
- for (var t = "", i = ++this.pos; ; ) {
2499
- this.pos >= this.input.length && this.raise(this.start, "Unterminated string constant");
2500
- var s = this.input.charCodeAt(this.pos);
2501
- if (s === e) break;
2502
- 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);
2503
- }
2504
- return t += this.input.slice(i, this.pos++), this.finishToken(a.string, t);
2505
- };
2506
- var Ut = {};
2507
- v.tryReadTemplateToken = function() {
2508
- this.inTemplateElement = true;
2509
- try {
2510
- this.readTmplToken();
2511
- } catch (e) {
2512
- if (e === Ut) this.readInvalidTemplateToken();
2513
- else throw e;
2514
- }
2515
- this.inTemplateElement = false;
2516
- };
2517
- v.invalidStringToken = function(e, t) {
2518
- if (this.inTemplateElement && this.options.ecmaVersion >= 9) throw Ut;
2519
- this.raise(e, t);
2520
- };
2521
- v.readTmplToken = function() {
2522
- for (var e = "", t = this.pos; ; ) {
2523
- this.pos >= this.input.length && this.raise(this.start, "Unterminated template");
2524
- var i = this.input.charCodeAt(this.pos);
2525
- 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));
2526
- if (i === 92) e += this.input.slice(t, this.pos), e += this.readEscapedChar(true), t = this.pos;
2527
- else if (Q(i)) {
2528
- switch (e += this.input.slice(t, this.pos), ++this.pos, i) {
2529
- case 13:
2530
- this.input.charCodeAt(this.pos) === 10 && ++this.pos;
2531
- case 10:
2532
- e += `
2533
- `;
2534
- break;
2535
- default:
2536
- e += String.fromCharCode(i);
2537
- break;
2538
- }
2539
- this.options.locations && (++this.curLine, this.lineStart = this.pos), t = this.pos;
2540
- } else ++this.pos;
2541
- }
2542
- };
2543
- v.readInvalidTemplateToken = function() {
2544
- for (; this.pos < this.input.length; this.pos++) switch (this.input[this.pos]) {
2545
- case "\\":
2546
- ++this.pos;
2547
- break;
2548
- case "$":
2549
- if (this.input[this.pos + 1] !== "{") break;
2550
- case "`":
2551
- return this.finishToken(a.invalidTemplate, this.input.slice(this.start, this.pos));
2552
- case "\r":
2553
- this.input[this.pos + 1] === `
2554
- ` && ++this.pos;
2555
- case `
2556
- `:
2557
- case "\u2028":
2558
- case "\u2029":
2559
- ++this.curLine, this.lineStart = this.pos + 1;
2560
- break;
2561
- }
2562
- this.raise(this.start, "Unterminated template");
2563
- };
2564
- v.readEscapedChar = function(e) {
2565
- var t = this.input.charCodeAt(++this.pos);
2566
- switch (++this.pos, t) {
2567
- case 110:
2568
- return `
2569
- `;
2570
- case 114:
2571
- return "\r";
2572
- case 120:
2573
- return String.fromCharCode(this.readHexChar(2));
2574
- case 117:
2575
- return U(this.readCodePoint());
2576
- case 116:
2577
- return " ";
2578
- case 98:
2579
- return "\b";
2580
- case 118:
2581
- return "\v";
2582
- case 102:
2583
- return "\f";
2584
- case 13:
2585
- this.input.charCodeAt(this.pos) === 10 && ++this.pos;
2586
- case 10:
2587
- return this.options.locations && (this.lineStart = this.pos, ++this.curLine), "";
2588
- case 56:
2589
- case 57:
2590
- if (this.strict && this.invalidStringToken(this.pos - 1, "Invalid escape sequence"), e) {
2591
- var i = this.pos - 1;
2592
- this.invalidStringToken(i, "Invalid escape sequence in template string");
2593
- }
2594
- default:
2595
- if (t >= 48 && t <= 55) {
2596
- var s = this.input.substr(this.pos - 1, 3).match(/^[0-7]+/)[0], r = parseInt(s, 8);
2597
- 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);
2598
- }
2599
- return Q(t) ? (this.options.locations && (this.lineStart = this.pos, ++this.curLine), "") : String.fromCharCode(t);
2600
- }
2601
- };
2602
- v.readHexChar = function(e) {
2603
- var t = this.pos, i = this.readInt(16, e);
2604
- return i === null && this.invalidStringToken(t, "Bad character escape sequence"), i;
2605
- };
2606
- v.readWord1 = function() {
2607
- this.containsEsc = false;
2608
- for (var e = "", t = true, i = this.pos, s = this.options.ecmaVersion >= 6; this.pos < this.input.length; ) {
2609
- var r = this.fullCharCodeAtPos();
2610
- if (H(r, s)) this.pos += r <= 65535 ? 1 : 2;
2611
- else if (r === 92) {
2612
- this.containsEsc = true, e += this.input.slice(i, this.pos);
2613
- var n = this.pos;
2614
- this.input.charCodeAt(++this.pos) !== 117 && this.invalidStringToken(this.pos, "Expecting Unicode escape sequence \\uXXXX"), ++this.pos;
2615
- var o = this.readCodePoint();
2616
- (t ? M : H)(o, s) || this.invalidStringToken(n, "Invalid Unicode escape"), e += U(o), i = this.pos;
2617
- } else break;
2618
- t = false;
2619
- }
2620
- return e + this.input.slice(i, this.pos);
2621
- };
2622
- v.readWord = function() {
2623
- var e = this.readWord1(), t = a.name;
2624
- return this.keywords.test(e) && (t = Oe[e]), this.finishToken(t, e);
2625
- };
2626
- var rs = "8.14.0";
2627
- T.acorn = { Parser: T, version: rs, defaultOptions: Ve, Position: ie, SourceLocation: xe, getLineInfo: ct, Node: ge, TokenType: S, tokTypes: a, keywordTypes: Oe, TokContext: D, tokContexts: _, isIdentifierChar: H, isIdentifierStart: M, Token: qe, isNewLine: Q, lineBreak: L, lineBreakG: wi, nonASCIIwhitespace: pt };
2628
- var ni = et(Je(), 1);
2629
- function hs(e, t) {
2630
- let i = new SyntaxError(e + " (" + t.loc.start.line + ":" + t.loc.start.column + ")");
2631
- return Object.assign(i, t);
2632
- }
2633
- var be = hs;
2634
- function cs(e) {
2635
- let t = [];
2636
- for (let i of e) try {
2637
- return i();
2638
- } catch (s) {
2639
- t.push(s);
2640
- }
2641
- throw Object.assign(new Error("All combinations failed"), { errors: t });
2642
- }
2643
- var Se = cs;
2644
- var ls = (e, t, i) => {
2645
- if (!(e && t == null)) return Array.isArray(t) || typeof t == "string" ? t[i < 0 ? t.length + i : i] : t.at(i);
2646
- };
2647
- var X = ls;
2648
- function fs(e) {
2649
- return Array.isArray(e) && e.length > 0;
2650
- }
2651
- var Wt = fs;
2652
- function O(e) {
2653
- var s, r, n;
2654
- let t = ((s = e.range) == null ? void 0 : s[0]) ?? e.start, i = (n = ((r = e.declaration) == null ? void 0 : r.decorators) ?? e.decorators) == null ? void 0 : n[0];
2655
- return i ? Math.min(O(i), t) : t;
2656
- }
2657
- function J(e) {
2658
- var t;
2659
- return ((t = e.range) == null ? void 0 : t[1]) ?? e.end;
2660
- }
2661
- function ds(e) {
2662
- let t = new Set(e);
2663
- return (i) => t.has(i == null ? void 0 : i.type);
2664
- }
2665
- var Xt = ds;
2666
- var ms = Xt(["Block", "CommentBlock", "MultiLine"]);
2667
- var oe = ms;
2668
- function xs(e) {
2669
- let t = `*${e.value}*`.split(`
2670
- `);
2671
- return t.length > 1 && t.every((i) => i.trimStart()[0] === "*");
2672
- }
2673
- var Ke = xs;
2674
- function ys(e) {
2675
- return oe(e) && e.value[0] === "*" && /@(?:type|satisfies)\b/u.test(e.value);
2676
- }
2677
- var zt = ys;
2678
- var ue = null;
2679
- function pe(e) {
2680
- if (ue !== null && typeof ue.property) {
2681
- let t = ue;
2682
- return ue = pe.prototype = null, t;
2683
- }
2684
- return ue = pe.prototype = e ?? /* @__PURE__ */ Object.create(null), new pe();
2685
- }
2686
- var gs = 10;
2687
- for (let e = 0; e <= gs; e++) pe();
2688
- function We(e) {
2689
- return pe(e);
2690
- }
2691
- function vs(e, t = "type") {
2692
- We(e);
2693
- function i(s) {
2694
- let r = s[t], n = e[r];
2695
- if (!Array.isArray(n)) throw Object.assign(new Error(`Missing visitor keys for '${r}'.`), { node: s });
2696
- return n;
2697
- }
2698
- return i;
2699
- }
2700
- var Ht = vs;
2701
- 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: ["body", "test"], EmptyStatement: [], ExpressionStatement: ["expression"], File: ["program"], ForInStatement: ["left", "right", "body"], ForStatement: ["init", "test", "update", "body"], FunctionDeclaration: ["id", "typeParameters", "params", "returnType", "body", "predicate"], FunctionExpression: ["id", "typeParameters", "params", "returnType", "body"], 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: ["decorators", "key", "typeParameters", "params", "returnType", "body"], 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: ["typeParameters", "params", "returnType", "body", "predicate"], ClassBody: ["body"], ClassExpression: ["decorators", "id", "typeParameters", "superClass", "superTypeParameters", "mixins", "implements", "body", "superTypeArguments"], ClassDeclaration: ["decorators", "id", "typeParameters", "superClass", "superTypeParameters", "mixins", "implements", "body", "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: ["imported", "local"], ImportExpression: ["source", "options"], MetaProperty: ["meta", "property"], ClassMethod: ["decorators", "key", "typeParameters", "params", "returnType", "body"], ObjectPattern: ["properties", "typeAnnotation", "decorators"], SpreadElement: ["argument"], Super: [], TaggedTemplateExpression: ["tag", "typeParameters", "quasi", "typeArguments"], TemplateElement: [], TemplateLiteral: ["quasis", "expressions"], YieldExpression: ["argument"], AwaitExpression: ["argument"], BigIntLiteral: [], ExportNamespaceSpecifier: ["exported"], OptionalMemberExpression: ["object", "property"], OptionalCallExpression: ["callee", "arguments", "typeParameters", "typeArguments"], ClassProperty: ["decorators", "key", "typeAnnotation", "value", "variance"], ClassAccessorProperty: ["decorators", "key", "typeAnnotation", "value"], ClassPrivateProperty: ["decorators", "key", "typeAnnotation", "value", "variance"], ClassPrivateMethod: ["decorators", "key", "typeParameters", "params", "returnType", "body"], 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", "attributes"], DeclareExportAllDeclaration: ["source", "attributes"], 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: ["variance", "id", "key", "value"], ObjectTypeProperty: ["key", "value", "variance"], ObjectTypeSpreadProperty: ["argument"], OpaqueType: ["id", "typeParameters", "supertype", "impltype"], QualifiedTypeIdentifier: ["qualification", "id"], 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"], 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", "nameType", "typeAnnotation"], 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"] };
2702
- var bs = Ht(Qt);
2703
- var Yt = bs;
2704
- function Xe(e, t) {
2705
- if (!(e !== null && typeof e == "object")) return e;
2706
- if (Array.isArray(e)) {
2707
- for (let s = 0; s < e.length; s++) e[s] = Xe(e[s], t);
2708
- return e;
2709
- }
2710
- let i = Yt(e);
2711
- for (let s = 0; s < i.length; s++) e[i[s]] = Xe(e[i[s]], t);
2712
- return t(e) || e;
2713
- }
2714
- var Ce = Xe;
2715
- function Ss(e, t) {
2716
- let { parser: i, text: s } = t;
2717
- if (e.type === "File" && e.program.interpreter) {
2718
- let { program: { interpreter: r }, comments: n } = e;
2719
- delete e.program.interpreter, n.unshift(r);
2720
- }
2721
- if (i === "babel") {
2722
- let r = /* @__PURE__ */ new Set();
2723
- e = Ce(e, (n) => {
2724
- var o;
2725
- (o = n.leadingComments) != null && o.some(zt) && r.add(O(n));
2726
- }), e = Ce(e, (n) => {
2727
- if (n.type === "ParenthesizedExpression") {
2728
- let { expression: o } = n;
2729
- if (o.type === "TypeCastExpression") return o.range = [...n.range], o;
2730
- let u = O(n);
2731
- if (!r.has(u)) return o.extra = { ...o.extra, parenthesized: true }, o;
2732
- }
2733
- });
2734
- }
2735
- if (e = Ce(e, (r) => {
2736
- switch (r.type) {
2737
- case "LogicalExpression":
2738
- if (Zt(r)) return ze(r);
2739
- break;
2740
- case "VariableDeclaration": {
2741
- let n = X(false, r.declarations, -1);
2742
- n != null && n.init && s[J(n)] !== ";" && (r.range = [O(r), J(n)]);
2743
- break;
2744
- }
2745
- case "TSParenthesizedType":
2746
- return r.typeAnnotation;
2747
- case "TSTypeParameter":
2748
- if (typeof r.name == "string") {
2749
- let n = O(r);
2750
- r.name = { type: "Identifier", name: r.name, range: [n, n + r.name.length] };
2751
- }
2752
- break;
2753
- case "TopicReference":
2754
- e.extra = { ...e.extra, __isUsingHackPipeline: true };
2755
- break;
2756
- case "TSUnionType":
2757
- case "TSIntersectionType":
2758
- if (r.types.length === 1) return r.types[0];
2759
- break;
2760
- }
2761
- }), Wt(e.comments)) {
2762
- let r = X(false, e.comments, -1);
2763
- for (let n = e.comments.length - 2; n >= 0; n--) {
2764
- let o = e.comments[n];
2765
- J(o) === O(r) && oe(o) && oe(r) && Ke(o) && Ke(r) && (e.comments.splice(n + 1, 1), o.value += "*//*" + r.value, o.range = [O(o), J(r)]), r = o;
2766
- }
2767
- }
2768
- return e.type === "Program" && (e.range = [0, s.length]), e;
2769
- }
2770
- function Zt(e) {
2771
- return e.type === "LogicalExpression" && e.right.type === "LogicalExpression" && e.operator === e.right.operator;
2772
- }
2773
- function ze(e) {
2774
- return Zt(e) ? ze({ type: "LogicalExpression", operator: e.operator, left: ze({ type: "LogicalExpression", operator: e.operator, left: e.left, right: e.right.left, range: [O(e.left), J(e.right.left)] }), right: e.right.right, range: [O(e), J(e)] }) : e;
2775
- }
2776
- var _e = Ss;
2777
- var Cs = (e, t, i, s) => {
2778
- if (!(e && t == null)) return t.replaceAll ? t.replaceAll(i, s) : i.global ? t.replace(i, s) : t.split(i).join(s);
2779
- };
2780
- var ee = Cs;
2781
- var _s = /\*\/$/;
2782
- var Ts = /^\/\*\*?/;
2783
- var ks = /^\s*(\/\*\*?(.|\r?\n)*?\*\/)/;
2784
- var Es = /(^|\s+)\/\/([^\n\r]*)/g;
2785
- var $t = /^(\r?\n)+/;
2786
- var ws = /(?:^|\r?\n) *(@[^\n\r]*?) *\r?\n *(?![^\n\r@]*\/\/[^]*)([^\s@][^\n\r@]+?) *\r?\n/g;
2787
- var ei = /(?:^|\r?\n) *@(\S+) *([^\n\r]*)/g;
2788
- var As = /(\r?\n|^) *\* ?/g;
2789
- var Ps = [];
2790
- function ti(e) {
2791
- let t = e.match(ks);
2792
- return t ? t[0].trimStart() : "";
2793
- }
2794
- function ii(e) {
2795
- let t = `
2796
- `;
2797
- e = ee(false, e.replace(Ts, "").replace(_s, ""), As, "$1");
2798
- let i = "";
2799
- for (; i !== e; ) i = e, e = ee(false, e, ws, `${t}$1 $2${t}`);
2800
- e = e.replace($t, "").trimEnd();
2801
- let s = /* @__PURE__ */ Object.create(null), r = ee(false, e, ei, "").replace($t, "").trimEnd(), n;
2802
- for (; n = ei.exec(e); ) {
2803
- let o = ee(false, n[2], Es, "");
2804
- if (typeof s[n[1]] == "string" || Array.isArray(s[n[1]])) {
2805
- let u = s[n[1]];
2806
- s[n[1]] = [...Ps, ...Array.isArray(u) ? u : [u], o];
2807
- } else s[n[1]] = o;
2808
- }
2809
- return { comments: r, pragmas: s };
2810
- }
2811
- function Is(e) {
2812
- if (!e.startsWith("#!")) return "";
2813
- let t = e.indexOf(`
2814
- `);
2815
- return t === -1 ? e : e.slice(0, t);
2816
- }
2817
- var si = Is;
2818
- function Ns(e) {
2819
- let t = si(e);
2820
- t && (e = e.slice(t.length + 1));
2821
- let i = ti(e), { pragmas: s, comments: r } = ii(i);
2822
- return { shebang: t, text: e, pragmas: s, comments: r };
2823
- }
2824
- function ri(e) {
2825
- let { pragmas: t } = Ns(e);
2826
- return Object.prototype.hasOwnProperty.call(t, "prettier") || Object.prototype.hasOwnProperty.call(t, "format");
2827
- }
2828
- function Vs(e) {
2829
- return e = typeof e == "function" ? { parse: e } : e, { astFormat: "estree", hasPragma: ri, locStart: O, locEnd: J, ...e };
2830
- }
2831
- var Te = Vs;
2832
- function Ls(e) {
2833
- let { filepath: t } = e;
2834
- if (t) {
2835
- if (t = t.toLowerCase(), t.endsWith(".cjs") || t.endsWith(".cts")) return "script";
2836
- if (t.endsWith(".mjs") || t.endsWith(".mts")) return "module";
2837
- }
2838
- }
2839
- var ke = Ls;
2840
- var Rs = { ecmaVersion: "latest", allowReturnOutsideFunction: true, allowSuperOutsideMethod: true, locations: true, ranges: true };
2841
- function Os(e) {
2842
- let { message: t, loc: i } = e;
2843
- if (!i) return e;
2844
- let { line: s, column: r } = i;
2845
- return be(t.replace(/ \(\d+:\d+\)$/u, ""), { loc: { start: { line: s, column: r + 1 } }, cause: e });
2846
- }
2847
- var ai;
2848
- var Bs = () => (ai ?? (ai = T.extend((0, ni.default)())), ai);
2849
- function Ds(e, t) {
2850
- let i = Bs(), s = [], r = [], n = i.parse(e, { ...Rs, sourceType: t, allowImportExportEverywhere: t === "module", onComment: s, onToken: r });
2851
- return n.comments = s, n.tokens = r, n;
2852
- }
2853
- function Fs(e, t = {}) {
2854
- let i = ke(t), s = (i ? [i] : ["module", "script"]).map((n) => () => Ds(e, n)), r;
2855
- try {
2856
- r = Se(s);
2857
- } catch ({ errors: [n] }) {
2858
- throw Os(n);
2859
- }
2860
- return _e(r, { text: e });
2861
- }
2862
- var oi = Te(Fs);
2863
- var ci = et(Je(), 1);
2864
- 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" };
2865
- function js(e, t) {
2866
- let i = e[0], s = X(false, e, -1), r = { type: E.Template, value: t.slice(i.start, s.end) };
2867
- 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;
2868
- }
2869
- function He(e, t) {
2870
- this._acornTokTypes = e, this._tokens = [], this._curlyBrace = null, this._code = t;
2871
- }
2872
- He.prototype = { constructor: He, translate(e, t) {
2873
- let i = e.type, s = this._acornTokTypes;
2874
- 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);
2875
- else if (i === s.privateId) e.type = E.PrivateIdentifier;
2876
- 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);
2877
- else if (i === s.jsxName) e.type = E.JSXIdentifier;
2878
- else if (i.label === "jsxText" || i === s.jsxAttrValueToken) e.type = E.JSXText;
2879
- 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;
2880
- else if (i === s.num) e.type = E.Numeric, e.value = this._code.slice(e.start, e.end);
2881
- 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);
2882
- else if (i === s.regexp) {
2883
- e.type = E.RegularExpression;
2884
- let r = e.value;
2885
- e.regex = { flags: r.flags, pattern: r.pattern }, e.value = `/${r.pattern}/${r.flags}`;
2886
- }
2887
- return e;
2888
- }, onToken(e, t) {
2889
- let i = this._acornTokTypes, s = t.tokens, r = this._tokens, n = () => {
2890
- s.push(js(this._tokens, this._code)), this._tokens = [];
2891
- };
2892
- if (e.type === i.eof) {
2893
- this._curlyBrace && s.push(this.translate(this._curlyBrace, t));
2894
- return;
2895
- }
2896
- if (e.type === i.backQuote) {
2897
- this._curlyBrace && (s.push(this.translate(this._curlyBrace, t)), this._curlyBrace = null), r.push(e), r.length > 1 && n();
2898
- return;
2899
- }
2900
- if (e.type === i.dollarBraceL) {
2901
- r.push(e), n();
2902
- return;
2903
- }
2904
- if (e.type === i.braceR) {
2905
- this._curlyBrace && s.push(this.translate(this._curlyBrace, t)), this._curlyBrace = e;
2906
- return;
2907
- }
2908
- if (e.type === i.template || e.type === i.invalidTemplate) {
2909
- this._curlyBrace && (r.push(this._curlyBrace), this._curlyBrace = null), r.push(e);
2910
- return;
2911
- }
2912
- this._curlyBrace && (s.push(this.translate(this._curlyBrace, t)), this._curlyBrace = null), s.push(this.translate(e, t));
2913
- } };
2914
- var ui = He;
2915
- var pi = [3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16];
2916
- function Ms() {
2917
- return X(false, pi, -1);
2918
- }
2919
- function Us(e = 5) {
2920
- let t = e === "latest" ? Ms() : e;
2921
- if (typeof t != "number") throw new Error(`ecmaVersion must be a number or "latest". Received value of type ${typeof e} instead.`);
2922
- if (t >= 2015 && (t -= 2009), !pi.includes(t)) throw new Error("Invalid ecmaVersion.");
2923
- return t;
2924
- }
2925
- function qs(e = "script") {
2926
- if (e === "script" || e === "module") return e;
2927
- if (e === "commonjs") return "script";
2928
- throw new Error("Invalid sourceType.");
2929
- }
2930
- function hi(e) {
2931
- let t = Us(e.ecmaVersion), i = qs(e.sourceType), s = e.range === true, r = e.loc === true;
2932
- if (t !== 3 && e.allowReserved) throw new Error("`allowReserved` is only supported when ecmaVersion is 3");
2933
- if (typeof e.allowReserved < "u" && typeof e.allowReserved != "boolean") throw new Error("`allowReserved`, when present, must be `true` or `false`");
2934
- let n = t === 3 ? e.allowReserved || "never" : false, o = e.ecmaFeatures || {}, u = e.sourceType === "commonjs" || !!o.globalReturn;
2935
- if (i === "module" && t < 6) throw new Error("sourceType 'module' is not supported when ecmaVersion < 2015. Consider adding `{ ecmaVersion: 2015 }` to the parser options.");
2936
- return Object.assign({}, e, { ecmaVersion: t, sourceType: i, ranges: s, locations: r, allowReserved: n, allowReturnOutsideFunction: u });
2937
- }
2938
- var z = Symbol("espree's internal state");
2939
- var Qe = Symbol("espree's esprimaFinishNode");
2940
- function Gs(e, t, i, s, r, n, o) {
2941
- let u;
2942
- e ? u = "Block" : o.slice(i, i + 2) === "#!" ? u = "Hashbang" : u = "Line";
2943
- let p = { type: u, value: t };
2944
- return typeof i == "number" && (p.start = i, p.end = s, p.range = [i, s]), typeof r == "object" && (p.loc = { start: r, end: n }), p;
2945
- }
2946
- var Ye = () => (e) => {
2947
- let t = Object.assign({}, e.acorn.tokTypes);
2948
- return e.acornJsx && Object.assign(t, e.acornJsx.tokTypes), class extends e {
2949
- constructor(s, r) {
2950
- (typeof s != "object" || s === null) && (s = {}), typeof r != "string" && !(r instanceof String) && (r = String(r));
2951
- 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: [] };
2952
- super({ ecmaVersion: o.ecmaVersion, sourceType: o.sourceType, ranges: o.ranges, locations: o.locations, allowReserved: o.allowReserved, allowReturnOutsideFunction: o.allowReturnOutsideFunction, onToken(f) {
2953
- p && p.onToken(f, d), f.type !== t.eof && (d.lastToken = f);
2954
- }, onComment(f, C, B, h, m, x) {
2955
- if (d.comments) {
2956
- let g = Gs(f, C, B, h, m, x, r);
2957
- d.comments.push(g);
2958
- }
2959
- } }, r), this[z] = d;
2960
- }
2961
- tokenize() {
2962
- do
2963
- this.next();
2964
- while (this.type !== t.eof);
2965
- this.next();
2966
- let s = this[z], r = s.tokens;
2967
- return s.comments && (r.comments = s.comments), r;
2968
- }
2969
- finishNode(...s) {
2970
- let r = super.finishNode(...s);
2971
- return this[Qe](r);
2972
- }
2973
- finishNodeAt(...s) {
2974
- let r = super.finishNodeAt(...s);
2975
- return this[Qe](r);
2976
- }
2977
- parse() {
2978
- let s = this[z], r = super.parse();
2979
- if (r.sourceType = s.originalSourceType, s.comments && (r.comments = s.comments), s.tokens && (r.tokens = s.tokens), r.body.length) {
2980
- let [n] = r.body;
2981
- r.range && (r.range[0] = n.range[0]), r.loc && (r.loc.start = n.loc.start), r.start = n.start;
2982
- }
2983
- 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[z].templateElements.forEach((n) => {
2984
- let u = n.tail ? 1 : 2;
2985
- 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);
2986
- }), r;
2987
- }
2988
- parseTopLevel(s) {
2989
- return this[z].impliedStrict && (this.strict = true), super.parseTopLevel(s);
2990
- }
2991
- raise(s, r) {
2992
- let n = e.acorn.getLineInfo(this.input, s), o = new SyntaxError(r);
2993
- throw o.index = s, o.lineNumber = n.line, o.column = n.column + 1, o;
2994
- }
2995
- raiseRecoverable(s, r) {
2996
- this.raise(s, r);
2997
- }
2998
- unexpected(s) {
2999
- let r = "Unexpected token";
3000
- if (s != null) {
3001
- if (this.pos = s, this.options.locations) for (; this.pos < this.lineStart; ) this.lineStart = this.input.lastIndexOf(`
3002
- `, this.lineStart - 2) + 1, --this.curLine;
3003
- this.nextToken();
3004
- }
3005
- this.end > this.start && (r += ` ${this.input.slice(this.start, this.end)}`), this.raise(this.start, r);
3006
- }
3007
- jsx_readString(s) {
3008
- let r = super.jsx_readString(s);
3009
- return this.type === t.string && (this[z].jsxAttrValueToken = true), r;
3010
- }
3011
- [Qe](s) {
3012
- return s.type === "TemplateElement" && this[z].templateElements.push(s), s.type.includes("Function") && !s.generator && (s.generator = false), s;
3013
- }
3014
- };
3015
- };
3016
- var Js = { _regular: null, _jsx: null, get regular() {
3017
- return this._regular === null && (this._regular = T.extend(Ye())), this._regular;
3018
- }, get jsx() {
3019
- return this._jsx === null && (this._jsx = T.extend((0, ci.default)(), Ye())), this._jsx;
3020
- }, get(e) {
3021
- return !!(e && e.ecmaFeatures && e.ecmaFeatures.jsx) ? this.jsx : this.regular;
3022
- } };
3023
- function li(e, t) {
3024
- let i = Js.get(t);
3025
- return new i(t, e).parse();
3026
- }
3027
- var Ks = { ecmaVersion: "latest", range: true, loc: true, comment: true, tokens: true, sourceType: "module", ecmaFeatures: { jsx: true, globalReturn: true, impliedStrict: false } };
3028
- function Ws(e) {
3029
- let { message: t, lineNumber: i, column: s } = e;
3030
- return typeof i != "number" ? e : be(t, { loc: { start: { line: i, column: s } }, cause: e });
3031
- }
3032
- function Xs(e, t = {}) {
3033
- let i = ke(t), s = (i ? [i] : ["module", "script"]).map((n) => () => li(e, { ...Ks, sourceType: n })), r;
3034
- try {
3035
- r = Se(s);
3036
- } catch ({ errors: [n] }) {
3037
- throw Ws(n);
3038
- }
3039
- return _e(r, { text: e });
3040
- }
3041
- var fi = Te(Xs);
3042
- var zs = { acorn: oi, espree: fi };
3043
- var Ca = Ze;
3044
- export {
3045
- Ca as default,
3046
- zs as parsers
3047
- };