@html-validate/commitlint-config 3.4.1 → 3.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commitlint.js +541 -474
- package/dist/formatter.js +2 -2
- package/package.json +1 -1
package/dist/commitlint.js
CHANGED
|
@@ -98,6 +98,7 @@ var require_re = __commonJS({
|
|
|
98
98
|
var re = exports.re = [];
|
|
99
99
|
var safeRe = exports.safeRe = [];
|
|
100
100
|
var src = exports.src = [];
|
|
101
|
+
var safeSrc = exports.safeSrc = [];
|
|
101
102
|
var t = exports.t = {};
|
|
102
103
|
var R2 = 0;
|
|
103
104
|
var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
|
|
@@ -118,6 +119,7 @@ var require_re = __commonJS({
|
|
|
118
119
|
debug(name, index, value2);
|
|
119
120
|
t[name] = index;
|
|
120
121
|
src[index] = value2;
|
|
122
|
+
safeSrc[index] = safe;
|
|
121
123
|
re[index] = new RegExp(value2, isGlobal ? "g" : void 0);
|
|
122
124
|
safeRe[index] = new RegExp(safe, isGlobal ? "g" : void 0);
|
|
123
125
|
};
|
|
@@ -214,7 +216,7 @@ var require_semver = __commonJS({
|
|
|
214
216
|
"node_modules/@commitlint/is-ignored/node_modules/semver/classes/semver.js"(exports, module) {
|
|
215
217
|
var debug = require_debug();
|
|
216
218
|
var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants();
|
|
217
|
-
var { safeRe: re, t } = require_re();
|
|
219
|
+
var { safeRe: re, safeSrc: src, t } = require_re();
|
|
218
220
|
var parseOptions = require_parse_options();
|
|
219
221
|
var { compareIdentifiers } = require_identifiers();
|
|
220
222
|
var SemVer = class _SemVer {
|
|
@@ -354,6 +356,18 @@ var require_semver = __commonJS({
|
|
|
354
356
|
// preminor will bump the version up to the next minor release, and immediately
|
|
355
357
|
// down to pre-release. premajor and prepatch work the same way.
|
|
356
358
|
inc(release, identifier, identifierBase) {
|
|
359
|
+
if (release.startsWith("pre")) {
|
|
360
|
+
if (!identifier && identifierBase === false) {
|
|
361
|
+
throw new Error("invalid increment argument: identifier is empty");
|
|
362
|
+
}
|
|
363
|
+
if (identifier) {
|
|
364
|
+
const r = new RegExp(`^${this.options.loose ? src[t.PRERELEASELOOSE] : src[t.PRERELEASE]}$`);
|
|
365
|
+
const match2 = `-${identifier}`.match(r);
|
|
366
|
+
if (!match2 || match2[1] !== identifier) {
|
|
367
|
+
throw new Error(`invalid identifier: ${identifier}`);
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
}
|
|
357
371
|
switch (release) {
|
|
358
372
|
case "premajor":
|
|
359
373
|
this.prerelease.length = 0;
|
|
@@ -381,6 +395,12 @@ var require_semver = __commonJS({
|
|
|
381
395
|
}
|
|
382
396
|
this.inc("pre", identifier, identifierBase);
|
|
383
397
|
break;
|
|
398
|
+
case "release":
|
|
399
|
+
if (this.prerelease.length === 0) {
|
|
400
|
+
throw new Error(`version ${this.raw} is not a prerelease`);
|
|
401
|
+
}
|
|
402
|
+
this.prerelease.length = 0;
|
|
403
|
+
break;
|
|
384
404
|
case "major":
|
|
385
405
|
if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) {
|
|
386
406
|
this.major++;
|
|
@@ -406,9 +426,6 @@ var require_semver = __commonJS({
|
|
|
406
426
|
// 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.
|
|
407
427
|
case "pre": {
|
|
408
428
|
const base = Number(identifierBase) ? 1 : 0;
|
|
409
|
-
if (!identifier && identifierBase === false) {
|
|
410
|
-
throw new Error("invalid increment argument: identifier is empty");
|
|
411
|
-
}
|
|
412
429
|
if (this.prerelease.length === 0) {
|
|
413
430
|
this.prerelease = [base];
|
|
414
431
|
} else {
|
|
@@ -543,13 +560,12 @@ var require_diff = __commonJS({
|
|
|
543
560
|
if (!lowVersion.patch && !lowVersion.minor) {
|
|
544
561
|
return "major";
|
|
545
562
|
}
|
|
546
|
-
if (highVersion
|
|
563
|
+
if (lowVersion.compareMain(highVersion) === 0) {
|
|
564
|
+
if (lowVersion.minor && !lowVersion.patch) {
|
|
565
|
+
return "minor";
|
|
566
|
+
}
|
|
547
567
|
return "patch";
|
|
548
568
|
}
|
|
549
|
-
if (highVersion.minor) {
|
|
550
|
-
return "minor";
|
|
551
|
-
}
|
|
552
|
-
return "major";
|
|
553
569
|
}
|
|
554
570
|
const prefix2 = highHasPre ? "pre" : "";
|
|
555
571
|
if (v1.major !== v2.major) {
|
|
@@ -13059,7 +13075,7 @@ var require_import_fresh = __commonJS({
|
|
|
13059
13075
|
}
|
|
13060
13076
|
delete __require.cache[filePath];
|
|
13061
13077
|
const parent = __require.cache[parentPath];
|
|
13062
|
-
return parent === void 0 ? __require(filePath) : parent.require(filePath);
|
|
13078
|
+
return parent === void 0 || parent.require === void 0 ? __require(filePath) : parent.require(filePath);
|
|
13063
13079
|
};
|
|
13064
13080
|
}
|
|
13065
13081
|
});
|
|
@@ -21164,7 +21180,7 @@ var require_typescript = __commonJS({
|
|
|
21164
21180
|
});
|
|
21165
21181
|
module2.exports = __toCommonJS(typescript_exports);
|
|
21166
21182
|
var versionMajorMinor = "5.7";
|
|
21167
|
-
var version = "5.7.
|
|
21183
|
+
var version = "5.7.3";
|
|
21168
21184
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
21169
21185
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
21170
21186
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -33841,6 +33857,7 @@ ${lanes.join("\n")}
|
|
|
33841
33857
|
}
|
|
33842
33858
|
var targetToLibMap = /* @__PURE__ */ new Map([
|
|
33843
33859
|
[99, "lib.esnext.full.d.ts"],
|
|
33860
|
+
[11, "lib.es2024.full.d.ts"],
|
|
33844
33861
|
[10, "lib.es2023.full.d.ts"],
|
|
33845
33862
|
[9, "lib.es2022.full.d.ts"],
|
|
33846
33863
|
[8, "lib.es2021.full.d.ts"],
|
|
@@ -33856,6 +33873,7 @@ ${lanes.join("\n")}
|
|
|
33856
33873
|
const target = getEmitScriptTarget(options);
|
|
33857
33874
|
switch (target) {
|
|
33858
33875
|
case 99:
|
|
33876
|
+
case 11:
|
|
33859
33877
|
case 10:
|
|
33860
33878
|
case 9:
|
|
33861
33879
|
case 8:
|
|
@@ -73996,6 +74014,12 @@ ${lanes.join("\n")}
|
|
|
73996
74014
|
/*isReadonly*/
|
|
73997
74015
|
true
|
|
73998
74016
|
);
|
|
74017
|
+
var anyBaseTypeIndexInfo = createIndexInfo(
|
|
74018
|
+
stringType,
|
|
74019
|
+
anyType,
|
|
74020
|
+
/*isReadonly*/
|
|
74021
|
+
false
|
|
74022
|
+
);
|
|
73999
74023
|
var iterationTypesCache = /* @__PURE__ */ new Map();
|
|
74000
74024
|
var noIterationTypes = {
|
|
74001
74025
|
get yieldType() {
|
|
@@ -77717,7 +77741,7 @@ ${lanes.join("\n")}
|
|
|
77717
77741
|
return true;
|
|
77718
77742
|
}
|
|
77719
77743
|
if (requiresAddingUndefined && annotationType) {
|
|
77720
|
-
annotationType =
|
|
77744
|
+
annotationType = addOptionality(annotationType, !isParameter(node));
|
|
77721
77745
|
}
|
|
77722
77746
|
return !!annotationType && typeNodeIsEquivalentToType(node, type, annotationType) && existingTypeNodeIsNotReferenceOrIsReferenceWithCompatibleTypeArgumentCount(existing, type);
|
|
77723
77747
|
}
|
|
@@ -84590,12 +84614,7 @@ ${lanes.join("\n")}
|
|
|
84590
84614
|
1
|
|
84591
84615
|
/* Construct */
|
|
84592
84616
|
));
|
|
84593
|
-
const inheritedIndexInfos = instantiatedBaseType !== anyType ? getIndexInfosOfType(instantiatedBaseType) : [
|
|
84594
|
-
stringType,
|
|
84595
|
-
anyType,
|
|
84596
|
-
/*isReadonly*/
|
|
84597
|
-
false
|
|
84598
|
-
)];
|
|
84617
|
+
const inheritedIndexInfos = instantiatedBaseType !== anyType ? getIndexInfosOfType(instantiatedBaseType) : [anyBaseTypeIndexInfo];
|
|
84599
84618
|
indexInfos = concatenate(indexInfos, filter(inheritedIndexInfos, (info) => !findIndexInfo(indexInfos, info.keyType)));
|
|
84600
84619
|
}
|
|
84601
84620
|
}
|
|
@@ -85174,12 +85193,7 @@ ${lanes.join("\n")}
|
|
|
85174
85193
|
members = createSymbolTable(getNamedOrIndexSignatureMembers(members));
|
|
85175
85194
|
addInheritedMembers(members, getPropertiesOfType(baseConstructorType));
|
|
85176
85195
|
} else if (baseConstructorType === anyType) {
|
|
85177
|
-
baseConstructorIndexInfo =
|
|
85178
|
-
stringType,
|
|
85179
|
-
anyType,
|
|
85180
|
-
/*isReadonly*/
|
|
85181
|
-
false
|
|
85182
|
-
);
|
|
85196
|
+
baseConstructorIndexInfo = anyBaseTypeIndexInfo;
|
|
85183
85197
|
}
|
|
85184
85198
|
}
|
|
85185
85199
|
const indexSymbol = getIndexSymbolFromSymbolTable(members);
|
|
@@ -99337,12 +99351,13 @@ ${lanes.join("\n")}
|
|
|
99337
99351
|
const jsxFactoryRefErr = diagnostics && compilerOptions.jsx === 2 ? Diagnostics.This_JSX_tag_requires_0_to_be_in_scope_but_it_could_not_be_found : void 0;
|
|
99338
99352
|
const jsxFactoryNamespace = getJsxNamespace(node);
|
|
99339
99353
|
const jsxFactoryLocation = isJsxOpeningLikeElement(node) ? node.tagName : node;
|
|
99354
|
+
const shouldFactoryRefErr = compilerOptions.jsx !== 1 && compilerOptions.jsx !== 3;
|
|
99340
99355
|
let jsxFactorySym;
|
|
99341
99356
|
if (!(isJsxOpeningFragment(node) && jsxFactoryNamespace === "null")) {
|
|
99342
99357
|
jsxFactorySym = resolveName(
|
|
99343
99358
|
jsxFactoryLocation,
|
|
99344
99359
|
jsxFactoryNamespace,
|
|
99345
|
-
|
|
99360
|
+
shouldFactoryRefErr ? 111551 : 111551 & ~384,
|
|
99346
99361
|
jsxFactoryRefErr,
|
|
99347
99362
|
/*isUse*/
|
|
99348
99363
|
true
|
|
@@ -99361,7 +99376,7 @@ ${lanes.join("\n")}
|
|
|
99361
99376
|
resolveName(
|
|
99362
99377
|
jsxFactoryLocation,
|
|
99363
99378
|
localJsxNamespace,
|
|
99364
|
-
|
|
99379
|
+
shouldFactoryRefErr ? 111551 : 111551 & ~384,
|
|
99365
99380
|
jsxFactoryRefErr,
|
|
99366
99381
|
/*isUse*/
|
|
99367
99382
|
true
|
|
@@ -103125,6 +103140,13 @@ ${lanes.join("\n")}
|
|
|
103125
103140
|
return getIntersectionType(x2);
|
|
103126
103141
|
}
|
|
103127
103142
|
function reportNonexistentProperty(propNode, containingType, isUncheckedJS) {
|
|
103143
|
+
const links = getNodeLinks(propNode);
|
|
103144
|
+
const cache2 = links.nonExistentPropCheckCache || (links.nonExistentPropCheckCache = /* @__PURE__ */ new Set());
|
|
103145
|
+
const key = `${getTypeId(containingType)}|${isUncheckedJS}`;
|
|
103146
|
+
if (cache2.has(key)) {
|
|
103147
|
+
return;
|
|
103148
|
+
}
|
|
103149
|
+
cache2.add(key);
|
|
103128
103150
|
let errorInfo;
|
|
103129
103151
|
let relatedInfo;
|
|
103130
103152
|
if (!isPrivateIdentifier(propNode) && containingType.flags & 1048576 && !(containingType.flags & 402784252)) {
|
|
@@ -105280,12 +105302,14 @@ ${lanes.join("\n")}
|
|
|
105280
105302
|
const sourceFileLinks = getNodeLinks(getSourceFileOfNode(node));
|
|
105281
105303
|
if (sourceFileLinks.jsxFragmentType !== void 0) return sourceFileLinks.jsxFragmentType;
|
|
105282
105304
|
const jsxFragmentFactoryName = getJsxNamespace(node);
|
|
105283
|
-
|
|
105305
|
+
const shouldResolveFactoryReference = (compilerOptions.jsx === 2 || compilerOptions.jsxFragmentFactory !== void 0) && jsxFragmentFactoryName !== "null";
|
|
105306
|
+
if (!shouldResolveFactoryReference) return sourceFileLinks.jsxFragmentType = anyType;
|
|
105307
|
+
const shouldModuleRefErr = compilerOptions.jsx !== 1 && compilerOptions.jsx !== 3;
|
|
105284
105308
|
const jsxFactoryRefErr = diagnostics ? Diagnostics.Using_JSX_fragments_requires_fragment_factory_0_to_be_in_scope_but_it_could_not_be_found : void 0;
|
|
105285
105309
|
const jsxFactorySymbol = getJsxNamespaceContainerForImplicitImport(node) ?? resolveName(
|
|
105286
105310
|
node,
|
|
105287
105311
|
jsxFragmentFactoryName,
|
|
105288
|
-
|
|
105312
|
+
shouldModuleRefErr ? 111551 : 111551 & ~384,
|
|
105289
105313
|
/*nameNotFoundMessage*/
|
|
105290
105314
|
jsxFactoryRefErr,
|
|
105291
105315
|
/*isUse*/
|
|
@@ -108057,7 +108081,9 @@ ${lanes.join("\n")}
|
|
|
108057
108081
|
switch (node.kind) {
|
|
108058
108082
|
case 223:
|
|
108059
108083
|
case 213:
|
|
108084
|
+
case 215:
|
|
108060
108085
|
case 212:
|
|
108086
|
+
case 236:
|
|
108061
108087
|
case 214:
|
|
108062
108088
|
case 211:
|
|
108063
108089
|
case 229:
|
|
@@ -108073,6 +108099,8 @@ ${lanes.join("\n")}
|
|
|
108073
108099
|
case 56:
|
|
108074
108100
|
case 77:
|
|
108075
108101
|
return 3;
|
|
108102
|
+
case 28:
|
|
108103
|
+
return getSyntacticNullishnessSemantics(node.right);
|
|
108076
108104
|
}
|
|
108077
108105
|
return 2;
|
|
108078
108106
|
case 227:
|
|
@@ -114679,7 +114707,7 @@ ${lanes.join("\n")}
|
|
|
114679
114707
|
}
|
|
114680
114708
|
}
|
|
114681
114709
|
}
|
|
114682
|
-
if (isOnlyImportableAsDefault(node.moduleSpecifier, resolvedModule) && !hasTypeJsonImportAttribute(node)) {
|
|
114710
|
+
if (!importClause.isTypeOnly && moduleKind === 199 && isOnlyImportableAsDefault(node.moduleSpecifier, resolvedModule) && !hasTypeJsonImportAttribute(node)) {
|
|
114683
114711
|
error2(node.moduleSpecifier, Diagnostics.Importing_a_JSON_file_into_an_ECMAScript_module_requires_a_type_Colon_json_import_attribute_when_module_is_set_to_0, ModuleKind[moduleKind]);
|
|
114684
114712
|
}
|
|
114685
114713
|
} else if (noUncheckedSideEffectImports && !importClause) {
|
|
@@ -117145,6 +117173,7 @@ ${lanes.join("\n")}
|
|
|
117145
117173
|
result || (result = []);
|
|
117146
117174
|
for (const info of infoList) {
|
|
117147
117175
|
if (info.declaration) continue;
|
|
117176
|
+
if (info === anyBaseTypeIndexInfo) continue;
|
|
117148
117177
|
const node = nodeBuilder.indexInfoToIndexSignatureDeclaration(info, enclosing, flags, internalFlags, tracker);
|
|
117149
117178
|
if (node && infoList === staticInfos) {
|
|
117150
117179
|
(node.modifiers || (node.modifiers = factory.createNodeArray())).unshift(factory.createModifier(
|
|
@@ -164910,9 +164939,9 @@ ${lanes.join("\n")}
|
|
|
164910
164939
|
}
|
|
164911
164940
|
if (!result && node.kind === 303) {
|
|
164912
164941
|
const initializer = node.initializer;
|
|
164913
|
-
const
|
|
164914
|
-
if (
|
|
164915
|
-
result = serializeExistingTypeNode(
|
|
164942
|
+
const assertionNode = isJSDocTypeAssertion(initializer) ? getJSDocTypeAssertionType(initializer) : initializer.kind === 234 || initializer.kind === 216 ? initializer.type : void 0;
|
|
164943
|
+
if (assertionNode && !isConstTypeReference(assertionNode) && resolver.canReuseTypeNodeAnnotation(context, node, assertionNode, symbol)) {
|
|
164944
|
+
result = serializeExistingTypeNode(assertionNode, context);
|
|
164916
164945
|
}
|
|
164917
164946
|
}
|
|
164918
164947
|
return result ?? inferTypeOfDeclaration(
|
|
@@ -231685,7 +231714,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
231685
231714
|
const lastChar = path14[path14.length - 1];
|
|
231686
231715
|
return "/" === lastChar || "\\" === lastChar;
|
|
231687
231716
|
}
|
|
231688
|
-
const package_namespaceObject = { rE: "2.4.
|
|
231717
|
+
const package_namespaceObject = { rE: "2.4.2" }, external_node_crypto_namespaceObject = __require("node:crypto"), dist_r = /* @__PURE__ */ Object.create(null), dist_i = (e) => globalThis.process?.env || globalThis.Deno?.env.toObject() || globalThis.__env__ || (e ? dist_r : globalThis), dist_s = new Proxy(dist_r, { get: (e, o) => dist_i()[o] ?? dist_r[o], has: (e, o) => o in dist_i() || o in dist_r, set: (e, o, E) => (dist_i(true)[o] = E, true), deleteProperty(e, o) {
|
|
231689
231718
|
if (!o) return false;
|
|
231690
231719
|
return delete dist_i(true)[o], true;
|
|
231691
231720
|
}, ownKeys() {
|
|
@@ -231843,7 +231872,10 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
231843
231872
|
if (ext && !ctx.opts.extensions.includes(ext)) return debug(ctx, "[native]", "[unknown]", opts.async ? "[import]" : "[require]", filename), nativeImportOrRequire(ctx, filename, opts.async);
|
|
231844
231873
|
if (ctx.isNativeRe.test(filename)) return debug(ctx, "[native]", opts.async ? "[import]" : "[require]", filename), nativeImportOrRequire(ctx, filename, opts.async);
|
|
231845
231874
|
if (cache3[filename]) return jitiInteropDefault(ctx, cache3[filename]?.exports);
|
|
231846
|
-
if (ctx.opts.moduleCache
|
|
231875
|
+
if (ctx.opts.moduleCache) {
|
|
231876
|
+
const cacheEntry = ctx.nativeRequire.cache[filename];
|
|
231877
|
+
if (cacheEntry?.loaded) return jitiInteropDefault(ctx, cacheEntry.exports);
|
|
231878
|
+
}
|
|
231847
231879
|
const source = (0, external_node_fs_namespaceObject.readFileSync)(filename, "utf8");
|
|
231848
231880
|
return eval_evalModule(ctx, source, { id, filename, ext, cache: cache3, async: opts.async });
|
|
231849
231881
|
}
|
|
@@ -231859,7 +231891,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
231859
231891
|
`;
|
|
231860
231892
|
let cacheName = `${basename2(pathe_ff20891b_dirname(topts.filename))}-${function(path14) {
|
|
231861
231893
|
return path14.match(FILENAME_RE)?.[2];
|
|
231862
|
-
}(topts.filename)}` + (topts.interopDefault ? ".i" : "") + `.${md5(topts.filename)}` + (topts.async ? ".mjs" : ".cjs");
|
|
231894
|
+
}(topts.filename)}` + (ctx.opts.sourceMaps ? "+map" : "") + (topts.interopDefault ? ".i" : "") + `.${md5(topts.filename)}` + (topts.async ? ".mjs" : ".cjs");
|
|
231863
231895
|
topts.jsx && topts.filename.endsWith("x") && (cacheName += "x");
|
|
231864
231896
|
const cacheDir = ctx.opts.fsCache, cacheFilePath = join(cacheDir, cacheName);
|
|
231865
231897
|
if ((0, external_node_fs_namespaceObject.existsSync)(cacheFilePath)) {
|
|
@@ -232061,7 +232093,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
232061
232093
|
return new SourceMap(traceMappings(tree), opts);
|
|
232062
232094
|
}
|
|
232063
232095
|
return remapping;
|
|
232064
|
-
}(__webpack_require__2("./node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js"), __webpack_require__2("./node_modules/.pnpm/@jridgewell+gen-mapping@0.3.
|
|
232096
|
+
}(__webpack_require__2("./node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js"), __webpack_require__2("./node_modules/.pnpm/@jridgewell+gen-mapping@0.3.8/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js"));
|
|
232065
232097
|
}, "./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/files lazy recursive": (module2) => {
|
|
232066
232098
|
function webpackEmptyAsyncContext(req) {
|
|
232067
232099
|
return Promise.resolve().then(() => {
|
|
@@ -232083,7 +232115,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
232083
232115
|
parserOpts.plugins.push("classProperties", "classPrivateProperties", "classPrivateMethods");
|
|
232084
232116
|
} }));
|
|
232085
232117
|
exports2.A = _default;
|
|
232086
|
-
}, "./node_modules/.pnpm/@jridgewell+gen-mapping@0.3.
|
|
232118
|
+
}, "./node_modules/.pnpm/@jridgewell+gen-mapping@0.3.8/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js": function(__unused_webpack_module, exports2, __webpack_require__2) {
|
|
232087
232119
|
!function(exports3, setArray, sourcemapCodec, traceMapping) {
|
|
232088
232120
|
"use strict";
|
|
232089
232121
|
const COLUMN = 0, SOURCES_INDEX = 1, SOURCE_LINE = 2, SOURCE_COLUMN = 3, NAMES_INDEX = 4, NO_NAME = -1;
|
|
@@ -233043,7 +233075,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
233043
233075
|
var data = "sourceMappingURL=" + file;
|
|
233044
233076
|
return options && options.multiline ? "/*# " + data + " */" : "//# " + data;
|
|
233045
233077
|
};
|
|
233046
|
-
}, "./node_modules/.pnpm/debug@4.
|
|
233078
|
+
}, "./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js": (module2, exports2, __webpack_require__2) => {
|
|
233047
233079
|
exports2.formatArgs = function(args) {
|
|
233048
233080
|
if (args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff), !this.useColors) return;
|
|
233049
233081
|
const c = "color: " + this.color;
|
|
@@ -233081,7 +233113,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
233081
233113
|
warned || (warned = true, console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."));
|
|
233082
233114
|
};
|
|
233083
233115
|
})(), exports2.colors = ["#0000CC", "#0000FF", "#0033CC", "#0033FF", "#0066CC", "#0066FF", "#0099CC", "#0099FF", "#00CC00", "#00CC33", "#00CC66", "#00CC99", "#00CCCC", "#00CCFF", "#3300CC", "#3300FF", "#3333CC", "#3333FF", "#3366CC", "#3366FF", "#3399CC", "#3399FF", "#33CC00", "#33CC33", "#33CC66", "#33CC99", "#33CCCC", "#33CCFF", "#6600CC", "#6600FF", "#6633CC", "#6633FF", "#66CC00", "#66CC33", "#9900CC", "#9900FF", "#9933CC", "#9933FF", "#99CC00", "#99CC33", "#CC0000", "#CC0033", "#CC0066", "#CC0099", "#CC00CC", "#CC00FF", "#CC3300", "#CC3333", "#CC3366", "#CC3399", "#CC33CC", "#CC33FF", "#CC6600", "#CC6633", "#CC9900", "#CC9933", "#CCCC00", "#CCCC33", "#FF0000", "#FF0033", "#FF0066", "#FF0099", "#FF00CC", "#FF00FF", "#FF3300", "#FF3333", "#FF3366", "#FF3399", "#FF33CC", "#FF33FF", "#FF6600", "#FF6633", "#FF9900", "#FF9933", "#FFCC00", "#FFCC33"], exports2.log = console.debug || console.log || (() => {
|
|
233084
|
-
}), module2.exports = __webpack_require__2("./node_modules/.pnpm/debug@4.
|
|
233116
|
+
}), module2.exports = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js")(exports2);
|
|
233085
233117
|
const { formatters } = module2.exports;
|
|
233086
233118
|
formatters.j = function(v) {
|
|
233087
233119
|
try {
|
|
@@ -233090,7 +233122,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
233090
233122
|
return "[UnexpectedJSONParseError]: " + error.message;
|
|
233091
233123
|
}
|
|
233092
233124
|
};
|
|
233093
|
-
}, "./node_modules/.pnpm/debug@4.
|
|
233125
|
+
}, "./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js": (module2, __unused_webpack_exports, __webpack_require__2) => {
|
|
233094
233126
|
module2.exports = function(env3) {
|
|
233095
233127
|
function createDebug(namespace) {
|
|
233096
233128
|
let prevTime, namespacesCache, enabledCache, enableOverride = null;
|
|
@@ -233119,25 +233151,29 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
233119
233151
|
const newDebug = createDebug(this.namespace + (void 0 === delimiter ? ":" : delimiter) + namespace);
|
|
233120
233152
|
return newDebug.log = this.log, newDebug;
|
|
233121
233153
|
}
|
|
233122
|
-
function
|
|
233123
|
-
|
|
233154
|
+
function matchesTemplate(search, template) {
|
|
233155
|
+
let searchIndex = 0, templateIndex = 0, starIndex = -1, matchIndex = 0;
|
|
233156
|
+
for (; searchIndex < search.length; ) if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || "*" === template[templateIndex])) "*" === template[templateIndex] ? (starIndex = templateIndex, matchIndex = searchIndex, templateIndex++) : (searchIndex++, templateIndex++);
|
|
233157
|
+
else {
|
|
233158
|
+
if (-1 === starIndex) return false;
|
|
233159
|
+
templateIndex = starIndex + 1, matchIndex++, searchIndex = matchIndex;
|
|
233160
|
+
}
|
|
233161
|
+
for (; templateIndex < template.length && "*" === template[templateIndex]; ) templateIndex++;
|
|
233162
|
+
return templateIndex === template.length;
|
|
233124
233163
|
}
|
|
233125
233164
|
return createDebug.debug = createDebug, createDebug.default = createDebug, createDebug.coerce = function(val) {
|
|
233126
233165
|
if (val instanceof Error) return val.stack || val.message;
|
|
233127
233166
|
return val;
|
|
233128
233167
|
}, createDebug.disable = function() {
|
|
233129
|
-
const namespaces = [...createDebug.names
|
|
233168
|
+
const namespaces = [...createDebug.names, ...createDebug.skips.map((namespace) => "-" + namespace)].join(",");
|
|
233130
233169
|
return createDebug.enable(""), namespaces;
|
|
233131
233170
|
}, createDebug.enable = function(namespaces) {
|
|
233132
|
-
let i;
|
|
233133
233171
|
createDebug.save(namespaces), createDebug.namespaces = namespaces, createDebug.names = [], createDebug.skips = [];
|
|
233134
|
-
const split = ("string" == typeof namespaces ? namespaces : "").
|
|
233135
|
-
for (
|
|
233172
|
+
const split = ("string" == typeof namespaces ? namespaces : "").trim().replace(" ", ",").split(",").filter(Boolean);
|
|
233173
|
+
for (const ns of split) "-" === ns[0] ? createDebug.skips.push(ns.slice(1)) : createDebug.names.push(ns);
|
|
233136
233174
|
}, createDebug.enabled = function(name) {
|
|
233137
|
-
|
|
233138
|
-
|
|
233139
|
-
for (i = 0, len = createDebug.skips.length; i < len; i++) if (createDebug.skips[i].test(name)) return false;
|
|
233140
|
-
for (i = 0, len = createDebug.names.length; i < len; i++) if (createDebug.names[i].test(name)) return true;
|
|
233175
|
+
for (const skip of createDebug.skips) if (matchesTemplate(name, skip)) return false;
|
|
233176
|
+
for (const ns of createDebug.names) if (matchesTemplate(name, ns)) return true;
|
|
233141
233177
|
return false;
|
|
233142
233178
|
}, createDebug.humanize = __webpack_require__2("./node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"), createDebug.destroy = function() {
|
|
233143
233179
|
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
@@ -233149,9 +233185,9 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
233149
233185
|
return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
|
|
233150
233186
|
}, createDebug.enable(createDebug.load()), createDebug;
|
|
233151
233187
|
};
|
|
233152
|
-
}, "./node_modules/.pnpm/debug@4.
|
|
233153
|
-
"undefined" == typeof process || "renderer" === process.type || true === process.browser || process.__nwjs ? module2.exports = __webpack_require__2("./node_modules/.pnpm/debug@4.
|
|
233154
|
-
}, "./node_modules/.pnpm/debug@4.
|
|
233188
|
+
}, "./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js": (module2, __unused_webpack_exports, __webpack_require__2) => {
|
|
233189
|
+
"undefined" == typeof process || "renderer" === process.type || true === process.browser || process.__nwjs ? module2.exports = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js") : module2.exports = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js");
|
|
233190
|
+
}, "./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js": (module2, exports2, __webpack_require__2) => {
|
|
233155
233191
|
const tty2 = __webpack_require__2("tty"), util3 = __webpack_require__2("util");
|
|
233156
233192
|
exports2.init = function(debug) {
|
|
233157
233193
|
debug.inspectOpts = {};
|
|
@@ -233185,7 +233221,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
233185
233221
|
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => k.toUpperCase());
|
|
233186
233222
|
let val = process.env[key];
|
|
233187
233223
|
return val = !!/^(yes|on|true|enabled)$/i.test(val) || !/^(no|off|false|disabled)$/i.test(val) && ("null" === val ? null : Number(val)), obj[prop] = val, obj;
|
|
233188
|
-
}, {}), module2.exports = __webpack_require__2("./node_modules/.pnpm/debug@4.
|
|
233224
|
+
}, {}), module2.exports = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js")(exports2);
|
|
233189
233225
|
const { formatters } = module2.exports;
|
|
233190
233226
|
formatters.o = function(v) {
|
|
233191
233227
|
return this.inspectOpts.colors = this.useColors, util3.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
@@ -233337,14 +233373,14 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
233337
233373
|
const prefix2 = flag.startsWith("-") ? "" : 1 === flag.length ? "-" : "--", position = argv.indexOf(prefix2 + flag), terminatorPosition = argv.indexOf("--");
|
|
233338
233374
|
return -1 !== position && (-1 === terminatorPosition || position < terminatorPosition);
|
|
233339
233375
|
};
|
|
233340
|
-
}, "./node_modules/.pnpm/jsesc@3.0
|
|
233376
|
+
}, "./node_modules/.pnpm/jsesc@3.1.0/node_modules/jsesc/jsesc.js": (module2) => {
|
|
233341
233377
|
"use strict";
|
|
233342
233378
|
const object = {}, hasOwnProperty4 = object.hasOwnProperty, forOwn = (object2, callback) => {
|
|
233343
233379
|
for (const key in object2) hasOwnProperty4.call(object2, key) && callback(key, object2[key]);
|
|
233344
233380
|
}, fourHexEscape = (hex) => "\\u" + ("0000" + hex).slice(-4), hexadecimal = (code, lowercase) => {
|
|
233345
233381
|
let hexadecimal2 = code.toString(16);
|
|
233346
233382
|
return lowercase ? hexadecimal2 : hexadecimal2.toUpperCase();
|
|
233347
|
-
}, toString = object.toString, isArray = Array.isArray, singleEscapes = { "\\": "\\\\", "\b": "\\b", "\f": "\\f", "\n": "\\n", "\r": "\\r", " ": "\\t" }, regexSingleEscape = /[\\\b\f\n\r\t]/, regexDigit = /[0-9]/, regexWhitespace = /[\xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/, escapeEverythingRegex = /([\uD800-\uDBFF][\uDC00-\uDFFF])|([\uD800-\uDFFF])|(['"`])|[^]/g, escapeNonAsciiRegex = /([\uD800-\uDBFF][\uDC00-\uDFFF])|([\uD800-\uDFFF])|(['"`])|[^ !#-&\(-\[\]-_a-~]/g, jsesc = (argument, options) => {
|
|
233383
|
+
}, toString = object.toString, isArray = Array.isArray, isBigInt = (value2) => "bigint" == typeof value2, singleEscapes = { "\\": "\\\\", "\b": "\\b", "\f": "\\f", "\n": "\\n", "\r": "\\r", " ": "\\t" }, regexSingleEscape = /[\\\b\f\n\r\t]/, regexDigit = /[0-9]/, regexWhitespace = /[\xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/, escapeEverythingRegex = /([\uD800-\uDBFF][\uDC00-\uDFFF])|([\uD800-\uDFFF])|(['"`])|[^]/g, escapeNonAsciiRegex = /([\uD800-\uDBFF][\uDC00-\uDFFF])|([\uD800-\uDFFF])|(['"`])|[^ !#-&\(-\[\]-_a-~]/g, jsesc = (argument, options) => {
|
|
233348
233384
|
const increaseIndentation = () => {
|
|
233349
233385
|
oldIndent = indent, ++options.indentLevel, indent = options.indent.repeat(options.indentLevel);
|
|
233350
233386
|
}, defaults = { escapeEverything: false, minimal: false, isScriptContext: false, quotes: "single", wrap: false, es6: false, json: false, compact: true, lowercaseHex: false, numbers: "decimal", indent: " ", indentLevel: 0, __inline1__: false, __inline2__: false }, json = options && options.json;
|
|
@@ -233368,17 +233404,19 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
233368
233404
|
})(argument, (value2) => {
|
|
233369
233405
|
isEmpty = false, inline2 && (options.__inline2__ = false), result.push((compact || inline2 ? "" : indent) + jsesc(value2, options));
|
|
233370
233406
|
}), isEmpty ? "[]" : inline2 ? "[" + result.join(", ") + "]" : "[" + newLine + result.join("," + newLine) + newLine + (compact ? "" : oldIndent) + "]";
|
|
233371
|
-
if (
|
|
233407
|
+
if (((value2) => "number" == typeof value2 || "[object Number]" == toString.call(value2))(argument) || isBigInt(argument)) {
|
|
233408
|
+
if (json) return JSON.stringify(Number(argument));
|
|
233409
|
+
let result2;
|
|
233410
|
+
if (useDecNumbers) result2 = String(argument);
|
|
233411
|
+
else if (useHexNumbers) {
|
|
233412
|
+
let hexadecimal2 = argument.toString(16);
|
|
233413
|
+
lowercaseHex || (hexadecimal2 = hexadecimal2.toUpperCase()), result2 = "0x" + hexadecimal2;
|
|
233414
|
+
} else useBinNumbers ? result2 = "0b" + argument.toString(2) : useOctNumbers && (result2 = "0o" + argument.toString(8));
|
|
233415
|
+
return isBigInt(argument) ? result2 + "n" : result2;
|
|
233416
|
+
}
|
|
233417
|
+
return isBigInt(argument) ? json ? JSON.stringify(Number(argument)) : argument + "n" : ((value2) => "[object Object]" == toString.call(value2))(argument) ? (result = [], options.wrap = true, increaseIndentation(), forOwn(argument, (key, value2) => {
|
|
233372
233418
|
isEmpty = false, result.push((compact ? "" : indent) + jsesc(key, options) + ":" + (compact ? "" : " ") + jsesc(value2, options));
|
|
233373
233419
|
}), isEmpty ? "{}" : "{" + newLine + result.join("," + newLine) + newLine + (compact ? "" : oldIndent) + "}") : json ? JSON.stringify(argument) || "null" : String(argument);
|
|
233374
|
-
if (json) return JSON.stringify(argument);
|
|
233375
|
-
if (useDecNumbers) return String(argument);
|
|
233376
|
-
if (useHexNumbers) {
|
|
233377
|
-
let hexadecimal2 = argument.toString(16);
|
|
233378
|
-
return lowercaseHex || (hexadecimal2 = hexadecimal2.toUpperCase()), "0x" + hexadecimal2;
|
|
233379
|
-
}
|
|
233380
|
-
if (useBinNumbers) return "0b" + argument.toString(2);
|
|
233381
|
-
if (useOctNumbers) return "0o" + argument.toString(8);
|
|
233382
233420
|
}
|
|
233383
233421
|
const regex = options.escapeEverything ? escapeEverythingRegex : escapeNonAsciiRegex;
|
|
233384
233422
|
return result = argument.replace(regex, (char, pair, lone, quoteChar, index, string) => {
|
|
@@ -234157,7 +234195,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
234157
234195
|
}, data;
|
|
234158
234196
|
}
|
|
234159
234197
|
function _debug() {
|
|
234160
|
-
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.
|
|
234198
|
+
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js");
|
|
234161
234199
|
return _debug = function() {
|
|
234162
234200
|
return data;
|
|
234163
234201
|
}, data;
|
|
@@ -234426,7 +234464,7 @@ File already loaded following the config chain:
|
|
|
234426
234464
|
}, "./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/files/configuration.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
234427
234465
|
"use strict";
|
|
234428
234466
|
function _debug() {
|
|
234429
|
-
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.
|
|
234467
|
+
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js");
|
|
234430
234468
|
return _debug = function() {
|
|
234431
234469
|
return data;
|
|
234432
234470
|
}, data;
|
|
@@ -234695,7 +234733,7 @@ from ${dirname3}`);
|
|
|
234695
234733
|
}, data;
|
|
234696
234734
|
}
|
|
234697
234735
|
function _debug() {
|
|
234698
|
-
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.
|
|
234736
|
+
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js");
|
|
234699
234737
|
return _debug = function() {
|
|
234700
234738
|
return data;
|
|
234701
234739
|
}, data;
|
|
@@ -234802,7 +234840,7 @@ packageExtensions:
|
|
|
234802
234840
|
}, "./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/files/plugins.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
234803
234841
|
"use strict";
|
|
234804
234842
|
function _debug() {
|
|
234805
|
-
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.
|
|
234843
|
+
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js");
|
|
234806
234844
|
return _debug = function() {
|
|
234807
234845
|
return data;
|
|
234808
234846
|
}, data;
|
|
@@ -234947,7 +234985,7 @@ packageExtensions:
|
|
|
234947
234985
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
234948
234986
|
var _async = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/gensync-utils/async.js"), _util = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/util.js"), context = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _plugin = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/plugin.js"), _item = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/item.js"), _configChain = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/config-chain.js"), _deepArray = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/helpers/deep-array.js");
|
|
234949
234987
|
function _traverse() {
|
|
234950
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
234988
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js");
|
|
234951
234989
|
return _traverse = function() {
|
|
234952
234990
|
return data;
|
|
234953
234991
|
}, data;
|
|
@@ -235897,19 +235935,19 @@ To be a valid ${type}, its name and options should be wrapped in a pair of brack
|
|
|
235897
235935
|
} }), exports2.version = exports2.types = void 0;
|
|
235898
235936
|
var _file = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/transformation/file/file.js"), _buildExternalHelpers = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/tools/build-external-helpers.js"), resolvers = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/files/index.js"), _environment = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/config/helpers/environment.js");
|
|
235899
235937
|
function _types() {
|
|
235900
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
235938
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
235901
235939
|
return _types = function() {
|
|
235902
235940
|
return data;
|
|
235903
235941
|
}, data;
|
|
235904
235942
|
}
|
|
235905
235943
|
function _parser() {
|
|
235906
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+parser@7.26.
|
|
235944
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+parser@7.26.3/node_modules/@babel/parser/lib/index.js");
|
|
235907
235945
|
return _parser = function() {
|
|
235908
235946
|
return data;
|
|
235909
235947
|
}, data;
|
|
235910
235948
|
}
|
|
235911
235949
|
function _traverse() {
|
|
235912
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
235950
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js");
|
|
235913
235951
|
return _traverse = function() {
|
|
235914
235952
|
return data;
|
|
235915
235953
|
}, data;
|
|
@@ -235961,7 +235999,7 @@ To be a valid ${type}, its name and options should be wrapped in a pair of brack
|
|
|
235961
235999
|
}, "./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/parser/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
235962
236000
|
"use strict";
|
|
235963
236001
|
function _parser() {
|
|
235964
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+parser@7.26.
|
|
236002
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+parser@7.26.3/node_modules/@babel/parser/lib/index.js");
|
|
235965
236003
|
return _parser = function() {
|
|
235966
236004
|
return data;
|
|
235967
236005
|
}, data;
|
|
@@ -236042,7 +236080,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
236042
236080
|
}, data;
|
|
236043
236081
|
}
|
|
236044
236082
|
function _generator() {
|
|
236045
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
236083
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/index.js");
|
|
236046
236084
|
return _generator = function() {
|
|
236047
236085
|
return data;
|
|
236048
236086
|
}, data;
|
|
@@ -236054,7 +236092,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
236054
236092
|
}, data;
|
|
236055
236093
|
}
|
|
236056
236094
|
function _t() {
|
|
236057
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
236095
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
236058
236096
|
return _t = function() {
|
|
236059
236097
|
return data;
|
|
236060
236098
|
}, data;
|
|
@@ -236180,7 +236218,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
236180
236218
|
}, "./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
236181
236219
|
"use strict";
|
|
236182
236220
|
function _traverse() {
|
|
236183
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
236221
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js");
|
|
236184
236222
|
return _traverse = function() {
|
|
236185
236223
|
return data;
|
|
236186
236224
|
}, data;
|
|
@@ -236236,7 +236274,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
236236
236274
|
}, data;
|
|
236237
236275
|
}
|
|
236238
236276
|
function _traverse() {
|
|
236239
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
236277
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js");
|
|
236240
236278
|
return _traverse = function() {
|
|
236241
236279
|
return data;
|
|
236242
236280
|
}, data;
|
|
@@ -236248,7 +236286,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
236248
236286
|
}, data;
|
|
236249
236287
|
}
|
|
236250
236288
|
function _t() {
|
|
236251
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
236289
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
236252
236290
|
return _t = function() {
|
|
236253
236291
|
return data;
|
|
236254
236292
|
}, data;
|
|
@@ -236366,7 +236404,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
236366
236404
|
}, data;
|
|
236367
236405
|
}
|
|
236368
236406
|
function _generator() {
|
|
236369
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
236407
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/index.js");
|
|
236370
236408
|
return _generator = function() {
|
|
236371
236409
|
return data;
|
|
236372
236410
|
}, data;
|
|
@@ -236416,7 +236454,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
236416
236454
|
}, "./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/transformation/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
236417
236455
|
"use strict";
|
|
236418
236456
|
function _traverse() {
|
|
236419
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
236457
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js");
|
|
236420
236458
|
return _traverse = function() {
|
|
236421
236459
|
return data;
|
|
236422
236460
|
}, data;
|
|
@@ -236473,13 +236511,13 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
236473
236511
|
}, data;
|
|
236474
236512
|
}
|
|
236475
236513
|
function _debug() {
|
|
236476
|
-
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.
|
|
236514
|
+
const data = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js");
|
|
236477
236515
|
return _debug = function() {
|
|
236478
236516
|
return data;
|
|
236479
236517
|
}, data;
|
|
236480
236518
|
}
|
|
236481
236519
|
function _t() {
|
|
236482
|
-
const data = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
236520
|
+
const data = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
236483
236521
|
return _t = function() {
|
|
236484
236522
|
return data;
|
|
236485
236523
|
}, data;
|
|
@@ -237149,7 +237187,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237149
237187
|
return resolved2;
|
|
237150
237188
|
}(resolved, base, preserveSymlinks);
|
|
237151
237189
|
}
|
|
237152
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237190
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/buffer.js": (__unused_webpack_module, exports2) => {
|
|
237153
237191
|
"use strict";
|
|
237154
237192
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
237155
237193
|
exports2.default = class {
|
|
@@ -237297,7 +237335,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237297
237335
|
return this._position.line + count;
|
|
237298
237336
|
}
|
|
237299
237337
|
};
|
|
237300
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237338
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/base.js": (__unused_webpack_module, exports2) => {
|
|
237301
237339
|
"use strict";
|
|
237302
237340
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.BlockStatement = function(node) {
|
|
237303
237341
|
var _node$directives2;
|
|
@@ -237306,9 +237344,9 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237306
237344
|
if (directivesLen) {
|
|
237307
237345
|
var _node$directives$trai2;
|
|
237308
237346
|
const newline = node.body.length ? 2 : 1;
|
|
237309
|
-
this.printSequence(node.directives,
|
|
237347
|
+
this.printSequence(node.directives, true, newline), null != (_node$directives$trai2 = node.directives[directivesLen - 1].trailingComments) && _node$directives$trai2.length || this.newline(newline);
|
|
237310
237348
|
}
|
|
237311
|
-
this.printSequence(node.body,
|
|
237349
|
+
this.printSequence(node.body, true), exit(), this.rightBrace(node);
|
|
237312
237350
|
}, exports2.Directive = function(node) {
|
|
237313
237351
|
this.print(node.value), this.semicolon();
|
|
237314
237352
|
}, exports2.DirectiveLiteral = function(node) {
|
|
@@ -237333,12 +237371,12 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237333
237371
|
if (directivesLen) {
|
|
237334
237372
|
var _node$directives$trai;
|
|
237335
237373
|
const newline = node.body.length ? 2 : 1;
|
|
237336
|
-
this.printSequence(node.directives,
|
|
237374
|
+
this.printSequence(node.directives, void 0, newline), null != (_node$directives$trai = node.directives[directivesLen - 1].trailingComments) && _node$directives$trai.length || this.newline(newline);
|
|
237337
237375
|
}
|
|
237338
237376
|
this.printSequence(node.body);
|
|
237339
237377
|
};
|
|
237340
237378
|
const unescapedSingleQuoteRE = /(?:^|[^\\])(?:\\\\)*'/, unescapedDoubleQuoteRE = /(?:^|[^\\])(?:\\\\)*"/;
|
|
237341
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237379
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/classes.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
237342
237380
|
"use strict";
|
|
237343
237381
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.ClassAccessorProperty = function(node) {
|
|
237344
237382
|
var _node$key$loc2;
|
|
@@ -237371,7 +237409,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237371
237409
|
}(this, node);
|
|
237372
237410
|
null == separator || separator(-1);
|
|
237373
237411
|
const exit = this.enterDelimited();
|
|
237374
|
-
this.printJoin(node.body,
|
|
237412
|
+
this.printJoin(node.body, true, true, separator, true), exit(), this.endsWith(10) || this.newline(), this.rightBrace(node);
|
|
237375
237413
|
}
|
|
237376
237414
|
}, exports2.ClassExpression = exports2.ClassDeclaration = function(node, parent) {
|
|
237377
237415
|
(isExportDefaultDeclaration(parent) || isExportNamedDeclaration(parent)) && this._shouldPrintDecoratorsBeforeExport(parent) || this.printJoin(node.decorators);
|
|
@@ -237401,7 +237439,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237401
237439
|
this.print(node.typeAnnotation), node.value && (this.space(), this.tokenChar(61), this.space(), this.print(node.value));
|
|
237402
237440
|
this.semicolon();
|
|
237403
237441
|
}, exports2.StaticBlock = function(node) {
|
|
237404
|
-
this.word("static"), this.space(), this.tokenChar(123), 0 === node.body.length ? this.tokenChar(125) : (this.newline(), this.printSequence(node.body,
|
|
237442
|
+
this.word("static"), this.space(), this.tokenChar(123), 0 === node.body.length ? this.tokenChar(125) : (this.newline(), this.printSequence(node.body, true), this.rightBrace(node));
|
|
237405
237443
|
}, exports2._classMethodHead = function(node) {
|
|
237406
237444
|
if (this.printJoin(node.decorators), !this.format.preserveFormat) {
|
|
237407
237445
|
var _node$key$loc3;
|
|
@@ -237410,9 +237448,9 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237410
237448
|
}
|
|
237411
237449
|
this.tsPrintClassMemberModifiers(node), this._methodHead(node);
|
|
237412
237450
|
};
|
|
237413
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
237451
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
237414
237452
|
const { isExportDefaultDeclaration, isExportNamedDeclaration } = _t;
|
|
237415
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237453
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/expressions.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
237416
237454
|
"use strict";
|
|
237417
237455
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.LogicalExpression = exports2.BinaryExpression = exports2.AssignmentExpression = function(node) {
|
|
237418
237456
|
this.print(node.left), this.space(), "in" === node.operator || "instanceof" === node.operator ? this.word(node.operator) : (this.token(node.operator), this._endsWithDiv = "/" === node.operator);
|
|
@@ -237427,7 +237465,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237427
237465
|
}, exports2.CallExpression = function(node) {
|
|
237428
237466
|
this.print(node.callee), this.print(node.typeArguments), this.print(node.typeParameters), this.tokenChar(40);
|
|
237429
237467
|
const exit = this.enterDelimited();
|
|
237430
|
-
this.printList(node.arguments,
|
|
237468
|
+
this.printList(node.arguments, this.shouldPrintTrailingComma(")")), exit(), this.rightParens(node);
|
|
237431
237469
|
}, exports2.ConditionalExpression = function(node) {
|
|
237432
237470
|
this.print(node.test), this.space(), this.tokenChar(63), this.space(), this.print(node.consequent), this.space(), this.tokenChar(58), this.space(), this.print(node.alternate);
|
|
237433
237471
|
}, exports2.Decorator = function(node) {
|
|
@@ -237462,7 +237500,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237462
237500
|
if (0 === node.arguments.length && this.tokenMap && !this.tokenMap.endMatches(node, ")")) return;
|
|
237463
237501
|
this.tokenChar(40);
|
|
237464
237502
|
const exit = this.enterDelimited();
|
|
237465
|
-
this.printList(node.arguments,
|
|
237503
|
+
this.printList(node.arguments, this.shouldPrintTrailingComma(")")), exit(), this.rightParens(node);
|
|
237466
237504
|
}, exports2.OptionalCallExpression = function(node) {
|
|
237467
237505
|
this.print(node.callee), this.print(node.typeParameters), node.optional && this.token("?.");
|
|
237468
237506
|
this.print(node.typeArguments), this.tokenChar(40);
|
|
@@ -237501,9 +237539,9 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237501
237539
|
if ("boolean" == typeof this.format.decoratorsBeforeExport) return this.format.decoratorsBeforeExport;
|
|
237502
237540
|
return "number" == typeof node.start && node.start === node.declaration.start;
|
|
237503
237541
|
};
|
|
237504
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
237542
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/index.js");
|
|
237505
237543
|
const { isCallExpression, isLiteral, isMemberExpression, isNewExpression, isPattern } = _t;
|
|
237506
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237544
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/flow.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
237507
237545
|
"use strict";
|
|
237508
237546
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.AnyTypeAnnotation = function() {
|
|
237509
237547
|
this.word("any");
|
|
@@ -237592,7 +237630,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237592
237630
|
this.word("interface"), null != (_node$extends2 = node.extends) && _node$extends2.length && (this.space(), this.word("extends"), this.space(), this.printList(node.extends));
|
|
237593
237631
|
this.space(), this.print(node.body);
|
|
237594
237632
|
}, exports2.IntersectionTypeAnnotation = function(node) {
|
|
237595
|
-
this.printJoin(node.types,
|
|
237633
|
+
this.printJoin(node.types, void 0, void 0, andSeparator);
|
|
237596
237634
|
}, exports2.MixedTypeAnnotation = function() {
|
|
237597
237635
|
this.word("mixed");
|
|
237598
237636
|
}, exports2.NullLiteralTypeAnnotation = function() {
|
|
@@ -237606,11 +237644,11 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237606
237644
|
}, exports2.ObjectTypeAnnotation = function(node) {
|
|
237607
237645
|
node.exact ? this.token("{|") : this.tokenChar(123);
|
|
237608
237646
|
const props = [...node.properties, ...node.callProperties || [], ...node.indexers || [], ...node.internalSlots || []];
|
|
237609
|
-
props.length && (this.newline(), this.space(), this.printJoin(props,
|
|
237647
|
+
props.length && (this.newline(), this.space(), this.printJoin(props, true, true, void 0, void 0, function(leading) {
|
|
237610
237648
|
if (leading && !props[0]) return 1;
|
|
237611
|
-
},
|
|
237649
|
+
}, () => {
|
|
237612
237650
|
(1 !== props.length || node.inexact) && (this.tokenChar(44), this.space());
|
|
237613
|
-
}
|
|
237651
|
+
}), this.space());
|
|
237614
237652
|
node.inexact && (this.indent(), this.token("..."), props.length && this.newline(), this.dedent());
|
|
237615
237653
|
node.exact ? this.token("|}") : this.tokenChar(125);
|
|
237616
237654
|
}, exports2.ObjectTypeCallProperty = function(node) {
|
|
@@ -237664,11 +237702,11 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237664
237702
|
this._variance(node), this.word(node.name), node.bound && this.print(node.bound);
|
|
237665
237703
|
node.default && (this.space(), this.tokenChar(61), this.space(), this.print(node.default));
|
|
237666
237704
|
}, exports2.TypeParameterDeclaration = exports2.TypeParameterInstantiation = function(node) {
|
|
237667
|
-
this.tokenChar(60), this.printList(node.params
|
|
237705
|
+
this.tokenChar(60), this.printList(node.params), this.tokenChar(62);
|
|
237668
237706
|
}, exports2.TypeofTypeAnnotation = function(node) {
|
|
237669
237707
|
this.word("typeof"), this.space(), this.print(node.argument);
|
|
237670
237708
|
}, exports2.UnionTypeAnnotation = function(node) {
|
|
237671
|
-
this.printJoin(node.types,
|
|
237709
|
+
this.printJoin(node.types, void 0, void 0, orSeparator);
|
|
237672
237710
|
}, exports2.Variance = function(node) {
|
|
237673
237711
|
"plus" === node.kind ? this.tokenChar(43) : this.tokenChar(45);
|
|
237674
237712
|
}, exports2.VoidTypeAnnotation = function() {
|
|
@@ -237686,7 +237724,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237686
237724
|
const kind = null == (_node$variance = node.variance) ? void 0 : _node$variance.kind;
|
|
237687
237725
|
null != kind && ("plus" === kind ? this.tokenChar(43) : "minus" === kind && this.tokenChar(45));
|
|
237688
237726
|
};
|
|
237689
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
237727
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _modules = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/modules.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/index.js"), _types2 = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/types.js");
|
|
237690
237728
|
const { isDeclareExportDeclaration, isStatement } = _t;
|
|
237691
237729
|
function enumExplicitType(context, name, hasExplicitType) {
|
|
237692
237730
|
hasExplicitType && (context.space(), context.word("of"), context.space(), context.word(name)), context.space();
|
|
@@ -237712,76 +237750,76 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237712
237750
|
function orSeparator(occurrenceCount) {
|
|
237713
237751
|
this.space(), this.token("|", false, occurrenceCount), this.space();
|
|
237714
237752
|
}
|
|
237715
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237753
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
237716
237754
|
"use strict";
|
|
237717
237755
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
237718
|
-
var _templateLiterals = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237756
|
+
var _templateLiterals = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/template-literals.js");
|
|
237719
237757
|
Object.keys(_templateLiterals).forEach(function(key) {
|
|
237720
237758
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _templateLiterals[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237721
237759
|
return _templateLiterals[key];
|
|
237722
237760
|
} }));
|
|
237723
237761
|
});
|
|
237724
|
-
var _expressions = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237762
|
+
var _expressions = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/expressions.js");
|
|
237725
237763
|
Object.keys(_expressions).forEach(function(key) {
|
|
237726
237764
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _expressions[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237727
237765
|
return _expressions[key];
|
|
237728
237766
|
} }));
|
|
237729
237767
|
});
|
|
237730
|
-
var _statements = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237768
|
+
var _statements = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/statements.js");
|
|
237731
237769
|
Object.keys(_statements).forEach(function(key) {
|
|
237732
237770
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _statements[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237733
237771
|
return _statements[key];
|
|
237734
237772
|
} }));
|
|
237735
237773
|
});
|
|
237736
|
-
var _classes = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237774
|
+
var _classes = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/classes.js");
|
|
237737
237775
|
Object.keys(_classes).forEach(function(key) {
|
|
237738
237776
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _classes[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237739
237777
|
return _classes[key];
|
|
237740
237778
|
} }));
|
|
237741
237779
|
});
|
|
237742
|
-
var _methods = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237780
|
+
var _methods = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/methods.js");
|
|
237743
237781
|
Object.keys(_methods).forEach(function(key) {
|
|
237744
237782
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _methods[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237745
237783
|
return _methods[key];
|
|
237746
237784
|
} }));
|
|
237747
237785
|
});
|
|
237748
|
-
var _modules = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237786
|
+
var _modules = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/modules.js");
|
|
237749
237787
|
Object.keys(_modules).forEach(function(key) {
|
|
237750
237788
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _modules[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237751
237789
|
return _modules[key];
|
|
237752
237790
|
} }));
|
|
237753
237791
|
});
|
|
237754
|
-
var _types = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237792
|
+
var _types = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/types.js");
|
|
237755
237793
|
Object.keys(_types).forEach(function(key) {
|
|
237756
237794
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _types[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237757
237795
|
return _types[key];
|
|
237758
237796
|
} }));
|
|
237759
237797
|
});
|
|
237760
|
-
var _flow = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237798
|
+
var _flow = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/flow.js");
|
|
237761
237799
|
Object.keys(_flow).forEach(function(key) {
|
|
237762
237800
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _flow[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237763
237801
|
return _flow[key];
|
|
237764
237802
|
} }));
|
|
237765
237803
|
});
|
|
237766
|
-
var _base = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237804
|
+
var _base = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/base.js");
|
|
237767
237805
|
Object.keys(_base).forEach(function(key) {
|
|
237768
237806
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _base[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237769
237807
|
return _base[key];
|
|
237770
237808
|
} }));
|
|
237771
237809
|
});
|
|
237772
|
-
var _jsx = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237810
|
+
var _jsx = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/jsx.js");
|
|
237773
237811
|
Object.keys(_jsx).forEach(function(key) {
|
|
237774
237812
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _jsx[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237775
237813
|
return _jsx[key];
|
|
237776
237814
|
} }));
|
|
237777
237815
|
});
|
|
237778
|
-
var _typescript = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
237816
|
+
var _typescript = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/typescript.js");
|
|
237779
237817
|
Object.keys(_typescript).forEach(function(key) {
|
|
237780
237818
|
"default" !== key && "__esModule" !== key && (key in exports2 && exports2[key] === _typescript[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
237781
237819
|
return _typescript[key];
|
|
237782
237820
|
} }));
|
|
237783
237821
|
});
|
|
237784
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237822
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/jsx.js": (__unused_webpack_module, exports2) => {
|
|
237785
237823
|
"use strict";
|
|
237786
237824
|
function spaceSeparator() {
|
|
237787
237825
|
this.space();
|
|
@@ -237813,7 +237851,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237813
237851
|
}, exports2.JSXNamespacedName = function(node) {
|
|
237814
237852
|
this.print(node.namespace), this.tokenChar(58), this.print(node.name);
|
|
237815
237853
|
}, exports2.JSXOpeningElement = function(node) {
|
|
237816
|
-
this.tokenChar(60), this.print(node.name), this.print(node.typeParameters), node.attributes.length > 0 && (this.space(), this.printJoin(node.attributes,
|
|
237854
|
+
this.tokenChar(60), this.print(node.name), this.print(node.typeParameters), node.attributes.length > 0 && (this.space(), this.printJoin(node.attributes, void 0, void 0, spaceSeparator));
|
|
237817
237855
|
node.selfClosing && (this.space(), this.tokenChar(47));
|
|
237818
237856
|
this.tokenChar(62);
|
|
237819
237857
|
}, exports2.JSXOpeningFragment = function() {
|
|
@@ -237826,7 +237864,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237826
237864
|
const raw = this.getPossibleRaw(node);
|
|
237827
237865
|
void 0 !== raw ? this.token(raw, true) : this.token(node.value, true);
|
|
237828
237866
|
};
|
|
237829
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237867
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/methods.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
237830
237868
|
"use strict";
|
|
237831
237869
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.ArrowFunctionExpression = function(node, parent) {
|
|
237832
237870
|
node.async && (this.word("async", true), this.space());
|
|
@@ -237877,7 +237915,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237877
237915
|
}
|
|
237878
237916
|
return !!this.format.retainLines;
|
|
237879
237917
|
};
|
|
237880
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
237918
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/index.js");
|
|
237881
237919
|
const { isIdentifier } = _t;
|
|
237882
237920
|
function _getFuncIdName(idNode, parent) {
|
|
237883
237921
|
let nameInfo, id = idNode;
|
|
@@ -237898,7 +237936,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237898
237936
|
return nameInfo;
|
|
237899
237937
|
}
|
|
237900
237938
|
}
|
|
237901
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
237939
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/modules.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
237902
237940
|
"use strict";
|
|
237903
237941
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.ExportAllDeclaration = function(node) {
|
|
237904
237942
|
var _node$attributes, _node$assertions;
|
|
@@ -237926,7 +237964,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237926
237964
|
}
|
|
237927
237965
|
let hasBrace = false;
|
|
237928
237966
|
var _node$attributes2, _node$assertions2;
|
|
237929
|
-
if ((specifiers.length || !specifiers.length && !hasSpecial) && (hasBrace = true, this.tokenChar(123), specifiers.length && (this.space(), this.printList(specifiers,
|
|
237967
|
+
if ((specifiers.length || !specifiers.length && !hasSpecial) && (hasBrace = true, this.tokenChar(123), specifiers.length && (this.space(), this.printList(specifiers, this.shouldPrintTrailingComma("}")), this.space()), this.tokenChar(125)), node.source) this.space(), this.word("from"), this.space(), null != (_node$attributes2 = node.attributes) && _node$attributes2.length || null != (_node$assertions2 = node.assertions) && _node$assertions2.length ? (this.print(node.source, true), this.space(), this._printAttributes(node, hasBrace)) : this.print(node.source);
|
|
237930
237968
|
this.semicolon();
|
|
237931
237969
|
}
|
|
237932
237970
|
}, exports2.ExportNamespaceSpecifier = function(node) {
|
|
@@ -237948,7 +237986,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237948
237986
|
this.print(specifiers.shift()), specifiers.length && (this.tokenChar(44), this.space());
|
|
237949
237987
|
}
|
|
237950
237988
|
let hasBrace = false;
|
|
237951
|
-
specifiers.length ? (hasBrace = true, this.tokenChar(123), this.space(), this.printList(specifiers,
|
|
237989
|
+
specifiers.length ? (hasBrace = true, this.tokenChar(123), this.space(), this.printList(specifiers, this.shouldPrintTrailingComma("}")), this.space(), this.tokenChar(125)) : isTypeKind && !hasSpecifiers && (hasBrace = true, this.tokenChar(123), this.tokenChar(125));
|
|
237952
237990
|
(hasSpecifiers || isTypeKind) && (this.space(), this.word("from"), this.space());
|
|
237953
237991
|
null != (_node$attributes3 = node.attributes) && _node$attributes3.length || null != (_node$assertions3 = node.assertions) && _node$assertions3.length ? (this.print(node.source, true), this.space(), this._printAttributes(node, hasBrace)) : this.print(node.source);
|
|
237954
237992
|
this.semicolon();
|
|
@@ -237969,15 +238007,15 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
237969
238007
|
const useAssertKeyword = "assert" === importAttributesKeyword || !importAttributesKeyword && assertions;
|
|
237970
238008
|
if (this.word(useAssertKeyword ? "assert" : "with"), this.space(), !useAssertKeyword && "with" !== importAttributesKeyword) return void this.printList(attributes || assertions);
|
|
237971
238009
|
const occurrenceCount = hasPreviousBrace ? 1 : 0;
|
|
237972
|
-
this.token("{", null, occurrenceCount), this.space(), this.printList(attributes || assertions,
|
|
238010
|
+
this.token("{", null, occurrenceCount), this.space(), this.printList(attributes || assertions, this.shouldPrintTrailingComma("}")), this.space(), this.token("}", null, occurrenceCount);
|
|
237973
238011
|
};
|
|
237974
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
238012
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/index.js");
|
|
237975
238013
|
const { isClassDeclaration, isExportDefaultSpecifier, isExportNamespaceSpecifier, isImportDefaultSpecifier, isImportNamespaceSpecifier, isStatement } = _t;
|
|
237976
238014
|
let warningShown = false;
|
|
237977
238015
|
function maybePrintDecoratorsBeforeExport(printer, node) {
|
|
237978
238016
|
isClassDeclaration(node.declaration) && printer._shouldPrintDecoratorsBeforeExport(node) && printer.printJoin(node.declaration.decorators);
|
|
237979
238017
|
}
|
|
237980
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238018
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/statements.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
237981
238019
|
"use strict";
|
|
237982
238020
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.BreakStatement = function(node) {
|
|
237983
238021
|
this.word("break"), printStatementAfterKeyword(this, node.label);
|
|
@@ -238011,11 +238049,11 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238011
238049
|
this.word("return"), printStatementAfterKeyword(this, node.argument);
|
|
238012
238050
|
}, exports2.SwitchCase = function(node) {
|
|
238013
238051
|
node.test ? (this.word("case"), this.space(), this.print(node.test), this.tokenChar(58)) : (this.word("default"), this.tokenChar(58));
|
|
238014
|
-
node.consequent.length && (this.newline(), this.printSequence(node.consequent,
|
|
238052
|
+
node.consequent.length && (this.newline(), this.printSequence(node.consequent, true));
|
|
238015
238053
|
}, exports2.SwitchStatement = function(node) {
|
|
238016
|
-
this.word("switch"), this.space(), this.tokenChar(40), this.print(node.discriminant), this.tokenChar(41), this.space(), this.tokenChar(123), this.printSequence(node.cases,
|
|
238054
|
+
this.word("switch"), this.space(), this.tokenChar(40), this.print(node.discriminant), this.tokenChar(41), this.space(), this.tokenChar(123), this.printSequence(node.cases, true, void 0, function(leading, cas) {
|
|
238017
238055
|
if (!leading && node.cases[node.cases.length - 1] === cas) return -1;
|
|
238018
|
-
}
|
|
238056
|
+
}), this.rightBrace(node);
|
|
238019
238057
|
}, exports2.ThrowStatement = function(node) {
|
|
238020
238058
|
this.word("throw"), printStatementAfterKeyword(this, node.argument);
|
|
238021
238059
|
}, exports2.TryStatement = function(node) {
|
|
@@ -238028,9 +238066,9 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238028
238066
|
this.space();
|
|
238029
238067
|
let hasInits = false;
|
|
238030
238068
|
if (!isFor(parent)) for (const declar of node.declarations) declar.init && (hasInits = true);
|
|
238031
|
-
if (this.printList(node.declarations,
|
|
238069
|
+
if (this.printList(node.declarations, void 0, void 0, node.declarations.length > 1, hasInits ? function(occurrenceCount) {
|
|
238032
238070
|
this.token(",", false, occurrenceCount), this.newline();
|
|
238033
|
-
} : void 0
|
|
238071
|
+
} : void 0), isFor(parent)) {
|
|
238034
238072
|
if (isForStatement(parent)) {
|
|
238035
238073
|
if (parent.init === node) return;
|
|
238036
238074
|
} else if (parent.left === node) return;
|
|
@@ -238044,7 +238082,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238044
238082
|
}, exports2.WithStatement = function(node) {
|
|
238045
238083
|
this.word("with"), this.space(), this.tokenChar(40), this.print(node.object), this.tokenChar(41), this.printBlock(node);
|
|
238046
238084
|
};
|
|
238047
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
238085
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/index.js");
|
|
238048
238086
|
const { isFor, isForStatement, isIfStatement, isStatement } = _t;
|
|
238049
238087
|
function getLastStatement(statement) {
|
|
238050
238088
|
const { body } = statement;
|
|
@@ -238064,7 +238102,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238064
238102
|
function printStatementAfterKeyword(printer, node) {
|
|
238065
238103
|
node && (printer.space(), printer.printTerminatorless(node)), printer.semicolon();
|
|
238066
238104
|
}
|
|
238067
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238105
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/template-literals.js": (__unused_webpack_module, exports2) => {
|
|
238068
238106
|
"use strict";
|
|
238069
238107
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.TaggedTemplateExpression = function(node) {
|
|
238070
238108
|
this.print(node.tag), this.print(node.typeParameters), this.print(node.quasi);
|
|
@@ -238079,7 +238117,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238079
238117
|
}
|
|
238080
238118
|
this.token(partRaw + "`", true);
|
|
238081
238119
|
};
|
|
238082
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238120
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/types.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
238083
238121
|
"use strict";
|
|
238084
238122
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.ArgumentPlaceholder = function() {
|
|
238085
238123
|
this.tokenChar(63);
|
|
@@ -238114,7 +238152,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238114
238152
|
const props = node.properties;
|
|
238115
238153
|
if (this.tokenChar(123), props.length) {
|
|
238116
238154
|
const exit = this.enterDelimited();
|
|
238117
|
-
this.space(), this.printList(props,
|
|
238155
|
+
this.space(), this.printList(props, this.shouldPrintTrailingComma("}"), true, true), this.space(), exit();
|
|
238118
238156
|
}
|
|
238119
238157
|
this.sourceWithOffset("end", node.loc, -1), this.tokenChar(125);
|
|
238120
238158
|
}, exports2.ObjectMethod = function(node) {
|
|
@@ -238140,7 +238178,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238140
238178
|
if ("hash" !== this.format.recordAndTupleSyntaxType && null != this.format.recordAndTupleSyntaxType) throw new Error(`The "recordAndTupleSyntaxType" generator option must be "bar" or "hash" (${JSON.stringify(this.format.recordAndTupleSyntaxType)} received).`);
|
|
238141
238179
|
startToken = "#{", endToken = "}";
|
|
238142
238180
|
}
|
|
238143
|
-
this.token(startToken), props.length && (this.space(), this.printList(props,
|
|
238181
|
+
this.token(startToken), props.length && (this.space(), this.printList(props, this.shouldPrintTrailingComma(endToken), true, true), this.space());
|
|
238144
238182
|
this.token(endToken);
|
|
238145
238183
|
}, exports2.RegExpLiteral = function(node) {
|
|
238146
238184
|
this.word(`/${node.pattern}/${node.flags}`);
|
|
@@ -238179,11 +238217,11 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238179
238217
|
if (token) return lastRawIdentResult = this._originalCode.slice(token.start, token.end), lastRawIdentResult;
|
|
238180
238218
|
return lastRawIdentResult = node.name;
|
|
238181
238219
|
};
|
|
238182
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
238220
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _jsesc = __webpack_require__2("./node_modules/.pnpm/jsesc@3.1.0/node_modules/jsesc/jsesc.js");
|
|
238183
238221
|
const { isAssignmentPattern, isIdentifier } = _t;
|
|
238184
238222
|
let lastRawIdentNode = null, lastRawIdentResult = "";
|
|
238185
238223
|
const validTopicTokenSet = /* @__PURE__ */ new Set(["^^", "@@", "^", "%", "#"]);
|
|
238186
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238224
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/typescript.js": (__unused_webpack_module, exports2) => {
|
|
238187
238225
|
"use strict";
|
|
238188
238226
|
function maybePrintTrailingCommaOrSemicolon(printer, node) {
|
|
238189
238227
|
printer.tokenMap && node.start && node.end ? printer.tokenMap.endMatches(node, ",") ? printer.token(",") : printer.tokenMap.endMatches(node, ";") && printer.semicolon() : printer.semicolon();
|
|
@@ -238191,9 +238229,9 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238191
238229
|
function tsPrintUnionOrIntersectionType(printer, node, sep) {
|
|
238192
238230
|
var _printer$tokenMap;
|
|
238193
238231
|
let hasLeadingToken = 0;
|
|
238194
|
-
null != (_printer$tokenMap = printer.tokenMap) && _printer$tokenMap.startMatches(node, sep) && (hasLeadingToken = 1, printer.token(sep)), printer.printJoin(node.types,
|
|
238232
|
+
null != (_printer$tokenMap = printer.tokenMap) && _printer$tokenMap.startMatches(node, sep) && (hasLeadingToken = 1, printer.token(sep)), printer.printJoin(node.types, void 0, void 0, function(i) {
|
|
238195
238233
|
this.space(), this.token(sep, null, i + hasLeadingToken), this.space();
|
|
238196
|
-
}
|
|
238234
|
+
});
|
|
238197
238235
|
}
|
|
238198
238236
|
function tokenIfPlusMinus(self2, tok) {
|
|
238199
238237
|
true !== tok && self2.token(tok);
|
|
@@ -238245,7 +238283,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238245
238283
|
isConst && (this.word("const"), this.space());
|
|
238246
238284
|
this.word("enum"), this.space(), this.print(id), this.space(), printBraced(this, node, () => {
|
|
238247
238285
|
var _this$shouldPrintTrai;
|
|
238248
|
-
return this.printList(members,
|
|
238286
|
+
return this.printList(members, null == (_this$shouldPrintTrai = this.shouldPrintTrailingComma("}")) || _this$shouldPrintTrai, true, true);
|
|
238249
238287
|
});
|
|
238250
238288
|
}, exports2.TSEnumMember = function(node) {
|
|
238251
238289
|
const { id, initializer } = node;
|
|
@@ -238276,7 +238314,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238276
238314
|
}, exports2.TSInstantiationExpression = function(node) {
|
|
238277
238315
|
this.print(node.expression), this.print(node.typeParameters);
|
|
238278
238316
|
}, exports2.TSInterfaceBody = function(node) {
|
|
238279
|
-
printBraced(this, node, () => this.printJoin(node.body,
|
|
238317
|
+
printBraced(this, node, () => this.printJoin(node.body, true, true));
|
|
238280
238318
|
}, exports2.TSInterfaceDeclaration = function(node) {
|
|
238281
238319
|
const { declare, id, typeParameters, extends: extendz, body } = node;
|
|
238282
238320
|
declare && (this.word("declare"), this.space());
|
|
@@ -238302,15 +238340,16 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238302
238340
|
"set" !== kind && "get" !== kind || (this.word(kind), this.space());
|
|
238303
238341
|
this.tsPrintPropertyOrMethodName(node), this.tsPrintSignatureDeclarationBase(node), maybePrintTrailingCommaOrSemicolon(this, node);
|
|
238304
238342
|
}, exports2.TSModuleBlock = function(node) {
|
|
238305
|
-
printBraced(this, node, () => this.printSequence(node.body,
|
|
238343
|
+
printBraced(this, node, () => this.printSequence(node.body, true));
|
|
238306
238344
|
}, exports2.TSModuleDeclaration = function(node) {
|
|
238307
238345
|
const { declare, id, kind } = node;
|
|
238308
238346
|
declare && (this.word("declare"), this.space());
|
|
238309
|
-
|
|
238310
|
-
|
|
238311
|
-
|
|
238312
|
-
|
|
238313
|
-
|
|
238347
|
+
{
|
|
238348
|
+
if (node.global || (this.word(null != kind ? kind : "Identifier" === id.type ? "namespace" : "module"), this.space()), this.print(id), !node.body) return void this.semicolon();
|
|
238349
|
+
let body = node.body;
|
|
238350
|
+
for (; "TSModuleDeclaration" === body.type; ) this.tokenChar(46), this.print(body.id), body = body.body;
|
|
238351
|
+
this.space(), this.print(body);
|
|
238352
|
+
}
|
|
238314
238353
|
}, exports2.TSNamedTupleMember = function(node) {
|
|
238315
238354
|
this.print(node.label), node.optional && this.tokenChar(63);
|
|
238316
238355
|
this.tokenChar(58), this.space(), this.print(node.elementType);
|
|
@@ -238349,7 +238388,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238349
238388
|
}, exports2.TSThisType = function() {
|
|
238350
238389
|
this.word("this");
|
|
238351
238390
|
}, exports2.TSTupleType = function(node) {
|
|
238352
|
-
this.tokenChar(91), this.printList(node.elementTypes,
|
|
238391
|
+
this.tokenChar(91), this.printList(node.elementTypes, this.shouldPrintTrailingComma("]")), this.tokenChar(93);
|
|
238353
238392
|
}, exports2.TSTypeAliasDeclaration = function(node) {
|
|
238354
238393
|
const { declare, id, typeParameters, typeAnnotation } = node;
|
|
238355
238394
|
declare && (this.word("declare"), this.space());
|
|
@@ -238361,7 +238400,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238361
238400
|
const { typeAnnotation, expression } = node;
|
|
238362
238401
|
this.tokenChar(60), this.print(typeAnnotation), this.tokenChar(62), this.space(), this.print(expression);
|
|
238363
238402
|
}, exports2.TSTypeLiteral = function(node) {
|
|
238364
|
-
printBraced(this, node, () => this.printJoin(node.members,
|
|
238403
|
+
printBraced(this, node, () => this.printJoin(node.members, true, true));
|
|
238365
238404
|
}, exports2.TSTypeOperator = function(node) {
|
|
238366
238405
|
this.word(node.operator), this.space(), this.print(node.typeAnnotation);
|
|
238367
238406
|
}, exports2.TSTypeParameter = function(node) {
|
|
@@ -238373,7 +238412,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238373
238412
|
this.tokenChar(60);
|
|
238374
238413
|
let printTrailingSeparator = "ArrowFunctionExpression" === parent.type && 1 === node.params.length;
|
|
238375
238414
|
this.tokenMap && null != node.start && null != node.end && (printTrailingSeparator && (printTrailingSeparator = !!this.tokenMap.find(node, (t) => this.tokenMap.matchesOriginal(t, ","))), printTrailingSeparator || (printTrailingSeparator = this.shouldPrintTrailingComma(">")));
|
|
238376
|
-
this.printList(node.params,
|
|
238415
|
+
this.printList(node.params, printTrailingSeparator), this.tokenChar(62);
|
|
238377
238416
|
}, exports2.TSTypePredicate = function(node) {
|
|
238378
238417
|
node.asserts && (this.word("asserts"), this.space());
|
|
238379
238418
|
this.print(node.parameterName), node.typeAnnotation && (this.space(), this.word("is"), this.space(), this.print(node.typeAnnotation.typeAnnotation));
|
|
@@ -238408,13 +238447,13 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238408
238447
|
const returnType = node.typeAnnotation;
|
|
238409
238448
|
this.print(returnType);
|
|
238410
238449
|
};
|
|
238411
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238450
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
238412
238451
|
"use strict";
|
|
238413
238452
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(ast, opts = {}, code) {
|
|
238414
238453
|
const format4 = normalizeOptions(code, opts, ast), map = opts.sourceMaps ? new _sourceMap.default(opts, code) : null;
|
|
238415
238454
|
return new _printer.default(format4, map, ast.tokens, "string" == typeof code ? code : null).generate(ast);
|
|
238416
238455
|
};
|
|
238417
|
-
var _sourceMap = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
238456
|
+
var _sourceMap = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/source-map.js"), _printer = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/printer.js");
|
|
238418
238457
|
function normalizeOptions(code, opts, ast) {
|
|
238419
238458
|
if (opts.experimental_preserveFormat) {
|
|
238420
238459
|
if ("string" != typeof code) throw new Error("`experimental_preserveFormat` requires the original `code` to be passed to @babel/generator as a string");
|
|
@@ -238438,7 +238477,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238438
238477
|
return new _printer.default(this._format, this._map).generate(this._ast);
|
|
238439
238478
|
}
|
|
238440
238479
|
};
|
|
238441
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238480
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
238442
238481
|
"use strict";
|
|
238443
238482
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.TokenContext = void 0, exports2.isLastChild = function(parent, child) {
|
|
238444
238483
|
const visitorKeys = VISITOR_KEYS[parent.type];
|
|
@@ -238464,7 +238503,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238464
238503
|
}, exports2.needsWhitespaceBefore = function(node, parent) {
|
|
238465
238504
|
return needsWhitespace(node, parent, 1);
|
|
238466
238505
|
};
|
|
238467
|
-
var whitespace = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
238506
|
+
var whitespace = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/whitespace.js"), parens = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/parentheses.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
238468
238507
|
const { FLIPPED_ALIAS_KEYS, VISITOR_KEYS, isCallExpression, isDecorator, isExpressionStatement, isMemberExpression, isNewExpression, isParenthesizedExpression } = _t;
|
|
238469
238508
|
exports2.TokenContext = { expressionStatement: 1, arrowBody: 2, exportDefault: 4, forHead: 8, forInHead: 16, forOfHead: 32, arrowFlowReturnType: 64 };
|
|
238470
238509
|
function expandAliases(obj) {
|
|
@@ -238504,7 +238543,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238504
238543
|
return false;
|
|
238505
238544
|
}
|
|
238506
238545
|
}
|
|
238507
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238546
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/parentheses.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
238508
238547
|
"use strict";
|
|
238509
238548
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.AssignmentExpression = function(node, parent, tokenContext) {
|
|
238510
238549
|
return !(!needsParenBeforeExpressionBrace(tokenContext) || !isObjectPattern(node.left)) || ConditionalExpression(node, parent);
|
|
@@ -238580,7 +238619,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238580
238619
|
const parentType = parent.type;
|
|
238581
238620
|
return "BinaryExpression" === parentType || "LogicalExpression" === parentType || "UnaryExpression" === parentType || "SpreadElement" === parentType || hasPostfixPart(node, parent) || "AwaitExpression" === parentType && isYieldExpression(node) || "ConditionalExpression" === parentType && node === parent.test || isClassExtendsClause(node, parent) || isTSTypeExpression(parentType);
|
|
238582
238621
|
};
|
|
238583
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
238622
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/index.js");
|
|
238584
238623
|
const { isArrayTypeAnnotation, isBinaryExpression, isCallExpression, isForOfStatement, isIndexedAccessType, isMemberExpression, isObjectPattern, isOptionalMemberExpression, isYieldExpression, isStatement } = _t, PRECEDENCE = /* @__PURE__ */ new Map([["||", 0], ["??", 0], ["|>", 0], ["&&", 1], ["|", 2], ["^", 3], ["&", 4], ["==", 5], ["===", 5], ["!=", 5], ["!==", 5], ["<", 6], [">", 6], ["<=", 6], [">=", 6], ["in", 6], ["instanceof", 6], [">>", 7], ["<<", 7], [">>>", 7], ["+", 8], ["-", 8], ["*", 9], ["/", 9], ["%", 9], ["**", 10]]);
|
|
238585
238624
|
function getBinaryPrecedence(node, nodeType) {
|
|
238586
238625
|
return "BinaryExpression" === nodeType || "LogicalExpression" === nodeType ? PRECEDENCE.get(node.operator) : "TSAsExpression" === nodeType || "TSSatisfiesExpression" === nodeType ? PRECEDENCE.get("in") : void 0;
|
|
@@ -238616,10 +238655,10 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238616
238655
|
const parentType = parent.type;
|
|
238617
238656
|
return !!("UnaryExpression" === parentType || "SpreadElement" === parentType || "BinaryExpression" === parentType || "LogicalExpression" === parentType || "ConditionalExpression" === parentType && parent.test === node || "AwaitExpression" === parentType || isTSTypeExpression(parentType)) || UnaryLike(node, parent);
|
|
238618
238657
|
}
|
|
238619
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238658
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/whitespace.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
238620
238659
|
"use strict";
|
|
238621
238660
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.nodes = void 0;
|
|
238622
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
238661
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
238623
238662
|
const { FLIPPED_ALIAS_KEYS, isArrayExpression, isAssignmentExpression, isBinary, isBlockStatement, isCallExpression, isFunction: isFunction2, isIdentifier, isLiteral, isMemberExpression, isObjectExpression, isOptionalCallExpression, isOptionalMemberExpression, isStringLiteral } = _t;
|
|
238624
238663
|
function crawlInternal(node, state) {
|
|
238625
238664
|
return node ? (isMemberExpression(node) || isOptionalMemberExpression(node) ? (crawlInternal(node.object, state), node.computed && crawlInternal(node.property, state)) : isBinary(node) || isAssignmentExpression(node) ? (crawlInternal(node.left, state), crawlInternal(node.right, state)) : isCallExpression(node) || isOptionalCallExpression(node) ? (state.hasCall = true, crawlInternal(node.callee, state)) : isFunction2(node) ? state.hasFunction = true : isIdentifier(node) && (state.hasHelper = state.hasHelper || node.callee && isHelper(node.callee)), state) : state;
|
|
@@ -238674,10 +238713,10 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238674
238713
|
nodes[type2] = () => ret;
|
|
238675
238714
|
});
|
|
238676
238715
|
});
|
|
238677
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
238716
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/printer.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
238678
238717
|
"use strict";
|
|
238679
238718
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
238680
|
-
var _buffer = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.
|
|
238719
|
+
var _buffer = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/buffer.js"), n = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/node/index.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _tokenMap = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/token-map.js"), generatorFunctions = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/generators/index.js");
|
|
238681
238720
|
const { isExpression, isFunction: isFunction2, isStatement, isClassBody, isTSInterfaceBody, isTSEnumDeclaration } = _t, SCIENTIFIC_NOTATION = /e/i, ZERO_DECIMAL_INTEGER = /\.0+$/, HAS_NEWLINE = /[\n\r\u2028\u2029]/, HAS_NEWLINE_OR_BlOCK_COMMENT_END = /[\n\r\u2028\u2029]|\*\//;
|
|
238682
238721
|
function commentIsNewline(c) {
|
|
238683
238722
|
return "CommentLine" === c.type || HAS_NEWLINE.test(c.value);
|
|
@@ -238685,7 +238724,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238685
238724
|
const { needsParens } = n;
|
|
238686
238725
|
class Printer {
|
|
238687
238726
|
constructor(format4, map, tokens, originalCode) {
|
|
238688
|
-
this.inForStatementInit = false, this.tokenContext = 0, this._tokens = null, this._originalCode = null, this._currentNode = null, this._indent = 0, this._indentRepeat = 0, this._insideAux = false, this._noLineTerminator = false, this._noLineTerminatorAfterNode = null, this._printAuxAfterOnNextUserNode = false, this._printedComments = /* @__PURE__ */ new Set(), this._endsWithInteger = false, this._endsWithWord = false, this._endsWithDiv = false, this._lastCommentLine = 0, this._endsWithInnerRaw = false, this._indentInnerComments = true, this.tokenMap = null, this._boundGetRawIdentifier = this._getRawIdentifier.bind(this), this.format = format4, this._tokens = tokens, this._originalCode = originalCode, this._indentRepeat = format4.indent.style.length, this._inputMap = null == map ? void 0 : map._inputMap, this._buf = new _buffer.default(map, format4.indent.style[0]);
|
|
238727
|
+
this.inForStatementInit = false, this.tokenContext = 0, this._tokens = null, this._originalCode = null, this._currentNode = null, this._indent = 0, this._indentRepeat = 0, this._insideAux = false, this._noLineTerminator = false, this._noLineTerminatorAfterNode = null, this._printAuxAfterOnNextUserNode = false, this._printedComments = /* @__PURE__ */ new Set(), this._endsWithInteger = false, this._endsWithWord = false, this._endsWithDiv = false, this._lastCommentLine = 0, this._endsWithInnerRaw = false, this._indentInnerComments = true, this.tokenMap = null, this._boundGetRawIdentifier = this._getRawIdentifier.bind(this), this._printSemicolonBeforeNextNode = -1, this._printSemicolonBeforeNextToken = -1, this.format = format4, this._tokens = tokens, this._originalCode = originalCode, this._indentRepeat = format4.indent.style.length, this._inputMap = null == map ? void 0 : map._inputMap, this._buf = new _buffer.default(map, format4.indent.style[0]);
|
|
238689
238728
|
}
|
|
238690
238729
|
enterForStatementInit() {
|
|
238691
238730
|
return this.inForStatementInit ? () => {
|
|
@@ -238716,7 +238755,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238716
238755
|
if (this.tokenMap) {
|
|
238717
238756
|
const node = this._currentNode;
|
|
238718
238757
|
if (null != node.start && null != node.end) {
|
|
238719
|
-
if (!this.tokenMap.endMatches(node, ";")) return;
|
|
238758
|
+
if (!this.tokenMap.endMatches(node, ";")) return void (this._printSemicolonBeforeNextNode = this._buf.getCurrentLine());
|
|
238720
238759
|
const indexes = this.tokenMap.getIndexes(this._currentNode);
|
|
238721
238760
|
this._catchUpTo(this._tokens[indexes[indexes.length - 1]].loc.start);
|
|
238722
238761
|
}
|
|
@@ -238740,7 +238779,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238740
238779
|
}
|
|
238741
238780
|
}
|
|
238742
238781
|
word(str, noLineTerminatorAfter = false) {
|
|
238743
|
-
this.tokenContext = 0, this._maybePrintInnerComments(str), (this._endsWithWord || this._endsWithDiv && 47 === str.charCodeAt(0)) && this._space(), this.
|
|
238782
|
+
this.tokenContext = 0, this._maybePrintInnerComments(str), this._maybeAddAuxComment(), this.tokenMap && this._catchUpToCurrentToken(str), (this._endsWithWord || this._endsWithDiv && 47 === str.charCodeAt(0)) && this._space(), this._append(str, false), this._endsWithWord = true, this._noLineTerminator = noLineTerminatorAfter;
|
|
238744
238783
|
}
|
|
238745
238784
|
number(str, number) {
|
|
238746
238785
|
this.word(str), this._endsWithInteger = Number.isInteger(number) && !function(str2) {
|
|
@@ -238752,14 +238791,16 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238752
238791
|
}(str) && !SCIENTIFIC_NOTATION.test(str) && !ZERO_DECIMAL_INTEGER.test(str) && 46 !== str.charCodeAt(str.length - 1);
|
|
238753
238792
|
}
|
|
238754
238793
|
token(str, maybeNewline = false, occurrenceCount = 0) {
|
|
238755
|
-
this.tokenContext = 0, this._maybePrintInnerComments(str, occurrenceCount);
|
|
238794
|
+
this.tokenContext = 0, this._maybePrintInnerComments(str, occurrenceCount), this._maybeAddAuxComment(), this.tokenMap && this._catchUpToCurrentToken(str, occurrenceCount);
|
|
238756
238795
|
const lastChar = this.getLastChar(), strFirst = str.charCodeAt(0);
|
|
238757
|
-
(33 === lastChar && ("--" === str || 61 === strFirst) || 43 === strFirst && 43 === lastChar || 45 === strFirst && 45 === lastChar || 46 === strFirst && this._endsWithInteger) && this._space(), this.
|
|
238796
|
+
(33 === lastChar && ("--" === str || 61 === strFirst) || 43 === strFirst && 43 === lastChar || 45 === strFirst && 45 === lastChar || 46 === strFirst && this._endsWithInteger) && this._space(), this._append(str, maybeNewline), this._noLineTerminator = false;
|
|
238758
238797
|
}
|
|
238759
238798
|
tokenChar(char) {
|
|
238760
|
-
this.tokenContext = 0
|
|
238799
|
+
this.tokenContext = 0;
|
|
238800
|
+
const str = String.fromCharCode(char);
|
|
238801
|
+
this._maybePrintInnerComments(str), this._maybeAddAuxComment(), this.tokenMap && this._catchUpToCurrentToken(str);
|
|
238761
238802
|
const lastChar = this.getLastChar();
|
|
238762
|
-
(43 === char && 43 === lastChar || 45 === char && 45 === lastChar || 46 === char && this._endsWithInteger) && this._space(), this.
|
|
238803
|
+
(43 === char && 43 === lastChar || 45 === char && 45 === lastChar || 46 === char && this._endsWithInteger) && this._space(), this._appendChar(char), this._noLineTerminator = false;
|
|
238763
238804
|
}
|
|
238764
238805
|
newline(i = 1, force) {
|
|
238765
238806
|
if (!(i <= 0)) {
|
|
@@ -238803,18 +238844,14 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238803
238844
|
_newline() {
|
|
238804
238845
|
this._queue(10);
|
|
238805
238846
|
}
|
|
238806
|
-
|
|
238807
|
-
|
|
238808
|
-
|
|
238809
|
-
|
|
238810
|
-
|
|
238847
|
+
_catchUpToCurrentToken(str, occurrenceCount = 0) {
|
|
238848
|
+
const token = this.tokenMap.findMatching(this._currentNode, str, occurrenceCount);
|
|
238849
|
+
token && this._catchUpTo(token.loc.start), -1 !== this._printSemicolonBeforeNextToken && this._printSemicolonBeforeNextToken === this._buf.getCurrentLine() && (this._buf.appendChar(59), this._endsWithWord = false, this._endsWithInteger = false, this._endsWithDiv = false), this._printSemicolonBeforeNextToken = -1, this._printSemicolonBeforeNextNode = -1;
|
|
238850
|
+
}
|
|
238851
|
+
_append(str, maybeNewline) {
|
|
238811
238852
|
this._maybeIndent(str.charCodeAt(0)), this._buf.append(str, maybeNewline), this._endsWithWord = false, this._endsWithInteger = false, this._endsWithDiv = false;
|
|
238812
238853
|
}
|
|
238813
238854
|
_appendChar(char) {
|
|
238814
|
-
if (this.tokenMap) {
|
|
238815
|
-
const token = this.tokenMap.findMatching(this._currentNode, String.fromCharCode(char));
|
|
238816
|
-
token && this._catchUpTo(token.loc.start);
|
|
238817
|
-
}
|
|
238818
238855
|
this._maybeIndent(char), this._buf.appendChar(char), this._endsWithWord = false, this._endsWithInteger = false, this._endsWithDiv = false;
|
|
238819
238856
|
}
|
|
238820
238857
|
_queue(char) {
|
|
@@ -238862,7 +238899,7 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238862
238899
|
const printMethod = this[nodeType];
|
|
238863
238900
|
if (void 0 === printMethod) throw new ReferenceError(`unknown node of type ${JSON.stringify(nodeType)} with constructor ${JSON.stringify(node.constructor.name)}`);
|
|
238864
238901
|
const parent = this._currentNode;
|
|
238865
|
-
this._currentNode = node;
|
|
238902
|
+
this._currentNode = node, this.tokenMap && (this._printSemicolonBeforeNextToken = this._printSemicolonBeforeNextNode);
|
|
238866
238903
|
const oldInAux = this._insideAux;
|
|
238867
238904
|
this._insideAux = null == node.loc, this._maybeAddAuxComment(this._insideAux && !oldInAux);
|
|
238868
238905
|
const parenthesized = null == (_node$extra = node.extra) ? void 0 : _node$extra.parenthesized;
|
|
@@ -238908,21 +238945,20 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238908
238945
|
const extra = node.extra;
|
|
238909
238946
|
if (null != (null == extra ? void 0 : extra.raw) && null != extra.rawValue && node.value === extra.rawValue) return extra.raw;
|
|
238910
238947
|
}
|
|
238911
|
-
printJoin(nodes,
|
|
238948
|
+
printJoin(nodes, statement, indent, separator, printTrailingSeparator, addNewlines, iterator, trailingCommentsLineOffset) {
|
|
238912
238949
|
if (null == nodes || !nodes.length) return;
|
|
238913
|
-
let { indent } = opts;
|
|
238914
238950
|
if (null == indent && this.format.retainLines) {
|
|
238915
238951
|
var _nodes$0$loc;
|
|
238916
238952
|
const startLine = null == (_nodes$0$loc = nodes[0].loc) ? void 0 : _nodes$0$loc.start.line;
|
|
238917
238953
|
null != startLine && startLine !== this._buf.getCurrentLine() && (indent = true);
|
|
238918
238954
|
}
|
|
238919
238955
|
indent && this.indent();
|
|
238920
|
-
const newlineOpts = { addNewlines
|
|
238956
|
+
const newlineOpts = { addNewlines, nextNodeStartLine: 0 }, boundSeparator = null == separator ? void 0 : separator.bind(this), len = nodes.length;
|
|
238921
238957
|
for (let i = 0; i < len; i++) {
|
|
238922
238958
|
const node = nodes[i];
|
|
238923
238959
|
var _node$trailingComment2;
|
|
238924
238960
|
if (node) {
|
|
238925
|
-
if (
|
|
238961
|
+
if (statement && this._printNewline(0 === i, newlineOpts), this.print(node, void 0, trailingCommentsLineOffset || 0), null == iterator || iterator(node, i), null != boundSeparator && (i < len - 1 ? boundSeparator(i, false) : printTrailingSeparator && boundSeparator(i, true)), statement) if (null != (_node$trailingComment2 = node.trailingComments) && _node$trailingComment2.length || (this._lastCommentLine = 0), i + 1 === len) this.newline(1);
|
|
238926
238962
|
else {
|
|
238927
238963
|
var _nextNode$loc;
|
|
238928
238964
|
const nextNode = nodes[i + 1];
|
|
@@ -238962,11 +238998,11 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
238962
238998
|
noIndentInnerCommentsHere() {
|
|
238963
238999
|
this._indentInnerComments = false;
|
|
238964
239000
|
}
|
|
238965
|
-
printSequence(nodes,
|
|
238966
|
-
|
|
239001
|
+
printSequence(nodes, indent, trailingCommentsLineOffset, addNewlines) {
|
|
239002
|
+
this.printJoin(nodes, true, null != indent && indent, void 0, void 0, addNewlines, void 0, trailingCommentsLineOffset);
|
|
238967
239003
|
}
|
|
238968
|
-
printList(items,
|
|
238969
|
-
null
|
|
239004
|
+
printList(items, printTrailingSeparator, statement, indent, separator, iterator) {
|
|
239005
|
+
this.printJoin(items, statement, indent, null != separator ? separator : commaSeparator, printTrailingSeparator, void 0, iterator);
|
|
238970
239006
|
}
|
|
238971
239007
|
shouldPrintTrailingComma(listEnd) {
|
|
238972
239008
|
if (!this.tokenMap) return null;
|
|
@@ -239016,7 +239052,11 @@ ${" ".repeat(indentSize)}`);
|
|
|
239016
239052
|
}
|
|
239017
239053
|
}
|
|
239018
239054
|
} else val = noLineTerminator ? `/*${comment.value}*/` : `//${comment.value}`;
|
|
239019
|
-
this._endsWithDiv && this._space(), this.
|
|
239055
|
+
if (this._endsWithDiv && this._space(), this.tokenMap) {
|
|
239056
|
+
const { _printSemicolonBeforeNextToken, _printSemicolonBeforeNextNode } = this;
|
|
239057
|
+
this._printSemicolonBeforeNextToken = -1, this._printSemicolonBeforeNextNode = -1, this.source("start", comment.loc), this._append(val, isBlockComment), this._printSemicolonBeforeNextNode = _printSemicolonBeforeNextNode, this._printSemicolonBeforeNextToken = _printSemicolonBeforeNextToken;
|
|
239058
|
+
} else this.source("start", comment.loc), this._append(val, isBlockComment);
|
|
239059
|
+
isBlockComment || noLineTerminator || this.newline(1, true), printNewLines && 3 !== skipNewLines && this.newline(1);
|
|
239020
239060
|
}
|
|
239021
239061
|
_printComments(type, comments, node, parent, lineOffset = 0, nextToken) {
|
|
239022
239062
|
const nodeLoc = node.loc, len = comments.length;
|
|
@@ -239060,10 +239100,10 @@ ${" ".repeat(indentSize)}`);
|
|
|
239060
239100
|
function commaSeparator(occurrenceCount, last) {
|
|
239061
239101
|
this.token(",", false, occurrenceCount), last || this.space();
|
|
239062
239102
|
}
|
|
239063
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
239103
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/source-map.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
239064
239104
|
"use strict";
|
|
239065
239105
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
239066
|
-
var _genMapping = __webpack_require__2("./node_modules/.pnpm/@jridgewell+gen-mapping@0.3.
|
|
239106
|
+
var _genMapping = __webpack_require__2("./node_modules/.pnpm/@jridgewell+gen-mapping@0.3.8/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js"), _traceMapping = __webpack_require__2("./node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js");
|
|
239067
239107
|
exports2.default = class {
|
|
239068
239108
|
constructor(opts, code) {
|
|
239069
239109
|
var _opts$sourceFileName;
|
|
@@ -239102,10 +239142,10 @@ ${" ".repeat(indentSize)}`);
|
|
|
239102
239142
|
(0, _genMapping.maybeAddMapping)(this._map, { name: identifierName, generated, source: null == (_originalMapping = originalMapping) ? void 0 : _originalMapping.source, original: originalMapping });
|
|
239103
239143
|
}
|
|
239104
239144
|
};
|
|
239105
|
-
}, "./node_modules/.pnpm/@babel+generator@7.26.
|
|
239145
|
+
}, "./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/token-map.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
239106
239146
|
"use strict";
|
|
239107
239147
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.TokenMap = void 0;
|
|
239108
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
239148
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
239109
239149
|
const { traverseFast, VISITOR_KEYS } = _t;
|
|
239110
239150
|
exports2.TokenMap = class {
|
|
239111
239151
|
constructor(ast, tokens, source) {
|
|
@@ -239234,7 +239274,7 @@ ${" ".repeat(indentSize)}`);
|
|
|
239234
239274
|
if (isPureAnnotated(node)) return;
|
|
239235
239275
|
addComment(node, "leading", PURE_ANNOTATION);
|
|
239236
239276
|
};
|
|
239237
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
239277
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
239238
239278
|
const { addComment } = _t, PURE_ANNOTATION = "#__PURE__", isPureAnnotated = ({ leadingComments }) => !!leadingComments && leadingComments.some((comment) => /[@#]__PURE__/.test(comment.value));
|
|
239239
239279
|
}, "./node_modules/.pnpm/@babel+helper-create-class-features-plugin@7.25.9_@babel+core@7.26.0/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
239240
239280
|
"use strict";
|
|
@@ -239252,7 +239292,7 @@ ${" ".repeat(indentSize)}`);
|
|
|
239252
239292
|
path16.isTSDeclareMethod() || new _helperReplaceSupers.default({ methodPath: path16, objectRef: classRef, superRef, file: file2, refToPreserve: classRef }).replace();
|
|
239253
239293
|
const properties = [prop("kind", _core.types.stringLiteral(_core.types.isClassMethod(node2) ? node2.kind : "field")), prop("decorators", takeDecorators(node2)), prop("static", node2.static && _core.types.booleanLiteral(true)), prop("key", getKey(node2))].filter(Boolean);
|
|
239254
239294
|
if (isMethod) {
|
|
239255
|
-
null != path16.ensureFunctionName || (path16.ensureFunctionName = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
239295
|
+
null != path16.ensureFunctionName || (path16.ensureFunctionName = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js").NodePath.prototype.ensureFunctionName), path16.ensureFunctionName(false), properties.push(prop("value", _core.types.toExpression(path16.node)));
|
|
239256
239296
|
} else _core.types.isClassProperty(node2) && node2.value ? properties.push((key = "value", body = _core.template.statements.ast`return ${node2.value}`, _core.types.objectMethod("method", _core.types.identifier(key), [], _core.types.blockStatement(body)))) : properties.push(prop("value", scope2.buildUndefinedNode()));
|
|
239257
239297
|
var key, body;
|
|
239258
239298
|
return path16.remove(), _core.types.objectExpression(properties);
|
|
@@ -239721,13 +239761,13 @@ ${" ".repeat(indentSize)}`);
|
|
|
239721
239761
|
const { declaration } = path14.node;
|
|
239722
239762
|
if ("ClassDeclaration" === (null == declaration ? void 0 : declaration.type) && isDecorated(declaration)) {
|
|
239723
239763
|
const isAnonymous = !declaration.id;
|
|
239724
|
-
null != path14.splitExportDeclaration || (path14.splitExportDeclaration = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
239764
|
+
null != path14.splitExportDeclaration || (path14.splitExportDeclaration = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js").NodePath.prototype.splitExportDeclaration);
|
|
239725
239765
|
const updatedVarDeclarationPath = path14.splitExportDeclaration();
|
|
239726
239766
|
isAnonymous && visitClass(updatedVarDeclarationPath, state, _core.types.stringLiteral("default"));
|
|
239727
239767
|
}
|
|
239728
239768
|
}, ExportNamedDeclaration(path14) {
|
|
239729
239769
|
const { declaration } = path14.node;
|
|
239730
|
-
"ClassDeclaration" === (null == declaration ? void 0 : declaration.type) && isDecorated(declaration) && (null != path14.splitExportDeclaration || (path14.splitExportDeclaration = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
239770
|
+
"ClassDeclaration" === (null == declaration ? void 0 : declaration.type) && isDecorated(declaration) && (null != path14.splitExportDeclaration || (path14.splitExportDeclaration = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js").NodePath.prototype.splitExportDeclaration), path14.splitExportDeclaration());
|
|
239731
239771
|
}, Class(path14, state) {
|
|
239732
239772
|
visitClass(path14, state, void 0);
|
|
239733
239773
|
} }, namedEvaluationVisitor) };
|
|
@@ -240060,7 +240100,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
240060
240100
|
const body = path14.get("body"), handler = privateFieldsAsProperties ? privateNameHandlerLoose : privateNameHandlerSpec;
|
|
240061
240101
|
(0, _helperMemberExpressionToFunctions.default)(body, privateNameVisitor, Object.assign({ privateNamesMap, classRef: ref, file: state }, handler, { noDocumentAll, noUninitializedPrivateFieldAccess, innerBinding })), body.traverse(privateInVisitor, { privateNamesMap, classRef: ref, file: state, privateFieldsAsProperties, innerBinding });
|
|
240062
240102
|
};
|
|
240063
|
-
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _traverse = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
240103
|
+
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _traverse = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js"), _helperReplaceSupers = __webpack_require__2("./node_modules/.pnpm/@babel+helper-replace-supers@7.25.9_@babel+core@7.26.0/node_modules/@babel/helper-replace-supers/lib/index.js"), _helperMemberExpressionToFunctions = __webpack_require__2("./node_modules/.pnpm/@babel+helper-member-expression-to-functions@7.25.9/node_modules/@babel/helper-member-expression-to-functions/lib/index.js"), _helperOptimiseCallExpression = __webpack_require__2("./node_modules/.pnpm/@babel+helper-optimise-call-expression@7.25.9/node_modules/@babel/helper-optimise-call-expression/lib/index.js"), _helperAnnotateAsPure = __webpack_require__2("./node_modules/.pnpm/@babel+helper-annotate-as-pure@7.25.9/node_modules/@babel/helper-annotate-as-pure/lib/index.js"), _helperSkipTransparentExpressionWrappers = __webpack_require__2("./node_modules/.pnpm/@babel+helper-skip-transparent-expression-wrappers@7.25.9/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js"), ts = __webpack_require__2("./node_modules/.pnpm/@babel+helper-create-class-features-plugin@7.25.9_@babel+core@7.26.0/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js"), newHelpers = (file) => file.availableHelper("classPrivateFieldGet2");
|
|
240064
240104
|
function privateNameVisitorFactory(visitor) {
|
|
240065
240105
|
const nestedVisitor = _traverse.visitors.environmentVisitor(Object.assign({}, visitor)), privateNameVisitor2 = Object.assign({}, visitor, { Class(path14) {
|
|
240066
240106
|
const { privateNamesMap } = this, body = path14.get("body.body"), visiblePrivateNames = new Map(privateNamesMap), redeclared = [];
|
|
@@ -240438,7 +240478,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
240438
240478
|
if (!props.length && !isDecorated) return;
|
|
240439
240479
|
const innerBinding = path14.node.id;
|
|
240440
240480
|
let ref;
|
|
240441
|
-
innerBinding && pathIsClassDeclaration || (null != path14.ensureFunctionName || (path14.ensureFunctionName = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
240481
|
+
innerBinding && pathIsClassDeclaration || (null != path14.ensureFunctionName || (path14.ensureFunctionName = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js").NodePath.prototype.ensureFunctionName), path14.ensureFunctionName(false), ref = path14.scope.generateUidIdentifier((null == innerBinding ? void 0 : innerBinding.name) || "Class"));
|
|
240442
240482
|
const classRefForDefine = null != (_ref = ref) ? _ref : _core.types.cloneNode(innerBinding), privateNamesMap = (0, _fields.buildPrivateNamesMap)(classRefForDefine.name, null != privateFieldsAsSymbolsOrProperties ? privateFieldsAsSymbolsOrProperties : loose2, props, file), privateNamesNodes = (0, _fields.buildPrivateNamesNodes)(privateNamesMap, null != privateFieldsAsProperties ? privateFieldsAsProperties : loose2, null != privateFieldsAsSymbols && privateFieldsAsSymbols, file);
|
|
240443
240483
|
let keysNodes, staticNodes, instanceNodes, lastInstanceNodeReturnsThis, pureStaticNodes, classBindingNode, wrapClass;
|
|
240444
240484
|
(0, _fields.transformPrivateNamesUsage)(classRefForDefine, path14, privateNamesMap, { privateFieldsAsProperties: null != privateFieldsAsSymbolsOrProperties ? privateFieldsAsSymbolsOrProperties : loose2, noUninitializedPrivateFieldAccess, noDocumentAll, innerBinding }, file), isDecorated ? (staticNodes = pureStaticNodes = keysNodes = [], { instanceNodes, wrapClass } = (0, _decorators2.buildDecoratedClass)(classRefForDefine, path14, elements, file)) : (keysNodes = (0, _misc.extractComputedKeys)(path14, computedPaths, file), { staticNodes, pureStaticNodes, instanceNodes, lastInstanceNodeReturnsThis, classBindingNode, wrapClass } = (0, _fields.buildFieldsInitNodes)(ref, path14.node.superClass, props, privateNamesMap, file, null != setPublicClassFields ? setPublicClassFields : loose2, null != privateFieldsAsSymbolsOrProperties ? privateFieldsAsSymbolsOrProperties : loose2, noUninitializedPrivateFieldAccess, null != constantSuper ? constantSuper : loose2, innerBinding)), instanceNodes.length > 0 && (0, _misc.injectInitialization)(path14, constructor, instanceNodes, (referenceVisitor, state) => {
|
|
@@ -240450,7 +240490,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
240450
240490
|
{
|
|
240451
240491
|
if ("7.25.9" !== file.get(versionKey)) return;
|
|
240452
240492
|
const decl = path14.get("declaration");
|
|
240453
|
-
if (decl.isClassDeclaration() && (0, _decorators2.hasDecorators)(decl.node)) if (decl.node.id) null != path14.splitExportDeclaration || (path14.splitExportDeclaration = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
240493
|
+
if (decl.isClassDeclaration() && (0, _decorators2.hasDecorators)(decl.node)) if (decl.node.id) null != path14.splitExportDeclaration || (path14.splitExportDeclaration = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js").NodePath.prototype.splitExportDeclaration), path14.splitExportDeclaration();
|
|
240454
240494
|
else decl.node.type = "ClassExpression";
|
|
240455
240495
|
}
|
|
240456
240496
|
} } };
|
|
@@ -240495,7 +240535,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
240495
240535
|
} else constructor.get("body").unshiftContainer("body", nodes);
|
|
240496
240536
|
}, exports2.memoiseComputedKey = memoiseComputedKey;
|
|
240497
240537
|
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js");
|
|
240498
|
-
const findBareSupers = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
240538
|
+
const findBareSupers = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js").visitors.environmentVisitor({ Super(path14) {
|
|
240499
240539
|
const { node, parentPath } = path14;
|
|
240500
240540
|
parentPath.isCallExpression({ callee: node }) && this.push(parentPath);
|
|
240501
240541
|
} }), referenceVisitor = { "TSTypeAnnotation|TypeAnnotation"(path14) {
|
|
@@ -240538,7 +240578,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
240538
240578
|
}), n.default = e, Object.freeze(n);
|
|
240539
240579
|
}
|
|
240540
240580
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
240541
|
-
var _t__namespace = _interopNamespace(__webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
240581
|
+
var _t__namespace = _interopNamespace(__webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"));
|
|
240542
240582
|
function willPathCastToBoolean(path14) {
|
|
240543
240583
|
const maybeWrapped = path14, { node, parentPath } = maybeWrapped;
|
|
240544
240584
|
if (parentPath.isLogicalExpression()) {
|
|
@@ -240682,7 +240722,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
240682
240722
|
}, "./node_modules/.pnpm/@babel+helper-module-imports@7.25.9/node_modules/@babel/helper-module-imports/lib/import-builder.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
240683
240723
|
"use strict";
|
|
240684
240724
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
240685
|
-
var _assert = __webpack_require__2("assert"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
240725
|
+
var _assert = __webpack_require__2("assert"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
240686
240726
|
const { callExpression, cloneNode, expressionStatement, identifier, importDeclaration, importDefaultSpecifier, importNamespaceSpecifier, importSpecifier, memberExpression, stringLiteral, variableDeclaration, variableDeclarator } = _t;
|
|
240687
240727
|
exports2.default = class {
|
|
240688
240728
|
constructor(importedSource, scope, hub) {
|
|
@@ -240736,7 +240776,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
240736
240776
|
}, "./node_modules/.pnpm/@babel+helper-module-imports@7.25.9/node_modules/@babel/helper-module-imports/lib/import-injector.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
240737
240777
|
"use strict";
|
|
240738
240778
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
240739
|
-
var _assert = __webpack_require__2("assert"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
240779
|
+
var _assert = __webpack_require__2("assert"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _importBuilder = __webpack_require__2("./node_modules/.pnpm/@babel+helper-module-imports@7.25.9/node_modules/@babel/helper-module-imports/lib/import-builder.js"), _isModule = __webpack_require__2("./node_modules/.pnpm/@babel+helper-module-imports@7.25.9/node_modules/@babel/helper-module-imports/lib/is-module.js");
|
|
240740
240780
|
const { identifier, importSpecifier, numericLiteral, sequenceExpression, isImportDeclaration } = _t;
|
|
240741
240781
|
function isValueImport(node) {
|
|
240742
240782
|
return "type" !== node.importKind && "typeof" !== node.importKind;
|
|
@@ -241096,7 +241136,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
241096
241136
|
const stringSpecifiers = /* @__PURE__ */ new Set();
|
|
241097
241137
|
!function(programPath2) {
|
|
241098
241138
|
programPath2.get("body").forEach((child) => {
|
|
241099
|
-
child.isExportDefaultDeclaration() && (null != child.splitExportDeclaration || (child.splitExportDeclaration = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
241139
|
+
child.isExportDefaultDeclaration() && (null != child.splitExportDeclaration || (child.splitExportDeclaration = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js").NodePath.prototype.splitExportDeclaration), child.splitExportDeclaration());
|
|
241100
241140
|
});
|
|
241101
241141
|
}(programPath);
|
|
241102
241142
|
const { local, sources, hasExports } = function(programPath2, { getWrapperPayload: getWrapperPayload2, initializeReexports: initializeReexports2 }, stringSpecifiers2) {
|
|
@@ -241429,14 +241469,14 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
241429
241469
|
} }), rewriteThisVisitor.noScope = true);
|
|
241430
241470
|
(0, _traverse.default)(programPath.node, rewriteThisVisitor);
|
|
241431
241471
|
};
|
|
241432
|
-
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _traverse = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
241472
|
+
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _traverse = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js");
|
|
241433
241473
|
let rewriteThisVisitor;
|
|
241434
241474
|
}, "./node_modules/.pnpm/@babel+helper-optimise-call-expression@7.25.9/node_modules/@babel/helper-optimise-call-expression/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
241435
241475
|
"use strict";
|
|
241436
241476
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(callee, thisNode, args, optional) {
|
|
241437
241477
|
return 1 === args.length && isSpreadElement(args[0]) && isIdentifier(args[0].argument, { name: "arguments" }) ? optional ? optionalCallExpression(optionalMemberExpression(callee, identifier("apply"), false, true), [thisNode, args[0].argument], false) : callExpression(memberExpression(callee, identifier("apply")), [thisNode, args[0].argument]) : optional ? optionalCallExpression(optionalMemberExpression(callee, identifier("call"), false, true), [thisNode, ...args], false) : callExpression(memberExpression(callee, identifier("call")), [thisNode, ...args]);
|
|
241438
241478
|
};
|
|
241439
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
241479
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
241440
241480
|
const { callExpression, identifier, isIdentifier, isSpreadElement, memberExpression, optionalCallExpression, optionalMemberExpression } = _t;
|
|
241441
241481
|
}, "./node_modules/.pnpm/@babel+helper-plugin-utils@7.25.9/node_modules/@babel/helper-plugin-utils/lib/index.js": (__unused_webpack_module, exports2) => {
|
|
241442
241482
|
"use strict";
|
|
@@ -241477,7 +241517,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
241477
241517
|
}, "./node_modules/.pnpm/@babel+helper-replace-supers@7.25.9_@babel+core@7.26.0/node_modules/@babel/helper-replace-supers/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
241478
241518
|
"use strict";
|
|
241479
241519
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
241480
|
-
var _helperMemberExpressionToFunctions = __webpack_require__2("./node_modules/.pnpm/@babel+helper-member-expression-to-functions@7.25.9/node_modules/@babel/helper-member-expression-to-functions/lib/index.js"), _helperOptimiseCallExpression = __webpack_require__2("./node_modules/.pnpm/@babel+helper-optimise-call-expression@7.25.9/node_modules/@babel/helper-optimise-call-expression/lib/index.js"), _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _traverse = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
241520
|
+
var _helperMemberExpressionToFunctions = __webpack_require__2("./node_modules/.pnpm/@babel+helper-member-expression-to-functions@7.25.9/node_modules/@babel/helper-member-expression-to-functions/lib/index.js"), _helperOptimiseCallExpression = __webpack_require__2("./node_modules/.pnpm/@babel+helper-optimise-call-expression@7.25.9/node_modules/@babel/helper-optimise-call-expression/lib/index.js"), _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _traverse = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js");
|
|
241481
241521
|
const { assignmentExpression, callExpression, cloneNode, identifier, memberExpression, sequenceExpression, stringLiteral, thisExpression } = _core.types;
|
|
241482
241522
|
exports2.environmentVisitor = _traverse.visitors.environmentVisitor({}), exports2.skipAllButComputedKey = function(path14) {
|
|
241483
241523
|
path14.skip(), path14.node.computed && path14.context.maybeQueue(path14.get("key"));
|
|
@@ -241597,11 +241637,11 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
241597
241637
|
};
|
|
241598
241638
|
}, "./node_modules/.pnpm/@babel+helper-simple-access@7.25.9/node_modules/@babel/helper-simple-access/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
241599
241639
|
"use strict";
|
|
241600
|
-
|
|
241640
|
+
exports2.A = function(path14, bindingNames) {
|
|
241601
241641
|
var _arguments$;
|
|
241602
241642
|
path14.traverse(simpleAssignmentVisitor, { scope: path14.scope, bindingNames, seen: /* @__PURE__ */ new WeakSet(), includeUpdateExpression: null == (_arguments$ = arguments[2]) || _arguments$ });
|
|
241603
241643
|
};
|
|
241604
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
241644
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
241605
241645
|
const { LOGICAL_OPERATORS, assignmentExpression, binaryExpression, cloneNode, identifier, logicalExpression, numericLiteral, sequenceExpression, unaryExpression } = _t, simpleAssignmentVisitor = { AssignmentExpression: { exit(path14) {
|
|
241606
241646
|
const { scope, seen, bindingNames } = this;
|
|
241607
241647
|
if ("=" === path14.node.operator) return;
|
|
@@ -241640,7 +241680,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
241640
241680
|
for (; isTransparentExprWrapper(path14.node); ) path14 = path14.get("expression");
|
|
241641
241681
|
return path14;
|
|
241642
241682
|
};
|
|
241643
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
241683
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
241644
241684
|
const { isParenthesizedExpression, isTSAsExpression, isTSNonNullExpression, isTSSatisfiesExpression, isTSTypeAssertion, isTypeCastExpression } = _t;
|
|
241645
241685
|
function isTransparentExprWrapper(node) {
|
|
241646
241686
|
return isTSAsExpression(node) || isTSSatisfiesExpression(node) || isTSTypeAssertion(node) || isTSNonNullExpression(node) || isTypeCastExpression(node) || isParenthesizedExpression(node);
|
|
@@ -241914,7 +241954,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
241914
241954
|
}, exports2.list = void 0, exports2.minVersion = function(name) {
|
|
241915
241955
|
return loadHelper(name).minVersion;
|
|
241916
241956
|
};
|
|
241917
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
241957
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _helpersGenerated = __webpack_require__2("./node_modules/.pnpm/@babel+helpers@7.26.0/node_modules/@babel/helpers/lib/helpers-generated.js");
|
|
241918
241958
|
const { cloneNode, identifier } = _t;
|
|
241919
241959
|
function deep(obj, path14, value2) {
|
|
241920
241960
|
try {
|
|
@@ -241967,7 +242007,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
241967
242007
|
};
|
|
241968
242008
|
exports2.list = Object.keys(_helpersGenerated.default).map((name) => name.replace(/^_/, ""));
|
|
241969
242009
|
exports2.default = get;
|
|
241970
|
-
}, "./node_modules/.pnpm/@babel+parser@7.26.
|
|
242010
|
+
}, "./node_modules/.pnpm/@babel+parser@7.26.3/node_modules/@babel/parser/lib/index.js": (__unused_webpack_module, exports2) => {
|
|
241971
242011
|
"use strict";
|
|
241972
242012
|
function _objectWithoutPropertiesLoose(r, e) {
|
|
241973
242013
|
if (null == r) return {};
|
|
@@ -245814,7 +245854,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
245814
245854
|
if (this.match(5)) {
|
|
245815
245855
|
this.scope.enter(256), this.prodParam.enter(0);
|
|
245816
245856
|
const mod = node;
|
|
245817
|
-
return mod.kind = "global",
|
|
245857
|
+
return mod.kind = "global", node.global = true, mod.id = expr, mod.body = this.tsParseModuleBlock(), this.scope.exit(), this.prodParam.exit(), this.finishNode(mod, "TSModuleDeclaration");
|
|
245818
245858
|
}
|
|
245819
245859
|
break;
|
|
245820
245860
|
default:
|
|
@@ -248568,7 +248608,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
248568
248608
|
const [importDeclaration] = path14.replaceWithMultiple(nodes);
|
|
248569
248609
|
path14.scope.registerDeclaration(importDeclaration);
|
|
248570
248610
|
} } }));
|
|
248571
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.
|
|
248611
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
248572
248612
|
"use strict";
|
|
248573
248613
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.transformDynamicImport = function(path14, noInterop, file) {
|
|
248574
248614
|
const buildRequire = noInterop ? requireNoInterop : requireInterop;
|
|
@@ -248576,7 +248616,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
248576
248616
|
};
|
|
248577
248617
|
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _helperModuleTransforms = __webpack_require__2("./node_modules/.pnpm/@babel+helper-module-transforms@7.26.0_@babel+core@7.26.0/node_modules/@babel/helper-module-transforms/lib/index.js");
|
|
248578
248618
|
const requireNoInterop = (source) => _core.template.expression.ast`require(${source})`, requireInterop = (source, file) => _core.types.callExpression(file.addHelper("interopRequireWildcard"), [requireNoInterop(source)]);
|
|
248579
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.
|
|
248619
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js": (__unused_webpack_module, exports2) => {
|
|
248580
248620
|
"use strict";
|
|
248581
248621
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.defineCommonJSHook = function(file, hook) {
|
|
248582
248622
|
let hooks = file.get(commonJSHooksKey);
|
|
@@ -248593,12 +248633,12 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
248593
248633
|
if (null != res) return res;
|
|
248594
248634
|
}
|
|
248595
248635
|
}
|
|
248596
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.
|
|
248636
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
248597
248637
|
"use strict";
|
|
248598
248638
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0, Object.defineProperty(exports2, "defineCommonJSHook", { enumerable: true, get: function() {
|
|
248599
248639
|
return _hooks.defineCommonJSHook;
|
|
248600
248640
|
} });
|
|
248601
|
-
var _helperPluginUtils = __webpack_require__2("./node_modules/.pnpm/@babel+helper-plugin-utils@7.25.9/node_modules/@babel/helper-plugin-utils/lib/index.js"), _helperModuleTransforms = __webpack_require__2("./node_modules/.pnpm/@babel+helper-module-transforms@7.26.0_@babel+core@7.26.0/node_modules/@babel/helper-module-transforms/lib/index.js"),
|
|
248641
|
+
var _helperPluginUtils = __webpack_require__2("./node_modules/.pnpm/@babel+helper-plugin-utils@7.25.9/node_modules/@babel/helper-plugin-utils/lib/index.js"), _helperModuleTransforms = __webpack_require__2("./node_modules/.pnpm/@babel+helper-module-transforms@7.26.0_@babel+core@7.26.0/node_modules/@babel/helper-module-transforms/lib/index.js"), _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _dynamicImport = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js"), _lazy = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js"), _hooks = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js");
|
|
248602
248642
|
exports2.default = (0, _helperPluginUtils.declare)((api, options) => {
|
|
248603
248643
|
var _api$assumption, _api$assumption2, _api$assumption3;
|
|
248604
248644
|
api.assertVersion(7);
|
|
@@ -248654,7 +248694,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
248654
248694
|
(0, _dynamicImport.transformDynamicImport)(path14, noInterop, this.file);
|
|
248655
248695
|
}, Program: { exit(path14, state) {
|
|
248656
248696
|
if (!(0, _helperModuleTransforms.isModule)(path14)) return;
|
|
248657
|
-
path14.scope.rename("exports"), path14.scope.rename("module"), path14.scope.rename("require"), path14.scope.rename("__filename"), path14.scope.rename("__dirname"), allowCommonJSExports ||
|
|
248697
|
+
path14.scope.rename("exports"), path14.scope.rename("module"), path14.scope.rename("require"), path14.scope.rename("__filename"), path14.scope.rename("__dirname"), allowCommonJSExports || path14.traverse(moduleExportsVisitor, { scope: path14.scope });
|
|
248658
248698
|
let moduleName2 = (0, _helperModuleTransforms.getModuleName)(this.file.opts, options);
|
|
248659
248699
|
moduleName2 && (moduleName2 = _core.types.stringLiteral(moduleName2));
|
|
248660
248700
|
const hooks = (0, _hooks.makeInvokers)(this.file), { meta, headers } = (0, _helperModuleTransforms.rewriteModuleStatementsAndPrepareHeader)(path14, { exportName: "exports", constantReexports, enumerableModuleMeta, strict, strictMode, allowTopLevelThis, noInterop, importInterop, wrapReference: hooks.wrapReference, getWrapperPayload: hooks.getWrapperPayload, esNamespaceOnly: "string" == typeof state.filename && /\.mjs$/.test(state.filename) ? mjsStrictNamespace : strictNamespace, noIncompleteNsImportDetection, filename: this.file.opts.filename });
|
|
@@ -248682,11 +248722,11 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
248682
248722
|
});
|
|
248683
248723
|
} } } };
|
|
248684
248724
|
});
|
|
248685
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.
|
|
248725
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
248686
248726
|
"use strict";
|
|
248687
248727
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.lazyImportsHook = void 0;
|
|
248688
248728
|
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _helperModuleTransforms = __webpack_require__2("./node_modules/.pnpm/@babel+helper-module-transforms@7.26.0_@babel+core@7.26.0/node_modules/@babel/helper-module-transforms/lib/index.js");
|
|
248689
|
-
exports2.lazyImportsHook = (lazy) => ({ name: "@babel/plugin-transform-modules-commonjs/lazy", version: "7.
|
|
248729
|
+
exports2.lazyImportsHook = (lazy) => ({ name: "@babel/plugin-transform-modules-commonjs/lazy", version: "7.26.3", getWrapperPayload: (source, metadata) => (0, _helperModuleTransforms.isSideEffectImport)(metadata) || metadata.reexportAll ? null : true === lazy ? source.includes(".") ? null : "lazy/function" : Array.isArray(lazy) ? lazy.includes(source) ? "lazy/function" : null : "function" == typeof lazy ? lazy(source) ? "lazy/function" : null : void 0, buildRequireWrapper(name, init, payload, referenced) {
|
|
248690
248730
|
if ("lazy/function" === payload) return !!referenced && _core.template.statement.ast`
|
|
248691
248731
|
function ${name}() {
|
|
248692
248732
|
const data = ${init};
|
|
@@ -248928,7 +248968,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
248928
248968
|
exports2.A = void 0;
|
|
248929
248969
|
var _createPlugin = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-react-jsx@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-transform-react-jsx/lib/create-plugin.js");
|
|
248930
248970
|
exports2.A = (0, _createPlugin.default)({ name: "transform-react-jsx", development: false });
|
|
248931
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
248971
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
248932
248972
|
"use strict";
|
|
248933
248973
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(path14, t) {
|
|
248934
248974
|
const { name } = path14.node.id, parentIsExport = path14.parentPath.isExportNamedDeclaration();
|
|
@@ -248955,8 +248995,8 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
248955
248995
|
entriesMap.has(key) && path15.replaceWith(t.cloneNode(entriesMap.get(key)));
|
|
248956
248996
|
} }), path14.remove();
|
|
248957
248997
|
};
|
|
248958
|
-
var _enum = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
248959
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
248998
|
+
var _enum = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/enum.js");
|
|
248999
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/enum.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
248960
249000
|
"use strict";
|
|
248961
249001
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(path14, t) {
|
|
248962
249002
|
const { node, parentPath } = path14;
|
|
@@ -249122,7 +249162,7 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
249122
249162
|
}
|
|
249123
249163
|
}
|
|
249124
249164
|
}
|
|
249125
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
249165
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/global-types.js": (__unused_webpack_module, exports2) => {
|
|
249126
249166
|
"use strict";
|
|
249127
249167
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.GLOBAL_TYPES = void 0, exports2.isGlobalType = function({ scope }, name) {
|
|
249128
249168
|
return !scope.hasBinding(name) && (!!GLOBAL_TYPES.get(scope).has(name) || (console.warn(`The exported identifier "${name}" is not declared in Babel's scope tracker
|
|
@@ -249137,10 +249177,10 @@ This problem is likely caused by another plugin injecting
|
|
|
249137
249177
|
GLOBAL_TYPES.get(programScope).add(name);
|
|
249138
249178
|
};
|
|
249139
249179
|
const GLOBAL_TYPES = exports2.GLOBAL_TYPES = /* @__PURE__ */ new WeakMap();
|
|
249140
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
249180
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249141
249181
|
"use strict";
|
|
249142
249182
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
249143
|
-
var _helperPluginUtils = __webpack_require__2("./node_modules/.pnpm/@babel+helper-plugin-utils@7.25.9/node_modules/@babel/helper-plugin-utils/lib/index.js"), _pluginSyntaxTypescript = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-syntax-typescript@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-typescript/lib/index.js"), _helperCreateClassFeaturesPlugin = __webpack_require__2("./node_modules/.pnpm/@babel+helper-create-class-features-plugin@7.25.9_@babel+core@7.26.0/node_modules/@babel/helper-create-class-features-plugin/lib/index.js"), _constEnum = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
249183
|
+
var _helperPluginUtils = __webpack_require__2("./node_modules/.pnpm/@babel+helper-plugin-utils@7.25.9/node_modules/@babel/helper-plugin-utils/lib/index.js"), _pluginSyntaxTypescript = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-syntax-typescript@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-typescript/lib/index.js"), _helperCreateClassFeaturesPlugin = __webpack_require__2("./node_modules/.pnpm/@babel+helper-create-class-features-plugin@7.25.9_@babel+core@7.26.0/node_modules/@babel/helper-create-class-features-plugin/lib/index.js"), _constEnum = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js"), _enum = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/enum.js"), _globalTypes = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/global-types.js"), _namespace = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/namespace.js");
|
|
249144
249184
|
function isInType(path14) {
|
|
249145
249185
|
switch (path14.parent.type) {
|
|
249146
249186
|
case "TSTypeReference":
|
|
@@ -249254,11 +249294,14 @@ Please consider using \`${suggestion}\`${extra}, or add @babel/plugin-transform-
|
|
|
249254
249294
|
else if (!path14.node.source && path14.node.specifiers.length > 0 && path14.node.specifiers.every((specifier) => t.isExportSpecifier(specifier) && (0, _globalTypes.isGlobalType)(path14, specifier.local.name))) path14.remove();
|
|
249255
249295
|
else {
|
|
249256
249296
|
if (t.isTSModuleDeclaration(path14.node.declaration)) {
|
|
249257
|
-
const namespace = path14.node.declaration
|
|
249258
|
-
if (t.
|
|
249259
|
-
|
|
249260
|
-
|
|
249261
|
-
|
|
249297
|
+
const namespace = path14.node.declaration;
|
|
249298
|
+
if (!t.isStringLiteral(namespace.id)) {
|
|
249299
|
+
const id = (0, _namespace.getFirstIdentifier)(namespace.id);
|
|
249300
|
+
if (path14.scope.hasOwnBinding(id.name)) path14.replaceWith(namespace);
|
|
249301
|
+
else {
|
|
249302
|
+
const [newExport] = path14.replaceWithMultiple([t.exportNamedDeclaration(t.variableDeclaration("let", [t.variableDeclarator(t.cloneNode(id))])), namespace]);
|
|
249303
|
+
path14.scope.registerDeclaration(newExport);
|
|
249304
|
+
}
|
|
249262
249305
|
}
|
|
249263
249306
|
}
|
|
249264
249307
|
NEEDS_EXPLICIT_ESM.set(state.file.ast.program, false);
|
|
@@ -249345,18 +249388,21 @@ Please consider using \`${suggestion}\`${extra}, or add @babel/plugin-transform-
|
|
|
249345
249388
|
} }), !sourceFileHasJsx;
|
|
249346
249389
|
}
|
|
249347
249390
|
});
|
|
249348
|
-
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
249391
|
+
}, "./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/namespace.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249349
249392
|
"use strict";
|
|
249350
249393
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(path14, allowNamespaces) {
|
|
249351
249394
|
if (path14.node.declare || "StringLiteral" === path14.node.id.type) return void path14.remove();
|
|
249352
249395
|
if (!allowNamespaces) throw path14.get("id").buildCodeFrameError("Namespace not marked type-only declare. Non-declarative namespaces are only supported experimentally in Babel. To enable and review caveats see: https://babeljs.io/docs/en/babel-plugin-transform-typescript");
|
|
249353
|
-
const name = path14.node.id.name, value2 = handleNested(path14, path14.node);
|
|
249396
|
+
const name = getFirstIdentifier(path14.node.id).name, value2 = handleNested(path14, path14.node);
|
|
249354
249397
|
if (null === value2) {
|
|
249355
249398
|
const program = path14.findParent((p) => p.isProgram());
|
|
249356
249399
|
(0, _globalTypes.registerGlobalType)(program.scope, name), path14.remove();
|
|
249357
249400
|
} else path14.scope.hasOwnBinding(name) ? path14.replaceWith(value2) : path14.scope.registerDeclaration(path14.replaceWithMultiple([getDeclaration(name), value2])[0]);
|
|
249358
|
-
};
|
|
249359
|
-
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _globalTypes = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
249401
|
+
}, exports2.getFirstIdentifier = getFirstIdentifier;
|
|
249402
|
+
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), _globalTypes = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/global-types.js");
|
|
249403
|
+
function getFirstIdentifier(node) {
|
|
249404
|
+
return _core.types.isIdentifier(node) ? node : getFirstIdentifier(node.left);
|
|
249405
|
+
}
|
|
249360
249406
|
function getDeclaration(name) {
|
|
249361
249407
|
return _core.types.variableDeclaration("let", [_core.types.variableDeclarator(_core.types.identifier(name))]);
|
|
249362
249408
|
}
|
|
@@ -249378,9 +249424,10 @@ Please consider using \`${suggestion}\`${extra}, or add @babel/plugin-transform-
|
|
|
249378
249424
|
return path14.hub.buildError(node, "Ambient modules cannot be nested in other modules or namespaces.", Error);
|
|
249379
249425
|
}
|
|
249380
249426
|
function handleNested(path14, node, parentExport) {
|
|
249381
|
-
const names = /* @__PURE__ */ new Set(), realName = node.id;
|
|
249382
|
-
|
|
249383
|
-
|
|
249427
|
+
const names = /* @__PURE__ */ new Set(), realName = node.id, name = path14.scope.generateUid(realName.name), body = node.body;
|
|
249428
|
+
let namespaceTopLevel;
|
|
249429
|
+
node.id;
|
|
249430
|
+
namespaceTopLevel = _core.types.isTSModuleBlock(body) ? body.body : [_core.types.exportNamedDeclaration(body)];
|
|
249384
249431
|
let isEmpty = true;
|
|
249385
249432
|
for (let i = 0; i < namespaceTopLevel.length; i++) {
|
|
249386
249433
|
const subNode = namespaceTopLevel[i];
|
|
@@ -249453,9 +249500,9 @@ Please consider using \`${suggestion}\`${extra}, or add @babel/plugin-transform-
|
|
|
249453
249500
|
}, "./node_modules/.pnpm/@babel+preset-typescript@7.26.0_@babel+core@7.26.0/node_modules/@babel/preset-typescript/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249454
249501
|
"use strict";
|
|
249455
249502
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
249456
|
-
var helperPluginUtils = __webpack_require__2("./node_modules/.pnpm/@babel+helper-plugin-utils@7.25.9/node_modules/@babel/helper-plugin-utils/lib/index.js"), transformTypeScript = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
249503
|
+
var helperPluginUtils = __webpack_require__2("./node_modules/.pnpm/@babel+helper-plugin-utils@7.25.9/node_modules/@babel/helper-plugin-utils/lib/index.js"), transformTypeScript = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/index.js");
|
|
249457
249504
|
__webpack_require__2("./node_modules/.pnpm/@babel+plugin-syntax-jsx@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-jsx/lib/index.js");
|
|
249458
|
-
var transformModulesCommonJS = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.
|
|
249505
|
+
var transformModulesCommonJS = __webpack_require__2("./node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js"), helperValidatorOption = __webpack_require__2("./node_modules/.pnpm/@babel+helper-validator-option@7.25.9/node_modules/@babel/helper-validator-option/lib/index.js");
|
|
249459
249506
|
function _interopDefault(e) {
|
|
249460
249507
|
return e && e.__esModule ? e : { default: e };
|
|
249461
249508
|
}
|
|
@@ -249540,7 +249587,7 @@ ${rootStack}`, err;
|
|
|
249540
249587
|
}, "./node_modules/.pnpm/@babel+template@7.25.9/node_modules/@babel/template/lib/formatters.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249541
249588
|
"use strict";
|
|
249542
249589
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.statements = exports2.statement = exports2.smart = exports2.program = exports2.expression = void 0;
|
|
249543
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
249590
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
249544
249591
|
const { assertExpressionStatement } = _t;
|
|
249545
249592
|
function makeStatementFormatter(fn) {
|
|
249546
249593
|
return { code: (str) => `/* @babel/template */;
|
|
@@ -249648,7 +249695,7 @@ ${str}
|
|
|
249648
249695
|
const state = { syntactic: { placeholders: [], placeholderNames: /* @__PURE__ */ new Set() }, legacy: { placeholders: [], placeholderNames: /* @__PURE__ */ new Set() }, placeholderWhitelist, placeholderPattern, syntacticPlaceholders };
|
|
249649
249696
|
return traverse(ast, placeholderVisitorHandler, state), Object.assign({ ast }, state.syntactic.placeholders.length ? state.syntactic : state.legacy);
|
|
249650
249697
|
};
|
|
249651
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
249698
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _parser = __webpack_require__2("./node_modules/.pnpm/@babel+parser@7.26.3/node_modules/@babel/parser/lib/index.js"), _codeFrame = __webpack_require__2("./stubs/babel-codeframe.mjs");
|
|
249652
249699
|
const { isCallExpression, isExpressionStatement, isFunction: isFunction2, isIdentifier, isJSXIdentifier, isNewExpression, isPlaceholder, isStatement, isStringLiteral, removePropertiesDeep, traverse } = _t, PATTERN = /^[_$A-Z0-9]+$/;
|
|
249653
249700
|
function placeholderVisitorHandler(node, ancestors, state) {
|
|
249654
249701
|
var _state$placeholderWhi;
|
|
@@ -249722,7 +249769,7 @@ ${str}
|
|
|
249722
249769
|
}
|
|
249723
249770
|
}), ast;
|
|
249724
249771
|
};
|
|
249725
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
249772
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
249726
249773
|
const { blockStatement, cloneNode, emptyStatement, expressionStatement, identifier, isStatement, isStringLiteral, stringLiteral, validate } = _t;
|
|
249727
249774
|
}, "./node_modules/.pnpm/@babel+template@7.25.9/node_modules/@babel/template/lib/string.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249728
249775
|
"use strict";
|
|
@@ -249734,7 +249781,7 @@ ${str}
|
|
|
249734
249781
|
};
|
|
249735
249782
|
};
|
|
249736
249783
|
var _options = __webpack_require__2("./node_modules/.pnpm/@babel+template@7.25.9/node_modules/@babel/template/lib/options.js"), _parse = __webpack_require__2("./node_modules/.pnpm/@babel+template@7.25.9/node_modules/@babel/template/lib/parse.js"), _populate = __webpack_require__2("./node_modules/.pnpm/@babel+template@7.25.9/node_modules/@babel/template/lib/populate.js");
|
|
249737
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
249784
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/cache.js": (__unused_webpack_module, exports2) => {
|
|
249738
249785
|
"use strict";
|
|
249739
249786
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.clear = function() {
|
|
249740
249787
|
clearPath(), clearScope();
|
|
@@ -249757,10 +249804,10 @@ ${str}
|
|
|
249757
249804
|
exports2.scope = scope = /* @__PURE__ */ new WeakMap();
|
|
249758
249805
|
}
|
|
249759
249806
|
const nullHub = Object.freeze({});
|
|
249760
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
249807
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/context.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249761
249808
|
"use strict";
|
|
249762
249809
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
249763
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
249810
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/index.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js");
|
|
249764
249811
|
const { VISITOR_KEYS } = _t;
|
|
249765
249812
|
exports2.default = class {
|
|
249766
249813
|
constructor(scope, opts, state, parentPath) {
|
|
@@ -249817,7 +249864,7 @@ ${str}
|
|
|
249817
249864
|
return !!nodes && (Array.isArray(nodes) ? this.visitMultiple(nodes, node, key) : this.visitSingle(node, key));
|
|
249818
249865
|
}
|
|
249819
249866
|
};
|
|
249820
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
249867
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/hub.js": (__unused_webpack_module, exports2) => {
|
|
249821
249868
|
"use strict";
|
|
249822
249869
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
249823
249870
|
exports2.default = class {
|
|
@@ -249832,7 +249879,7 @@ ${str}
|
|
|
249832
249879
|
return new Error2(msg);
|
|
249833
249880
|
}
|
|
249834
249881
|
};
|
|
249835
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
249882
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249836
249883
|
"use strict";
|
|
249837
249884
|
Object.defineProperty(exports2, "__esModule", { value: true }), Object.defineProperty(exports2, "Hub", { enumerable: true, get: function() {
|
|
249838
249885
|
return _hub.default;
|
|
@@ -249840,10 +249887,10 @@ ${str}
|
|
|
249840
249887
|
return _index.default;
|
|
249841
249888
|
} }), Object.defineProperty(exports2, "Scope", { enumerable: true, get: function() {
|
|
249842
249889
|
return _index2.default;
|
|
249843
|
-
} }), exports2.visitors = exports2.default = void 0, __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
249844
|
-
var visitors = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
249890
|
+
} }), exports2.visitors = exports2.default = void 0, __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js");
|
|
249891
|
+
var visitors = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/visitors.js");
|
|
249845
249892
|
exports2.visitors = visitors;
|
|
249846
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
249893
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), cache2 = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/cache.js"), _traverseNode = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/traverse-node.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/scope/index.js"), _hub = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/hub.js");
|
|
249847
249894
|
const { VISITOR_KEYS, removeProperties, traverseFast } = _t;
|
|
249848
249895
|
function traverse(parent, opts = {}, scope, state, parentPath, visitSelf) {
|
|
249849
249896
|
if (parent) {
|
|
@@ -249870,7 +249917,7 @@ ${str}
|
|
|
249870
249917
|
const state = { has: false, type };
|
|
249871
249918
|
return traverse(tree, { noScope: true, denylist: denylistTypes, enter: hasDenylistedType }, null, state), state.has;
|
|
249872
249919
|
}, traverse.cache = cache2;
|
|
249873
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
249920
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/ancestry.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249874
249921
|
"use strict";
|
|
249875
249922
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.find = function(callback) {
|
|
249876
249923
|
let path14 = this;
|
|
@@ -249947,9 +249994,9 @@ ${str}
|
|
|
249947
249994
|
}, exports2.isDescendant = function(maybeAncestor) {
|
|
249948
249995
|
return !!this.findParent((parent) => parent === maybeAncestor);
|
|
249949
249996
|
};
|
|
249950
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
249997
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
249951
249998
|
const { VISITOR_KEYS } = _t;
|
|
249952
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
249999
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/comments.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249953
250000
|
"use strict";
|
|
249954
250001
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.addComment = function(type, content, line) {
|
|
249955
250002
|
_addComment(this.node, type, content, line);
|
|
@@ -249965,14 +250012,14 @@ ${str}
|
|
|
249965
250012
|
hasPrev && (leading && prev.addComments("trailing", removeIfExisting(leading, prev.node.trailingComments)), trailing && !hasNext && prev.addComments("trailing", trailing));
|
|
249966
250013
|
hasNext && (trailing && next.addComments("leading", removeIfExisting(trailing, next.node.leadingComments)), leading && !hasPrev && next.addComments("leading", leading));
|
|
249967
250014
|
};
|
|
249968
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
250015
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
249969
250016
|
const { addComment: _addComment, addComments: _addComments } = _t;
|
|
249970
250017
|
function removeIfExisting(list, toRemove) {
|
|
249971
250018
|
if (null == toRemove || !toRemove.length) return list;
|
|
249972
250019
|
const set = new Set(toRemove);
|
|
249973
250020
|
return list.filter((el) => !set.has(el));
|
|
249974
250021
|
}
|
|
249975
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
250022
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
249976
250023
|
"use strict";
|
|
249977
250024
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2._call = _call, exports2._getQueueContexts = function() {
|
|
249978
250025
|
let path14 = this, contexts = this.contexts;
|
|
@@ -250017,7 +250064,7 @@ ${str}
|
|
|
250017
250064
|
if (this.shouldSkip || call.call(this, "enter")) return this.debug("Skip..."), this.shouldStop;
|
|
250018
250065
|
return restoreContext(this, currentContext), this.debug("Recursing into..."), this.shouldStop = (0, _traverseNode.traverseNode)(this.node, this.opts, this.scope, this.state, this, this.skipKeys), restoreContext(this, currentContext), call.call(this, "exit"), this.shouldStop;
|
|
250019
250066
|
};
|
|
250020
|
-
var _traverseNode = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
250067
|
+
var _traverseNode = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/traverse-node.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/index.js"), _removal = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/removal.js"), t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
250021
250068
|
function call(key) {
|
|
250022
250069
|
const opts = this.opts;
|
|
250023
250070
|
return this.debug(key), !(!this.node || !_call.call(this, opts[key])) || !!this.node && _call.call(this, null == (_opts$this$node$type = opts[this.node.type]) ? void 0 : _opts$this$node$type[key]);
|
|
@@ -250077,7 +250124,7 @@ ${str}
|
|
|
250077
250124
|
this.key = key, this.node = this.container[this.key], this.type = null == (_this$node = this.node) ? void 0 : _this$node.type;
|
|
250078
250125
|
}
|
|
250079
250126
|
exports2.isBlacklisted = isDenylisted;
|
|
250080
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
250127
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/conversion.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
250081
250128
|
"use strict";
|
|
250082
250129
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.arrowFunctionToExpression = function({ allowInsertArrow = true, allowInsertArrowWithRest = allowInsertArrow, noNewArrows = !((_arguments$) => null == (_arguments$ = arguments[0]) ? void 0 : _arguments$.specCompliant)() } = {}) {
|
|
250083
250130
|
if (!this.isArrowFunctionExpression()) throw this.buildCodeFrameError("Cannot convert non-arrow function to a function expression.");
|
|
@@ -250164,7 +250211,7 @@ ${str}
|
|
|
250164
250211
|
if (!this.isArrowFunctionExpression() && !this.isFunctionExpression() && !this.isFunctionDeclaration()) throw this.buildCodeFrameError("Can only unwrap the environment of a function.");
|
|
250165
250212
|
hoistFunctionEnvironment(this);
|
|
250166
250213
|
};
|
|
250167
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
250214
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _template = __webpack_require__2("./node_modules/.pnpm/@babel+template@7.25.9/node_modules/@babel/template/lib/index.js"), _visitors = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/visitors.js"), _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js");
|
|
250168
250215
|
const { arrowFunctionExpression, assignmentExpression, binaryExpression, blockStatement, callExpression, conditionalExpression, expressionStatement, identifier, isIdentifier, jsxIdentifier, logicalExpression, LOGICAL_OPERATORS, memberExpression, metaProperty, numericLiteral, objectExpression, restElement, returnStatement, sequenceExpression, spreadElement, stringLiteral, super: _super, thisExpression, toExpression, unaryExpression, toBindingIdentifierName, isFunction: isFunction2, isAssignmentPattern, isRestElement, getFunctionName, cloneNode, variableDeclaration, variableDeclarator, exportNamedDeclaration, exportSpecifier, inherits } = _t;
|
|
250169
250216
|
exports2.arrowFunctionToShadowed = function() {
|
|
250170
250217
|
this.isArrowFunctionExpression() && this.arrowFunctionToExpression();
|
|
@@ -250318,7 +250365,7 @@ ${str}
|
|
|
250318
250365
|
}, Scope(path14, state) {
|
|
250319
250366
|
path14.scope.hasOwnBinding(state.name) && path14.skip();
|
|
250320
250367
|
} };
|
|
250321
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
250368
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/evaluation.js": (__unused_webpack_module, exports2) => {
|
|
250322
250369
|
"use strict";
|
|
250323
250370
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.evaluate = function() {
|
|
250324
250371
|
const state = { confident: true, deoptPath: null, seen: /* @__PURE__ */ new Map() };
|
|
@@ -250536,7 +250583,7 @@ ${str}
|
|
|
250536
250583
|
}
|
|
250537
250584
|
if (state.confident) return str;
|
|
250538
250585
|
}
|
|
250539
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
250586
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/family.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
250540
250587
|
"use strict";
|
|
250541
250588
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2._getKey = _getKey, exports2._getPattern = _getPattern, exports2.get = function(key, context = true) {
|
|
250542
250589
|
true === context && (context = this.context);
|
|
@@ -250601,7 +250648,7 @@ ${str}
|
|
|
250601
250648
|
}, exports2.getSibling = function(key) {
|
|
250602
250649
|
return _index.default.get({ parentPath: this.parentPath, parent: this.parent, container: this.container, listKey: this.listKey, key }).setContext(this.context);
|
|
250603
250650
|
};
|
|
250604
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
250651
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/index.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
250605
250652
|
const { getAssignmentIdentifiers: _getAssignmentIdentifiers, getBindingIdentifiers: _getBindingIdentifiers, getOuterBindingIdentifiers: _getOuterBindingIdentifiers, numericLiteral, unaryExpression } = _t, NORMAL_COMPLETION = 0, BREAK_COMPLETION = 1;
|
|
250606
250653
|
function addCompletionRecords(path14, records, context) {
|
|
250607
250654
|
return path14 && records.push(..._getCompletionRecords(path14, context)), records;
|
|
@@ -250684,10 +250731,10 @@ ${str}
|
|
|
250684
250731
|
for (const part of parts) path14 = "." === part ? path14.parentPath : Array.isArray(path14) ? path14[part] : path14.get(part, context);
|
|
250685
250732
|
return path14;
|
|
250686
250733
|
}
|
|
250687
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
250734
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
250688
250735
|
"use strict";
|
|
250689
250736
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = exports2.SHOULD_STOP = exports2.SHOULD_SKIP = exports2.REMOVED = void 0;
|
|
250690
|
-
var virtualTypes = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
250737
|
+
var virtualTypes = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/virtual-types.js"), _debug = __webpack_require__2("./node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/scope/index.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), t = _t, cache2 = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/cache.js"), _generator = __webpack_require__2("./node_modules/.pnpm/@babel+generator@7.26.3/node_modules/@babel/generator/lib/index.js"), NodePath_ancestry = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/ancestry.js"), NodePath_inference = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/index.js"), NodePath_replacement = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/replacement.js"), NodePath_evaluation = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/evaluation.js"), NodePath_conversion = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/conversion.js"), NodePath_introspection = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/introspection.js"), _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js"), NodePath_context = _context, NodePath_removal = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/removal.js"), NodePath_modification = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/modification.js"), NodePath_family = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/family.js"), NodePath_comments = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/comments.js"), NodePath_virtual_types_validator = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js");
|
|
250691
250738
|
const { validate } = _t, debug = _debug("babel"), NodePath_Final = (exports2.REMOVED = 1, exports2.SHOULD_STOP = 2, exports2.SHOULD_SKIP = 4, exports2.default = class NodePath {
|
|
250692
250739
|
constructor(hub, parent) {
|
|
250693
250740
|
this.contexts = [], this.state = null, this.opts = null, this._traverseFlags = 0, this.skipKeys = null, this.parentPath = null, this.container = null, this.listKey = null, this.key = null, this.node = null, this.type = null, this.parent = parent, this.hub = hub, this.data = null, this.context = null, this.scope = null;
|
|
@@ -250775,7 +250822,7 @@ ${str}
|
|
|
250775
250822
|
}
|
|
250776
250823
|
Object.assign(NodePath_Final.prototype, NodePath_virtual_types_validator);
|
|
250777
250824
|
for (const type of Object.keys(virtualTypes)) "_" !== type[0] && (t.TYPES.includes(type) || t.TYPES.push(type));
|
|
250778
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
250825
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
250779
250826
|
"use strict";
|
|
250780
250827
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2._getTypeAnnotation = _getTypeAnnotation, exports2.baseTypeStrictlyMatches = function(rightArg) {
|
|
250781
250828
|
const left2 = this.getTypeAnnotation(), right2 = rightArg.getTypeAnnotation();
|
|
@@ -250801,7 +250848,7 @@ ${str}
|
|
|
250801
250848
|
if ("Array" === genericName && (isTSArrayType(type) || isArrayTypeAnnotation(type) || isTupleTypeAnnotation(type))) return true;
|
|
250802
250849
|
return isGenericTypeAnnotation(type) && isIdentifier(type.id, { name: genericName }) || isTSTypeReference(type) && isIdentifier(type.typeName, { name: genericName });
|
|
250803
250850
|
};
|
|
250804
|
-
var inferers = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
250851
|
+
var inferers = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/inferers.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
250805
250852
|
const { anyTypeAnnotation, isAnyTypeAnnotation, isArrayTypeAnnotation, isBooleanTypeAnnotation, isEmptyTypeAnnotation, isFlowBaseAnnotation, isGenericTypeAnnotation, isIdentifier, isMixedTypeAnnotation, isNumberTypeAnnotation, isStringTypeAnnotation, isTSArrayType, isTSTypeAnnotation, isTSTypeReference, isTupleTypeAnnotation, isTypeAnnotation, isUnionTypeAnnotation, isVoidTypeAnnotation, stringTypeAnnotation, voidTypeAnnotation } = _t;
|
|
250806
250853
|
const typeAnnotationInferringNodes = /* @__PURE__ */ new WeakSet();
|
|
250807
250854
|
function _getTypeAnnotation() {
|
|
@@ -250835,7 +250882,7 @@ ${str}
|
|
|
250835
250882
|
if (soft) return false;
|
|
250836
250883
|
throw new Error(`Unknown base type ${baseName}`);
|
|
250837
250884
|
}
|
|
250838
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
250885
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
250839
250886
|
"use strict";
|
|
250840
250887
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
250841
250888
|
if (!this.isReferenced()) return;
|
|
@@ -250859,7 +250906,7 @@ ${str}
|
|
|
250859
250906
|
if ("NaN" === node.name || "Infinity" === node.name) return numberTypeAnnotation();
|
|
250860
250907
|
node.name;
|
|
250861
250908
|
};
|
|
250862
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
250909
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _util = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/util.js");
|
|
250863
250910
|
const { BOOLEAN_NUMBER_BINARY_OPERATORS, createTypeAnnotationBasedOnTypeof, numberTypeAnnotation, voidTypeAnnotation } = _t;
|
|
250864
250911
|
function getConstantViolationsBefore(binding, path14, functions) {
|
|
250865
250912
|
const violations = binding.constantViolations.slice();
|
|
@@ -250903,7 +250950,7 @@ ${str}
|
|
|
250903
250950
|
}
|
|
250904
250951
|
return types.length ? { typeAnnotation: (0, _util.createUnionType)(types), ifStatement } : getConditionalAnnotation(binding, ifStatement, name);
|
|
250905
250952
|
}
|
|
250906
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
250953
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/inferers.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
250907
250954
|
"use strict";
|
|
250908
250955
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.ArrayExpression = ArrayExpression, exports2.AssignmentExpression = function() {
|
|
250909
250956
|
return this.get("right").getTypeAnnotation();
|
|
@@ -250968,7 +251015,7 @@ ${str}
|
|
|
250968
251015
|
if (!this.get("id").isIdentifier()) return;
|
|
250969
251016
|
return this.get("init").getTypeAnnotation();
|
|
250970
251017
|
};
|
|
250971
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
251018
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _infererReference = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js"), _util = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/util.js");
|
|
250972
251019
|
const { BOOLEAN_BINARY_OPERATORS, BOOLEAN_UNARY_OPERATORS, NUMBER_BINARY_OPERATORS, NUMBER_UNARY_OPERATORS, STRING_UNARY_OPERATORS, anyTypeAnnotation, arrayTypeAnnotation, booleanTypeAnnotation, buildMatchMemberExpression, genericTypeAnnotation, identifier, nullLiteralTypeAnnotation, numberTypeAnnotation, stringTypeAnnotation, tupleTypeAnnotation, unionTypeAnnotation, voidTypeAnnotation, isIdentifier } = _t;
|
|
250973
251020
|
function TypeCastExpression(node) {
|
|
250974
251021
|
return node.typeAnnotation;
|
|
@@ -250992,15 +251039,15 @@ ${str}
|
|
|
250992
251039
|
if (callee.node.returnType) return callee.node.returnType;
|
|
250993
251040
|
}
|
|
250994
251041
|
}
|
|
250995
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251042
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/inference/util.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
250996
251043
|
"use strict";
|
|
250997
251044
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.createUnionType = function(types) {
|
|
250998
251045
|
if (types.every((v) => isFlowType(v))) return createFlowUnionType ? createFlowUnionType(types) : createUnionTypeAnnotation(types);
|
|
250999
251046
|
if (types.every((v) => isTSType(v)) && createTSUnionType) return createTSUnionType(types);
|
|
251000
251047
|
};
|
|
251001
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
251048
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
251002
251049
|
const { createFlowUnionType, createTSUnionType, createUnionTypeAnnotation, isFlowType, isTSType } = _t;
|
|
251003
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251050
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/introspection.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
251004
251051
|
"use strict";
|
|
251005
251052
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2._guessExecutionStatusRelativeTo = function(target) {
|
|
251006
251053
|
return _guessExecutionStatusRelativeToCached(this, target, /* @__PURE__ */ new Map());
|
|
@@ -251085,7 +251132,7 @@ ${str}
|
|
|
251085
251132
|
}, exports2.willIMaybeExecuteBefore = function(target) {
|
|
251086
251133
|
return "after" !== this._guessExecutionStatusRelativeTo(target);
|
|
251087
251134
|
};
|
|
251088
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
251135
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
251089
251136
|
const { STATEMENT_OR_BLOCK_KEYS, VISITOR_KEYS, isBlockStatement, isExpression, isIdentifier, isLiteral, isStringLiteral, isType, matchesPattern: _matchesPattern } = _t;
|
|
251090
251137
|
function getOuterFunction(path14) {
|
|
251091
251138
|
return path14.isProgram() ? path14 : (path14.parentPath.scope.getFunctionParent() || path14.parentPath.scope.getProgramParent()).path;
|
|
@@ -251211,10 +251258,10 @@ ${str}
|
|
|
251211
251258
|
}
|
|
251212
251259
|
}
|
|
251213
251260
|
}
|
|
251214
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251261
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/hoister.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
251215
251262
|
"use strict";
|
|
251216
251263
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
251217
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
251264
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _t2 = _t;
|
|
251218
251265
|
const { react } = _t, { cloneNode, jsxExpressionContainer, variableDeclaration, variableDeclarator } = _t2, referenceVisitor = { ReferencedIdentifier(path14, state) {
|
|
251219
251266
|
if (path14.isJSXIdentifier() && react.isCompatTag(path14.node.name) && !path14.parentPath.isJSXMemberExpression()) return;
|
|
251220
251267
|
if ("this" === path14.node.name) {
|
|
@@ -251304,7 +251351,7 @@ ${str}
|
|
|
251304
251351
|
return parent.isJSXElement() && this.path.container === parent.node.children && (uid = jsxExpressionContainer(uid)), this.path.replaceWith(cloneNode(uid)), attachTo.isVariableDeclarator() ? attached.get("init") : attached.get("declarations.0.init");
|
|
251305
251352
|
}
|
|
251306
251353
|
};
|
|
251307
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251354
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js": (__unused_webpack_module, exports2) => {
|
|
251308
251355
|
"use strict";
|
|
251309
251356
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.hooks = void 0;
|
|
251310
251357
|
exports2.hooks = [function(self2, parent) {
|
|
@@ -251316,7 +251363,7 @@ ${str}
|
|
|
251316
251363
|
}, function(self2, parent) {
|
|
251317
251364
|
if (parent.isIfStatement() && "consequent" === self2.key || "body" === self2.key && (parent.isLoop() || parent.isArrowFunctionExpression())) return self2.replaceWith({ type: "BlockStatement", body: [] }), true;
|
|
251318
251365
|
}];
|
|
251319
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251366
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
251320
251367
|
"use strict";
|
|
251321
251368
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.isBindingIdentifier = function() {
|
|
251322
251369
|
const { node, parent } = this, grandparent = this.parentPath.parent;
|
|
@@ -251369,18 +251416,18 @@ ${str}
|
|
|
251369
251416
|
}, exports2.isVar = function() {
|
|
251370
251417
|
return nodeIsVar(this.node);
|
|
251371
251418
|
};
|
|
251372
|
-
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
251419
|
+
var _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
251373
251420
|
const { isBinding, isBlockScoped: nodeIsBlockScoped, isExportDeclaration, isExpression: nodeIsExpression, isFlow: nodeIsFlow, isForStatement, isForXStatement, isIdentifier, isImportDeclaration, isImportSpecifier, isJSXIdentifier, isJSXMemberExpression, isMemberExpression, isRestElement: nodeIsRestElement, isReferenced: nodeIsReferenced, isScope: nodeIsScope, isStatement: nodeIsStatement, isVar: nodeIsVar, isVariableDeclaration, react, isForOfStatement } = _t, { isCompatTag } = react;
|
|
251374
251421
|
exports2.isExistentialTypeParam = function() {
|
|
251375
251422
|
throw new Error("`path.isExistentialTypeParam` has been renamed to `path.isExistsTypeAnnotation()` in Babel 7.");
|
|
251376
251423
|
}, exports2.isNumericLiteralTypeAnnotation = function() {
|
|
251377
251424
|
throw new Error("`path.isNumericLiteralTypeAnnotation()` has been renamed to `path.isNumberLiteralTypeAnnotation()` in Babel 7.");
|
|
251378
251425
|
};
|
|
251379
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251426
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/virtual-types.js": (__unused_webpack_module, exports2) => {
|
|
251380
251427
|
"use strict";
|
|
251381
251428
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.Var = exports2.User = exports2.Statement = exports2.SpreadProperty = exports2.Scope = exports2.RestProperty = exports2.ReferencedMemberExpression = exports2.ReferencedIdentifier = exports2.Referenced = exports2.Pure = exports2.NumericLiteralTypeAnnotation = exports2.Generated = exports2.ForAwaitStatement = exports2.Flow = exports2.Expression = exports2.ExistentialTypeParam = exports2.BlockScoped = exports2.BindingIdentifier = void 0;
|
|
251382
251429
|
exports2.ReferencedIdentifier = ["Identifier", "JSXIdentifier"], exports2.ReferencedMemberExpression = ["MemberExpression"], exports2.BindingIdentifier = ["Identifier"], exports2.Statement = ["Statement"], exports2.Expression = ["Expression"], exports2.Scope = ["Scopable", "Pattern"], exports2.Referenced = null, exports2.BlockScoped = null, exports2.Var = ["VariableDeclaration"], exports2.User = null, exports2.Generated = null, exports2.Pure = null, exports2.Flow = ["Flow", "ImportDeclaration", "ExportDeclaration", "ImportSpecifier"], exports2.RestProperty = ["RestElement"], exports2.SpreadProperty = ["RestElement"], exports2.ExistentialTypeParam = ["ExistsTypeAnnotation"], exports2.NumericLiteralTypeAnnotation = ["NumberLiteralTypeAnnotation"], exports2.ForAwaitStatement = ["ForOfStatement"];
|
|
251383
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251430
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/modification.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
251384
251431
|
"use strict";
|
|
251385
251432
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2._containerInsert = _containerInsert, exports2._containerInsertAfter = _containerInsertAfter, exports2._containerInsertBefore = _containerInsertBefore, exports2._verifyNodeList = _verifyNodeList, exports2.insertAfter = function(nodes_) {
|
|
251386
251433
|
if (_removal._assertUnremoved.call(this), this.isSequenceExpression()) return last(this.get("expressions")).insertAfter(nodes_);
|
|
@@ -251434,7 +251481,7 @@ ${str}
|
|
|
251434
251481
|
const path14 = _index.default.get({ parentPath: this, parent: this.node, container: this.node[listKey], listKey, key: 0 }).setContext(this.context);
|
|
251435
251482
|
return _containerInsertBefore.call(path14, nodes);
|
|
251436
251483
|
}, exports2.updateSiblingKeys = updateSiblingKeys;
|
|
251437
|
-
var _cache = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
251484
|
+
var _cache = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/cache.js"), _hoister = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/hoister.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/index.js"), _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js"), _removal = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/removal.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
251438
251485
|
const { arrowFunctionExpression, assertExpression, assignmentExpression, blockStatement, callExpression, cloneNode, expressionStatement, isAssignmentExpression, isCallExpression, isExportNamedDeclaration, isExpression, isIdentifier, isSequenceExpression, isSuper, thisExpression } = _t;
|
|
251439
251486
|
function _containerInsert(from, nodes) {
|
|
251440
251487
|
updateSiblingKeys.call(this, from, nodes.length);
|
|
@@ -251483,7 +251530,7 @@ ${str}
|
|
|
251483
251530
|
exports2.hoist = function(scope = this.scope) {
|
|
251484
251531
|
return new _hoister.default(this, scope).run();
|
|
251485
251532
|
};
|
|
251486
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251533
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/removal.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
251487
251534
|
"use strict";
|
|
251488
251535
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2._assertUnremoved = _assertUnremoved, exports2._callRemovalHooks = _callRemovalHooks, exports2._markRemoved = _markRemoved, exports2._remove = _remove, exports2._removeFromScope = _removeFromScope, exports2.remove = function() {
|
|
251489
251536
|
var _this$opts;
|
|
@@ -251491,7 +251538,7 @@ ${str}
|
|
|
251491
251538
|
null != (_this$opts = this.opts) && _this$opts.noScope || _removeFromScope.call(this);
|
|
251492
251539
|
this.shareCommentsWithSiblings(), _remove.call(this), _markRemoved.call(this);
|
|
251493
251540
|
};
|
|
251494
|
-
var _removalHooks = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
251541
|
+
var _removalHooks = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js"), _cache = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/cache.js"), _replacement = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/replacement.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/index.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _modification = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/modification.js"), _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js");
|
|
251495
251542
|
const { getBindingIdentifiers } = _t;
|
|
251496
251543
|
function _removeFromScope() {
|
|
251497
251544
|
const bindings = getBindingIdentifiers(this.node, false, false, true);
|
|
@@ -251511,7 +251558,7 @@ ${str}
|
|
|
251511
251558
|
function _assertUnremoved() {
|
|
251512
251559
|
if (this.removed) throw this.buildCodeFrameError("NodePath has been removed so is read-only.");
|
|
251513
251560
|
}
|
|
251514
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251561
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/replacement.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
251515
251562
|
"use strict";
|
|
251516
251563
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2._replaceWith = _replaceWith, exports2.replaceExpressionWithStatements = function(nodes) {
|
|
251517
251564
|
_context.resync.call(this);
|
|
@@ -251580,7 +251627,7 @@ ${str}
|
|
|
251580
251627
|
const expressionAST = ast.program.body[0].expression;
|
|
251581
251628
|
return _index.default.removeProperties(expressionAST), this.replaceWith(expressionAST);
|
|
251582
251629
|
};
|
|
251583
|
-
var _codeFrame = __webpack_require__2("./stubs/babel-codeframe.mjs"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
251630
|
+
var _codeFrame = __webpack_require__2("./stubs/babel-codeframe.mjs"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/index.js"), _cache = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/cache.js"), _modification = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/modification.js"), _parser = __webpack_require__2("./node_modules/.pnpm/@babel+parser@7.26.3/node_modules/@babel/parser/lib/index.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js");
|
|
251584
251631
|
const { FUNCTION_TYPES, arrowFunctionExpression, assignmentExpression, awaitExpression, blockStatement, buildUndefinedNode, callExpression, cloneNode, conditionalExpression, expressionStatement, getBindingIdentifiers, identifier, inheritLeadingComments, inheritTrailingComments, inheritsComments, isBlockStatement, isEmptyStatement, isExpression, isExpressionStatement, isIfStatement, isProgram, isStatement, isVariableDeclaration, removeComments, returnStatement, sequenceExpression, validate, yieldExpression } = _t;
|
|
251585
251632
|
function _replaceWith(node) {
|
|
251586
251633
|
var _getCachedPaths2;
|
|
@@ -251614,7 +251661,7 @@ ${str}
|
|
|
251614
251661
|
}
|
|
251615
251662
|
return ensureLastUndefined && exprs.push(buildUndefinedNode()), 1 === exprs.length ? exprs[0] : sequenceExpression(exprs);
|
|
251616
251663
|
}
|
|
251617
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251664
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/scope/binding.js": (__unused_webpack_module, exports2) => {
|
|
251618
251665
|
"use strict";
|
|
251619
251666
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
251620
251667
|
exports2.default = class {
|
|
@@ -251646,10 +251693,10 @@ ${str}
|
|
|
251646
251693
|
this.references--, this.referenced = !!this.references;
|
|
251647
251694
|
}
|
|
251648
251695
|
};
|
|
251649
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
251696
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/scope/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
251650
251697
|
"use strict";
|
|
251651
251698
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
251652
|
-
var _renamer = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
251699
|
+
var _renamer = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/scope/lib/renamer.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/index.js"), _binding = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/scope/binding.js"), _globals = __webpack_require__2("./node_modules/.pnpm/globals@11.12.0/node_modules/globals/index.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), t = _t, _cache = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/cache.js"), _visitors = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/visitors.js");
|
|
251653
251700
|
const { NOT_LOCAL_BINDING, assignmentExpression, callExpression, cloneNode, getBindingIdentifiers, identifier, isArrayExpression, isBinary, isCallExpression, isClass, isClassBody, isClassDeclaration, isExportAllDeclaration, isExportDefaultDeclaration, isExportNamedDeclaration, isFunctionDeclaration, isIdentifier, isImportDeclaration, isLiteral, isMemberExpression, isMethod, isModuleSpecifier, isNullLiteral, isObjectExpression, isProperty, isPureish, isRegExpLiteral, isSuper, isTaggedTemplateExpression, isTemplateLiteral, isThisExpression, isUnaryExpression, isVariableDeclaration, expressionStatement, matchesPattern, memberExpression, numericLiteral, toIdentifier, variableDeclaration, variableDeclarator, isRecordExpression, isTupleExpression, isObjectProperty, isTopicReference, isMetaProperty, isPrivateName, isExportDeclaration, buildUndefinedNode, sequenceExpression } = _t;
|
|
251654
251701
|
function gatherNodeParts(node, parts) {
|
|
251655
251702
|
switch (null == node ? void 0 : node.type) {
|
|
@@ -252019,9 +252066,12 @@ ${str}
|
|
|
252019
252066
|
crawl() {
|
|
252020
252067
|
const path14 = this.path;
|
|
252021
252068
|
this.references = /* @__PURE__ */ Object.create(null), this.bindings = /* @__PURE__ */ Object.create(null), this.globals = /* @__PURE__ */ Object.create(null), this.uids = /* @__PURE__ */ Object.create(null), this.data = /* @__PURE__ */ Object.create(null);
|
|
252022
|
-
|
|
252023
|
-
|
|
252024
|
-
|
|
252069
|
+
let scope = this;
|
|
252070
|
+
do {
|
|
252071
|
+
if (scope.crawling) return;
|
|
252072
|
+
if (scope.path.isProgram()) break;
|
|
252073
|
+
} while (scope = scope.parent);
|
|
252074
|
+
const programParent = scope, state = { references: [], constantViolations: [], assignments: [] };
|
|
252025
252075
|
if (this.crawling = true, "Program" !== path14.type && (0, _visitors.isExplodedVisitor)(collectorVisitor)) {
|
|
252026
252076
|
for (const visit of collectorVisitor.enter) visit.call(state, path14, state);
|
|
252027
252077
|
const typeVisitors = collectorVisitor[path14.type];
|
|
@@ -252208,10 +252258,10 @@ ${str}
|
|
|
252208
252258
|
} }, hub: { configurable: true, enumerable: true, get() {
|
|
252209
252259
|
return this.path.hub;
|
|
252210
252260
|
} } });
|
|
252211
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
252261
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/scope/lib/renamer.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
252212
252262
|
"use strict";
|
|
252213
252263
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
252214
|
-
var t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
252264
|
+
var t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _t = t, _traverseNode = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/traverse-node.js"), _visitors = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/visitors.js"), _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js");
|
|
252215
252265
|
const { getAssignmentIdentifiers } = _t, renameVisitor = { ReferencedIdentifier({ node }, state) {
|
|
252216
252266
|
node.name === state.oldName && (node.name = state.newName);
|
|
252217
252267
|
}, Scope(path14, state) {
|
|
@@ -252254,7 +252304,7 @@ ${str}
|
|
|
252254
252304
|
t.isMethod(blockToTraverse) && (blockToTraverse.computed && (skipKeys.key = true), t.isObjectMethod(blockToTraverse) || (skipKeys.decorators = true)), (0, _traverseNode.traverseNode)(blockToTraverse, (0, _visitors.explode)(renameVisitor), scope, this, scope.path, skipKeys), arguments[0] || (scope.removeOwnBinding(oldName), scope.bindings[newName] = binding, this.binding.identifier.name = newName), parentDeclar && (this.maybeConvertFromClassFunctionDeclaration(path14), this.maybeConvertFromClassFunctionExpression(path14));
|
|
252255
252305
|
}
|
|
252256
252306
|
};
|
|
252257
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
252307
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/traverse-node.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
252258
252308
|
"use strict";
|
|
252259
252309
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.traverseNode = function(node, opts, scope, state, path14, skipKeys, visitSelf) {
|
|
252260
252310
|
const keys = VISITOR_KEYS[node.type];
|
|
@@ -252264,14 +252314,14 @@ ${str}
|
|
|
252264
252314
|
for (const key of keys) if ((null == skipKeys || !skipKeys[key]) && context.visit(node, key)) return true;
|
|
252265
252315
|
return false;
|
|
252266
252316
|
};
|
|
252267
|
-
var _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
252317
|
+
var _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/context.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
252268
252318
|
const { VISITOR_KEYS } = _t;
|
|
252269
|
-
}, "./node_modules/.pnpm/@babel+traverse@7.
|
|
252319
|
+
}, "./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/visitors.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
252270
252320
|
"use strict";
|
|
252271
252321
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.environmentVisitor = function(visitor) {
|
|
252272
252322
|
return merge2([_environmentVisitor, visitor]);
|
|
252273
252323
|
}, exports2.explode = explode$1, exports2.isExplodedVisitor = isExplodedVisitor, exports2.merge = merge2, exports2.verify = verify$1;
|
|
252274
|
-
var virtualTypes = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.
|
|
252324
|
+
var virtualTypes = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/virtual-types.js"), virtualTypesValidators = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js"), _t = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js"), _context = __webpack_require__2("./node_modules/.pnpm/@babel+traverse@7.26.4/node_modules/@babel/traverse/lib/path/context.js");
|
|
252275
252325
|
const { DEPRECATED_KEYS, DEPRECATED_ALIASES, FLIPPED_ALIAS_KEYS, TYPES, __internal__deprecationWarning: deprecationWarning } = _t;
|
|
252276
252326
|
function isExplodedVisitor(visitor) {
|
|
252277
252327
|
return null == visitor ? void 0 : visitor._exploded;
|
|
@@ -252330,7 +252380,7 @@ ${str}
|
|
|
252330
252380
|
if ("function" == typeof visitor) throw new Error("You passed `traverse()` a function when it expected a visitor object, are you sure you didn't mean `{ enter: Function }`?");
|
|
252331
252381
|
for (const nodeType of Object.keys(visitor)) {
|
|
252332
252382
|
if ("enter" !== nodeType && "exit" !== nodeType || validateVisitorMethods(nodeType, visitor[nodeType]), shouldIgnoreKey(nodeType)) continue;
|
|
252333
|
-
if (!TYPES.includes(nodeType)) throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse 7.
|
|
252383
|
+
if (!TYPES.includes(nodeType)) throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse 7.26.4`);
|
|
252334
252384
|
const visitors = visitor[nodeType];
|
|
252335
252385
|
if ("object" == typeof visitors) for (const visitorKey of Object.keys(visitors)) {
|
|
252336
252386
|
if ("enter" !== visitorKey && "exit" !== visitorKey) throw new Error(`You passed \`traverse()\` a visitor object with the property ${nodeType} that has the invalid property ${visitorKey}`);
|
|
@@ -252393,7 +252443,7 @@ ${str}
|
|
|
252393
252443
|
}, Property(path14) {
|
|
252394
252444
|
path14.isObjectProperty() || (path14.skip(), path14.requeueComputedKeyAndDecorators ? path14.requeueComputedKeyAndDecorators() : _context.requeueComputedKeyAndDecorators.call(path14));
|
|
252395
252445
|
} };
|
|
252396
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
252446
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/asserts/assertNode.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
252397
252447
|
"use strict";
|
|
252398
252448
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
252399
252449
|
if (!(0, _isNode.default)(node)) {
|
|
@@ -252402,8 +252452,8 @@ ${str}
|
|
|
252402
252452
|
throw new TypeError(`Not a valid node of type "${type}"`);
|
|
252403
252453
|
}
|
|
252404
252454
|
};
|
|
252405
|
-
var _isNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
252406
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
252455
|
+
var _isNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isNode.js");
|
|
252456
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/asserts/generated/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
252407
252457
|
"use strict";
|
|
252408
252458
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.assertAccessor = function(node, opts) {
|
|
252409
252459
|
assert3("Accessor", node, opts);
|
|
@@ -253014,21 +253064,21 @@ ${str}
|
|
|
253014
253064
|
}, exports2.assertYieldExpression = function(node, opts) {
|
|
253015
253065
|
assert3("YieldExpression", node, opts);
|
|
253016
253066
|
};
|
|
253017
|
-
var _is = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
253067
|
+
var _is = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/is.js"), _deprecationWarning = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/deprecationWarning.js");
|
|
253018
253068
|
function assert3(type, node, opts) {
|
|
253019
253069
|
if (!(0, _is.default)(type, node, opts)) throw new Error(`Expected type "${type}" with option ${JSON.stringify(opts)}, but instead got "${node.type}".`);
|
|
253020
253070
|
}
|
|
253021
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
253071
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
253022
253072
|
"use strict";
|
|
253023
253073
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(types) {
|
|
253024
253074
|
const flattened = (0, _removeTypeDuplicates.default)(types);
|
|
253025
253075
|
return 1 === flattened.length ? flattened[0] : (0, _index.unionTypeAnnotation)(flattened);
|
|
253026
253076
|
};
|
|
253027
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
253028
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
253077
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js"), _removeTypeDuplicates = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js");
|
|
253078
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
253029
253079
|
"use strict";
|
|
253030
253080
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
253031
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
253081
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
253032
253082
|
exports2.default = function(type) {
|
|
253033
253083
|
switch (type) {
|
|
253034
253084
|
case "string":
|
|
@@ -253050,7 +253100,7 @@ ${str}
|
|
|
253050
253100
|
}
|
|
253051
253101
|
throw new Error("Invalid typeof value: " + type);
|
|
253052
253102
|
};
|
|
253053
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
253103
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
253054
253104
|
"use strict";
|
|
253055
253105
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.anyTypeAnnotation = function() {
|
|
253056
253106
|
return { type: "AnyTypeAnnotation" };
|
|
@@ -253760,7 +253810,7 @@ ${str}
|
|
|
253760
253810
|
const node = { type: "YieldExpression", argument, delegate }, defs = NODE_FIELDS.YieldExpression;
|
|
253761
253811
|
return validate(defs.argument, node, "argument", argument, 1), validate(defs.delegate, node, "delegate", delegate), node;
|
|
253762
253812
|
};
|
|
253763
|
-
var _validate = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
253813
|
+
var _validate = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/validate.js"), _deprecationWarning = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/deprecationWarning.js"), utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js");
|
|
253764
253814
|
const { validateInternal: validate } = _validate, { NODE_FIELDS } = utils;
|
|
253765
253815
|
function numericLiteral(value2) {
|
|
253766
253816
|
const node = { type: "NumericLiteral", value: value2 }, defs = NODE_FIELDS.NumericLiteral;
|
|
@@ -253778,7 +253828,7 @@ ${str}
|
|
|
253778
253828
|
const node = { type: "SpreadElement", argument }, defs = NODE_FIELDS.SpreadElement;
|
|
253779
253829
|
return validate(defs.argument, node, "argument", argument, 1), node;
|
|
253780
253830
|
}
|
|
253781
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
253831
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/uppercase.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
253782
253832
|
"use strict";
|
|
253783
253833
|
Object.defineProperty(exports2, "__esModule", { value: true }), Object.defineProperty(exports2, "AnyTypeAnnotation", { enumerable: true, get: function() {
|
|
253784
253834
|
return _index.anyTypeAnnotation;
|
|
@@ -254289,14 +254339,14 @@ ${str}
|
|
|
254289
254339
|
} }), Object.defineProperty(exports2, "YieldExpression", { enumerable: true, get: function() {
|
|
254290
254340
|
return _index.yieldExpression;
|
|
254291
254341
|
} });
|
|
254292
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254293
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254342
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
254343
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/productions.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254294
254344
|
"use strict";
|
|
254295
254345
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.buildUndefinedNode = function() {
|
|
254296
254346
|
return (0, _index.unaryExpression)("void", (0, _index.numericLiteral)(0), true);
|
|
254297
254347
|
};
|
|
254298
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254299
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254348
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
254349
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/react/buildChildren.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254300
254350
|
"use strict";
|
|
254301
254351
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
254302
254352
|
const elements = [];
|
|
@@ -254306,38 +254356,38 @@ ${str}
|
|
|
254306
254356
|
}
|
|
254307
254357
|
return elements;
|
|
254308
254358
|
};
|
|
254309
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254310
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254359
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _cleanJSXElementLiteralChild = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js");
|
|
254360
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254311
254361
|
"use strict";
|
|
254312
254362
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(typeAnnotations) {
|
|
254313
254363
|
const types = typeAnnotations.map((type) => (0, _index2.isTSTypeAnnotation)(type) ? type.typeAnnotation : type), flattened = (0, _removeTypeDuplicates.default)(types);
|
|
254314
254364
|
return 1 === flattened.length ? flattened[0] : (0, _index.tsUnionType)(flattened);
|
|
254315
254365
|
};
|
|
254316
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254317
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254366
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js"), _removeTypeDuplicates = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
254367
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/clone.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254318
254368
|
"use strict";
|
|
254319
254369
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
254320
254370
|
return (0, _cloneNode.default)(node, false);
|
|
254321
254371
|
};
|
|
254322
|
-
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254323
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254372
|
+
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneNode.js");
|
|
254373
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneDeep.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254324
254374
|
"use strict";
|
|
254325
254375
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
254326
254376
|
return (0, _cloneNode.default)(node);
|
|
254327
254377
|
};
|
|
254328
|
-
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254329
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254378
|
+
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneNode.js");
|
|
254379
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254330
254380
|
"use strict";
|
|
254331
254381
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
254332
254382
|
return (0, _cloneNode.default)(node, true, true);
|
|
254333
254383
|
};
|
|
254334
|
-
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254335
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254384
|
+
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneNode.js");
|
|
254385
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneNode.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254336
254386
|
"use strict";
|
|
254337
254387
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, deep = true, withoutLoc = false) {
|
|
254338
254388
|
return cloneNodeInternal(node, deep, withoutLoc, /* @__PURE__ */ new Map());
|
|
254339
254389
|
};
|
|
254340
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254390
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
254341
254391
|
const { hasOwn } = { hasOwn: Function.call.bind(Object.prototype.hasOwnProperty) };
|
|
254342
254392
|
function cloneIfNode(obj, deep, withoutLoc, commentsCache) {
|
|
254343
254393
|
return obj && "string" == typeof obj.type ? cloneNodeInternal(obj, deep, withoutLoc, commentsCache) : obj;
|
|
@@ -254363,19 +254413,19 @@ ${str}
|
|
|
254363
254413
|
return withoutLoc && (ret.loc = null), commentsCache.set(comment, ret), ret;
|
|
254364
254414
|
}) : comments;
|
|
254365
254415
|
}
|
|
254366
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254416
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254367
254417
|
"use strict";
|
|
254368
254418
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
254369
254419
|
return (0, _cloneNode.default)(node, false, true);
|
|
254370
254420
|
};
|
|
254371
|
-
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254372
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254421
|
+
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneNode.js");
|
|
254422
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/addComment.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254373
254423
|
"use strict";
|
|
254374
254424
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, type, content, line) {
|
|
254375
254425
|
return (0, _addComments.default)(node, type, [{ type: line ? "CommentLine" : "CommentBlock", value: content }]);
|
|
254376
254426
|
};
|
|
254377
|
-
var _addComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254378
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254427
|
+
var _addComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/addComments.js");
|
|
254428
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/addComments.js": (__unused_webpack_module, exports2) => {
|
|
254379
254429
|
"use strict";
|
|
254380
254430
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, type, comments) {
|
|
254381
254431
|
if (!comments || !node) return node;
|
|
@@ -254383,59 +254433,59 @@ ${str}
|
|
|
254383
254433
|
node[key] ? "leading" === type ? node[key] = comments.concat(node[key]) : node[key].push(...comments) : node[key] = comments;
|
|
254384
254434
|
return node;
|
|
254385
254435
|
};
|
|
254386
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254436
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritInnerComments.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254387
254437
|
"use strict";
|
|
254388
254438
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(child, parent) {
|
|
254389
254439
|
(0, _inherit.default)("innerComments", child, parent);
|
|
254390
254440
|
};
|
|
254391
|
-
var _inherit = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254392
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254441
|
+
var _inherit = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/inherit.js");
|
|
254442
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritLeadingComments.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254393
254443
|
"use strict";
|
|
254394
254444
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(child, parent) {
|
|
254395
254445
|
(0, _inherit.default)("leadingComments", child, parent);
|
|
254396
254446
|
};
|
|
254397
|
-
var _inherit = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254398
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254447
|
+
var _inherit = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/inherit.js");
|
|
254448
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritTrailingComments.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254399
254449
|
"use strict";
|
|
254400
254450
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(child, parent) {
|
|
254401
254451
|
(0, _inherit.default)("trailingComments", child, parent);
|
|
254402
254452
|
};
|
|
254403
|
-
var _inherit = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254404
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254453
|
+
var _inherit = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/inherit.js");
|
|
254454
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritsComments.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254405
254455
|
"use strict";
|
|
254406
254456
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(child, parent) {
|
|
254407
254457
|
return (0, _inheritTrailingComments.default)(child, parent), (0, _inheritLeadingComments.default)(child, parent), (0, _inheritInnerComments.default)(child, parent), child;
|
|
254408
254458
|
};
|
|
254409
|
-
var _inheritTrailingComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254410
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254459
|
+
var _inheritTrailingComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritTrailingComments.js"), _inheritLeadingComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritLeadingComments.js"), _inheritInnerComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritInnerComments.js");
|
|
254460
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/removeComments.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254411
254461
|
"use strict";
|
|
254412
254462
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
254413
254463
|
return _index.COMMENT_KEYS.forEach((key) => {
|
|
254414
254464
|
node[key] = null;
|
|
254415
254465
|
}), node;
|
|
254416
254466
|
};
|
|
254417
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254418
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254467
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/index.js");
|
|
254468
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/generated/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254419
254469
|
"use strict";
|
|
254420
254470
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.WHILE_TYPES = exports2.USERWHITESPACABLE_TYPES = exports2.UNARYLIKE_TYPES = exports2.TYPESCRIPT_TYPES = exports2.TSTYPE_TYPES = exports2.TSTYPEELEMENT_TYPES = exports2.TSENTITYNAME_TYPES = exports2.TSBASETYPE_TYPES = exports2.TERMINATORLESS_TYPES = exports2.STATEMENT_TYPES = exports2.STANDARDIZED_TYPES = exports2.SCOPABLE_TYPES = exports2.PUREISH_TYPES = exports2.PROPERTY_TYPES = exports2.PRIVATE_TYPES = exports2.PATTERN_TYPES = exports2.PATTERNLIKE_TYPES = exports2.OBJECTMEMBER_TYPES = exports2.MODULESPECIFIER_TYPES = exports2.MODULEDECLARATION_TYPES = exports2.MISCELLANEOUS_TYPES = exports2.METHOD_TYPES = exports2.LVAL_TYPES = exports2.LOOP_TYPES = exports2.LITERAL_TYPES = exports2.JSX_TYPES = exports2.IMPORTOREXPORTDECLARATION_TYPES = exports2.IMMUTABLE_TYPES = exports2.FUNCTION_TYPES = exports2.FUNCTIONPARENT_TYPES = exports2.FOR_TYPES = exports2.FORXSTATEMENT_TYPES = exports2.FLOW_TYPES = exports2.FLOWTYPE_TYPES = exports2.FLOWPREDICATE_TYPES = exports2.FLOWDECLARATION_TYPES = exports2.FLOWBASEANNOTATION_TYPES = exports2.EXPRESSION_TYPES = exports2.EXPRESSIONWRAPPER_TYPES = exports2.EXPORTDECLARATION_TYPES = exports2.ENUMMEMBER_TYPES = exports2.ENUMBODY_TYPES = exports2.DECLARATION_TYPES = exports2.CONDITIONAL_TYPES = exports2.COMPLETIONSTATEMENT_TYPES = exports2.CLASS_TYPES = exports2.BLOCK_TYPES = exports2.BLOCKPARENT_TYPES = exports2.BINARY_TYPES = exports2.ACCESSOR_TYPES = void 0;
|
|
254421
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254471
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
254422
254472
|
exports2.STANDARDIZED_TYPES = _index.FLIPPED_ALIAS_KEYS.Standardized, exports2.EXPRESSION_TYPES = _index.FLIPPED_ALIAS_KEYS.Expression, exports2.BINARY_TYPES = _index.FLIPPED_ALIAS_KEYS.Binary, exports2.SCOPABLE_TYPES = _index.FLIPPED_ALIAS_KEYS.Scopable, exports2.BLOCKPARENT_TYPES = _index.FLIPPED_ALIAS_KEYS.BlockParent, exports2.BLOCK_TYPES = _index.FLIPPED_ALIAS_KEYS.Block, exports2.STATEMENT_TYPES = _index.FLIPPED_ALIAS_KEYS.Statement, exports2.TERMINATORLESS_TYPES = _index.FLIPPED_ALIAS_KEYS.Terminatorless, exports2.COMPLETIONSTATEMENT_TYPES = _index.FLIPPED_ALIAS_KEYS.CompletionStatement, exports2.CONDITIONAL_TYPES = _index.FLIPPED_ALIAS_KEYS.Conditional, exports2.LOOP_TYPES = _index.FLIPPED_ALIAS_KEYS.Loop, exports2.WHILE_TYPES = _index.FLIPPED_ALIAS_KEYS.While, exports2.EXPRESSIONWRAPPER_TYPES = _index.FLIPPED_ALIAS_KEYS.ExpressionWrapper, exports2.FOR_TYPES = _index.FLIPPED_ALIAS_KEYS.For, exports2.FORXSTATEMENT_TYPES = _index.FLIPPED_ALIAS_KEYS.ForXStatement, exports2.FUNCTION_TYPES = _index.FLIPPED_ALIAS_KEYS.Function, exports2.FUNCTIONPARENT_TYPES = _index.FLIPPED_ALIAS_KEYS.FunctionParent, exports2.PUREISH_TYPES = _index.FLIPPED_ALIAS_KEYS.Pureish, exports2.DECLARATION_TYPES = _index.FLIPPED_ALIAS_KEYS.Declaration, exports2.PATTERNLIKE_TYPES = _index.FLIPPED_ALIAS_KEYS.PatternLike, exports2.LVAL_TYPES = _index.FLIPPED_ALIAS_KEYS.LVal, exports2.TSENTITYNAME_TYPES = _index.FLIPPED_ALIAS_KEYS.TSEntityName, exports2.LITERAL_TYPES = _index.FLIPPED_ALIAS_KEYS.Literal, exports2.IMMUTABLE_TYPES = _index.FLIPPED_ALIAS_KEYS.Immutable, exports2.USERWHITESPACABLE_TYPES = _index.FLIPPED_ALIAS_KEYS.UserWhitespacable, exports2.METHOD_TYPES = _index.FLIPPED_ALIAS_KEYS.Method, exports2.OBJECTMEMBER_TYPES = _index.FLIPPED_ALIAS_KEYS.ObjectMember, exports2.PROPERTY_TYPES = _index.FLIPPED_ALIAS_KEYS.Property, exports2.UNARYLIKE_TYPES = _index.FLIPPED_ALIAS_KEYS.UnaryLike, exports2.PATTERN_TYPES = _index.FLIPPED_ALIAS_KEYS.Pattern, exports2.CLASS_TYPES = _index.FLIPPED_ALIAS_KEYS.Class;
|
|
254423
254473
|
const IMPORTOREXPORTDECLARATION_TYPES = exports2.IMPORTOREXPORTDECLARATION_TYPES = _index.FLIPPED_ALIAS_KEYS.ImportOrExportDeclaration;
|
|
254424
254474
|
exports2.EXPORTDECLARATION_TYPES = _index.FLIPPED_ALIAS_KEYS.ExportDeclaration, exports2.MODULESPECIFIER_TYPES = _index.FLIPPED_ALIAS_KEYS.ModuleSpecifier, exports2.ACCESSOR_TYPES = _index.FLIPPED_ALIAS_KEYS.Accessor, exports2.PRIVATE_TYPES = _index.FLIPPED_ALIAS_KEYS.Private, exports2.FLOW_TYPES = _index.FLIPPED_ALIAS_KEYS.Flow, exports2.FLOWTYPE_TYPES = _index.FLIPPED_ALIAS_KEYS.FlowType, exports2.FLOWBASEANNOTATION_TYPES = _index.FLIPPED_ALIAS_KEYS.FlowBaseAnnotation, exports2.FLOWDECLARATION_TYPES = _index.FLIPPED_ALIAS_KEYS.FlowDeclaration, exports2.FLOWPREDICATE_TYPES = _index.FLIPPED_ALIAS_KEYS.FlowPredicate, exports2.ENUMBODY_TYPES = _index.FLIPPED_ALIAS_KEYS.EnumBody, exports2.ENUMMEMBER_TYPES = _index.FLIPPED_ALIAS_KEYS.EnumMember, exports2.JSX_TYPES = _index.FLIPPED_ALIAS_KEYS.JSX, exports2.MISCELLANEOUS_TYPES = _index.FLIPPED_ALIAS_KEYS.Miscellaneous, exports2.TYPESCRIPT_TYPES = _index.FLIPPED_ALIAS_KEYS.TypeScript, exports2.TSTYPEELEMENT_TYPES = _index.FLIPPED_ALIAS_KEYS.TSTypeElement, exports2.TSTYPE_TYPES = _index.FLIPPED_ALIAS_KEYS.TSType, exports2.TSBASETYPE_TYPES = _index.FLIPPED_ALIAS_KEYS.TSBaseType, exports2.MODULEDECLARATION_TYPES = IMPORTOREXPORTDECLARATION_TYPES;
|
|
254425
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254475
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/index.js": (__unused_webpack_module, exports2) => {
|
|
254426
254476
|
"use strict";
|
|
254427
254477
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.UPDATE_OPERATORS = exports2.UNARY_OPERATORS = exports2.STRING_UNARY_OPERATORS = exports2.STATEMENT_OR_BLOCK_KEYS = exports2.NUMBER_UNARY_OPERATORS = exports2.NUMBER_BINARY_OPERATORS = exports2.NOT_LOCAL_BINDING = exports2.LOGICAL_OPERATORS = exports2.INHERIT_KEYS = exports2.FOR_INIT_KEYS = exports2.FLATTENABLE_KEYS = exports2.EQUALITY_BINARY_OPERATORS = exports2.COMPARISON_BINARY_OPERATORS = exports2.COMMENT_KEYS = exports2.BOOLEAN_UNARY_OPERATORS = exports2.BOOLEAN_NUMBER_BINARY_OPERATORS = exports2.BOOLEAN_BINARY_OPERATORS = exports2.BLOCK_SCOPED_SYMBOL = exports2.BINARY_OPERATORS = exports2.ASSIGNMENT_OPERATORS = void 0;
|
|
254428
254478
|
exports2.STATEMENT_OR_BLOCK_KEYS = ["consequent", "body", "alternate"], exports2.FLATTENABLE_KEYS = ["body", "expressions"], exports2.FOR_INIT_KEYS = ["left", "init"], exports2.COMMENT_KEYS = ["leadingComments", "trailingComments", "innerComments"];
|
|
254429
254479
|
const LOGICAL_OPERATORS = exports2.LOGICAL_OPERATORS = ["||", "&&", "??"], BOOLEAN_NUMBER_BINARY_OPERATORS = (exports2.UPDATE_OPERATORS = ["++", "--"], exports2.BOOLEAN_NUMBER_BINARY_OPERATORS = [">", "<", ">=", "<="]), EQUALITY_BINARY_OPERATORS = exports2.EQUALITY_BINARY_OPERATORS = ["==", "===", "!=", "!=="], COMPARISON_BINARY_OPERATORS = exports2.COMPARISON_BINARY_OPERATORS = [...EQUALITY_BINARY_OPERATORS, "in", "instanceof"], BOOLEAN_BINARY_OPERATORS = exports2.BOOLEAN_BINARY_OPERATORS = [...COMPARISON_BINARY_OPERATORS, ...BOOLEAN_NUMBER_BINARY_OPERATORS], NUMBER_BINARY_OPERATORS = exports2.NUMBER_BINARY_OPERATORS = ["-", "/", "%", "*", "**", "&", "|", ">>", ">>>", "<<", "^"], BOOLEAN_UNARY_OPERATORS = (exports2.BINARY_OPERATORS = ["+", ...NUMBER_BINARY_OPERATORS, ...BOOLEAN_BINARY_OPERATORS, "|>"], exports2.ASSIGNMENT_OPERATORS = ["=", "+=", ...NUMBER_BINARY_OPERATORS.map((op) => op + "="), ...LOGICAL_OPERATORS.map((op) => op + "=")], exports2.BOOLEAN_UNARY_OPERATORS = ["delete", "!"]), NUMBER_UNARY_OPERATORS = exports2.NUMBER_UNARY_OPERATORS = ["+", "-", "~"], STRING_UNARY_OPERATORS = exports2.STRING_UNARY_OPERATORS = ["typeof"];
|
|
254430
254480
|
exports2.UNARY_OPERATORS = ["void", "throw", ...BOOLEAN_UNARY_OPERATORS, ...NUMBER_UNARY_OPERATORS, ...STRING_UNARY_OPERATORS], exports2.INHERIT_KEYS = { optional: ["typeAnnotation", "typeParameters", "returnType"], force: ["start", "loc", "end"] }, exports2.BLOCK_SCOPED_SYMBOL = Symbol.for("var used to be block scoped"), exports2.NOT_LOCAL_BINDING = Symbol.for("should not be considered a local binding");
|
|
254431
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254481
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/ensureBlock.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254432
254482
|
"use strict";
|
|
254433
254483
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, key = "body") {
|
|
254434
254484
|
const result = (0, _toBlock.default)(node[key], node);
|
|
254435
254485
|
return node[key] = result, result;
|
|
254436
254486
|
};
|
|
254437
|
-
var _toBlock = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254438
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254487
|
+
var _toBlock = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toBlock.js");
|
|
254488
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254439
254489
|
"use strict";
|
|
254440
254490
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function gatherSequenceExpressions(nodes, declars) {
|
|
254441
254491
|
const exprs = [];
|
|
@@ -254465,15 +254515,15 @@ ${str}
|
|
|
254465
254515
|
ensureLastUndefined && exprs.push((0, _productions.buildUndefinedNode)());
|
|
254466
254516
|
return 1 === exprs.length ? exprs[0] : (0, _index2.sequenceExpression)(exprs);
|
|
254467
254517
|
};
|
|
254468
|
-
var _getBindingIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254469
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254518
|
+
var _getBindingIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js"), _productions = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/productions.js"), _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneNode.js");
|
|
254519
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254470
254520
|
"use strict";
|
|
254471
254521
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(name) {
|
|
254472
254522
|
"eval" !== (name = (0, _toIdentifier.default)(name)) && "arguments" !== name || (name = "_" + name);
|
|
254473
254523
|
return name;
|
|
254474
254524
|
};
|
|
254475
|
-
var _toIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254476
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254525
|
+
var _toIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toIdentifier.js");
|
|
254526
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toBlock.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254477
254527
|
"use strict";
|
|
254478
254528
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, parent) {
|
|
254479
254529
|
if ((0, _index.isBlockStatement)(node)) return node;
|
|
@@ -254481,18 +254531,18 @@ ${str}
|
|
|
254481
254531
|
(0, _index.isEmptyStatement)(node) ? blockNodes = [] : ((0, _index.isStatement)(node) || (node = (0, _index.isFunction)(parent) ? (0, _index2.returnStatement)(node) : (0, _index2.expressionStatement)(node)), blockNodes = [node]);
|
|
254482
254532
|
return (0, _index2.blockStatement)(blockNodes);
|
|
254483
254533
|
};
|
|
254484
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254485
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254534
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
254535
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toComputedKey.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254486
254536
|
"use strict";
|
|
254487
254537
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, key = node.key || node.property) {
|
|
254488
254538
|
!node.computed && (0, _index.isIdentifier)(key) && (key = (0, _index2.stringLiteral)(key.name));
|
|
254489
254539
|
return key;
|
|
254490
254540
|
};
|
|
254491
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254492
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254541
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
254542
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toExpression.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254493
254543
|
"use strict";
|
|
254494
254544
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
254495
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254545
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
254496
254546
|
exports2.default = function(node) {
|
|
254497
254547
|
(0, _index.isExpressionStatement)(node) && (node = node.expression);
|
|
254498
254548
|
if ((0, _index.isExpression)(node)) return node;
|
|
@@ -254500,7 +254550,7 @@ ${str}
|
|
|
254500
254550
|
if (!(0, _index.isExpression)(node)) throw new Error(`cannot turn ${node.type} to an expression`);
|
|
254501
254551
|
return node;
|
|
254502
254552
|
};
|
|
254503
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254553
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toIdentifier.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254504
254554
|
"use strict";
|
|
254505
254555
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(input) {
|
|
254506
254556
|
input += "";
|
|
@@ -254511,11 +254561,11 @@ ${str}
|
|
|
254511
254561
|
}), (0, _isValidIdentifier.default)(name) || (name = `_${name}`);
|
|
254512
254562
|
return name || "_";
|
|
254513
254563
|
};
|
|
254514
|
-
var _isValidIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254515
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254564
|
+
var _isValidIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isValidIdentifier.js"), _helperValidatorIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+helper-validator-identifier@7.25.9/node_modules/@babel/helper-validator-identifier/lib/index.js");
|
|
254565
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toKeyAlias.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254516
254566
|
"use strict";
|
|
254517
254567
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = toKeyAlias;
|
|
254518
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254568
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneNode.js"), _removePropertiesDeep = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js");
|
|
254519
254569
|
function toKeyAlias(node, key = node.key) {
|
|
254520
254570
|
let alias;
|
|
254521
254571
|
return "method" === node.kind ? toKeyAlias.increment() + "" : (alias = (0, _index.isIdentifier)(key) ? key.name : (0, _index.isStringLiteral)(key) ? JSON.stringify(key.value) : JSON.stringify((0, _removePropertiesDeep.default)((0, _cloneNode.default)(key))), node.computed && (alias = `[${alias}]`), node.static && (alias = `static:${alias}`), alias);
|
|
@@ -254523,7 +254573,7 @@ ${str}
|
|
|
254523
254573
|
toKeyAlias.uid = 0, toKeyAlias.increment = function() {
|
|
254524
254574
|
return toKeyAlias.uid >= Number.MAX_SAFE_INTEGER ? toKeyAlias.uid = 0 : toKeyAlias.uid++;
|
|
254525
254575
|
};
|
|
254526
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254576
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toSequenceExpression.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254527
254577
|
"use strict";
|
|
254528
254578
|
exports2.default = function(nodes, scope) {
|
|
254529
254579
|
if (null == nodes || !nodes.length) return;
|
|
@@ -254532,11 +254582,11 @@ ${str}
|
|
|
254532
254582
|
for (const declar of declars) scope.push(declar);
|
|
254533
254583
|
return result;
|
|
254534
254584
|
};
|
|
254535
|
-
var _gatherSequenceExpressions = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254536
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254585
|
+
var _gatherSequenceExpressions = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js");
|
|
254586
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toStatement.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254537
254587
|
"use strict";
|
|
254538
254588
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
254539
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254589
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
254540
254590
|
exports2.default = function(node, ignore) {
|
|
254541
254591
|
if ((0, _index.isStatement)(node)) return node;
|
|
254542
254592
|
let newType, mustHaveId = false;
|
|
@@ -254550,10 +254600,10 @@ ${str}
|
|
|
254550
254600
|
}
|
|
254551
254601
|
return node.type = newType, node;
|
|
254552
254602
|
};
|
|
254553
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254603
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/valueToNode.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254554
254604
|
"use strict";
|
|
254555
254605
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
254556
|
-
var _isValidIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254606
|
+
var _isValidIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isValidIdentifier.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
254557
254607
|
exports2.default = function valueToNode(value2) {
|
|
254558
254608
|
if (void 0 === value2) return (0, _index.identifier)("undefined");
|
|
254559
254609
|
if (true === value2 || false === value2) return (0, _index.booleanLiteral)(value2);
|
|
@@ -254590,10 +254640,10 @@ ${str}
|
|
|
254590
254640
|
throw new Error("don't know how to turn this value into a node");
|
|
254591
254641
|
};
|
|
254592
254642
|
const objectToString = Function.call.bind(Object.prototype.toString);
|
|
254593
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254643
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/core.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254594
254644
|
"use strict";
|
|
254595
254645
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.patternLikeCommon = exports2.importAttributes = exports2.functionTypeAnnotationCommon = exports2.functionDeclarationCommon = exports2.functionCommon = exports2.classMethodOrPropertyCommon = exports2.classMethodOrDeclareMethodCommon = void 0;
|
|
254596
|
-
var _is = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254646
|
+
var _is = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/is.js"), _isValidIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isValidIdentifier.js"), _helperValidatorIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+helper-validator-identifier@7.25.9/node_modules/@babel/helper-validator-identifier/lib/index.js"), _helperStringParser = __webpack_require__2("./node_modules/.pnpm/@babel+helper-string-parser@7.25.9/node_modules/@babel/helper-string-parser/lib/index.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/index.js"), _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js");
|
|
254597
254647
|
const defineType = (0, _utils.defineAliasedType)("Standardized");
|
|
254598
254648
|
defineType("ArrayExpression", { fields: { elements: { validate: (0, _utils.arrayOf)((0, _utils.assertNodeOrValueType)("null", "Expression", "SpreadElement")), default: process.env.BABEL_TYPES_8_BREAKING ? void 0 : [] } }, visitor: ["elements"], aliases: ["Expression"] }), defineType("AssignmentExpression", { fields: { operator: { validate: process.env.BABEL_TYPES_8_BREAKING ? Object.assign(function() {
|
|
254599
254649
|
const identifier = (0, _utils.assertOneOf)(..._index.ASSIGNMENT_OPERATORS), pattern = (0, _utils.assertOneOf)("=");
|
|
@@ -254755,25 +254805,25 @@ Expected ${val.length + 1} quasis but got ${node.quasis.length}`);
|
|
|
254755
254805
|
(node.computed ? computed : normal)(node, key, val);
|
|
254756
254806
|
};
|
|
254757
254807
|
}(), (0, _utils.assertNodeType)("Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "Expression", "PrivateName")) }, value: { validate: (0, _utils.assertNodeType)("Expression"), optional: true }, definite: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, typeAnnotation: { validate: (0, _utils.assertNodeType)("TypeAnnotation", "TSTypeAnnotation", "Noop"), optional: true }, decorators: { validate: (0, _utils.arrayOfType)("Decorator"), optional: true }, readonly: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, declare: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, variance: { validate: (0, _utils.assertNodeType)("Variance"), optional: true } }) }), defineType("ClassPrivateProperty", { visitor: ["decorators", "key", "typeAnnotation", "value"], builder: ["key", "value", "decorators", "static"], aliases: ["Property", "Private"], fields: { key: { validate: (0, _utils.assertNodeType)("PrivateName") }, value: { validate: (0, _utils.assertNodeType)("Expression"), optional: true }, typeAnnotation: { validate: (0, _utils.assertNodeType)("TypeAnnotation", "TSTypeAnnotation", "Noop"), optional: true }, decorators: { validate: (0, _utils.arrayOfType)("Decorator"), optional: true }, static: { validate: (0, _utils.assertValueType)("boolean"), default: false }, readonly: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, definite: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, variance: { validate: (0, _utils.assertNodeType)("Variance"), optional: true } } }), defineType("ClassPrivateMethod", { builder: ["kind", "key", "params", "body", "static"], visitor: ["decorators", "key", "typeParameters", "params", "returnType", "body"], aliases: ["Function", "Scopable", "BlockParent", "FunctionParent", "Method", "Private"], fields: Object.assign({}, classMethodOrDeclareMethodCommon(), functionTypeAnnotationCommon(), { kind: { validate: (0, _utils.assertOneOf)("get", "set", "method"), default: "method" }, key: { validate: (0, _utils.assertNodeType)("PrivateName") }, body: { validate: (0, _utils.assertNodeType)("BlockStatement") } }) }), defineType("PrivateName", { visitor: ["id"], aliases: ["Private"], fields: { id: { validate: (0, _utils.assertNodeType)("Identifier") } } }), defineType("StaticBlock", { visitor: ["body"], fields: { body: (0, _utils.validateArrayOfType)("Statement") }, aliases: ["Scopable", "BlockParent", "FunctionParent"] });
|
|
254758
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254808
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/deprecated-aliases.js": (__unused_webpack_module, exports2) => {
|
|
254759
254809
|
"use strict";
|
|
254760
254810
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.DEPRECATED_ALIASES = void 0;
|
|
254761
254811
|
exports2.DEPRECATED_ALIASES = { ModuleDeclaration: "ImportOrExportDeclaration" };
|
|
254762
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254812
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/experimental.js": (__unused_webpack_module, __unused_webpack_exports, __webpack_require__2) => {
|
|
254763
254813
|
"use strict";
|
|
254764
|
-
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254814
|
+
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js");
|
|
254765
254815
|
(0, _utils.default)("ArgumentPlaceholder", {}), (0, _utils.default)("BindExpression", { visitor: ["object", "callee"], aliases: ["Expression"], fields: process.env.BABEL_TYPES_8_BREAKING ? { object: { validate: (0, _utils.assertNodeType)("Expression") }, callee: { validate: (0, _utils.assertNodeType)("Expression") } } : { object: { validate: Object.assign(() => {
|
|
254766
254816
|
}, { oneOfNodeTypes: ["Expression"] }) }, callee: { validate: Object.assign(() => {
|
|
254767
254817
|
}, { oneOfNodeTypes: ["Expression"] }) } } }), (0, _utils.default)("ImportAttribute", { visitor: ["key", "value"], fields: { key: { validate: (0, _utils.assertNodeType)("Identifier", "StringLiteral") }, value: { validate: (0, _utils.assertNodeType)("StringLiteral") } } }), (0, _utils.default)("Decorator", { visitor: ["expression"], fields: { expression: { validate: (0, _utils.assertNodeType)("Expression") } } }), (0, _utils.default)("DoExpression", { visitor: ["body"], builder: ["body", "async"], aliases: ["Expression"], fields: { body: { validate: (0, _utils.assertNodeType)("BlockStatement") }, async: { validate: (0, _utils.assertValueType)("boolean"), default: false } } }), (0, _utils.default)("ExportDefaultSpecifier", { visitor: ["exported"], aliases: ["ModuleSpecifier"], fields: { exported: { validate: (0, _utils.assertNodeType)("Identifier") } } }), (0, _utils.default)("RecordExpression", { visitor: ["properties"], aliases: ["Expression"], fields: { properties: (0, _utils.validateArrayOfType)("ObjectProperty", "SpreadElement") } }), (0, _utils.default)("TupleExpression", { fields: { elements: { validate: (0, _utils.arrayOfType)("Expression", "SpreadElement"), default: [] } }, visitor: ["elements"], aliases: ["Expression"] }), (0, _utils.default)("DecimalLiteral", { builder: ["value"], fields: { value: { validate: (0, _utils.assertValueType)("string") } }, aliases: ["Expression", "Pureish", "Literal", "Immutable"] }), (0, _utils.default)("ModuleExpression", { visitor: ["body"], fields: { body: { validate: (0, _utils.assertNodeType)("Program") } }, aliases: ["Expression"] }), (0, _utils.default)("TopicReference", { aliases: ["Expression"] }), (0, _utils.default)("PipelineTopicExpression", { builder: ["expression"], visitor: ["expression"], fields: { expression: { validate: (0, _utils.assertNodeType)("Expression") } }, aliases: ["Expression"] }), (0, _utils.default)("PipelineBareFunction", { builder: ["callee"], visitor: ["callee"], fields: { callee: { validate: (0, _utils.assertNodeType)("Expression") } }, aliases: ["Expression"] }), (0, _utils.default)("PipelinePrimaryTopicReference", { aliases: ["Expression"] });
|
|
254768
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254818
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/flow.js": (__unused_webpack_module, __unused_webpack_exports, __webpack_require__2) => {
|
|
254769
254819
|
"use strict";
|
|
254770
|
-
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254820
|
+
var _core = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/core.js"), _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js");
|
|
254771
254821
|
const defineType = (0, _utils.defineAliasedType)("Flow"), defineInterfaceishType = (name) => {
|
|
254772
254822
|
const isDeclareClass = "DeclareClass" === name;
|
|
254773
254823
|
defineType(name, { builder: ["id", "typeParameters", "extends", "body"], visitor: ["id", "typeParameters", "extends", ...isDeclareClass ? ["mixins", "implements"] : [], "body"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: Object.assign({ id: (0, _utils.validateType)("Identifier"), typeParameters: (0, _utils.validateOptionalType)("TypeParameterDeclaration"), extends: (0, _utils.validateOptional)((0, _utils.arrayOfType)("InterfaceExtends")) }, isDeclareClass ? { mixins: (0, _utils.validateOptional)((0, _utils.arrayOfType)("InterfaceExtends")), implements: (0, _utils.validateOptional)((0, _utils.arrayOfType)("ClassImplements")) } : {}, { body: (0, _utils.validateType)("ObjectTypeAnnotation") }) });
|
|
254774
254824
|
};
|
|
254775
254825
|
defineType("AnyTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("ArrayTypeAnnotation", { visitor: ["elementType"], aliases: ["FlowType"], fields: { elementType: (0, _utils.validateType)("FlowType") } }), defineType("BooleanTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("BooleanLiteralTypeAnnotation", { builder: ["value"], aliases: ["FlowType"], fields: { value: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } }), defineType("NullLiteralTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("ClassImplements", { visitor: ["id", "typeParameters"], fields: { id: (0, _utils.validateType)("Identifier"), typeParameters: (0, _utils.validateOptionalType)("TypeParameterInstantiation") } }), defineInterfaceishType("DeclareClass"), defineType("DeclareFunction", { visitor: ["id"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { id: (0, _utils.validateType)("Identifier"), predicate: (0, _utils.validateOptionalType)("DeclaredPredicate") } }), defineInterfaceishType("DeclareInterface"), defineType("DeclareModule", { builder: ["id", "body", "kind"], visitor: ["id", "body"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { id: (0, _utils.validateType)("Identifier", "StringLiteral"), body: (0, _utils.validateType)("BlockStatement"), kind: (0, _utils.validateOptional)((0, _utils.assertOneOf)("CommonJS", "ES")) } }), defineType("DeclareModuleExports", { visitor: ["typeAnnotation"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { typeAnnotation: (0, _utils.validateType)("TypeAnnotation") } }), defineType("DeclareTypeAlias", { visitor: ["id", "typeParameters", "right"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { id: (0, _utils.validateType)("Identifier"), typeParameters: (0, _utils.validateOptionalType)("TypeParameterDeclaration"), right: (0, _utils.validateType)("FlowType") } }), defineType("DeclareOpaqueType", { visitor: ["id", "typeParameters", "supertype"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { id: (0, _utils.validateType)("Identifier"), typeParameters: (0, _utils.validateOptionalType)("TypeParameterDeclaration"), supertype: (0, _utils.validateOptionalType)("FlowType"), impltype: (0, _utils.validateOptionalType)("FlowType") } }), defineType("DeclareVariable", { visitor: ["id"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { id: (0, _utils.validateType)("Identifier") } }), defineType("DeclareExportDeclaration", { visitor: ["declaration", "specifiers", "source", "attributes"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: Object.assign({ declaration: (0, _utils.validateOptionalType)("Flow"), specifiers: (0, _utils.validateOptional)((0, _utils.arrayOfType)("ExportSpecifier", "ExportNamespaceSpecifier")), source: (0, _utils.validateOptionalType)("StringLiteral"), default: (0, _utils.validateOptional)((0, _utils.assertValueType)("boolean")) }, _core.importAttributes) }), defineType("DeclareExportAllDeclaration", { visitor: ["source", "attributes"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: Object.assign({ source: (0, _utils.validateType)("StringLiteral"), exportKind: (0, _utils.validateOptional)((0, _utils.assertOneOf)("type", "value")) }, _core.importAttributes) }), defineType("DeclaredPredicate", { visitor: ["value"], aliases: ["FlowPredicate"], fields: { value: (0, _utils.validateType)("Flow") } }), defineType("ExistsTypeAnnotation", { aliases: ["FlowType"] }), defineType("FunctionTypeAnnotation", { visitor: ["typeParameters", "params", "rest", "returnType"], aliases: ["FlowType"], fields: { typeParameters: (0, _utils.validateOptionalType)("TypeParameterDeclaration"), params: (0, _utils.validateArrayOfType)("FunctionTypeParam"), rest: (0, _utils.validateOptionalType)("FunctionTypeParam"), this: (0, _utils.validateOptionalType)("FunctionTypeParam"), returnType: (0, _utils.validateType)("FlowType") } }), defineType("FunctionTypeParam", { visitor: ["name", "typeAnnotation"], fields: { name: (0, _utils.validateOptionalType)("Identifier"), typeAnnotation: (0, _utils.validateType)("FlowType"), optional: (0, _utils.validateOptional)((0, _utils.assertValueType)("boolean")) } }), defineType("GenericTypeAnnotation", { visitor: ["id", "typeParameters"], aliases: ["FlowType"], fields: { id: (0, _utils.validateType)("Identifier", "QualifiedTypeIdentifier"), typeParameters: (0, _utils.validateOptionalType)("TypeParameterInstantiation") } }), defineType("InferredPredicate", { aliases: ["FlowPredicate"] }), defineType("InterfaceExtends", { visitor: ["id", "typeParameters"], fields: { id: (0, _utils.validateType)("Identifier", "QualifiedTypeIdentifier"), typeParameters: (0, _utils.validateOptionalType)("TypeParameterInstantiation") } }), defineInterfaceishType("InterfaceDeclaration"), defineType("InterfaceTypeAnnotation", { visitor: ["extends", "body"], aliases: ["FlowType"], fields: { extends: (0, _utils.validateOptional)((0, _utils.arrayOfType)("InterfaceExtends")), body: (0, _utils.validateType)("ObjectTypeAnnotation") } }), defineType("IntersectionTypeAnnotation", { visitor: ["types"], aliases: ["FlowType"], fields: { types: (0, _utils.validate)((0, _utils.arrayOfType)("FlowType")) } }), defineType("MixedTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("EmptyTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("NullableTypeAnnotation", { visitor: ["typeAnnotation"], aliases: ["FlowType"], fields: { typeAnnotation: (0, _utils.validateType)("FlowType") } }), defineType("NumberLiteralTypeAnnotation", { builder: ["value"], aliases: ["FlowType"], fields: { value: (0, _utils.validate)((0, _utils.assertValueType)("number")) } }), defineType("NumberTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("ObjectTypeAnnotation", { visitor: ["properties", "indexers", "callProperties", "internalSlots"], aliases: ["FlowType"], builder: ["properties", "indexers", "callProperties", "internalSlots", "exact"], fields: { properties: (0, _utils.validate)((0, _utils.arrayOfType)("ObjectTypeProperty", "ObjectTypeSpreadProperty")), indexers: { validate: (0, _utils.arrayOfType)("ObjectTypeIndexer"), optional: true, default: [] }, callProperties: { validate: (0, _utils.arrayOfType)("ObjectTypeCallProperty"), optional: true, default: [] }, internalSlots: { validate: (0, _utils.arrayOfType)("ObjectTypeInternalSlot"), optional: true, default: [] }, exact: { validate: (0, _utils.assertValueType)("boolean"), default: false }, inexact: (0, _utils.validateOptional)((0, _utils.assertValueType)("boolean")) } }), defineType("ObjectTypeInternalSlot", { visitor: ["id", "value"], builder: ["id", "value", "optional", "static", "method"], aliases: ["UserWhitespacable"], fields: { id: (0, _utils.validateType)("Identifier"), value: (0, _utils.validateType)("FlowType"), optional: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), static: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), method: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } }), defineType("ObjectTypeCallProperty", { visitor: ["value"], aliases: ["UserWhitespacable"], fields: { value: (0, _utils.validateType)("FlowType"), static: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } }), defineType("ObjectTypeIndexer", { visitor: ["variance", "id", "key", "value"], builder: ["id", "key", "value", "variance"], aliases: ["UserWhitespacable"], fields: { id: (0, _utils.validateOptionalType)("Identifier"), key: (0, _utils.validateType)("FlowType"), value: (0, _utils.validateType)("FlowType"), static: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), variance: (0, _utils.validateOptionalType)("Variance") } }), defineType("ObjectTypeProperty", { visitor: ["key", "value", "variance"], aliases: ["UserWhitespacable"], fields: { key: (0, _utils.validateType)("Identifier", "StringLiteral"), value: (0, _utils.validateType)("FlowType"), kind: (0, _utils.validate)((0, _utils.assertOneOf)("init", "get", "set")), static: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), proto: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), optional: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), variance: (0, _utils.validateOptionalType)("Variance"), method: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } }), defineType("ObjectTypeSpreadProperty", { visitor: ["argument"], aliases: ["UserWhitespacable"], fields: { argument: (0, _utils.validateType)("FlowType") } }), defineType("OpaqueType", { visitor: ["id", "typeParameters", "supertype", "impltype"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { id: (0, _utils.validateType)("Identifier"), typeParameters: (0, _utils.validateOptionalType)("TypeParameterDeclaration"), supertype: (0, _utils.validateOptionalType)("FlowType"), impltype: (0, _utils.validateType)("FlowType") } }), defineType("QualifiedTypeIdentifier", { visitor: ["qualification", "id"], builder: ["id", "qualification"], fields: { id: (0, _utils.validateType)("Identifier"), qualification: (0, _utils.validateType)("Identifier", "QualifiedTypeIdentifier") } }), defineType("StringLiteralTypeAnnotation", { builder: ["value"], aliases: ["FlowType"], fields: { value: (0, _utils.validate)((0, _utils.assertValueType)("string")) } }), defineType("StringTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("SymbolTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("ThisTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("TupleTypeAnnotation", { visitor: ["types"], aliases: ["FlowType"], fields: { types: (0, _utils.validate)((0, _utils.arrayOfType)("FlowType")) } }), defineType("TypeofTypeAnnotation", { visitor: ["argument"], aliases: ["FlowType"], fields: { argument: (0, _utils.validateType)("FlowType") } }), defineType("TypeAlias", { visitor: ["id", "typeParameters", "right"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { id: (0, _utils.validateType)("Identifier"), typeParameters: (0, _utils.validateOptionalType)("TypeParameterDeclaration"), right: (0, _utils.validateType)("FlowType") } }), defineType("TypeAnnotation", { visitor: ["typeAnnotation"], fields: { typeAnnotation: (0, _utils.validateType)("FlowType") } }), defineType("TypeCastExpression", { visitor: ["expression", "typeAnnotation"], aliases: ["ExpressionWrapper", "Expression"], fields: { expression: (0, _utils.validateType)("Expression"), typeAnnotation: (0, _utils.validateType)("TypeAnnotation") } }), defineType("TypeParameter", { visitor: ["bound", "default", "variance"], fields: { name: (0, _utils.validate)((0, _utils.assertValueType)("string")), bound: (0, _utils.validateOptionalType)("TypeAnnotation"), default: (0, _utils.validateOptionalType)("FlowType"), variance: (0, _utils.validateOptionalType)("Variance") } }), defineType("TypeParameterDeclaration", { visitor: ["params"], fields: { params: (0, _utils.validate)((0, _utils.arrayOfType)("TypeParameter")) } }), defineType("TypeParameterInstantiation", { visitor: ["params"], fields: { params: (0, _utils.validate)((0, _utils.arrayOfType)("FlowType")) } }), defineType("UnionTypeAnnotation", { visitor: ["types"], aliases: ["FlowType"], fields: { types: (0, _utils.validate)((0, _utils.arrayOfType)("FlowType")) } }), defineType("Variance", { builder: ["kind"], fields: { kind: (0, _utils.validate)((0, _utils.assertOneOf)("minus", "plus")) } }), defineType("VoidTypeAnnotation", { aliases: ["FlowType", "FlowBaseAnnotation"] }), defineType("EnumDeclaration", { aliases: ["Statement", "Declaration"], visitor: ["id", "body"], fields: { id: (0, _utils.validateType)("Identifier"), body: (0, _utils.validateType)("EnumBooleanBody", "EnumNumberBody", "EnumStringBody", "EnumSymbolBody") } }), defineType("EnumBooleanBody", { aliases: ["EnumBody"], visitor: ["members"], fields: { explicitType: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), members: (0, _utils.validateArrayOfType)("EnumBooleanMember"), hasUnknownMembers: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } }), defineType("EnumNumberBody", { aliases: ["EnumBody"], visitor: ["members"], fields: { explicitType: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), members: (0, _utils.validateArrayOfType)("EnumNumberMember"), hasUnknownMembers: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } }), defineType("EnumStringBody", { aliases: ["EnumBody"], visitor: ["members"], fields: { explicitType: (0, _utils.validate)((0, _utils.assertValueType)("boolean")), members: (0, _utils.validateArrayOfType)("EnumStringMember", "EnumDefaultedMember"), hasUnknownMembers: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } }), defineType("EnumSymbolBody", { aliases: ["EnumBody"], visitor: ["members"], fields: { members: (0, _utils.validateArrayOfType)("EnumDefaultedMember"), hasUnknownMembers: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } }), defineType("EnumBooleanMember", { aliases: ["EnumMember"], visitor: ["id"], fields: { id: (0, _utils.validateType)("Identifier"), init: (0, _utils.validateType)("BooleanLiteral") } }), defineType("EnumNumberMember", { aliases: ["EnumMember"], visitor: ["id", "init"], fields: { id: (0, _utils.validateType)("Identifier"), init: (0, _utils.validateType)("NumericLiteral") } }), defineType("EnumStringMember", { aliases: ["EnumMember"], visitor: ["id", "init"], fields: { id: (0, _utils.validateType)("Identifier"), init: (0, _utils.validateType)("StringLiteral") } }), defineType("EnumDefaultedMember", { aliases: ["EnumMember"], visitor: ["id"], fields: { id: (0, _utils.validateType)("Identifier") } }), defineType("IndexedAccessType", { visitor: ["objectType", "indexType"], aliases: ["FlowType"], fields: { objectType: (0, _utils.validateType)("FlowType"), indexType: (0, _utils.validateType)("FlowType") } }), defineType("OptionalIndexedAccessType", { visitor: ["objectType", "indexType"], aliases: ["FlowType"], fields: { objectType: (0, _utils.validateType)("FlowType"), indexType: (0, _utils.validateType)("FlowType"), optional: (0, _utils.validate)((0, _utils.assertValueType)("boolean")) } });
|
|
254776
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254826
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254777
254827
|
"use strict";
|
|
254778
254828
|
Object.defineProperty(exports2, "__esModule", { value: true }), Object.defineProperty(exports2, "ALIAS_KEYS", { enumerable: true, get: function() {
|
|
254779
254829
|
return _utils.ALIAS_KEYS;
|
|
@@ -254797,26 +254847,26 @@ Expected ${val.length + 1} quasis but got ${node.quasis.length}`);
|
|
|
254797
254847
|
return _placeholders.PLACEHOLDERS_FLIPPED_ALIAS;
|
|
254798
254848
|
} }), exports2.TYPES = void 0, Object.defineProperty(exports2, "VISITOR_KEYS", { enumerable: true, get: function() {
|
|
254799
254849
|
return _utils.VISITOR_KEYS;
|
|
254800
|
-
} }), __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254801
|
-
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254850
|
+
} }), __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/core.js"), __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/flow.js"), __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/jsx.js"), __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/misc.js"), __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/experimental.js"), __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/typescript.js");
|
|
254851
|
+
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js"), _placeholders = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/placeholders.js"), _deprecatedAliases = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/deprecated-aliases.js");
|
|
254802
254852
|
Object.keys(_deprecatedAliases.DEPRECATED_ALIASES).forEach((deprecatedAlias) => {
|
|
254803
254853
|
_utils.FLIPPED_ALIAS_KEYS[deprecatedAlias] = _utils.FLIPPED_ALIAS_KEYS[_deprecatedAliases.DEPRECATED_ALIASES[deprecatedAlias]];
|
|
254804
254854
|
});
|
|
254805
254855
|
exports2.TYPES = [].concat(Object.keys(_utils.VISITOR_KEYS), Object.keys(_utils.FLIPPED_ALIAS_KEYS), Object.keys(_utils.DEPRECATED_KEYS));
|
|
254806
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254856
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/jsx.js": (__unused_webpack_module, __unused_webpack_exports, __webpack_require__2) => {
|
|
254807
254857
|
"use strict";
|
|
254808
|
-
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254858
|
+
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js");
|
|
254809
254859
|
const defineType = (0, _utils.defineAliasedType)("JSX");
|
|
254810
254860
|
defineType("JSXAttribute", { visitor: ["name", "value"], aliases: ["Immutable"], fields: { name: { validate: (0, _utils.assertNodeType)("JSXIdentifier", "JSXNamespacedName") }, value: { optional: true, validate: (0, _utils.assertNodeType)("JSXElement", "JSXFragment", "StringLiteral", "JSXExpressionContainer") } } }), defineType("JSXClosingElement", { visitor: ["name"], aliases: ["Immutable"], fields: { name: { validate: (0, _utils.assertNodeType)("JSXIdentifier", "JSXMemberExpression", "JSXNamespacedName") } } }), defineType("JSXElement", { builder: ["openingElement", "closingElement", "children", "selfClosing"], visitor: ["openingElement", "children", "closingElement"], aliases: ["Immutable", "Expression"], fields: Object.assign({ openingElement: { validate: (0, _utils.assertNodeType)("JSXOpeningElement") }, closingElement: { optional: true, validate: (0, _utils.assertNodeType)("JSXClosingElement") }, children: (0, _utils.validateArrayOfType)("JSXText", "JSXExpressionContainer", "JSXSpreadChild", "JSXElement", "JSXFragment") }, { selfClosing: { validate: (0, _utils.assertValueType)("boolean"), optional: true } }) }), defineType("JSXEmptyExpression", {}), defineType("JSXExpressionContainer", { visitor: ["expression"], aliases: ["Immutable"], fields: { expression: { validate: (0, _utils.assertNodeType)("Expression", "JSXEmptyExpression") } } }), defineType("JSXSpreadChild", { visitor: ["expression"], aliases: ["Immutable"], fields: { expression: { validate: (0, _utils.assertNodeType)("Expression") } } }), defineType("JSXIdentifier", { builder: ["name"], fields: { name: { validate: (0, _utils.assertValueType)("string") } } }), defineType("JSXMemberExpression", { visitor: ["object", "property"], fields: { object: { validate: (0, _utils.assertNodeType)("JSXMemberExpression", "JSXIdentifier") }, property: { validate: (0, _utils.assertNodeType)("JSXIdentifier") } } }), defineType("JSXNamespacedName", { visitor: ["namespace", "name"], fields: { namespace: { validate: (0, _utils.assertNodeType)("JSXIdentifier") }, name: { validate: (0, _utils.assertNodeType)("JSXIdentifier") } } }), defineType("JSXOpeningElement", { builder: ["name", "attributes", "selfClosing"], visitor: ["name", "attributes"], aliases: ["Immutable"], fields: { name: { validate: (0, _utils.assertNodeType)("JSXIdentifier", "JSXMemberExpression", "JSXNamespacedName") }, selfClosing: { default: false }, attributes: (0, _utils.validateArrayOfType)("JSXAttribute", "JSXSpreadAttribute"), typeParameters: { validate: (0, _utils.assertNodeType)("TypeParameterInstantiation", "TSTypeParameterInstantiation"), optional: true } } }), defineType("JSXSpreadAttribute", { visitor: ["argument"], fields: { argument: { validate: (0, _utils.assertNodeType)("Expression") } } }), defineType("JSXText", { aliases: ["Immutable"], builder: ["value"], fields: { value: { validate: (0, _utils.assertValueType)("string") } } }), defineType("JSXFragment", { builder: ["openingFragment", "closingFragment", "children"], visitor: ["openingFragment", "children", "closingFragment"], aliases: ["Immutable", "Expression"], fields: { openingFragment: { validate: (0, _utils.assertNodeType)("JSXOpeningFragment") }, closingFragment: { validate: (0, _utils.assertNodeType)("JSXClosingFragment") }, children: (0, _utils.validateArrayOfType)("JSXText", "JSXExpressionContainer", "JSXSpreadChild", "JSXElement", "JSXFragment") } }), defineType("JSXOpeningFragment", { aliases: ["Immutable"] }), defineType("JSXClosingFragment", { aliases: ["Immutable"] });
|
|
254811
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254861
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/misc.js": (__unused_webpack_module, __unused_webpack_exports, __webpack_require__2) => {
|
|
254812
254862
|
"use strict";
|
|
254813
|
-
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254863
|
+
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js"), _placeholders = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/placeholders.js"), _core = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/core.js");
|
|
254814
254864
|
const defineType = (0, _utils.defineAliasedType)("Miscellaneous");
|
|
254815
254865
|
defineType("Noop", { visitor: [] }), defineType("Placeholder", { visitor: [], builder: ["expectedNode", "name"], fields: Object.assign({ name: { validate: (0, _utils.assertNodeType)("Identifier") }, expectedNode: { validate: (0, _utils.assertOneOf)(..._placeholders.PLACEHOLDERS) } }, (0, _core.patternLikeCommon)()) }), defineType("V8IntrinsicIdentifier", { builder: ["name"], fields: { name: { validate: (0, _utils.assertValueType)("string") } } });
|
|
254816
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254866
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/placeholders.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254817
254867
|
"use strict";
|
|
254818
254868
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.PLACEHOLDERS_FLIPPED_ALIAS = exports2.PLACEHOLDERS_ALIAS = exports2.PLACEHOLDERS = void 0;
|
|
254819
|
-
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254869
|
+
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js");
|
|
254820
254870
|
const PLACEHOLDERS = exports2.PLACEHOLDERS = ["Identifier", "StringLiteral", "Expression", "Statement", "Declaration", "BlockStatement", "ClassBody", "Pattern"], PLACEHOLDERS_ALIAS = exports2.PLACEHOLDERS_ALIAS = { Declaration: ["Statement"], Pattern: ["PatternLike", "LVal"] };
|
|
254821
254871
|
for (const type of PLACEHOLDERS) {
|
|
254822
254872
|
const alias = _utils.ALIAS_KEYS[type];
|
|
@@ -254828,9 +254878,9 @@ Expected ${val.length + 1} quasis but got ${node.quasis.length}`);
|
|
|
254828
254878
|
hasOwnProperty.call(PLACEHOLDERS_FLIPPED_ALIAS, alias) || (PLACEHOLDERS_FLIPPED_ALIAS[alias] = []), PLACEHOLDERS_FLIPPED_ALIAS[alias].push(type);
|
|
254829
254879
|
});
|
|
254830
254880
|
});
|
|
254831
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254881
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/typescript.js": (__unused_webpack_module, __unused_webpack_exports, __webpack_require__2) => {
|
|
254832
254882
|
"use strict";
|
|
254833
|
-
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254883
|
+
var _utils = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js"), _core = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/core.js"), _is = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/is.js");
|
|
254834
254884
|
const defineType = (0, _utils.defineAliasedType)("TypeScript"), bool = (0, _utils.assertValueType)("boolean"), tSFunctionTypeAnnotationCommon = () => ({ returnType: { validate: (0, _utils.assertNodeType)("TSTypeAnnotation", "Noop"), optional: true }, typeParameters: { validate: (0, _utils.assertNodeType)("TSTypeParameterDeclaration", "Noop"), optional: true } });
|
|
254835
254885
|
defineType("TSParameterProperty", { aliases: ["LVal"], visitor: ["parameter"], fields: { accessibility: { validate: (0, _utils.assertOneOf)("public", "private", "protected"), optional: true }, readonly: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, parameter: { validate: (0, _utils.assertNodeType)("Identifier", "AssignmentPattern") }, override: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, decorators: { validate: (0, _utils.arrayOfType)("Decorator"), optional: true } } }), defineType("TSDeclareFunction", { aliases: ["Statement", "Declaration"], visitor: ["id", "typeParameters", "params", "returnType"], fields: Object.assign({}, (0, _core.functionDeclarationCommon)(), tSFunctionTypeAnnotationCommon()) }), defineType("TSDeclareMethod", { visitor: ["decorators", "key", "typeParameters", "params", "returnType"], fields: Object.assign({}, (0, _core.classMethodOrDeclareMethodCommon)(), tSFunctionTypeAnnotationCommon()) }), defineType("TSQualifiedName", { aliases: ["TSEntityName"], visitor: ["left", "right"], fields: { left: (0, _utils.validateType)("TSEntityName"), right: (0, _utils.validateType)("Identifier") } });
|
|
254836
254886
|
const signatureDeclarationCommon = () => ({ typeParameters: (0, _utils.validateOptionalType)("TSTypeParameterDeclaration"), parameters: (0, _utils.validateArrayOfType)("ArrayPattern", "Identifier", "ObjectPattern", "RestElement"), typeAnnotation: (0, _utils.validateOptionalType)("TSTypeAnnotation") }), callConstructSignatureDeclaration = { aliases: ["TSTypeElement"], visitor: ["typeParameters", "parameters", "typeAnnotation"], fields: signatureDeclarationCommon() };
|
|
@@ -254852,8 +254902,8 @@ Expected ${val.length + 1} quasis but got ${node.quasis.length}`);
|
|
|
254852
254902
|
}() } } });
|
|
254853
254903
|
defineType("TSExpressionWithTypeArguments", { aliases: ["TSType"], visitor: ["expression", "typeParameters"], fields: { expression: (0, _utils.validateType)("TSEntityName"), typeParameters: (0, _utils.validateOptionalType)("TSTypeParameterInstantiation") } }), defineType("TSInterfaceDeclaration", { aliases: ["Statement", "Declaration"], visitor: ["id", "typeParameters", "extends", "body"], fields: { declare: (0, _utils.validateOptional)(bool), id: (0, _utils.validateType)("Identifier"), typeParameters: (0, _utils.validateOptionalType)("TSTypeParameterDeclaration"), extends: (0, _utils.validateOptional)((0, _utils.arrayOfType)("TSExpressionWithTypeArguments")), body: (0, _utils.validateType)("TSInterfaceBody") } }), defineType("TSInterfaceBody", { visitor: ["body"], fields: { body: (0, _utils.validateArrayOfType)("TSTypeElement") } }), defineType("TSTypeAliasDeclaration", { aliases: ["Statement", "Declaration"], visitor: ["id", "typeParameters", "typeAnnotation"], fields: { declare: (0, _utils.validateOptional)(bool), id: (0, _utils.validateType)("Identifier"), typeParameters: (0, _utils.validateOptionalType)("TSTypeParameterDeclaration"), typeAnnotation: (0, _utils.validateType)("TSType") } }), defineType("TSInstantiationExpression", { aliases: ["Expression"], visitor: ["expression", "typeParameters"], fields: { expression: (0, _utils.validateType)("Expression"), typeParameters: (0, _utils.validateOptionalType)("TSTypeParameterInstantiation") } });
|
|
254854
254904
|
const TSTypeExpression = { aliases: ["Expression", "LVal", "PatternLike"], visitor: ["expression", "typeAnnotation"], fields: { expression: (0, _utils.validateType)("Expression"), typeAnnotation: (0, _utils.validateType)("TSType") } };
|
|
254855
|
-
defineType("TSAsExpression", TSTypeExpression), defineType("TSSatisfiesExpression", TSTypeExpression), defineType("TSTypeAssertion", { aliases: ["Expression", "LVal", "PatternLike"], visitor: ["typeAnnotation", "expression"], fields: { typeAnnotation: (0, _utils.validateType)("TSType"), expression: (0, _utils.validateType)("Expression") } }), defineType("TSEnumDeclaration", { aliases: ["Statement", "Declaration"], visitor: ["id", "members"], fields: { declare: (0, _utils.validateOptional)(bool), const: (0, _utils.validateOptional)(bool), id: (0, _utils.validateType)("Identifier"), members: (0, _utils.validateArrayOfType)("TSEnumMember"), initializer: (0, _utils.validateOptionalType)("Expression") } }), defineType("TSEnumMember", { visitor: ["id", "initializer"], fields: { id: (0, _utils.validateType)("Identifier", "StringLiteral"), initializer: (0, _utils.validateOptionalType)("Expression") } }), defineType("TSModuleDeclaration", { aliases: ["Statement", "Declaration"], visitor: ["id", "body"], fields: { kind: { validate: (0, _utils.assertOneOf)("global", "module", "namespace") }, declare: (0, _utils.validateOptional)(bool), global: (0, _utils.validateOptional)(bool), id: (0, _utils.validateType)("Identifier", "StringLiteral"), body: (0, _utils.validateType)("TSModuleBlock", "TSModuleDeclaration") } }), defineType("TSModuleBlock", { aliases: ["Scopable", "Block", "BlockParent", "FunctionParent"], visitor: ["body"], fields: { body: (0, _utils.validateArrayOfType)("Statement") } }), defineType("TSImportType", { aliases: ["TSType"], visitor: ["argument", "qualifier", "typeParameters"], fields: { argument: (0, _utils.validateType)("StringLiteral"), qualifier: (0, _utils.validateOptionalType)("TSEntityName"), typeParameters: (0, _utils.validateOptionalType)("TSTypeParameterInstantiation"), options: { validate: (0, _utils.assertNodeType)("Expression"), optional: true } } }), defineType("TSImportEqualsDeclaration", { aliases: ["Statement"], visitor: ["id", "moduleReference"], fields: { isExport: (0, _utils.validate)(bool), id: (0, _utils.validateType)("Identifier"), moduleReference: (0, _utils.validateType)("TSEntityName", "TSExternalModuleReference"), importKind: { validate: (0, _utils.assertOneOf)("type", "value"), optional: true } } }), defineType("TSExternalModuleReference", { visitor: ["expression"], fields: { expression: (0, _utils.validateType)("StringLiteral") } }), defineType("TSNonNullExpression", { aliases: ["Expression", "LVal", "PatternLike"], visitor: ["expression"], fields: { expression: (0, _utils.validateType)("Expression") } }), defineType("TSExportAssignment", { aliases: ["Statement"], visitor: ["expression"], fields: { expression: (0, _utils.validateType)("Expression") } }), defineType("TSNamespaceExportDeclaration", { aliases: ["Statement"], visitor: ["id"], fields: { id: (0, _utils.validateType)("Identifier") } }), defineType("TSTypeAnnotation", { visitor: ["typeAnnotation"], fields: { typeAnnotation: { validate: (0, _utils.assertNodeType)("TSType") } } }), defineType("TSTypeParameterInstantiation", { visitor: ["params"], fields: { params: (0, _utils.validateArrayOfType)("TSType") } }), defineType("TSTypeParameterDeclaration", { visitor: ["params"], fields: { params: (0, _utils.validateArrayOfType)("TSTypeParameter") } }), defineType("TSTypeParameter", { builder: ["constraint", "default", "name"], visitor: ["constraint", "default"], fields: { name: { validate: (0, _utils.assertValueType)("string") }, in: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, out: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, const: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, constraint: { validate: (0, _utils.assertNodeType)("TSType"), optional: true }, default: { validate: (0, _utils.assertNodeType)("TSType"), optional: true } } });
|
|
254856
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
254905
|
+
defineType("TSAsExpression", TSTypeExpression), defineType("TSSatisfiesExpression", TSTypeExpression), defineType("TSTypeAssertion", { aliases: ["Expression", "LVal", "PatternLike"], visitor: ["typeAnnotation", "expression"], fields: { typeAnnotation: (0, _utils.validateType)("TSType"), expression: (0, _utils.validateType)("Expression") } }), defineType("TSEnumDeclaration", { aliases: ["Statement", "Declaration"], visitor: ["id", "members"], fields: { declare: (0, _utils.validateOptional)(bool), const: (0, _utils.validateOptional)(bool), id: (0, _utils.validateType)("Identifier"), members: (0, _utils.validateArrayOfType)("TSEnumMember"), initializer: (0, _utils.validateOptionalType)("Expression") } }), defineType("TSEnumMember", { visitor: ["id", "initializer"], fields: { id: (0, _utils.validateType)("Identifier", "StringLiteral"), initializer: (0, _utils.validateOptionalType)("Expression") } }), defineType("TSModuleDeclaration", { aliases: ["Statement", "Declaration"], visitor: ["id", "body"], fields: Object.assign({ kind: { validate: (0, _utils.assertOneOf)("global", "module", "namespace") }, declare: (0, _utils.validateOptional)(bool) }, { global: (0, _utils.validateOptional)(bool) }, { id: (0, _utils.validateType)("Identifier", "StringLiteral"), body: (0, _utils.validateType)("TSModuleBlock", "TSModuleDeclaration") }) }), defineType("TSModuleBlock", { aliases: ["Scopable", "Block", "BlockParent", "FunctionParent"], visitor: ["body"], fields: { body: (0, _utils.validateArrayOfType)("Statement") } }), defineType("TSImportType", { aliases: ["TSType"], visitor: ["argument", "qualifier", "typeParameters"], fields: { argument: (0, _utils.validateType)("StringLiteral"), qualifier: (0, _utils.validateOptionalType)("TSEntityName"), typeParameters: (0, _utils.validateOptionalType)("TSTypeParameterInstantiation"), options: { validate: (0, _utils.assertNodeType)("Expression"), optional: true } } }), defineType("TSImportEqualsDeclaration", { aliases: ["Statement"], visitor: ["id", "moduleReference"], fields: { isExport: (0, _utils.validate)(bool), id: (0, _utils.validateType)("Identifier"), moduleReference: (0, _utils.validateType)("TSEntityName", "TSExternalModuleReference"), importKind: { validate: (0, _utils.assertOneOf)("type", "value"), optional: true } } }), defineType("TSExternalModuleReference", { visitor: ["expression"], fields: { expression: (0, _utils.validateType)("StringLiteral") } }), defineType("TSNonNullExpression", { aliases: ["Expression", "LVal", "PatternLike"], visitor: ["expression"], fields: { expression: (0, _utils.validateType)("Expression") } }), defineType("TSExportAssignment", { aliases: ["Statement"], visitor: ["expression"], fields: { expression: (0, _utils.validateType)("Expression") } }), defineType("TSNamespaceExportDeclaration", { aliases: ["Statement"], visitor: ["id"], fields: { id: (0, _utils.validateType)("Identifier") } }), defineType("TSTypeAnnotation", { visitor: ["typeAnnotation"], fields: { typeAnnotation: { validate: (0, _utils.assertNodeType)("TSType") } } }), defineType("TSTypeParameterInstantiation", { visitor: ["params"], fields: { params: (0, _utils.validateArrayOfType)("TSType") } }), defineType("TSTypeParameterDeclaration", { visitor: ["params"], fields: { params: (0, _utils.validateArrayOfType)("TSTypeParameter") } }), defineType("TSTypeParameter", { builder: ["constraint", "default", "name"], visitor: ["constraint", "default"], fields: { name: { validate: (0, _utils.assertValueType)("string") }, in: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, out: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, const: { validate: (0, _utils.assertValueType)("boolean"), optional: true }, constraint: { validate: (0, _utils.assertNodeType)("TSType"), optional: true }, default: { validate: (0, _utils.assertNodeType)("TSType"), optional: true } } });
|
|
254906
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/utils.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254857
254907
|
"use strict";
|
|
254858
254908
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.VISITOR_KEYS = exports2.NODE_PARENT_VALIDATIONS = exports2.NODE_FIELDS = exports2.FLIPPED_ALIAS_KEYS = exports2.DEPRECATED_KEYS = exports2.BUILDER_KEYS = exports2.ALIAS_KEYS = void 0, exports2.arrayOf = arrayOf, exports2.arrayOfType = arrayOfType, exports2.assertEach = assertEach, exports2.assertNodeOrValueType = function(...types) {
|
|
254859
254909
|
function validate2(node, key, val) {
|
|
@@ -254916,7 +254966,7 @@ ${errors.join("\n")}`);
|
|
|
254916
254966
|
}, exports2.validateType = function(...typeNames) {
|
|
254917
254967
|
return validate(assertNodeType(...typeNames));
|
|
254918
254968
|
};
|
|
254919
|
-
var _is = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
254969
|
+
var _is = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/is.js"), _validate = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/validate.js");
|
|
254920
254970
|
const VISITOR_KEYS = exports2.VISITOR_KEYS = {}, ALIAS_KEYS = exports2.ALIAS_KEYS = {}, FLIPPED_ALIAS_KEYS = exports2.FLIPPED_ALIAS_KEYS = {}, NODE_FIELDS = exports2.NODE_FIELDS = {}, BUILDER_KEYS = exports2.BUILDER_KEYS = {}, DEPRECATED_KEYS = exports2.DEPRECATED_KEYS = {}, NODE_PARENT_VALIDATIONS = exports2.NODE_PARENT_VALIDATIONS = {};
|
|
254921
254971
|
function getType(val) {
|
|
254922
254972
|
return Array.isArray(val) ? "array" : null === val ? "null" : typeof val;
|
|
@@ -254986,7 +255036,7 @@ ${errors.join("\n")}`);
|
|
|
254986
255036
|
FLIPPED_ALIAS_KEYS[alias] = FLIPPED_ALIAS_KEYS[alias] || [], FLIPPED_ALIAS_KEYS[alias].push(type);
|
|
254987
255037
|
}), opts.validate && (NODE_PARENT_VALIDATIONS[type] = opts.validate), store[type] = opts;
|
|
254988
255038
|
}
|
|
254989
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255039
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
254990
255040
|
"use strict";
|
|
254991
255041
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
254992
255042
|
var _exportNames = { react: true, assertNode: true, createTypeAnnotationBasedOnTypeof: true, createUnionTypeAnnotation: true, createFlowUnionType: true, createTSUnionType: true, cloneNode: true, clone: true, cloneDeep: true, cloneDeepWithoutLoc: true, cloneWithoutLoc: true, addComment: true, addComments: true, inheritInnerComments: true, inheritLeadingComments: true, inheritsComments: true, inheritTrailingComments: true, removeComments: true, ensureBlock: true, toBindingIdentifierName: true, toBlock: true, toComputedKey: true, toExpression: true, toIdentifier: true, toKeyAlias: true, toStatement: true, valueToNode: true, appendToMemberExpression: true, inherits: true, prependToMemberExpression: true, removeProperties: true, removePropertiesDeep: true, removeTypeDuplicates: true, getAssignmentIdentifiers: true, getBindingIdentifiers: true, getOuterBindingIdentifiers: true, getFunctionName: true, traverse: true, traverseFast: true, shallowEqual: true, is: true, isBinding: true, isBlockScoped: true, isImmutable: true, isLet: true, isNode: true, isNodesEquivalent: true, isPlaceholderType: true, isReferenced: true, isScope: true, isSpecifierDefault: true, isType: true, isValidES3Identifier: true, isValidIdentifier: true, isVar: true, matchesPattern: true, validate: true, buildMatchMemberExpression: true, __internal__deprecationWarning: true };
|
|
@@ -255107,70 +255157,70 @@ ${errors.join("\n")}`);
|
|
|
255107
255157
|
} }), Object.defineProperty(exports2, "valueToNode", { enumerable: true, get: function() {
|
|
255108
255158
|
return _valueToNode.default;
|
|
255109
255159
|
} });
|
|
255110
|
-
var _isReactComponent = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255160
|
+
var _isReactComponent = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/react/isReactComponent.js"), _isCompatTag = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/react/isCompatTag.js"), _buildChildren = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/react/buildChildren.js"), _assertNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/asserts/assertNode.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/asserts/generated/index.js");
|
|
255111
255161
|
Object.keys(_index).forEach(function(key) {
|
|
255112
255162
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _index[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255113
255163
|
return _index[key];
|
|
255114
255164
|
} }));
|
|
255115
255165
|
});
|
|
255116
|
-
var _createTypeAnnotationBasedOnTypeof = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255166
|
+
var _createTypeAnnotationBasedOnTypeof = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js"), _createFlowUnionType = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js"), _createTSUnionType = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
255117
255167
|
Object.keys(_index2).forEach(function(key) {
|
|
255118
255168
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _index2[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255119
255169
|
return _index2[key];
|
|
255120
255170
|
} }));
|
|
255121
255171
|
});
|
|
255122
|
-
var _uppercase = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255172
|
+
var _uppercase = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/uppercase.js");
|
|
255123
255173
|
Object.keys(_uppercase).forEach(function(key) {
|
|
255124
255174
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _uppercase[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255125
255175
|
return _uppercase[key];
|
|
255126
255176
|
} }));
|
|
255127
255177
|
});
|
|
255128
|
-
var _productions = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255178
|
+
var _productions = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/productions.js");
|
|
255129
255179
|
Object.keys(_productions).forEach(function(key) {
|
|
255130
255180
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _productions[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255131
255181
|
return _productions[key];
|
|
255132
255182
|
} }));
|
|
255133
255183
|
});
|
|
255134
|
-
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255184
|
+
var _cloneNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneNode.js"), _clone = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/clone.js"), _cloneDeep = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneDeep.js"), _cloneDeepWithoutLoc = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js"), _cloneWithoutLoc = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js"), _addComment = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/addComment.js"), _addComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/addComments.js"), _inheritInnerComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritInnerComments.js"), _inheritLeadingComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritLeadingComments.js"), _inheritsComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritsComments.js"), _inheritTrailingComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritTrailingComments.js"), _removeComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/removeComments.js"), _index3 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/generated/index.js");
|
|
255135
255185
|
Object.keys(_index3).forEach(function(key) {
|
|
255136
255186
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _index3[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255137
255187
|
return _index3[key];
|
|
255138
255188
|
} }));
|
|
255139
255189
|
});
|
|
255140
|
-
var _index4 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255190
|
+
var _index4 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/index.js");
|
|
255141
255191
|
Object.keys(_index4).forEach(function(key) {
|
|
255142
255192
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _index4[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255143
255193
|
return _index4[key];
|
|
255144
255194
|
} }));
|
|
255145
255195
|
});
|
|
255146
|
-
var _ensureBlock = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255196
|
+
var _ensureBlock = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/ensureBlock.js"), _toBindingIdentifierName = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js"), _toBlock = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toBlock.js"), _toComputedKey = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toComputedKey.js"), _toExpression = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toExpression.js"), _toIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toIdentifier.js"), _toKeyAlias = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toKeyAlias.js"), _toStatement = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toStatement.js"), _valueToNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/valueToNode.js"), _index5 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
255147
255197
|
Object.keys(_index5).forEach(function(key) {
|
|
255148
255198
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _index5[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255149
255199
|
return _index5[key];
|
|
255150
255200
|
} }));
|
|
255151
255201
|
});
|
|
255152
|
-
var _appendToMemberExpression = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255202
|
+
var _appendToMemberExpression = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js"), _inherits = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/inherits.js"), _prependToMemberExpression = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js"), _removeProperties = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/removeProperties.js"), _removePropertiesDeep = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js"), _removeTypeDuplicates = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js"), _getAssignmentIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js"), _getBindingIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js"), _getOuterBindingIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js"), _getFunctionName = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getFunctionName.js"), _traverse = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/traverse/traverse.js");
|
|
255153
255203
|
Object.keys(_traverse).forEach(function(key) {
|
|
255154
255204
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _traverse[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255155
255205
|
return _traverse[key];
|
|
255156
255206
|
} }));
|
|
255157
255207
|
});
|
|
255158
|
-
var _traverseFast = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255208
|
+
var _traverseFast = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/traverse/traverseFast.js"), _shallowEqual = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/shallowEqual.js"), _is = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/is.js"), _isBinding = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isBinding.js"), _isBlockScoped = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isBlockScoped.js"), _isImmutable = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isImmutable.js"), _isLet = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isLet.js"), _isNode = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isNode.js"), _isNodesEquivalent = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isNodesEquivalent.js"), _isPlaceholderType = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isPlaceholderType.js"), _isReferenced = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isReferenced.js"), _isScope = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isScope.js"), _isSpecifierDefault = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isSpecifierDefault.js"), _isType = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isType.js"), _isValidES3Identifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isValidES3Identifier.js"), _isValidIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isValidIdentifier.js"), _isVar = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isVar.js"), _matchesPattern = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/matchesPattern.js"), _validate = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/validate.js"), _buildMatchMemberExpression = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js"), _index6 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
255159
255209
|
Object.keys(_index6).forEach(function(key) {
|
|
255160
255210
|
"default" !== key && "__esModule" !== key && (Object.prototype.hasOwnProperty.call(_exportNames, key) || key in exports2 && exports2[key] === _index6[key] || Object.defineProperty(exports2, key, { enumerable: true, get: function() {
|
|
255161
255211
|
return _index6[key];
|
|
255162
255212
|
} }));
|
|
255163
255213
|
});
|
|
255164
|
-
var _deprecationWarning = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255214
|
+
var _deprecationWarning = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/deprecationWarning.js");
|
|
255165
255215
|
exports2.react = { isReactComponent: _isReactComponent.default, isCompatTag: _isCompatTag.default, buildChildren: _buildChildren.default };
|
|
255166
|
-
exports2.toSequenceExpression = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255167
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255216
|
+
exports2.toSequenceExpression = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/converters/toSequenceExpression.js").default, process.env.BABEL_TYPES_8_BREAKING && console.warn("BABEL_TYPES_8_BREAKING is not supported anymore. Use the latest Babel 8.0.0 pre-release instead!");
|
|
255217
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255168
255218
|
"use strict";
|
|
255169
255219
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(member, append, computed = false) {
|
|
255170
255220
|
return member.object = (0, _index.memberExpression)(member.object, member.property, member.computed), member.property = append, member.computed = !!computed, member;
|
|
255171
255221
|
};
|
|
255172
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255173
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255222
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js");
|
|
255223
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255174
255224
|
"use strict";
|
|
255175
255225
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function removeTypeDuplicates(nodesIn) {
|
|
255176
255226
|
const nodes = Array.from(nodesIn), generics = /* @__PURE__ */ new Map(), bases = /* @__PURE__ */ new Map(), typeGroups = /* @__PURE__ */ new Set(), types = [];
|
|
@@ -255193,11 +255243,11 @@ ${errors.join("\n")}`);
|
|
|
255193
255243
|
for (const [, genericName] of generics) types.push(genericName);
|
|
255194
255244
|
return types;
|
|
255195
255245
|
};
|
|
255196
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255246
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
255197
255247
|
function getQualifiedName(node) {
|
|
255198
255248
|
return (0, _index.isIdentifier)(node) ? node.name : `${node.id.name}.${getQualifiedName(node.qualification)}`;
|
|
255199
255249
|
}
|
|
255200
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255250
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/inherits.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255201
255251
|
"use strict";
|
|
255202
255252
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(child, parent) {
|
|
255203
255253
|
if (!child || !parent) return child;
|
|
@@ -255206,15 +255256,15 @@ ${errors.join("\n")}`);
|
|
|
255206
255256
|
for (const key of _index.INHERIT_KEYS.force) child[key] = parent[key];
|
|
255207
255257
|
return (0, _inheritsComments.default)(child, parent), child;
|
|
255208
255258
|
};
|
|
255209
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255210
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255259
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/index.js"), _inheritsComments = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/comments/inheritsComments.js");
|
|
255260
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255211
255261
|
"use strict";
|
|
255212
255262
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(member, prepend) {
|
|
255213
255263
|
if ((0, _index2.isSuper)(member.object)) throw new Error("Cannot prepend node to super property access (`super.foo`).");
|
|
255214
255264
|
return member.object = (0, _index.memberExpression)(prepend, member.object), member;
|
|
255215
255265
|
};
|
|
255216
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255217
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255266
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
255267
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/removeProperties.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255218
255268
|
"use strict";
|
|
255219
255269
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, opts = {}) {
|
|
255220
255270
|
const map = opts.preserveComments ? CLEAR_KEYS : CLEAR_KEYS_PLUS_COMMENTS;
|
|
@@ -255223,15 +255273,15 @@ ${errors.join("\n")}`);
|
|
|
255223
255273
|
const symbols = Object.getOwnPropertySymbols(node);
|
|
255224
255274
|
for (const sym of symbols) node[sym] = null;
|
|
255225
255275
|
};
|
|
255226
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255276
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/index.js");
|
|
255227
255277
|
const CLEAR_KEYS = ["tokens", "start", "end", "loc", "raw", "rawValue"], CLEAR_KEYS_PLUS_COMMENTS = [..._index.COMMENT_KEYS, "comments", ...CLEAR_KEYS];
|
|
255228
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255278
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255229
255279
|
"use strict";
|
|
255230
255280
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(tree, opts) {
|
|
255231
255281
|
return (0, _traverseFast.default)(tree, _removeProperties.default, opts), tree;
|
|
255232
255282
|
};
|
|
255233
|
-
var _traverseFast = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255234
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255283
|
+
var _traverseFast = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/traverse/traverseFast.js"), _removeProperties = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/removeProperties.js");
|
|
255284
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255235
255285
|
"use strict";
|
|
255236
255286
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function removeTypeDuplicates(nodesIn) {
|
|
255237
255287
|
const nodes = Array.from(nodesIn), generics = /* @__PURE__ */ new Map(), bases = /* @__PURE__ */ new Map(), typeGroups = /* @__PURE__ */ new Set(), types = [];
|
|
@@ -255254,11 +255304,11 @@ ${errors.join("\n")}`);
|
|
|
255254
255304
|
for (const [, genericName] of generics) types.push(genericName);
|
|
255255
255305
|
return types;
|
|
255256
255306
|
};
|
|
255257
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255307
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
255258
255308
|
function getQualifiedName(node) {
|
|
255259
255309
|
return (0, _index.isIdentifier)(node) ? node.name : `${node.right.name}.${getQualifiedName(node.left)}`;
|
|
255260
255310
|
}
|
|
255261
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255311
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js": (__unused_webpack_module, exports2) => {
|
|
255262
255312
|
"use strict";
|
|
255263
255313
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
255264
255314
|
const search = [].concat(node), ids = /* @__PURE__ */ Object.create(null);
|
|
@@ -255293,10 +255343,10 @@ ${errors.join("\n")}`);
|
|
|
255293
255343
|
}
|
|
255294
255344
|
return ids;
|
|
255295
255345
|
};
|
|
255296
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255346
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255297
255347
|
"use strict";
|
|
255298
255348
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = getBindingIdentifiers;
|
|
255299
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255349
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
255300
255350
|
function getBindingIdentifiers(node, duplicates, outerOnly, newBindingsOnly) {
|
|
255301
255351
|
const search = [].concat(node), ids = /* @__PURE__ */ Object.create(null);
|
|
255302
255352
|
for (; search.length; ) {
|
|
@@ -255329,7 +255379,7 @@ ${errors.join("\n")}`);
|
|
|
255329
255379
|
return ids;
|
|
255330
255380
|
}
|
|
255331
255381
|
getBindingIdentifiers.keys = { DeclareClass: ["id"], DeclareFunction: ["id"], DeclareModule: ["id"], DeclareVariable: ["id"], DeclareInterface: ["id"], DeclareTypeAlias: ["id"], DeclareOpaqueType: ["id"], InterfaceDeclaration: ["id"], TypeAlias: ["id"], OpaqueType: ["id"], CatchClause: ["param"], LabeledStatement: ["label"], UnaryExpression: ["argument"], AssignmentExpression: ["left"], ImportSpecifier: ["local"], ImportNamespaceSpecifier: ["local"], ImportDefaultSpecifier: ["local"], ImportDeclaration: ["specifiers"], ExportSpecifier: ["exported"], ExportNamespaceSpecifier: ["exported"], ExportDefaultSpecifier: ["exported"], FunctionDeclaration: ["id", "params"], FunctionExpression: ["id", "params"], ArrowFunctionExpression: ["params"], ObjectMethod: ["params"], ClassMethod: ["params"], ClassPrivateMethod: ["params"], ForInStatement: ["left"], ForOfStatement: ["left"], ClassDeclaration: ["id"], ClassExpression: ["id"], RestElement: ["argument"], UpdateExpression: ["argument"], ObjectProperty: ["value"], AssignmentPattern: ["left"], ArrayPattern: ["elements"], ObjectPattern: ["properties"], VariableDeclaration: ["declarations"], VariableDeclarator: ["id"] };
|
|
255332
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255382
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getFunctionName.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255333
255383
|
"use strict";
|
|
255334
255384
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, parent) {
|
|
255335
255385
|
if ("id" in node && node.id) return { name: node.id.name, originalNode: node.id };
|
|
@@ -255345,25 +255395,25 @@ ${errors.join("\n")}`);
|
|
|
255345
255395
|
}(id) : (0, _index.isIdentifier)(id) ? id.name : (0, _index.isPrivateName)(id) ? id.id.name : null;
|
|
255346
255396
|
return null == name ? null : { name: prefix2 + name, originalNode: id };
|
|
255347
255397
|
};
|
|
255348
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255398
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
255349
255399
|
function getObjectMemberKey(node) {
|
|
255350
255400
|
if (!node.computed || (0, _index.isLiteral)(node.key)) return node.key;
|
|
255351
255401
|
}
|
|
255352
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255402
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255353
255403
|
"use strict";
|
|
255354
255404
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
255355
|
-
var _getBindingIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255405
|
+
var _getBindingIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js");
|
|
255356
255406
|
exports2.default = function(node, duplicates) {
|
|
255357
255407
|
return (0, _getBindingIdentifiers.default)(node, duplicates, true);
|
|
255358
255408
|
};
|
|
255359
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255409
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/traverse/traverse.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255360
255410
|
"use strict";
|
|
255361
255411
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, handlers, state) {
|
|
255362
255412
|
"function" == typeof handlers && (handlers = { enter: handlers });
|
|
255363
255413
|
const { enter, exit } = handlers;
|
|
255364
255414
|
traverseSimpleImpl(node, enter, exit, state, []);
|
|
255365
255415
|
};
|
|
255366
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255416
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
255367
255417
|
function traverseSimpleImpl(node, enter, exit, state, ancestors) {
|
|
255368
255418
|
const keys = _index.VISITOR_KEYS[node.type];
|
|
255369
255419
|
if (keys) {
|
|
@@ -255379,7 +255429,7 @@ ${errors.join("\n")}`);
|
|
|
255379
255429
|
exit && exit(node, ancestors, state);
|
|
255380
255430
|
}
|
|
255381
255431
|
}
|
|
255382
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255432
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/traverse/traverseFast.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255383
255433
|
"use strict";
|
|
255384
255434
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function traverseFast(node, enter, opts) {
|
|
255385
255435
|
if (!node) return;
|
|
@@ -255392,8 +255442,8 @@ ${errors.join("\n")}`);
|
|
|
255392
255442
|
else traverseFast(subNode, enter, opts);
|
|
255393
255443
|
}
|
|
255394
255444
|
};
|
|
255395
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255396
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255445
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
255446
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/deprecationWarning.js": (__unused_webpack_module, exports2) => {
|
|
255397
255447
|
"use strict";
|
|
255398
255448
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(oldName, newName, prefix2 = "") {
|
|
255399
255449
|
if (warnings.has(oldName)) return;
|
|
@@ -255412,12 +255462,12 @@ ${errors.join("\n")}`);
|
|
|
255412
255462
|
${trace}`);
|
|
255413
255463
|
};
|
|
255414
255464
|
const warnings = /* @__PURE__ */ new Set();
|
|
255415
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255465
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/inherit.js": (__unused_webpack_module, exports2) => {
|
|
255416
255466
|
"use strict";
|
|
255417
255467
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(key, child, parent) {
|
|
255418
255468
|
child && parent && (child[key] = Array.from(new Set([].concat(child[key], parent[key]).filter(Boolean))));
|
|
255419
255469
|
};
|
|
255420
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255470
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255421
255471
|
"use strict";
|
|
255422
255472
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(child, args) {
|
|
255423
255473
|
const lines = child.value.split(/\r\n|\n|\r/);
|
|
@@ -255431,22 +255481,22 @@ ${trace}`);
|
|
|
255431
255481
|
}
|
|
255432
255482
|
str && args.push((0, _index2.inherits)((0, _index.stringLiteral)(str), child));
|
|
255433
255483
|
};
|
|
255434
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255435
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255484
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/builders/generated/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/index.js");
|
|
255485
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/shallowEqual.js": (__unused_webpack_module, exports2) => {
|
|
255436
255486
|
"use strict";
|
|
255437
255487
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(actual, expected) {
|
|
255438
255488
|
const keys = Object.keys(expected);
|
|
255439
255489
|
for (const key of keys) if (actual[key] !== expected[key]) return false;
|
|
255440
255490
|
return true;
|
|
255441
255491
|
};
|
|
255442
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255492
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255443
255493
|
"use strict";
|
|
255444
255494
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(match2, allowPartial) {
|
|
255445
255495
|
const parts = match2.split(".");
|
|
255446
255496
|
return (member) => (0, _matchesPattern.default)(member, parts, allowPartial);
|
|
255447
255497
|
};
|
|
255448
|
-
var _matchesPattern = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
255449
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
255498
|
+
var _matchesPattern = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/matchesPattern.js");
|
|
255499
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
255450
255500
|
"use strict";
|
|
255451
255501
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.isAccessor = function(node, opts) {
|
|
255452
255502
|
if (!node) return false;
|
|
@@ -257054,7 +257104,7 @@ ${trace}`);
|
|
|
257054
257104
|
}, exports2.isYieldExpression = function(node, opts) {
|
|
257055
257105
|
return !!node && ("YieldExpression" === node.type && (null == opts || (0, _shallowEqual.default)(node, opts)));
|
|
257056
257106
|
};
|
|
257057
|
-
var _shallowEqual = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257107
|
+
var _shallowEqual = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/shallowEqual.js"), _deprecationWarning = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/deprecationWarning.js");
|
|
257058
257108
|
function isImportOrExportDeclaration(node, opts) {
|
|
257059
257109
|
if (!node) return false;
|
|
257060
257110
|
switch (node.type) {
|
|
@@ -257068,15 +257118,15 @@ ${trace}`);
|
|
|
257068
257118
|
}
|
|
257069
257119
|
return null == opts || (0, _shallowEqual.default)(node, opts);
|
|
257070
257120
|
}
|
|
257071
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257121
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/is.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257072
257122
|
"use strict";
|
|
257073
257123
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(type, node, opts) {
|
|
257074
257124
|
if (!node) return false;
|
|
257075
257125
|
if (!(0, _isType.default)(node.type, type)) return !opts && "Placeholder" === node.type && type in _index.FLIPPED_ALIAS_KEYS && (0, _isPlaceholderType.default)(node.expectedNode, type);
|
|
257076
257126
|
return void 0 === opts || (0, _shallowEqual.default)(node, opts);
|
|
257077
257127
|
};
|
|
257078
|
-
var _shallowEqual = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257079
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257128
|
+
var _shallowEqual = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/utils/shallowEqual.js"), _isType = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isType.js"), _isPlaceholderType = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isPlaceholderType.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
257129
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isBinding.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257080
257130
|
"use strict";
|
|
257081
257131
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, parent, grandparent) {
|
|
257082
257132
|
if (grandparent && "Identifier" === node.type && "ObjectProperty" === parent.type && "ObjectExpression" === grandparent.type) return false;
|
|
@@ -257089,34 +257139,34 @@ ${trace}`);
|
|
|
257089
257139
|
}
|
|
257090
257140
|
return false;
|
|
257091
257141
|
};
|
|
257092
|
-
var _getBindingIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257093
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257142
|
+
var _getBindingIdentifiers = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js");
|
|
257143
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isBlockScoped.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257094
257144
|
"use strict";
|
|
257095
257145
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
257096
257146
|
return (0, _index.isFunctionDeclaration)(node) || (0, _index.isClassDeclaration)(node) || (0, _isLet.default)(node);
|
|
257097
257147
|
};
|
|
257098
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257099
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257148
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _isLet = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isLet.js");
|
|
257149
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isImmutable.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257100
257150
|
"use strict";
|
|
257101
257151
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
257102
257152
|
if ((0, _isType.default)(node.type, "Immutable")) return true;
|
|
257103
257153
|
if ((0, _index.isIdentifier)(node)) return "undefined" === node.name;
|
|
257104
257154
|
return false;
|
|
257105
257155
|
};
|
|
257106
|
-
var _isType = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257107
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257156
|
+
var _isType = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isType.js"), _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
257157
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isLet.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257108
257158
|
"use strict";
|
|
257109
257159
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
257110
257160
|
return (0, _index.isVariableDeclaration)(node) && ("var" !== node.kind || node[_index2.BLOCK_SCOPED_SYMBOL]);
|
|
257111
257161
|
};
|
|
257112
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257113
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257162
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/index.js");
|
|
257163
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isNode.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257114
257164
|
"use strict";
|
|
257115
257165
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
257116
257166
|
return !(!node || !_index.VISITOR_KEYS[node.type]);
|
|
257117
257167
|
};
|
|
257118
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257119
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257168
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
257169
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isNodesEquivalent.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257120
257170
|
"use strict";
|
|
257121
257171
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function isNodesEquivalent(a, b) {
|
|
257122
257172
|
if ("object" != typeof a || "object" != typeof b || null == a || null == b) return a === b;
|
|
@@ -257138,8 +257188,8 @@ ${trace}`);
|
|
|
257138
257188
|
}
|
|
257139
257189
|
return true;
|
|
257140
257190
|
};
|
|
257141
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257142
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257191
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
257192
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isPlaceholderType.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257143
257193
|
"use strict";
|
|
257144
257194
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(placeholderType, targetType) {
|
|
257145
257195
|
if (placeholderType === targetType) return true;
|
|
@@ -257149,8 +257199,8 @@ ${trace}`);
|
|
|
257149
257199
|
}
|
|
257150
257200
|
return false;
|
|
257151
257201
|
};
|
|
257152
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257153
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257202
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
257203
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isReferenced.js": (__unused_webpack_module, exports2) => {
|
|
257154
257204
|
"use strict";
|
|
257155
257205
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, parent, grandparent) {
|
|
257156
257206
|
switch (parent.type) {
|
|
@@ -257208,21 +257258,21 @@ ${trace}`);
|
|
|
257208
257258
|
}
|
|
257209
257259
|
return true;
|
|
257210
257260
|
};
|
|
257211
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257261
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isScope.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257212
257262
|
"use strict";
|
|
257213
257263
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, parent) {
|
|
257214
257264
|
if ((0, _index.isBlockStatement)(node) && ((0, _index.isFunction)(parent) || (0, _index.isCatchClause)(parent))) return false;
|
|
257215
257265
|
if ((0, _index.isPattern)(node) && ((0, _index.isFunction)(parent) || (0, _index.isCatchClause)(parent))) return true;
|
|
257216
257266
|
return (0, _index.isScopable)(node);
|
|
257217
257267
|
};
|
|
257218
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257219
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257268
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
257269
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isSpecifierDefault.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257220
257270
|
"use strict";
|
|
257221
257271
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(specifier) {
|
|
257222
257272
|
return (0, _index.isImportDefaultSpecifier)(specifier) || (0, _index.isIdentifier)(specifier.imported || specifier.exported, { name: "default" });
|
|
257223
257273
|
};
|
|
257224
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257225
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257274
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
257275
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isType.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257226
257276
|
"use strict";
|
|
257227
257277
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(nodeType, targetType) {
|
|
257228
257278
|
if (nodeType === targetType) return true;
|
|
@@ -257235,15 +257285,15 @@ ${trace}`);
|
|
|
257235
257285
|
}
|
|
257236
257286
|
return false;
|
|
257237
257287
|
};
|
|
257238
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257239
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257288
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
257289
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isValidES3Identifier.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257240
257290
|
"use strict";
|
|
257241
257291
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(name) {
|
|
257242
257292
|
return (0, _isValidIdentifier.default)(name) && !RESERVED_WORDS_ES3_ONLY.has(name);
|
|
257243
257293
|
};
|
|
257244
|
-
var _isValidIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257294
|
+
var _isValidIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isValidIdentifier.js");
|
|
257245
257295
|
const RESERVED_WORDS_ES3_ONLY = /* @__PURE__ */ new Set(["abstract", "boolean", "byte", "char", "double", "enum", "final", "float", "goto", "implements", "int", "interface", "long", "native", "package", "private", "protected", "public", "short", "static", "synchronized", "throws", "transient", "volatile"]);
|
|
257246
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257296
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isValidIdentifier.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257247
257297
|
"use strict";
|
|
257248
257298
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(name, reserved = true) {
|
|
257249
257299
|
if ("string" != typeof name) return false;
|
|
@@ -257251,13 +257301,13 @@ ${trace}`);
|
|
|
257251
257301
|
return (0, _helperValidatorIdentifier.isIdentifierName)(name);
|
|
257252
257302
|
};
|
|
257253
257303
|
var _helperValidatorIdentifier = __webpack_require__2("./node_modules/.pnpm/@babel+helper-validator-identifier@7.25.9/node_modules/@babel/helper-validator-identifier/lib/index.js");
|
|
257254
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257304
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/isVar.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257255
257305
|
"use strict";
|
|
257256
257306
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node) {
|
|
257257
257307
|
return (0, _index.isVariableDeclaration)(node, { kind: "var" }) && !node[_index2.BLOCK_SCOPED_SYMBOL];
|
|
257258
257308
|
};
|
|
257259
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257260
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257309
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js"), _index2 = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/constants/index.js");
|
|
257310
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/matchesPattern.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257261
257311
|
"use strict";
|
|
257262
257312
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(member, match2, allowPartial) {
|
|
257263
257313
|
if (!(0, _index.isMemberExpression)(member)) return false;
|
|
@@ -257279,18 +257329,18 @@ ${trace}`);
|
|
|
257279
257329
|
}
|
|
257280
257330
|
return true;
|
|
257281
257331
|
};
|
|
257282
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257283
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257332
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/generated/index.js");
|
|
257333
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/react/isCompatTag.js": (__unused_webpack_module, exports2) => {
|
|
257284
257334
|
"use strict";
|
|
257285
257335
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(tagName) {
|
|
257286
257336
|
return !!tagName && /^[a-z]/.test(tagName);
|
|
257287
257337
|
};
|
|
257288
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257338
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/react/isReactComponent.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257289
257339
|
"use strict";
|
|
257290
257340
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = void 0;
|
|
257291
|
-
const isReactComponent = (0, __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257341
|
+
const isReactComponent = (0, __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js").default)("React.Component");
|
|
257292
257342
|
exports2.default = isReactComponent;
|
|
257293
|
-
}, "./node_modules/.pnpm/@babel+types@7.26.
|
|
257343
|
+
}, "./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/validators/validate.js": (__unused_webpack_module, exports2, __webpack_require__2) => {
|
|
257294
257344
|
"use strict";
|
|
257295
257345
|
Object.defineProperty(exports2, "__esModule", { value: true }), exports2.default = function(node, key, val) {
|
|
257296
257346
|
if (!node) return;
|
|
@@ -257308,7 +257358,7 @@ ${trace}`);
|
|
|
257308
257358
|
null == (_NODE_PARENT_VALIDATI = _index.NODE_PARENT_VALIDATIONS[type]) || _NODE_PARENT_VALIDATI.call(_index.NODE_PARENT_VALIDATIONS, node, key, val);
|
|
257309
257359
|
}
|
|
257310
257360
|
};
|
|
257311
|
-
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.
|
|
257361
|
+
var _index = __webpack_require__2("./node_modules/.pnpm/@babel+types@7.26.3/node_modules/@babel/types/lib/definitions/index.js");
|
|
257312
257362
|
function validateField(node, key, val, field) {
|
|
257313
257363
|
null != field && field.validate && (field.optional && null == val || field.validate(node, key, val));
|
|
257314
257364
|
}
|
|
@@ -257932,7 +257982,7 @@ ${trace}`);
|
|
|
257932
257982
|
(() => {
|
|
257933
257983
|
"use strict";
|
|
257934
257984
|
__webpack_require__.d(__webpack_exports__, { default: () => transform2 });
|
|
257935
|
-
var lib = __webpack_require__("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), plugin_proposal_decorators_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-proposal-decorators@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-proposal-decorators/lib/index.js"), plugin_syntax_class_properties_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-syntax-class-properties@7.12.13_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-class-properties/lib/index.js"), plugin_syntax_import_assertions_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-syntax-import-assertions@7.26.0_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-import-assertions/lib/index.js"), plugin_syntax_jsx_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-syntax-jsx@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-jsx/lib/index.js"), plugin_transform_export_namespace_from_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-transform-export-namespace-from@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-transform-export-namespace-from/lib/index.js"), plugin_transform_react_jsx_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-transform-react-jsx@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-transform-react-jsx/lib/index.js"), plugin_transform_typescript_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.
|
|
257985
|
+
var lib = __webpack_require__("./node_modules/.pnpm/@babel+core@7.26.0/node_modules/@babel/core/lib/index.js"), plugin_proposal_decorators_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-proposal-decorators@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-proposal-decorators/lib/index.js"), plugin_syntax_class_properties_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-syntax-class-properties@7.12.13_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-class-properties/lib/index.js"), plugin_syntax_import_assertions_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-syntax-import-assertions@7.26.0_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-import-assertions/lib/index.js"), plugin_syntax_jsx_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-syntax-jsx@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-syntax-jsx/lib/index.js"), plugin_transform_export_namespace_from_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-transform-export-namespace-from@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-transform-export-namespace-from/lib/index.js"), plugin_transform_react_jsx_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-transform-react-jsx@7.25.9_@babel+core@7.26.0/node_modules/@babel/plugin-transform-react-jsx/lib/index.js"), plugin_transform_typescript_lib = __webpack_require__("./node_modules/.pnpm/@babel+plugin-transform-typescript@7.26.3_@babel+core@7.26.0/node_modules/@babel/plugin-transform-typescript/lib/index.js"), babel_plugin_parameter_decorator_lib = __webpack_require__("./node_modules/.pnpm/babel-plugin-parameter-decorator@1.0.16/node_modules/babel-plugin-parameter-decorator/lib/index.js"), babel_plugin_parameter_decorator_lib_default = __webpack_require__.n(babel_plugin_parameter_decorator_lib), helper_plugin_utils_lib = __webpack_require__("./node_modules/.pnpm/@babel+helper-plugin-utils@7.25.9/node_modules/@babel/helper-plugin-utils/lib/index.js");
|
|
257936
257986
|
function createParamDecorator(paramIndex, decoratorExpression, isConstructor = false) {
|
|
257937
257987
|
return lib.types.decorator(lib.types.functionExpression(null, [lib.types.identifier("target"), lib.types.identifier("key")], lib.types.blockStatement([lib.types.returnStatement(lib.types.callExpression(decoratorExpression, [lib.types.identifier("target"), lib.types.identifier(isConstructor ? "undefined" : "key"), lib.types.numericLiteral(paramIndex)]))])));
|
|
257938
257988
|
}
|
|
@@ -260315,7 +260365,7 @@ ${trace}`);
|
|
|
260315
260365
|
transformDynamicImport(path14, noInterop, this.file);
|
|
260316
260366
|
}, Program: { exit(path14, state) {
|
|
260317
260367
|
if (!(0, helper_module_imports_lib.isModule)(path14)) return;
|
|
260318
|
-
path14.scope.rename("exports"), path14.scope.rename("module"), path14.scope.rename("require"), path14.scope.rename("__filename"), path14.scope.rename("__dirname"), allowCommonJSExports || (process.env.BABEL_8_BREAKING ? (0, helper_simple_access_lib.
|
|
260368
|
+
path14.scope.rename("exports"), path14.scope.rename("module"), path14.scope.rename("require"), path14.scope.rename("__filename"), path14.scope.rename("__dirname"), allowCommonJSExports || (process.env.BABEL_8_BREAKING ? (0, helper_simple_access_lib.A)(path14, /* @__PURE__ */ new Set(["module", "exports"])) : (0, helper_simple_access_lib.A)(path14, /* @__PURE__ */ new Set(["module", "exports"]), false), path14.traverse(moduleExportsVisitor, { scope: path14.scope }));
|
|
260319
260369
|
let moduleName2 = (0, helper_module_transforms_lib.getModuleName)(this.file.opts, options);
|
|
260320
260370
|
moduleName2 && (moduleName2 = lib.types.stringLiteral(moduleName2));
|
|
260321
260371
|
const hooks = function(file) {
|
|
@@ -260903,18 +260953,35 @@ var wildcards = [
|
|
|
260903
260953
|
test(/^Auto-merged (.*?) into (.*)/)
|
|
260904
260954
|
];
|
|
260905
260955
|
|
|
260956
|
+
// node_modules/@commitlint/is-ignored/lib/validate-ignore-func.js
|
|
260957
|
+
function validateIgnoreFunction(fn) {
|
|
260958
|
+
const fnString = fn.toString();
|
|
260959
|
+
const dangerousPattern = /(?:process|require|import|eval|fetch|XMLHttpRequest|fs|child_process)(?:\s*\.|\s*\()|(?:exec|execFile|spawn)\s*\(/;
|
|
260960
|
+
if (dangerousPattern.test(fnString)) {
|
|
260961
|
+
const match2 = fnString.match(dangerousPattern);
|
|
260962
|
+
throw new Error(`Ignore function contains forbidden pattern: ${match2?.[0].trim()}`);
|
|
260963
|
+
}
|
|
260964
|
+
}
|
|
260965
|
+
|
|
260906
260966
|
// node_modules/@commitlint/is-ignored/lib/is-ignored.js
|
|
260907
260967
|
function isIgnored(commit = "", opts = {}) {
|
|
260908
260968
|
const ignores = typeof opts.ignores === "undefined" ? [] : opts.ignores;
|
|
260909
260969
|
if (!Array.isArray(ignores)) {
|
|
260910
260970
|
throw new Error(`ignores must be of type array, received ${ignores} of type ${typeof ignores}`);
|
|
260911
260971
|
}
|
|
260972
|
+
ignores.forEach(validateIgnoreFunction);
|
|
260912
260973
|
const invalids = ignores.filter((c) => typeof c !== "function");
|
|
260913
260974
|
if (invalids.length > 0) {
|
|
260914
260975
|
throw new Error(`ignores must be array of type function, received items of type: ${invalids.map((i) => typeof i).join(", ")}`);
|
|
260915
260976
|
}
|
|
260916
260977
|
const base = opts.defaults === false ? [] : wildcards;
|
|
260917
|
-
return [...base, ...ignores].some((w) =>
|
|
260978
|
+
return [...base, ...ignores].some((w) => {
|
|
260979
|
+
const result = w(commit);
|
|
260980
|
+
if (typeof result !== "boolean") {
|
|
260981
|
+
throw new Error(`Ignore function must return a boolean, received ${typeof result}`);
|
|
260982
|
+
}
|
|
260983
|
+
return result;
|
|
260984
|
+
});
|
|
260918
260985
|
}
|
|
260919
260986
|
|
|
260920
260987
|
// node_modules/@commitlint/parse/lib/index.js
|
|
@@ -263716,10 +263783,10 @@ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
|
263716
263783
|
return 1;
|
|
263717
263784
|
}
|
|
263718
263785
|
if ("CI" in env) {
|
|
263719
|
-
if ("GITHUB_ACTIONS"
|
|
263786
|
+
if (["GITHUB_ACTIONS", "GITEA_ACTIONS", "CIRCLECI"].some((key) => key in env)) {
|
|
263720
263787
|
return 3;
|
|
263721
263788
|
}
|
|
263722
|
-
if (["TRAVIS", "
|
|
263789
|
+
if (["TRAVIS", "APPVEYOR", "GITLAB_CI", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
263723
263790
|
return 1;
|
|
263724
263791
|
}
|
|
263725
263792
|
return min;
|
|
@@ -264905,12 +264972,12 @@ var R = class {
|
|
|
264905
264972
|
if (!e)
|
|
264906
264973
|
throw new Error("No process was started");
|
|
264907
264974
|
let n = "", r = "";
|
|
264908
|
-
if (this._streamErr)
|
|
264909
|
-
for await (let o of this._streamErr)
|
|
264910
|
-
n += o.toString();
|
|
264911
264975
|
if (this._streamOut)
|
|
264912
264976
|
for await (let o of this._streamOut)
|
|
264913
264977
|
r += o.toString();
|
|
264978
|
+
if (this._streamErr)
|
|
264979
|
+
for await (let o of this._streamErr)
|
|
264980
|
+
n += o.toString();
|
|
264914
264981
|
if (await this._processClosed, this._options?.stdin && await this._options.stdin, e.removeAllListeners(), this._thrownError)
|
|
264915
264982
|
throw this._thrownError;
|
|
264916
264983
|
let s = {
|