@pmelab/gtd 1.5.5 → 1.6.0
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/README.md +64 -10
- package/dist/gtd.bundle.mjs +799 -341
- package/package.json +5 -2
- package/schema.json +74 -0
package/dist/gtd.bundle.mjs
CHANGED
|
@@ -12755,8 +12755,8 @@ var require_snapshot_utils = __commonJS({
|
|
|
12755
12755
|
var require_snapshot_recorder = __commonJS({
|
|
12756
12756
|
"node_modules/undici/lib/mock/snapshot-recorder.js"(exports, module) {
|
|
12757
12757
|
"use strict";
|
|
12758
|
-
var { writeFile: writeFile3, readFile:
|
|
12759
|
-
var { dirname:
|
|
12758
|
+
var { writeFile: writeFile3, readFile: readFile5, mkdir: mkdir2 } = __require("fs/promises");
|
|
12759
|
+
var { dirname: dirname6, resolve: resolve5 } = __require("path");
|
|
12760
12760
|
var { setTimeout: setTimeout2, clearTimeout: clearTimeout2 } = __require("timers");
|
|
12761
12761
|
var { InvalidArgumentError, UndiciError } = require_errors();
|
|
12762
12762
|
var { hashId, isUrlExcludedFactory, normalizeHeaders, createHeaderFilters } = require_snapshot_utils();
|
|
@@ -12957,7 +12957,7 @@ var require_snapshot_recorder = __commonJS({
|
|
|
12957
12957
|
throw new InvalidArgumentError("Snapshot path is required");
|
|
12958
12958
|
}
|
|
12959
12959
|
try {
|
|
12960
|
-
const data = await
|
|
12960
|
+
const data = await readFile5(resolve5(path15), "utf8");
|
|
12961
12961
|
const parsed = JSON.parse(data);
|
|
12962
12962
|
if (Array.isArray(parsed)) {
|
|
12963
12963
|
this.#snapshots.clear();
|
|
@@ -12987,7 +12987,7 @@ var require_snapshot_recorder = __commonJS({
|
|
|
12987
12987
|
throw new InvalidArgumentError("Snapshot path is required");
|
|
12988
12988
|
}
|
|
12989
12989
|
const resolvedPath = resolve5(path15);
|
|
12990
|
-
await mkdir2(
|
|
12990
|
+
await mkdir2(dirname6(resolvedPath), { recursive: true });
|
|
12991
12991
|
const data = Array.from(this.#snapshots.entries()).map(([hash3, snapshot]) => ({
|
|
12992
12992
|
hash: hash3,
|
|
12993
12993
|
snapshot
|
|
@@ -23728,7 +23728,7 @@ var require_resolve_from = __commonJS({
|
|
|
23728
23728
|
"use strict";
|
|
23729
23729
|
var path15 = __require("path");
|
|
23730
23730
|
var Module2 = __require("module");
|
|
23731
|
-
var
|
|
23731
|
+
var fs9 = __require("fs");
|
|
23732
23732
|
var resolveFrom = (fromDir, moduleId, silent) => {
|
|
23733
23733
|
if (typeof fromDir !== "string") {
|
|
23734
23734
|
throw new TypeError(`Expected \`fromDir\` to be of type \`string\`, got \`${typeof fromDir}\``);
|
|
@@ -23737,7 +23737,7 @@ var require_resolve_from = __commonJS({
|
|
|
23737
23737
|
throw new TypeError(`Expected \`moduleId\` to be of type \`string\`, got \`${typeof moduleId}\``);
|
|
23738
23738
|
}
|
|
23739
23739
|
try {
|
|
23740
|
-
fromDir =
|
|
23740
|
+
fromDir = fs9.realpathSync(fromDir);
|
|
23741
23741
|
} catch (err) {
|
|
23742
23742
|
if (err.code === "ENOENT") {
|
|
23743
23743
|
fromDir = path15.resolve(fromDir);
|
|
@@ -29471,7 +29471,7 @@ var require_typescript = __commonJS({
|
|
|
29471
29471
|
resolveModuleName: () => resolveModuleName,
|
|
29472
29472
|
resolveModuleNameFromCache: () => resolveModuleNameFromCache,
|
|
29473
29473
|
resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson,
|
|
29474
|
-
resolvePath: () =>
|
|
29474
|
+
resolvePath: () => resolvePath2,
|
|
29475
29475
|
resolveProjectReferencePath: () => resolveProjectReferencePath,
|
|
29476
29476
|
resolveTripleslashReference: () => resolveTripleslashReference,
|
|
29477
29477
|
resolveTypeReferenceDirective: () => resolveTypeReferenceDirective,
|
|
@@ -31115,10 +31115,10 @@ var require_typescript = __commonJS({
|
|
|
31115
31115
|
function and(f7, g5) {
|
|
31116
31116
|
return (arg) => f7(arg) && g5(arg);
|
|
31117
31117
|
}
|
|
31118
|
-
function or9(...
|
|
31118
|
+
function or9(...fs9) {
|
|
31119
31119
|
return (...args2) => {
|
|
31120
31120
|
let lastResult;
|
|
31121
|
-
for (const f7 of
|
|
31121
|
+
for (const f7 of fs9) {
|
|
31122
31122
|
lastResult = f7(...args2);
|
|
31123
31123
|
if (lastResult) {
|
|
31124
31124
|
return lastResult;
|
|
@@ -32693,7 +32693,7 @@ ${lanes.join("\n")}
|
|
|
32693
32693
|
var tracing;
|
|
32694
32694
|
var tracingEnabled;
|
|
32695
32695
|
((tracingEnabled2) => {
|
|
32696
|
-
let
|
|
32696
|
+
let fs9;
|
|
32697
32697
|
let traceCount = 0;
|
|
32698
32698
|
let traceFd = 0;
|
|
32699
32699
|
let mode;
|
|
@@ -32702,9 +32702,9 @@ ${lanes.join("\n")}
|
|
|
32702
32702
|
const legend = [];
|
|
32703
32703
|
function startTracing2(tracingMode, traceDir, configFilePath) {
|
|
32704
32704
|
Debug2.assert(!tracing, "Tracing already started");
|
|
32705
|
-
if (
|
|
32705
|
+
if (fs9 === void 0) {
|
|
32706
32706
|
try {
|
|
32707
|
-
|
|
32707
|
+
fs9 = __require("fs");
|
|
32708
32708
|
} catch (e7) {
|
|
32709
32709
|
throw new Error(`tracing requires having fs
|
|
32710
32710
|
(original error: ${e7.message || e7})`);
|
|
@@ -32715,8 +32715,8 @@ ${lanes.join("\n")}
|
|
|
32715
32715
|
if (legendPath === void 0) {
|
|
32716
32716
|
legendPath = combinePaths(traceDir, "legend.json");
|
|
32717
32717
|
}
|
|
32718
|
-
if (!
|
|
32719
|
-
|
|
32718
|
+
if (!fs9.existsSync(traceDir)) {
|
|
32719
|
+
fs9.mkdirSync(traceDir, { recursive: true });
|
|
32720
32720
|
}
|
|
32721
32721
|
const countPart = mode === "build" ? `.${process.pid}-${++traceCount}` : mode === "server" ? `.${process.pid}` : ``;
|
|
32722
32722
|
const tracePath = combinePaths(traceDir, `trace${countPart}.json`);
|
|
@@ -32726,10 +32726,10 @@ ${lanes.join("\n")}
|
|
|
32726
32726
|
tracePath,
|
|
32727
32727
|
typesPath
|
|
32728
32728
|
});
|
|
32729
|
-
traceFd =
|
|
32729
|
+
traceFd = fs9.openSync(tracePath, "w");
|
|
32730
32730
|
tracing = tracingEnabled2;
|
|
32731
32731
|
const meta = { cat: "__metadata", ph: "M", ts: 1e3 * timestamp(), pid: 1, tid: 1 };
|
|
32732
|
-
|
|
32732
|
+
fs9.writeSync(
|
|
32733
32733
|
traceFd,
|
|
32734
32734
|
"[\n" + [{ name: "process_name", args: { name: "tsc" }, ...meta }, { name: "thread_name", args: { name: "Main" }, ...meta }, { name: "TracingStartedInBrowser", ...meta, cat: "disabled-by-default-devtools.timeline" }].map((v9) => JSON.stringify(v9)).join(",\n")
|
|
32735
32735
|
);
|
|
@@ -32738,10 +32738,10 @@ ${lanes.join("\n")}
|
|
|
32738
32738
|
function stopTracing() {
|
|
32739
32739
|
Debug2.assert(tracing, "Tracing is not in progress");
|
|
32740
32740
|
Debug2.assert(!!typeCatalog.length === (mode !== "server"));
|
|
32741
|
-
|
|
32741
|
+
fs9.writeSync(traceFd, `
|
|
32742
32742
|
]
|
|
32743
32743
|
`);
|
|
32744
|
-
|
|
32744
|
+
fs9.closeSync(traceFd);
|
|
32745
32745
|
tracing = void 0;
|
|
32746
32746
|
if (typeCatalog.length) {
|
|
32747
32747
|
dumpTypes(typeCatalog);
|
|
@@ -32813,11 +32813,11 @@ ${lanes.join("\n")}
|
|
|
32813
32813
|
function writeEvent(eventType, phase, name, args2, extras, time = 1e3 * timestamp()) {
|
|
32814
32814
|
if (mode === "server" && phase === "checkTypes") return;
|
|
32815
32815
|
mark("beginTracing");
|
|
32816
|
-
|
|
32816
|
+
fs9.writeSync(traceFd, `,
|
|
32817
32817
|
{"pid":1,"tid":1,"ph":"${eventType}","cat":"${phase}","ts":${time},"name":"${name}"`);
|
|
32818
|
-
if (extras)
|
|
32819
|
-
if (args2)
|
|
32820
|
-
|
|
32818
|
+
if (extras) fs9.writeSync(traceFd, `,${extras}`);
|
|
32819
|
+
if (args2) fs9.writeSync(traceFd, `,"args":${JSON.stringify(args2)}`);
|
|
32820
|
+
fs9.writeSync(traceFd, `}`);
|
|
32821
32821
|
mark("endTracing");
|
|
32822
32822
|
measure("Tracing", "beginTracing", "endTracing");
|
|
32823
32823
|
}
|
|
@@ -32839,9 +32839,9 @@ ${lanes.join("\n")}
|
|
|
32839
32839
|
var _a6, _b2, _c3, _d2, _e11, _f4, _g2, _h2, _i9, _j, _k, _l6, _m3, _n7, _o3, _p3, _q, _r8, _s7;
|
|
32840
32840
|
mark("beginDumpTypes");
|
|
32841
32841
|
const typesPath = legend[legend.length - 1].typesPath;
|
|
32842
|
-
const typesFd =
|
|
32842
|
+
const typesFd = fs9.openSync(typesPath, "w");
|
|
32843
32843
|
const recursionIdentityMap = /* @__PURE__ */ new Map();
|
|
32844
|
-
|
|
32844
|
+
fs9.writeSync(typesFd, "[");
|
|
32845
32845
|
const numTypes = types.length;
|
|
32846
32846
|
for (let i = 0; i < numTypes; i++) {
|
|
32847
32847
|
const type = types[i];
|
|
@@ -32937,13 +32937,13 @@ ${lanes.join("\n")}
|
|
|
32937
32937
|
flags: Debug2.formatTypeFlags(type.flags).split("|"),
|
|
32938
32938
|
display
|
|
32939
32939
|
};
|
|
32940
|
-
|
|
32940
|
+
fs9.writeSync(typesFd, JSON.stringify(descriptor3));
|
|
32941
32941
|
if (i < numTypes - 1) {
|
|
32942
|
-
|
|
32942
|
+
fs9.writeSync(typesFd, ",\n");
|
|
32943
32943
|
}
|
|
32944
32944
|
}
|
|
32945
|
-
|
|
32946
|
-
|
|
32945
|
+
fs9.writeSync(typesFd, "]\n");
|
|
32946
|
+
fs9.closeSync(typesFd);
|
|
32947
32947
|
mark("endDumpTypes");
|
|
32948
32948
|
measure("Dump types", "beginDumpTypes", "endDumpTypes");
|
|
32949
32949
|
}
|
|
@@ -32951,7 +32951,7 @@ ${lanes.join("\n")}
|
|
|
32951
32951
|
if (!legendPath) {
|
|
32952
32952
|
return;
|
|
32953
32953
|
}
|
|
32954
|
-
|
|
32954
|
+
fs9.writeFileSync(legendPath, JSON.stringify(legend));
|
|
32955
32955
|
}
|
|
32956
32956
|
tracingEnabled2.dumpLegend = dumpLegend;
|
|
32957
32957
|
})(tracingEnabled || (tracingEnabled = {}));
|
|
@@ -35994,9 +35994,9 @@ ${lanes.join("\n")}
|
|
|
35994
35994
|
path15,
|
|
35995
35995
|
data,
|
|
35996
35996
|
!!writeBom,
|
|
35997
|
-
(
|
|
35998
|
-
(
|
|
35999
|
-
(
|
|
35997
|
+
(path23, data2, writeByteOrderMark) => originalWriteFile.call(sys2, path23, data2, writeByteOrderMark),
|
|
35998
|
+
(path23) => sys2.createDirectory(path23),
|
|
35999
|
+
(path23) => sys2.directoryExists(path23)
|
|
36000
36000
|
);
|
|
36001
36001
|
}
|
|
36002
36002
|
var sys = (() => {
|
|
@@ -36057,7 +36057,7 @@ ${lanes.join("\n")}
|
|
|
36057
36057
|
writeOutputIsTTY() {
|
|
36058
36058
|
return process.stdout.isTTY;
|
|
36059
36059
|
},
|
|
36060
|
-
readFile:
|
|
36060
|
+
readFile: readFile5,
|
|
36061
36061
|
writeFile: writeFile22,
|
|
36062
36062
|
watchFile: watchFile2,
|
|
36063
36063
|
watchDirectory,
|
|
@@ -36263,7 +36263,7 @@ ${lanes.join("\n")}
|
|
|
36263
36263
|
callback
|
|
36264
36264
|
);
|
|
36265
36265
|
}
|
|
36266
|
-
function
|
|
36266
|
+
function readFile5(fileName, _encoding) {
|
|
36267
36267
|
let buffer5;
|
|
36268
36268
|
try {
|
|
36269
36269
|
buffer5 = _fs.readFileSync(fileName);
|
|
@@ -36624,7 +36624,7 @@ ${lanes.join("\n")}
|
|
|
36624
36624
|
}
|
|
36625
36625
|
return path15;
|
|
36626
36626
|
}
|
|
36627
|
-
function
|
|
36627
|
+
function resolvePath2(path15, ...paths) {
|
|
36628
36628
|
return normalizePath(some8(paths) ? combinePaths(path15, ...paths) : normalizeSlashes(path15));
|
|
36629
36629
|
}
|
|
36630
36630
|
function getNormalizedPathComponents(path15, currentDirectory) {
|
|
@@ -36851,11 +36851,11 @@ ${lanes.join("\n")}
|
|
|
36851
36851
|
return toComponents;
|
|
36852
36852
|
}
|
|
36853
36853
|
const components = toComponents.slice(start5);
|
|
36854
|
-
const
|
|
36854
|
+
const relative3 = [];
|
|
36855
36855
|
for (; start5 < fromComponents.length; start5++) {
|
|
36856
|
-
|
|
36856
|
+
relative3.push("..");
|
|
36857
36857
|
}
|
|
36858
|
-
return ["", ...
|
|
36858
|
+
return ["", ...relative3, ...components];
|
|
36859
36859
|
}
|
|
36860
36860
|
function getRelativePathFromDirectory(fromDirectory, to5, getCanonicalFileNameOrIgnoreCase) {
|
|
36861
36861
|
Debug2.assert(getRootLength(fromDirectory) > 0 === getRootLength(to5) > 0, "Paths must either both be absolute or both be relative");
|
|
@@ -36879,8 +36879,8 @@ ${lanes.join("\n")}
|
|
|
36879
36879
|
}
|
|
36880
36880
|
function getRelativePathToDirectoryOrUrl(directoryPathOrUrl, relativeOrAbsolutePath, currentDirectory, getCanonicalFileName, isAbsolutePathAnUrl) {
|
|
36881
36881
|
const pathComponents2 = getPathComponentsRelativeTo(
|
|
36882
|
-
|
|
36883
|
-
|
|
36882
|
+
resolvePath2(currentDirectory, directoryPathOrUrl),
|
|
36883
|
+
resolvePath2(currentDirectory, relativeOrAbsolutePath),
|
|
36884
36884
|
equateStringsCaseSensitive,
|
|
36885
36885
|
getCanonicalFileName
|
|
36886
36886
|
);
|
|
@@ -48314,7 +48314,7 @@ ${lanes.join("\n")}
|
|
|
48314
48314
|
];
|
|
48315
48315
|
}
|
|
48316
48316
|
function getPossibleOriginalInputPathWithoutChangingExt(filePath, ignoreCase, outputDir, getCommonSourceDirectory2) {
|
|
48317
|
-
return outputDir ?
|
|
48317
|
+
return outputDir ? resolvePath2(
|
|
48318
48318
|
getCommonSourceDirectory2(),
|
|
48319
48319
|
getRelativePathFromDirectory(outputDir, filePath, ignoreCase)
|
|
48320
48320
|
) : filePath;
|
|
@@ -50471,13 +50471,13 @@ ${lanes.join("\n")}
|
|
|
50471
50471
|
visitDirectory(basePath, combinePaths(currentDirectory, basePath), depth);
|
|
50472
50472
|
}
|
|
50473
50473
|
return flatten18(results);
|
|
50474
|
-
function visitDirectory(
|
|
50474
|
+
function visitDirectory(path23, absolutePath, depth2) {
|
|
50475
50475
|
const canonicalPath = toCanonical(realpath2(absolutePath));
|
|
50476
50476
|
if (visited.has(canonicalPath)) return;
|
|
50477
50477
|
visited.set(canonicalPath, true);
|
|
50478
|
-
const { files, directories } = getFileSystemEntries(
|
|
50478
|
+
const { files, directories } = getFileSystemEntries(path23);
|
|
50479
50479
|
for (const current2 of toSorted(files, compareStringsCaseSensitive)) {
|
|
50480
|
-
const name = combinePaths(
|
|
50480
|
+
const name = combinePaths(path23, current2);
|
|
50481
50481
|
const absoluteName = combinePaths(absolutePath, current2);
|
|
50482
50482
|
if (extensions && !fileExtensionIsOneOf(name, extensions)) continue;
|
|
50483
50483
|
if (excludeRegex && excludeRegex.test(absoluteName)) continue;
|
|
@@ -50497,7 +50497,7 @@ ${lanes.join("\n")}
|
|
|
50497
50497
|
}
|
|
50498
50498
|
}
|
|
50499
50499
|
for (const current2 of toSorted(directories, compareStringsCaseSensitive)) {
|
|
50500
|
-
const name = combinePaths(
|
|
50500
|
+
const name = combinePaths(path23, current2);
|
|
50501
50501
|
const absoluteName = combinePaths(absolutePath, current2);
|
|
50502
50502
|
if ((!includeDirectoryRegex || includeDirectoryRegex.test(absoluteName)) && (!excludeRegex || !excludeRegex.test(absoluteName))) {
|
|
50503
50503
|
visitDirectory(name, absoluteName, depth2);
|
|
@@ -50758,10 +50758,10 @@ ${lanes.join("\n")}
|
|
|
50758
50758
|
const match19 = str.match(/\//g);
|
|
50759
50759
|
return match19 ? match19.length : 0;
|
|
50760
50760
|
}
|
|
50761
|
-
function compareNumberOfDirectorySeparators(path1,
|
|
50761
|
+
function compareNumberOfDirectorySeparators(path1, path23) {
|
|
50762
50762
|
return compareValues(
|
|
50763
50763
|
numberOfDirectorySeparators(path1),
|
|
50764
|
-
numberOfDirectorySeparators(
|
|
50764
|
+
numberOfDirectorySeparators(path23)
|
|
50765
50765
|
);
|
|
50766
50766
|
}
|
|
50767
50767
|
var extensionsToRemove = [
|
|
@@ -72819,7 +72819,7 @@ ${lanes.join("\n")}
|
|
|
72819
72819
|
const possibleOption = getSpellingSuggestion(unknownOption, diagnostics.optionDeclarations, getOptionName);
|
|
72820
72820
|
return possibleOption ? createDiagnosticForNodeInSourceFileOrCompilerDiagnostic(sourceFile, node, diagnostics.unknownDidYouMeanDiagnostic, unknownOptionErrorText || unknownOption, possibleOption.name) : createDiagnosticForNodeInSourceFileOrCompilerDiagnostic(sourceFile, node, diagnostics.unknownOptionDiagnostic, unknownOptionErrorText || unknownOption);
|
|
72821
72821
|
}
|
|
72822
|
-
function parseCommandLineWorker(diagnostics, commandLine,
|
|
72822
|
+
function parseCommandLineWorker(diagnostics, commandLine, readFile5) {
|
|
72823
72823
|
const options8 = {};
|
|
72824
72824
|
let watchOptions;
|
|
72825
72825
|
const fileNames = [];
|
|
@@ -72867,7 +72867,7 @@ ${lanes.join("\n")}
|
|
|
72867
72867
|
}
|
|
72868
72868
|
}
|
|
72869
72869
|
function parseResponseFile(fileName) {
|
|
72870
|
-
const text = tryReadFile(fileName,
|
|
72870
|
+
const text = tryReadFile(fileName, readFile5 || ((fileName2) => sys.readFile(fileName2)));
|
|
72871
72871
|
if (!isString2(text)) {
|
|
72872
72872
|
errors.push(text);
|
|
72873
72873
|
return;
|
|
@@ -72970,8 +72970,8 @@ ${lanes.join("\n")}
|
|
|
72970
72970
|
unknownDidYouMeanDiagnostic: Diagnostics.Unknown_compiler_option_0_Did_you_mean_1,
|
|
72971
72971
|
optionTypeMismatchDiagnostic: Diagnostics.Compiler_option_0_expects_an_argument
|
|
72972
72972
|
};
|
|
72973
|
-
function parseCommandLine(commandLine,
|
|
72974
|
-
return parseCommandLineWorker(compilerOptionsDidYouMeanDiagnostics, commandLine,
|
|
72973
|
+
function parseCommandLine(commandLine, readFile5) {
|
|
72974
|
+
return parseCommandLineWorker(compilerOptionsDidYouMeanDiagnostics, commandLine, readFile5);
|
|
72975
72975
|
}
|
|
72976
72976
|
function getOptionFromName(optionName, allowShort) {
|
|
72977
72977
|
return getOptionDeclarationFromName(getOptionsNameMap, optionName, allowShort);
|
|
@@ -73053,8 +73053,8 @@ ${lanes.join("\n")}
|
|
|
73053
73053
|
watchOptionsToExtend
|
|
73054
73054
|
);
|
|
73055
73055
|
}
|
|
73056
|
-
function readConfigFile(fileName,
|
|
73057
|
-
const textOrDiagnostic = tryReadFile(fileName,
|
|
73056
|
+
function readConfigFile(fileName, readFile5) {
|
|
73057
|
+
const textOrDiagnostic = tryReadFile(fileName, readFile5);
|
|
73058
73058
|
return isString2(textOrDiagnostic) ? parseConfigFileTextToJson(fileName, textOrDiagnostic) : { config: {}, error: textOrDiagnostic };
|
|
73059
73059
|
}
|
|
73060
73060
|
function parseConfigFileTextToJson(fileName, jsonText) {
|
|
@@ -73069,14 +73069,14 @@ ${lanes.join("\n")}
|
|
|
73069
73069
|
error: jsonSourceFile.parseDiagnostics.length ? jsonSourceFile.parseDiagnostics[0] : void 0
|
|
73070
73070
|
};
|
|
73071
73071
|
}
|
|
73072
|
-
function readJsonConfigFile(fileName,
|
|
73073
|
-
const textOrDiagnostic = tryReadFile(fileName,
|
|
73072
|
+
function readJsonConfigFile(fileName, readFile5) {
|
|
73073
|
+
const textOrDiagnostic = tryReadFile(fileName, readFile5);
|
|
73074
73074
|
return isString2(textOrDiagnostic) ? parseJsonText(fileName, textOrDiagnostic) : { fileName, parseDiagnostics: [textOrDiagnostic] };
|
|
73075
73075
|
}
|
|
73076
|
-
function tryReadFile(fileName,
|
|
73076
|
+
function tryReadFile(fileName, readFile5) {
|
|
73077
73077
|
let text;
|
|
73078
73078
|
try {
|
|
73079
|
-
text =
|
|
73079
|
+
text = readFile5(fileName);
|
|
73080
73080
|
} catch (e7) {
|
|
73081
73081
|
return createCompilerDiagnostic(Diagnostics.Cannot_read_file_0_Colon_1, fileName, e7.message);
|
|
73082
73082
|
}
|
|
@@ -73422,12 +73422,12 @@ ${lanes.join("\n")}
|
|
|
73422
73422
|
const includeRe = patterns.includeFilePattern && getRegexFromPattern(patterns.includeFilePattern, host.useCaseSensitiveFileNames);
|
|
73423
73423
|
if (includeRe) {
|
|
73424
73424
|
if (excludeRe) {
|
|
73425
|
-
return (
|
|
73425
|
+
return (path23) => !(includeRe.test(path23) && !excludeRe.test(path23));
|
|
73426
73426
|
}
|
|
73427
|
-
return (
|
|
73427
|
+
return (path23) => !includeRe.test(path23);
|
|
73428
73428
|
}
|
|
73429
73429
|
if (excludeRe) {
|
|
73430
|
-
return (
|
|
73430
|
+
return (path23) => excludeRe.test(path23);
|
|
73431
73431
|
}
|
|
73432
73432
|
return returnTrue;
|
|
73433
73433
|
}
|
|
@@ -74225,7 +74225,7 @@ ${lanes.join("\n")}
|
|
|
74225
74225
|
if (extendedConfigCache && (value3 = extendedConfigCache.get(path15))) {
|
|
74226
74226
|
({ extendedResult, extendedConfig } = value3);
|
|
74227
74227
|
} else {
|
|
74228
|
-
extendedResult = readJsonConfigFile(extendedConfigPath, (
|
|
74228
|
+
extendedResult = readJsonConfigFile(extendedConfigPath, (path23) => host.readFile(path23));
|
|
74229
74229
|
if (!extendedResult.parseDiagnostics.length) {
|
|
74230
74230
|
extendedConfig = parseConfig(
|
|
74231
74231
|
/*json*/
|
|
@@ -74878,9 +74878,9 @@ ${lanes.join("\n")}
|
|
|
74878
74878
|
return typeRoots;
|
|
74879
74879
|
}
|
|
74880
74880
|
var nodeModulesAtTypes = combinePaths("node_modules", "@types");
|
|
74881
|
-
function arePathsEqual(path1,
|
|
74881
|
+
function arePathsEqual(path1, path23, host) {
|
|
74882
74882
|
const useCaseSensitiveFileNames2 = typeof host.useCaseSensitiveFileNames === "function" ? host.useCaseSensitiveFileNames() : host.useCaseSensitiveFileNames;
|
|
74883
|
-
return comparePaths(path1,
|
|
74883
|
+
return comparePaths(path1, path23, !useCaseSensitiveFileNames2) === 0;
|
|
74884
74884
|
}
|
|
74885
74885
|
function getOriginalAndResolvedFileName(fileName, host, traceEnabled) {
|
|
74886
74886
|
const resolvedFileName = realPath2(fileName, host, traceEnabled);
|
|
@@ -77136,9 +77136,9 @@ ${lanes.join("\n")}
|
|
|
77136
77136
|
}
|
|
77137
77137
|
const extension = tryGetExtensionFromPath2(subst);
|
|
77138
77138
|
if (extension !== void 0) {
|
|
77139
|
-
const
|
|
77140
|
-
if (
|
|
77141
|
-
return noPackageId({ path:
|
|
77139
|
+
const path23 = tryFile(candidate, onlyRecordFailures, state);
|
|
77140
|
+
if (path23 !== void 0) {
|
|
77141
|
+
return noPackageId({ path: path23, ext: extension, resolvedUsingTsExtension: void 0 });
|
|
77142
77142
|
}
|
|
77143
77143
|
}
|
|
77144
77144
|
return loader(extensions, candidate, onlyRecordFailures || !directoryProbablyExists(getDirectoryPath(candidate), state.host), state);
|
|
@@ -81334,9 +81334,9 @@ ${lanes.join("\n")}
|
|
|
81334
81334
|
if (!startsWithDirectory(target, realPathDirectory, getCanonicalFileName)) {
|
|
81335
81335
|
return;
|
|
81336
81336
|
}
|
|
81337
|
-
const
|
|
81337
|
+
const relative3 = getRelativePathFromDirectory(realPathDirectory, target, getCanonicalFileName);
|
|
81338
81338
|
for (const symlinkDirectory of symlinkDirectories) {
|
|
81339
|
-
const option5 =
|
|
81339
|
+
const option5 = resolvePath2(symlinkDirectory, relative3);
|
|
81340
81340
|
const result2 = cb2(option5, target === referenceRedirect);
|
|
81341
81341
|
shouldFilterIgnoredPaths = true;
|
|
81342
81342
|
if (result2) return result2;
|
|
@@ -156866,7 +156866,7 @@ ${lanes.join("\n")}
|
|
|
156866
156866
|
} else {
|
|
156867
156867
|
if (!configFile) return void 0;
|
|
156868
156868
|
const configFileExtensionLess = removeFileExtension(configFile);
|
|
156869
|
-
buildInfoExtensionLess = options8.outDir ? options8.rootDir ?
|
|
156869
|
+
buildInfoExtensionLess = options8.outDir ? options8.rootDir ? resolvePath2(options8.outDir, getRelativePathFromDirectory(
|
|
156870
156870
|
options8.rootDir,
|
|
156871
156871
|
configFileExtensionLess,
|
|
156872
156872
|
/*ignoreCase*/
|
|
@@ -156924,7 +156924,7 @@ ${lanes.join("\n")}
|
|
|
156924
156924
|
]) ? ".cjs" : ".js";
|
|
156925
156925
|
}
|
|
156926
156926
|
function getOutputPathWithoutChangingExt(inputFileName, ignoreCase, outputDir, getCommonSourceDirectory2) {
|
|
156927
|
-
return outputDir ?
|
|
156927
|
+
return outputDir ? resolvePath2(
|
|
156928
156928
|
outputDir,
|
|
156929
156929
|
getRelativePathFromDirectory(getCommonSourceDirectory2(), inputFileName, ignoreCase)
|
|
156930
156930
|
) : inputFileName;
|
|
@@ -162734,12 +162734,12 @@ ${lanes.join("\n")}
|
|
|
162734
162734
|
function createCompilerHost(options8, setParentNodes) {
|
|
162735
162735
|
return createCompilerHostWorker(options8, setParentNodes);
|
|
162736
162736
|
}
|
|
162737
|
-
function createGetSourceFile(
|
|
162737
|
+
function createGetSourceFile(readFile5, setParentNodes) {
|
|
162738
162738
|
return (fileName, languageVersionOrOptions, onError5) => {
|
|
162739
162739
|
let text;
|
|
162740
162740
|
try {
|
|
162741
162741
|
mark("beforeIORead");
|
|
162742
|
-
text =
|
|
162742
|
+
text = readFile5(fileName);
|
|
162743
162743
|
mark("afterIORead");
|
|
162744
162744
|
measure("I/O Read", "beforeIORead", "afterIORead");
|
|
162745
162745
|
} catch (e7) {
|
|
@@ -163643,7 +163643,7 @@ ${lanes.join("\n")}
|
|
|
163643
163643
|
getRedirectFromOutput,
|
|
163644
163644
|
forEachResolvedProjectReference: forEachResolvedProjectReference2
|
|
163645
163645
|
});
|
|
163646
|
-
const
|
|
163646
|
+
const readFile5 = host.readFile.bind(host);
|
|
163647
163647
|
(_e11 = tracing) == null ? void 0 : _e11.push(tracing.Phase.Program, "shouldProgramCreateNewSourceFiles", { hasOldProgram: !!oldProgram });
|
|
163648
163648
|
const shouldCreateNewSourceFile = shouldProgramCreateNewSourceFiles(oldProgram, options8);
|
|
163649
163649
|
(_f4 = tracing) == null ? void 0 : _f4.pop();
|
|
@@ -163869,7 +163869,7 @@ ${lanes.join("\n")}
|
|
|
163869
163869
|
shouldTransformImportCall,
|
|
163870
163870
|
emitBuildInfo,
|
|
163871
163871
|
fileExists: fileExists2,
|
|
163872
|
-
readFile:
|
|
163872
|
+
readFile: readFile5,
|
|
163873
163873
|
directoryExists,
|
|
163874
163874
|
getSymlinkCache,
|
|
163875
163875
|
realpath: (_o3 = host.realpath) == null ? void 0 : _o3.bind(host),
|
|
@@ -169623,7 +169623,7 @@ ${lanes.join("\n")}
|
|
|
169623
169623
|
const watcher = fileWatchesOfAffectingLocations.get(path15);
|
|
169624
169624
|
if (watcher == null ? void 0 : watcher.resolutions) (affectingPathChecks ?? (affectingPathChecks = /* @__PURE__ */ new Set())).add(path15);
|
|
169625
169625
|
if (watcher == null ? void 0 : watcher.files) (affectingPathChecksForFile ?? (affectingPathChecksForFile = /* @__PURE__ */ new Set())).add(path15);
|
|
169626
|
-
(_a6 = watcher == null ? void 0 : watcher.symlinks) == null ? void 0 : _a6.forEach((
|
|
169626
|
+
(_a6 = watcher == null ? void 0 : watcher.symlinks) == null ? void 0 : _a6.forEach((path23) => invalidateAffectingFileWatcher(path23, packageJsonMap));
|
|
169627
169627
|
packageJsonMap == null ? void 0 : packageJsonMap.delete(resolutionHost.toPath(path15));
|
|
169628
169628
|
}
|
|
169629
169629
|
function watchFailedLookupLocationOfNonRelativeModuleResolutions() {
|
|
@@ -171654,7 +171654,7 @@ ${lanes.join("\n")}
|
|
|
171654
171654
|
return parsed;
|
|
171655
171655
|
}
|
|
171656
171656
|
function resolveProjectName(state, name) {
|
|
171657
|
-
return resolveConfigFileProjectName(
|
|
171657
|
+
return resolveConfigFileProjectName(resolvePath2(state.compilerHost.getCurrentDirectory(), name));
|
|
171658
171658
|
}
|
|
171659
171659
|
function createBuildOrder(state, roots2) {
|
|
171660
171660
|
const temporaryMarks = /* @__PURE__ */ new Map();
|
|
@@ -184672,7 +184672,7 @@ interface Symbol {
|
|
|
184672
184672
|
return !!symbol3 && movedSymbols.has(symbol3);
|
|
184673
184673
|
};
|
|
184674
184674
|
deleteUnusedImports(sourceFile, importNode, changes3, shouldMove);
|
|
184675
|
-
const pathToTargetFileWithExtension =
|
|
184675
|
+
const pathToTargetFileWithExtension = resolvePath2(getDirectoryPath(getNormalizedAbsolutePath(oldFile.fileName, program.getCurrentDirectory())), targetFileName);
|
|
184676
184676
|
if (getStringComparer(!program.useCaseSensitiveFileNames())(pathToTargetFileWithExtension, sourceFile.fileName) === 0) return;
|
|
184677
184677
|
const newModuleSpecifier = ts_moduleSpecifiers_exports.getModuleSpecifier(program.getCompilerOptions(), sourceFile, sourceFile.fileName, pathToTargetFileWithExtension, createModuleSpecifierResolutionHost(program, host));
|
|
184678
184678
|
const newImportDeclaration = filterImport(importNode, makeStringLiteral(newModuleSpecifier, quotePreference), shouldMove);
|
|
@@ -191409,7 +191409,7 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
191409
191409
|
}
|
|
191410
191410
|
}
|
|
191411
191411
|
return result;
|
|
191412
|
-
function
|
|
191412
|
+
function escapeRegExp2(str) {
|
|
191413
191413
|
return str.replace(/[-[\]/{}()*+?.\\^$|]/g, "\\$&");
|
|
191414
191414
|
}
|
|
191415
191415
|
function getTodoCommentsRegExp() {
|
|
@@ -191417,7 +191417,7 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
191417
191417
|
const multiLineCommentStart = /(?:\/\*+\s*)/.source;
|
|
191418
191418
|
const anyNumberOfSpacesAndAsterisksAtStartOfLine = /(?:^(?:\s|\*)*)/.source;
|
|
191419
191419
|
const preamble = "(" + anyNumberOfSpacesAndAsterisksAtStartOfLine + "|" + singleLineCommentStart + "|" + multiLineCommentStart + ")";
|
|
191420
|
-
const literals = "(?:" + map28(descriptors, (d5) => "(" +
|
|
191420
|
+
const literals = "(?:" + map28(descriptors, (d5) => "(" + escapeRegExp2(d5.text) + ")").join("|") + ")";
|
|
191421
191421
|
const endOfLineOrEndOfComment = /(?:$|\*\/)/.source;
|
|
191422
191422
|
const messageRemainder = /(?:.*?)/.source;
|
|
191423
191423
|
const messagePortion = "(" + literals + messageRemainder + ")";
|
|
@@ -205081,12 +205081,12 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
205081
205081
|
];
|
|
205082
205082
|
}
|
|
205083
205083
|
return patternWorker(path15, pattern2, initializer, dotDotDotToken, { tabstop: 1 });
|
|
205084
|
-
function patternWorker(
|
|
205084
|
+
function patternWorker(path23, pattern22, initializer2, dotDotDotToken2, counter6) {
|
|
205085
205085
|
if (isObjectBindingPattern(pattern22) && !dotDotDotToken2) {
|
|
205086
205086
|
const oldTabstop = counter6.tabstop;
|
|
205087
205087
|
const childCounter = { tabstop: oldTabstop };
|
|
205088
205088
|
const rootParam = getJSDocParamAnnotation(
|
|
205089
|
-
|
|
205089
|
+
path23,
|
|
205090
205090
|
initializer2,
|
|
205091
205091
|
dotDotDotToken2,
|
|
205092
205092
|
isJs,
|
|
@@ -205100,7 +205100,7 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
205100
205100
|
);
|
|
205101
205101
|
let childTags = [];
|
|
205102
205102
|
for (const element2 of pattern22.elements) {
|
|
205103
|
-
const elementTags = elementWorker(
|
|
205103
|
+
const elementTags = elementWorker(path23, element2, childCounter);
|
|
205104
205104
|
if (!elementTags) {
|
|
205105
205105
|
childTags = void 0;
|
|
205106
205106
|
break;
|
|
@@ -205115,7 +205115,7 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
205115
205115
|
}
|
|
205116
205116
|
return [
|
|
205117
205117
|
getJSDocParamAnnotation(
|
|
205118
|
-
|
|
205118
|
+
path23,
|
|
205119
205119
|
initializer2,
|
|
205120
205120
|
dotDotDotToken2,
|
|
205121
205121
|
isJs,
|
|
@@ -205129,13 +205129,13 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
205129
205129
|
)
|
|
205130
205130
|
];
|
|
205131
205131
|
}
|
|
205132
|
-
function elementWorker(
|
|
205132
|
+
function elementWorker(path23, element2, counter6) {
|
|
205133
205133
|
if (!element2.propertyName && isIdentifier(element2.name) || isIdentifier(element2.name)) {
|
|
205134
205134
|
const propertyName = element2.propertyName ? tryGetTextOfPropertyName(element2.propertyName) : element2.name.text;
|
|
205135
205135
|
if (!propertyName) {
|
|
205136
205136
|
return void 0;
|
|
205137
205137
|
}
|
|
205138
|
-
const paramName = `${
|
|
205138
|
+
const paramName = `${path23}.${propertyName}`;
|
|
205139
205139
|
return [
|
|
205140
205140
|
getJSDocParamAnnotation(
|
|
205141
205141
|
paramName,
|
|
@@ -205153,7 +205153,7 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
205153
205153
|
];
|
|
205154
205154
|
} else if (element2.propertyName) {
|
|
205155
205155
|
const propertyName = tryGetTextOfPropertyName(element2.propertyName);
|
|
205156
|
-
return propertyName && patternWorker(`${
|
|
205156
|
+
return propertyName && patternWorker(`${path23}.${propertyName}`, element2.name, element2.initializer, element2.dotDotDotToken, counter6);
|
|
205157
205157
|
}
|
|
205158
205158
|
return void 0;
|
|
205159
205159
|
}
|
|
@@ -209375,7 +209375,7 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
209375
209375
|
fragment = "." + directorySeparator;
|
|
209376
209376
|
}
|
|
209377
209377
|
fragment = ensureTrailingDirectorySeparator(fragment);
|
|
209378
|
-
const absolutePath =
|
|
209378
|
+
const absolutePath = resolvePath2(scriptDirectory, fragment);
|
|
209379
209379
|
const baseDirectory = hasTrailingDirectorySeparator(absolutePath) ? absolutePath : getDirectoryPath(absolutePath);
|
|
209380
209380
|
if (!moduleSpecifierIsRelative) {
|
|
209381
209381
|
const packageJsonPath = findPackageJson(baseDirectory, host);
|
|
@@ -209740,7 +209740,7 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
209740
209740
|
if (parsed === void 0 || isString2(parsed)) {
|
|
209741
209741
|
return void 0;
|
|
209742
209742
|
}
|
|
209743
|
-
const normalizedPrefix =
|
|
209743
|
+
const normalizedPrefix = resolvePath2(parsed.prefix);
|
|
209744
209744
|
const normalizedPrefixDirectory = hasTrailingDirectorySeparator(parsed.prefix) ? normalizedPrefix : getDirectoryPath(normalizedPrefix);
|
|
209745
209745
|
const normalizedPrefixBase = hasTrailingDirectorySeparator(parsed.prefix) ? "" : getBaseFileName(normalizedPrefix);
|
|
209746
209746
|
const fragmentHasPath = containsSlash(fragment);
|
|
@@ -212750,7 +212750,7 @@ ${newComment.split("\n").map((c7) => ` * ${c7}`).join("\n")}
|
|
|
212750
212750
|
let resolution;
|
|
212751
212751
|
if (isModuleSpecifierLike(node) && isExternalModuleNameRelative(node.text) && (resolution = program.getResolvedModuleFromModuleSpecifier(node, sourceFile))) {
|
|
212752
212752
|
const verifiedFileName = (_b2 = resolution.resolvedModule) == null ? void 0 : _b2.resolvedFileName;
|
|
212753
|
-
const fileName = verifiedFileName ||
|
|
212753
|
+
const fileName = verifiedFileName || resolvePath2(getDirectoryPath(sourceFile.fileName), node.text);
|
|
212754
212754
|
return {
|
|
212755
212755
|
file: program.getSourceFile(fileName),
|
|
212756
212756
|
fileName,
|
|
@@ -224974,7 +224974,7 @@ ${options8.prefix}` : "\n" : options8.prefix
|
|
|
224974
224974
|
resolveModuleName: () => resolveModuleName,
|
|
224975
224975
|
resolveModuleNameFromCache: () => resolveModuleNameFromCache,
|
|
224976
224976
|
resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson,
|
|
224977
|
-
resolvePath: () =>
|
|
224977
|
+
resolvePath: () => resolvePath2,
|
|
224978
224978
|
resolveProjectReferencePath: () => resolveProjectReferencePath,
|
|
224979
224979
|
resolveTripleslashReference: () => resolveTripleslashReference,
|
|
224980
224980
|
resolveTypeReferenceDirective: () => resolveTypeReferenceDirective,
|
|
@@ -230273,12 +230273,12 @@ ${options8.prefix}` : "\n" : options8.prefix
|
|
|
230273
230273
|
project3.markAutoImportProviderAsDirty();
|
|
230274
230274
|
} else {
|
|
230275
230275
|
if (project3.initialLoadPending) {
|
|
230276
|
-
(_b2 = (_a6 = this.configFileExistenceInfoCache.get(projectCanonicalPath)) == null ? void 0 : _a6.openFilesImpactedByConfigFile) == null ? void 0 : _b2.forEach((
|
|
230276
|
+
(_b2 = (_a6 = this.configFileExistenceInfoCache.get(projectCanonicalPath)) == null ? void 0 : _a6.openFilesImpactedByConfigFile) == null ? void 0 : _b2.forEach((path23) => {
|
|
230277
230277
|
var _a22;
|
|
230278
|
-
if (!((_a22 = this.pendingOpenFileProjectUpdates) == null ? void 0 : _a22.has(
|
|
230278
|
+
if (!((_a22 = this.pendingOpenFileProjectUpdates) == null ? void 0 : _a22.has(path23))) {
|
|
230279
230279
|
(this.pendingOpenFileProjectUpdates ?? (this.pendingOpenFileProjectUpdates = /* @__PURE__ */ new Map())).set(
|
|
230280
|
-
|
|
230281
|
-
this.configFileForOpenFiles.get(
|
|
230280
|
+
path23,
|
|
230281
|
+
this.configFileForOpenFiles.get(path23)
|
|
230282
230282
|
);
|
|
230283
230283
|
}
|
|
230284
230284
|
});
|
|
@@ -246146,14 +246146,14 @@ var require_parser = __commonJS({
|
|
|
246146
246146
|
case "scalar":
|
|
246147
246147
|
case "single-quoted-scalar":
|
|
246148
246148
|
case "double-quoted-scalar": {
|
|
246149
|
-
const
|
|
246149
|
+
const fs9 = this.flowScalar(this.type);
|
|
246150
246150
|
if (atNextItem || it10.value) {
|
|
246151
|
-
map28.items.push({ start: start5, key:
|
|
246151
|
+
map28.items.push({ start: start5, key: fs9, sep: [] });
|
|
246152
246152
|
this.onKeyLine = true;
|
|
246153
246153
|
} else if (it10.sep) {
|
|
246154
|
-
this.stack.push(
|
|
246154
|
+
this.stack.push(fs9);
|
|
246155
246155
|
} else {
|
|
246156
|
-
Object.assign(it10, { key:
|
|
246156
|
+
Object.assign(it10, { key: fs9, sep: [] });
|
|
246157
246157
|
this.onKeyLine = true;
|
|
246158
246158
|
}
|
|
246159
246159
|
return;
|
|
@@ -246281,13 +246281,13 @@ var require_parser = __commonJS({
|
|
|
246281
246281
|
case "scalar":
|
|
246282
246282
|
case "single-quoted-scalar":
|
|
246283
246283
|
case "double-quoted-scalar": {
|
|
246284
|
-
const
|
|
246284
|
+
const fs9 = this.flowScalar(this.type);
|
|
246285
246285
|
if (!it10 || it10.value)
|
|
246286
|
-
fc3.items.push({ start: [], key:
|
|
246286
|
+
fc3.items.push({ start: [], key: fs9, sep: [] });
|
|
246287
246287
|
else if (it10.sep)
|
|
246288
|
-
this.stack.push(
|
|
246288
|
+
this.stack.push(fs9);
|
|
246289
246289
|
else
|
|
246290
|
-
Object.assign(it10, { key:
|
|
246290
|
+
Object.assign(it10, { key: fs9, sep: [] });
|
|
246291
246291
|
return;
|
|
246292
246292
|
}
|
|
246293
246293
|
case "flow-map-end":
|
|
@@ -250141,7 +250141,7 @@ ${i.comment}` : s5.comment), s5 = i;
|
|
|
250141
250141
|
ws8.scalarFallback = (t26) => {
|
|
250142
250142
|
throw new SyntaxError(`Unresolved plain scalar ${JSON.stringify(t26)}`);
|
|
250143
250143
|
};
|
|
250144
|
-
var
|
|
250144
|
+
var fs9 = ({ value: t26 }) => t26 ? E7.boolOptions.trueStr : E7.boolOptions.falseStr, lt8 = (t26) => typeof t26 == "bigint" || Number.isInteger(t26);
|
|
250145
250145
|
function qt11(t26, e7, n5) {
|
|
250146
250146
|
let r5 = e7.replace(/_/g, "");
|
|
250147
250147
|
if (E7.intOptions.asBigInt) {
|
|
@@ -250170,7 +250170,7 @@ ${i.comment}` : s5.comment), s5 = i;
|
|
|
250170
250170
|
}
|
|
250171
250171
|
return E7.stringifyNumber(t26);
|
|
250172
250172
|
}
|
|
250173
|
-
var la3 = Vn7.concat([{ identify: (t26) => t26 == null, createNode: (t26, e7, n5) => n5.wrapScalars ? new E7.Scalar(null) : null, default: true, tag: "tag:yaml.org,2002:null", test: /^(?:~|[Nn]ull|NULL)?$/, resolve: () => null, options: E7.nullOptions, stringify: () => E7.nullOptions.nullStr }, { identify: (t26) => typeof t26 == "boolean", default: true, tag: "tag:yaml.org,2002:bool", test: /^(?:Y|y|[Yy]es|YES|[Tt]rue|TRUE|[Oo]n|ON)$/, resolve: () => true, options: E7.boolOptions, stringify:
|
|
250173
|
+
var la3 = Vn7.concat([{ identify: (t26) => t26 == null, createNode: (t26, e7, n5) => n5.wrapScalars ? new E7.Scalar(null) : null, default: true, tag: "tag:yaml.org,2002:null", test: /^(?:~|[Nn]ull|NULL)?$/, resolve: () => null, options: E7.nullOptions, stringify: () => E7.nullOptions.nullStr }, { identify: (t26) => typeof t26 == "boolean", default: true, tag: "tag:yaml.org,2002:bool", test: /^(?:Y|y|[Yy]es|YES|[Tt]rue|TRUE|[Oo]n|ON)$/, resolve: () => true, options: E7.boolOptions, stringify: fs9 }, { identify: (t26) => typeof t26 == "boolean", default: true, tag: "tag:yaml.org,2002:bool", test: /^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/i, resolve: () => false, options: E7.boolOptions, stringify: fs9 }, { identify: lt8, default: true, tag: "tag:yaml.org,2002:int", format: "BIN", test: /^([-+]?)0b([0-1_]+)$/, resolve: (t26, e7, n5) => qt11(e7, n5, 2), stringify: (t26) => Un8(t26, 2, "0b") }, { identify: lt8, default: true, tag: "tag:yaml.org,2002:int", format: "OCT", test: /^([-+]?)0([0-7_]+)$/, resolve: (t26, e7, n5) => qt11(e7, n5, 8), stringify: (t26) => Un8(t26, 8, "0") }, { identify: lt8, default: true, tag: "tag:yaml.org,2002:int", test: /^([-+]?)([0-9][0-9_]*)$/, resolve: (t26, e7, n5) => qt11(e7, n5, 10), stringify: E7.stringifyNumber }, { identify: lt8, default: true, tag: "tag:yaml.org,2002:int", format: "HEX", test: /^([-+]?)0x([0-9a-fA-F_]+)$/, resolve: (t26, e7, n5) => qt11(e7, n5, 16), stringify: (t26) => Un8(t26, 16, "0x") }, { identify: (t26) => typeof t26 == "number", default: true, tag: "tag:yaml.org,2002:float", test: /^(?:[-+]?\.inf|(\.nan))$/i, resolve: (t26, e7) => e7 ? NaN : t26[0] === "-" ? Number.NEGATIVE_INFINITY : Number.POSITIVE_INFINITY, stringify: E7.stringifyNumber }, { identify: (t26) => typeof t26 == "number", default: true, tag: "tag:yaml.org,2002:float", format: "EXP", test: /^[-+]?([0-9][0-9_]*)?(\.[0-9_]*)?[eE][-+]?[0-9]+$/, resolve: (t26) => parseFloat(t26.replace(/_/g, "")), stringify: ({ value: t26 }) => Number(t26).toExponential() }, { identify: (t26) => typeof t26 == "number", default: true, tag: "tag:yaml.org,2002:float", test: /^[-+]?(?:[0-9][0-9_]*)?\.([0-9_]*)$/, resolve(t26, e7) {
|
|
250174
250174
|
let n5 = new E7.Scalar(parseFloat(t26.replace(/_/g, "")));
|
|
250175
250175
|
if (e7) {
|
|
250176
250176
|
let r5 = e7.replace(/_/g, "");
|
|
@@ -252061,10 +252061,10 @@ function kc({ node: e7, parent: t26 }) {
|
|
|
252061
252061
|
}
|
|
252062
252062
|
function oo2(e7) {
|
|
252063
252063
|
let t26 = (n5) => n5.type === "TemplateLiteral", r5 = (n5, s5) => Oe2(n5) && !n5.computed && n5.key.type === "Identifier" && n5.key.name === "styles" && s5 === "value";
|
|
252064
|
-
return e7.match(t26, (n5, s5) => q2(n5) && s5 === "elements", r5, ...
|
|
252064
|
+
return e7.match(t26, (n5, s5) => q2(n5) && s5 === "elements", r5, ...fs2) || e7.match(t26, r5, ...fs2);
|
|
252065
252065
|
}
|
|
252066
252066
|
function ys(e7) {
|
|
252067
|
-
return e7.match((t26) => t26.type === "TemplateLiteral", (t26, r5) => Oe2(t26) && !t26.computed && t26.key.type === "Identifier" && t26.key.name === "template" && r5 === "value", ...
|
|
252067
|
+
return e7.match((t26) => t26.type === "TemplateLiteral", (t26, r5) => Oe2(t26) && !t26.computed && t26.key.type === "Identifier" && t26.key.name === "template" && r5 === "value", ...fs2);
|
|
252068
252068
|
}
|
|
252069
252069
|
function Ds2(e7, t26) {
|
|
252070
252070
|
return T(e7, x.Block | x.Leading, ({ value: r5 }) => r5 === ` ${t26} `);
|
|
@@ -255049,7 +255049,7 @@ function Ca(e7, t26) {
|
|
|
255049
255049
|
}
|
|
255050
255050
|
if (r5 === "TemplateLiteral") return { type: "StringLiteral", value: e7.quasis[0].value.cooked };
|
|
255051
255051
|
}
|
|
255052
|
-
var Ba2, jn, Ta, Qs2, Hs2, Wt, ba, Pa, W2, Ia, N2, Lr2, Zs2, ei2, _a2, Ma, ot, JD, ze2, ti2, ri2, ni2, Ze2, Z2, qt, Ut, Yt, R, qa2, Le2, si2, ii2, Ua2, Ya2, wr2, Xa2, oi2, ut, ui2, Dr2, Qa2, _r2, a, pi2, Za, Mr2, k2, pe, rp, ce2, np, Nr2, sp, At2, Pt2, jr, kt2, Di2, q2, se2, Jr, pp, Je2, Ht2, H, Te2, lp, Dp, Fi2, M, J2, yp, Ep, li2, vr2, Yn, Fp, qn2, Un, x, gi2, oe, Ae2, Se, xt, Ue, hi2, Cr2, dp, Kt, Bi2, Cp, Ap, Tp, bi2, xp, Pi2, at2, _e2, ue, Qn, Hr, Zn2, Mp, Np, wi2, Xp, Vp, Ri2, nc, Ji2, Gi2, ic, Wi2, Ye, Be, tt2, He2, Xe2, rt2, Fe, Me2, be, Ve2, $e, Ge2, me2, Pe2, Ne, Xr, We2, ac, is2, gt2, qi2, Vr2, de2, Kr, $i2, Ki2, ke2, Tr2, A, f, os, E, yc, $r2, je2, Ec, Fc, dc, Cc, Ac, Tc, xc, gc, as12, ve2, ct, cs, no2, so2,
|
|
255052
|
+
var Ba2, jn, Ta, Qs2, Hs2, Wt, ba, Pa, W2, Ia, N2, Lr2, Zs2, ei2, _a2, Ma, ot, JD, ze2, ti2, ri2, ni2, Ze2, Z2, qt, Ut, Yt, R, qa2, Le2, si2, ii2, Ua2, Ya2, wr2, Xa2, oi2, ut, ui2, Dr2, Qa2, _r2, a, pi2, Za, Mr2, k2, pe, rp, ce2, np, Nr2, sp, At2, Pt2, jr, kt2, Di2, q2, se2, Jr, pp, Je2, Ht2, H, Te2, lp, Dp, Fi2, M, J2, yp, Ep, li2, vr2, Yn, Fp, qn2, Un, x, gi2, oe, Ae2, Se, xt, Ue, hi2, Cr2, dp, Kt, Bi2, Cp, Ap, Tp, bi2, xp, Pi2, at2, _e2, ue, Qn, Hr, Zn2, Mp, Np, wi2, Xp, Vp, Ri2, nc, Ji2, Gi2, ic, Wi2, Ye, Be, tt2, He2, Xe2, rt2, Fe, Me2, be, Ve2, $e, Ge2, me2, Pe2, Ne, Xr, We2, ac, is2, gt2, qi2, Vr2, de2, Kr, $i2, Ki2, ke2, Tr2, A, f, os, E, yc, $r2, je2, Ec, Fc, dc, Cc, Ac, Tc, xc, gc, as12, ve2, ct, cs, no2, so2, fs2, po2, Es, fo2, yo, jc, Co, Gc, Wc, go3, qc, Ao, Uc, To, Yc, ho, ko, Io, Fs2, Oo, Qc, ge, Mo, sl2, Et2, pl, cl, ll, ml, vo, dt2, fl, Ro, Fl, dl, Cl, Go, hr2, kl, Vo, Ll, cn2, Yl, bs, Ls2, Qe2, ws, pu, yn2, _s2, Kl, nr2, Dm, Ns, ym, Am, Tm, xu, gu, hu, Bu, Bm, bm, Pm, js2, Om, Iu, Mm, Jt2, ju, jm, Ru, Rm, qm, Xm, Qm, Ws2, Zm, ua, lD, Ys2, DD, ya, Xs2, ar2, Ea, fD, Fa2, ED, pr2, St2, FD, Aa, dD, CD;
|
|
255053
255053
|
var init_estree = __esm({
|
|
255054
255054
|
"node_modules/prettier/plugins/estree.mjs"() {
|
|
255055
255055
|
"use strict";
|
|
@@ -255243,7 +255243,7 @@ var init_estree = __esm({
|
|
|
255243
255243
|
cs = /* @__PURE__ */ Symbol("DOC_FILL_PRINTED_LENGTH");
|
|
255244
255244
|
no2 = Sc;
|
|
255245
255245
|
so2 = Bc;
|
|
255246
|
-
|
|
255246
|
+
fs2 = [(e7, t26) => e7.type === "ObjectExpression" && t26 === "properties", (e7, t26) => e7.type === "CallExpression" && e7.callee.type === "Identifier" && e7.callee.name === "Component" && t26 === "arguments", (e7, t26) => e7.type === "Decorator" && t26 === "expression"];
|
|
255247
255247
|
po2 = (e7) => Oc(e7) || wc(e7) || _c(e7) || oo2(e7);
|
|
255248
255248
|
Es = 0;
|
|
255249
255249
|
fo2 = mo.bind(void 0, "html");
|
|
@@ -255550,7 +255550,7 @@ function ls2(e7) {
|
|
|
255550
255550
|
function Ut2(e7) {
|
|
255551
255551
|
return e7 >= 65 && e7 <= 90 || e7 >= 97 && e7 <= 122;
|
|
255552
255552
|
}
|
|
255553
|
-
function
|
|
255553
|
+
function fs3(e7) {
|
|
255554
255554
|
return e7 >= 0 && e7 <= 1114111;
|
|
255555
255555
|
}
|
|
255556
255556
|
function ds2(e7) {
|
|
@@ -257722,7 +257722,7 @@ var init_acorn = __esm({
|
|
|
257722
257722
|
}
|
|
257723
257723
|
return true;
|
|
257724
257724
|
}
|
|
257725
|
-
if (s5 && e7.eat(123) && this.regexp_eatHexDigits(e7) && e7.eat(125) &&
|
|
257725
|
+
if (s5 && e7.eat(123) && this.regexp_eatHexDigits(e7) && e7.eat(125) && fs3(e7.lastIntValue)) return true;
|
|
257726
257726
|
s5 && e7.raise("Invalid unicode escape"), e7.pos = i;
|
|
257727
257727
|
}
|
|
257728
257728
|
return false;
|
|
@@ -258621,7 +258621,7 @@ function W4(t26) {
|
|
|
258621
258621
|
return Oi4 <= t26 && t26 <= Fi4;
|
|
258622
258622
|
}
|
|
258623
258623
|
function Dt3(t26) {
|
|
258624
|
-
return t26 >= hs3 && t26 <=
|
|
258624
|
+
return t26 >= hs3 && t26 <= fs4 || t26 >= qt3 && t26 <= jt3;
|
|
258625
258625
|
}
|
|
258626
258626
|
function Mn(t26) {
|
|
258627
258627
|
return t26 === cs3 || t26 === ls3 || t26 === $t2;
|
|
@@ -258654,7 +258654,7 @@ function mr2(t26, e7, n5) {
|
|
|
258654
258654
|
return new A3(t26, e7, h.RegExpFlags, 0, n5);
|
|
258655
258655
|
}
|
|
258656
258656
|
function Zn3(t26) {
|
|
258657
|
-
return hs3 <= t26 && t26 <=
|
|
258657
|
+
return hs3 <= t26 && t26 <= fs4 || qt3 <= t26 && t26 <= jt3 || t26 == Xe4 || t26 == Wt3;
|
|
258658
258658
|
}
|
|
258659
258659
|
function es3(t26) {
|
|
258660
258660
|
return Dt3(t26) || W4(t26) || t26 == Xe4 || t26 == Wt3;
|
|
@@ -258777,7 +258777,7 @@ function tt4(t26) {
|
|
|
258777
258777
|
return delete n5.comments, t26 === et4 && n5.type !== "NGChainedExpression" && (n5 = { ...n5, type: "NGChainedExpression", expressions: [n5] }), { type: "NGRoot", node: n5, comments: s5 };
|
|
258778
258778
|
}, locStart: nn3, locEnd: Si4 };
|
|
258779
258779
|
}
|
|
258780
|
-
var Ci4, _i4, Ti4, an3, ln3, nt4, U3, ke4, st2, v3, cn3, Ei4, sn3, zr2, fn4, dn3, mn3, N4, gn3, vn2, xn2, wn2, Sn3, En3, yn3, Cn2, c, S, rt4, ot3, at4, lt3, ct3, Ne3, ut3, pt4, x2, ht4, ft3, dt4, mt4, gt4, vt4, Pe4, xt3, wt4, _n2, o, l2, St4, Gr2, Tn2, X4, g2, Se3, b3, ne4, Et4, yt4, Ct4, de3, _t3, Le4, Tt4, me4, kt4, I3, bt4, At4, It3, Ii4, E2, ge3, Me4, Re3, $e3, Nt4, Pt4, Lt4, De4, Be3, Oe3, Ee3, Mt4, $3, O2, se4, ye3, Rt3, kn2, bn2, L3, An2, pe2, os3, Ie3, Ni4, Pi4, Li4, as14, Mi3, ls3, Ri4, Wt3, $i4, In2, cs3, ve4, q4, Nn, us3, Q3, ps3, H3, Fe3, j2, fe2, Di4, k4, Bi4, Pn2, Oi4, Fi4, qt3, Vi4, jt3, te4, it2, G3, Ui4, Xe4, hs3, Hi4, Wi4, qi4, ji4, zi4, Gi4, Xi4,
|
|
258780
|
+
var Ci4, _i4, Ti4, an3, ln3, nt4, U3, ke4, st2, v3, cn3, Ei4, sn3, zr2, fn4, dn3, mn3, N4, gn3, vn2, xn2, wn2, Sn3, En3, yn3, Cn2, c, S, rt4, ot3, at4, lt3, ct3, Ne3, ut3, pt4, x2, ht4, ft3, dt4, mt4, gt4, vt4, Pe4, xt3, wt4, _n2, o, l2, St4, Gr2, Tn2, X4, g2, Se3, b3, ne4, Et4, yt4, Ct4, de3, _t3, Le4, Tt4, me4, kt4, I3, bt4, At4, It3, Ii4, E2, ge3, Me4, Re3, $e3, Nt4, Pt4, Lt4, De4, Be3, Oe3, Ee3, Mt4, $3, O2, se4, ye3, Rt3, kn2, bn2, L3, An2, pe2, os3, Ie3, Ni4, Pi4, Li4, as14, Mi3, ls3, Ri4, Wt3, $i4, In2, cs3, ve4, q4, Nn, us3, Q3, ps3, H3, Fe3, j2, fe2, Di4, k4, Bi4, Pn2, Oi4, Fi4, qt3, Vi4, jt3, te4, it2, G3, Ui4, Xe4, hs3, Hi4, Wi4, qi4, ji4, zi4, Gi4, Xi4, fs4, Ve4, Ln2, K4, ds3, $t2, Ue3, He4, We4, qe3, Ce4, Rn2, $n2, Dn2, Yi4, ms3, Qi4, Bt2, Ki4, Zi4, zt3, Yr3, Qr3, er4, Kr2, tr4, Zr2, gs3, eo3, to3, nr4, sr4, ir4, no3, so3, io3, f3, ie3, Bn2, On2, Fn2, M3, Vn2, Un2, Hn3, Wn2, R3, qn3, jn2, rr4, vs4, Te4, Gt3, ro3, oo3, ao3, je4, re3, zn3, Gn3, Xn3, Jn2, Ot4, lo3, Yn2, Qn2, co3, uo3, po3, ho2, fo3, or4, ar4, Kn3, xs4, mo2, go4, h, F3, lr3, _e4, A3, xe3, Ae4, Ft3, Vt3, Ut3, oe3, Z4, ts3, z3, Ht4, Er3, vo2, xo2, wo2, So2, Eo2, yo2, Co2, _o2, To2, ko2, bo2, ns3, Ao2, ss3, is4, ws3, No2, Po2, rs3, Lo2, Cr3, _r3, Tr3, Je4, Cs2, _s3, Ts2, ks3, bs3, Ye2, As3, Is4, Ns3, Ps4, br3, Ls4, Ar3, Ir2, Ms4, Rs4, $s3, Ds4, Bs4, Os3, Fs4, Vs3, Nr3, Pr2, Lr3, Mr3, Qe4, Us4, Hs4, Ws4, qs4, js4, zs4, Gs4, Xs4, Js4, Ys4, Qs4, Ks3, Zs4, Xt4, ei4, ti4, ni4, si4, Rr3, ii4, ri4, oi4, Ke4, ai4, li4, ci4, ui4, Dr3, pi4, ae3, J4, m2, di4, C2, Yt2, Qt3, Kt3, mi4, gi4, vi4, xi4, le3, Br3, Ze4, et4, Zt4, Or4, en3, tn3, Fr3, Vr3, Ur3, Hr2;
|
|
258781
258781
|
var init_angular = __esm({
|
|
258782
258782
|
"node_modules/prettier/plugins/angular.mjs"() {
|
|
258783
258783
|
"use strict";
|
|
@@ -259994,7 +259994,7 @@ var init_angular = __esm({
|
|
|
259994
259994
|
zi4 = 116;
|
|
259995
259995
|
Gi4 = 117;
|
|
259996
259996
|
Xi4 = 118;
|
|
259997
|
-
|
|
259997
|
+
fs4 = 122;
|
|
259998
259998
|
Ve4 = 123;
|
|
259999
259999
|
Ln2 = 124;
|
|
260000
260000
|
K4 = 125;
|
|
@@ -262195,7 +262195,7 @@ function cr4(a5, t26) {
|
|
|
262195
262195
|
}
|
|
262196
262196
|
function lr4(a5, t26) {
|
|
262197
262197
|
let e7 = null, s5 = t26;
|
|
262198
|
-
for (; s5 !== e7; ) e7 = s5, s5 = cs4(a5, s5), s5 = ps4(a5, s5), s5 = ds4(a5, s5), s5 =
|
|
262198
|
+
for (; s5 !== e7; ) e7 = s5, s5 = cs4(a5, s5), s5 = ps4(a5, s5), s5 = ds4(a5, s5), s5 = fs5(a5, s5);
|
|
262199
262199
|
return s5;
|
|
262200
262200
|
}
|
|
262201
262201
|
function ys4(a5) {
|
|
@@ -262501,7 +262501,7 @@ function re4(a5) {
|
|
|
262501
262501
|
throw q5(a5, `'${a5.type}'`);
|
|
262502
262502
|
}
|
|
262503
262503
|
}
|
|
262504
|
-
var Hs5, Re4, Ks4, kt5, R4, Q4, Dt4, Js5, Mt5, be4, Gs5, Xs5, Ys5, Qs5, Zs5, ei5, p, ri5, Ft4, ai5, W5, E3, T3, m3, Ue4, oe4, j3, ni5, we4, ft4, pe3, dt5, mt5, yt5, xt4, Pt5, gt5, oi5, bt5, Xt5, Pi5, gi5, Yt3, Ti5, At5, bi5, Ai5, Si5, Ei5, ue4, fe3, He5, We5, Ni5, g3, vi5, Di5, Mi4, Oi5, ge4, _e5, je5, U4, Bi5, Je5, Ge5, Xe5, Ye3, Qe5, Ze5, Ui5, _t4, Te5, Vi5, tt5, st3, it3, rt5, Z5, Ce5, at5, nt5, Y3, de4, Vt4, ot4, ht5, ct4, Ve5, y, Ji5, $t3, Qi5, Zi5, Kt4, Ht5, hs4, tr5, pt5, ze5, sr5, ir5, qe4, ut4, Ee4, ua2, Wt4, da2, cs4, ma2, ls4, ps4, us4,
|
|
262504
|
+
var Hs5, Re4, Ks4, kt5, R4, Q4, Dt4, Js5, Mt5, be4, Gs5, Xs5, Ys5, Qs5, Zs5, ei5, p, ri5, Ft4, ai5, W5, E3, T3, m3, Ue4, oe4, j3, ni5, we4, ft4, pe3, dt5, mt5, yt5, xt4, Pt5, gt5, oi5, bt5, Xt5, Pi5, gi5, Yt3, Ti5, At5, bi5, Ai5, Si5, Ei5, ue4, fe3, He5, We5, Ni5, g3, vi5, Di5, Mi4, Oi5, ge4, _e5, je5, U4, Bi5, Je5, Ge5, Xe5, Ye3, Qe5, Ze5, Ui5, _t4, Te5, Vi5, tt5, st3, it3, rt5, Z5, Ce5, at5, nt5, Y3, de4, Vt4, ot4, ht5, ct4, Ve5, y, Ji5, $t3, Qi5, Zi5, Kt4, Ht5, hs4, tr5, pt5, ze5, sr5, ir5, qe4, ut4, Ee4, ua2, Wt4, da2, cs4, ma2, ls4, ps4, us4, fs5, ds4, ms4, ve5, ee3, ur5, fr5, xs5, mr3, Ps5, te5, xr4, se5, Pr3, gs4, St5, Ts3, wt5, Ct5, bs4, As4, me5, wr4, Ss3, c2, ws4, Er4, Cs3, Es3, fn5, Ns4, De5, ks4, Me5, vr4, Lr4, xe4, Dr4, Mr4, Or5, Fr4, vs5, Br4, Ls5, Rr4, Ur4, Os4, Fs5, H4, Oe4, Nt5, Fe4, ie4, Vr4, js5, Vs4, _3, zr3, Hr3, zs5, Wr2, Jr2, Gr3, Xr2, qs5, Yr4, Lt5, vt5, $s4, ea2, ta2, sa2, ia2, ra2;
|
|
262505
262505
|
var init_babel = __esm({
|
|
262506
262506
|
"node_modules/prettier/plugins/babel.mjs"() {
|
|
262507
262507
|
"use strict";
|
|
@@ -268796,7 +268796,7 @@ var init_babel = __esm({
|
|
|
268796
268796
|
ps4 = or5;
|
|
268797
268797
|
us4 = (a5) => a5 === `
|
|
268798
268798
|
` || a5 === "\r" || a5 === "\u2028" || a5 === "\u2029";
|
|
268799
|
-
|
|
268799
|
+
fs5 = hr5;
|
|
268800
268800
|
ds4 = cr4;
|
|
268801
268801
|
ms4 = lr4;
|
|
268802
268802
|
ve5 = pr5;
|
|
@@ -269122,7 +269122,7 @@ var init_flow = __esm({
|
|
|
269122
269122
|
"use strict";
|
|
269123
269123
|
var ox = 320, Yx = "loc", xr6 = 289, E12 = 70416, S24 = 69748, da5 = 163, Tt12 = 92159, Vr8 = 43587, G12 = "labeled_statement", yo3 = "&=", Et13 = "int_of_string", G32 = 110591, _o3 = 92909, gp4 = 11559, nD2 = "regexp", W52 = 43301, bp3 = 11703, V52 = 122654, ya3 = 255, uD2 = "%ni", $52 = 68252, iD2 = 232, Q52 = 42785, qn8 = "declare_variable", Tp3 = "while", Z52 = 66938, xy2 = 70301, ry2 = 124907, Ep3 = 126515, fD2 = 218, Bn7 = "pattern_identifier", ey = 67643, Un8 = "export_source", ty2 = 216, ny2 = 64279, cD2 = "Out_of_memory", uy2 = 113788, sD2 = "comments", iy2 = 126624, aD2 = "win32", Xn9 = "object_key_bigint_literal", oD2 = 185, Sp3 = 123214, _a6 = "constructor", fy2 = 69955, Gn8 = "import_declaration", cy2 = 68437, sy2 = "Failure", Ap3 = "Unix.Unix_error", ay2 = 64255, oy2 = 42539, vy2 = 110579, Yn7 = "export_default_declaration", zn9 = "jsx_attribute_name", Ip3 = 11727, ly2 = 43002, Pp4 = 126500, Jn9 = "component_param_pattern", vD = "collect_comments_opt", Kn10 = "match_unary_pattern", lD2 = 321, Hn8 = "keyof_type", pD2 = "Invalid binary/octal ", kD = "range", py2 = 170, wa4 = "false", ky2 = 43798, mD2 = ", characters ", Wn8 = "object_type_property_getter", my2 = 65547, hy2 = 126467, dy2 = 65007, yy2 = 42237, _y2 = 8318, wy2 = 71215, Vn7 = "object_property_type", $n8 = "type_alias", gy2 = 67742, Qn8 = "function_body", hD = 304, by2 = 68111, Cp3 = 120745, Ty2 = 71959, Np4 = 43880, dD2 = "Match_failure", Zn10 = "type_cast", wo6 = 109, ga2 = "void", Ey2 = "generator", Sy2 = 125124, Ay2 = 101589, Op3 = 94179, yD2 = ">>>", jp3 = 70404, x72 = "optional_indexed_access_type", $12 = "argument", r7 = "object_property", e7 = "object_type_property", Iy3 = 67004, Py2 = 42783, Cy2 = 68850, _D = "@", Ny2 = 43741, Oy2 = 43487, Dp3 = "object", wD = "end", Rp3 = 126571, jy3 = 71956, gD = 208, Dy3 = 126566, Ry2 = 67702, bD = "EEXIST", t72 = "this_expression", TD = 203, Fy3 = 11507, My3 = 113807, Fp3 = 119893, Ly3 = 42735, p62 = "rest", n7 = "null_literal", k63 = "protected", qy3 = 43615, v24 = 8231, By3 = 68149, Uy3 = 73727, Xy2 = 72348, Gy3 = 92995, Sv2 = 224, Yy3 = 11686, zy3 = 43013, u7 = "assignment_pattern", Jy2 = 12329, i7 = "function_type", Y32 = 192, f7 = "jsx_element_name", Ky2 = 70018, ED2 = -57, c7 = "catch_clause_pattern", Mp3 = 126540, s7 = "template_literal", Hy3 = 120654, Wy3 = 68497, Vy3 = 67679, a7 = "readonly_type", $y3 = 68735, Qy2 = "<", Lp3 = ": No such file or directory", Zy2 = 66915, x9 = "chain", SD = "!", o7 = "object_type", r9 = 43712, qp3 = 64297, e9 = 183969, t92 = -105, n9 = 43503, u9 = 67591, Av2 = 65278, i9 = 67669, v72 = "for_of_assignment_pattern", m62 = "`", f9 = 11502, l7 = "catch_body", c9 = 42191, go5 = -744106340, s9 = 182, Iv2 = ":", AD = "a string", a9 = 65663, o9 = 66978, v9 = 71947, Bp3 = 43519, l9 = 71086, p9 = 125258, k9 = 12538, p7 = "expression_or_spread", ID = "Printexc.handle_uncaught_exception", Up3 = 69956, Xp3 = 120122, Gp3 = 247, PD = 231, m9 = " : flags Open_rdonly and Open_wronly are not compatible", k72 = "statement_fork_point", CD2 = 710, ND = -692038429, Ue10 = "static", h9 = 55203, d9 = 64324, y9 = 64111, OD = "!==", _9 = 120132, w9 = 124903, h62 = "class", jD = 222, m7 = "pattern_number_literal", ba3 = "kind", g9 = 71903, h7 = "variable_declarator", DD2 = " named `", d7 = "typeof_expression", b9 = 126627, T9 = 70084, RD = 228, Yp3 = 70480, y7 = "class_private_field", E9 = 239, zp3 = 120713, rn6 = 65535, z32 = -26, _72 = "private_name", S9 = 43137, w72 = "remote_identifier", A9 = 70161, g7 = "label_identifier", I9 = "src/parser/statement_parser.ml", P9 = 8335, C9 = 19903, N9 = 64310, Pv2 = "_", b7 = "for_init_declaration", FD2 = "infer", O9 = 64466, j9 = 43018, MD = "tokens", D9 = 92735, R92 = 66954, F92 = 65473, M92 = 70285, T7 = "sequence", L9 = "compare: functional value", q92 = 69890, d62 = 1e3, B9 = 65487, U9 = 42653, LD = "\\\\", qD = "%=", E7 = "match_member_pattern_base", X92 = 72367, S7 = "function_rest_param", BD = "/static/", G92 = 124911, Y9 = 65276, Jp3 = 126558, z9 = 11498, UD = 137, A72 = "export_default_declaration_decl", J92 = "cases", Kp3 = 126602, I72 = "jsx_child", Xe11 = "continue", K92 = 42962, XD = "importKind", e12 = 122, J32 = "Literal", P72 = "pattern_object_property_identifier_key", H92 = 42508, bo5 = "in", W92 = 55238, V92 = 67071, $92 = 70831, Q92 = 72161, Z9 = 67462, GD = "<<=", x_2 = 43009, r_2 = 66383, Hp3 = 67827, e_2 = 72202, t_2 = 69839, n_2 = 66775, YD = "-=", Cv2 = 8202, u_2 = 70105, i_2 = 120538, zD = -92, C72 = "for_in_left_declaration", f_2 = "rendersType", Wp3 = 126563, c_2 = 70708, Vp3 = 126523, JD2 = 166, N72 = "match_", KD = 202, s_2 = 110951, Ta3 = "component", $p3 = 126552, a_2 = 66977, o_2 = 213, O7 = "enum_member_identifier", HD = 210, j72 = "enum_bigint_body", WD = ">=", v_2 = 126495, l_2 = "specifiers", p_2 = "=", k_2 = 65338, y62 = "members", m_2 = 123535, h_2 = 43702, d_2 = 72767, Nv2 = "get", y_2 = 126633, Qp3 = 126536, __2 = 94098, w_2 = "types", g_2 = 113663, VD = "Internal Error: Found private field in object props", D7 = "jsx_element", b_2 = 70366, T_2 = 110959, Zp3 = 120655, $D = "trailingComments", QD = 282, To4 = 24029, ZD = -100, xR = 144, H24 = "yield", R72 = "binding_pattern", F72 = "typeof_identifier", rR = "ENOTEMPTY", xk = 126468, E_2 = 1255, S_2 = 120628, M72 = "pattern_object_property_string_literal_key", A_2 = 8521, eR = "leadingComments", tR = 8204, Eo3 = "@ ", I_ = 70319, Ea5 = "left", nR = 188, rk = "case", P_ = 19967, ek = 42622, C_ = 43492, N_ = 113770, L72 = "match_instance_pattern_constructor", O_ = 42774, j_ = 183, tk = 8468, q72 = "record_body", B7 = "class_implements", nk = 126579, K32 = "string", uR = 211, r23 = -48, D_ = 69926, R_ = 123213, U72 = "if_consequent_statement", F_ = 124927, H32 = "number", M_ = 126546, L_ = 68119, q_ = 70726, uk = 70750, B_ = 65489, iR = "SpreadElement", fR = "callee", cR = 193, U_ = 70492, X_ = 71934, sR = 164, G_ = 110580, Y_ = 12320, ik = "any", se11 = "/", X72 = "type_guard", w12 = "body", fk = 178, ge11 = "pattern", aR = "comment_bounds", oR = 297, G72 = "binding_type_identifier", z_ = 187, Y7 = "pattern_array_rest_element_pattern", ck = "@])", J_ = 12543, K_ = 11623, vR = "start", H_ = 67871, ae9 = "interface", W_ = 8449, V_ = 67637, $_ = 42961, sk = 120085, Q_ = 126463, lR = "alternate", pR = -1053382366, Z_ = 70143, kR = "--", xw = 68031, z72 = "jsx_expression", J72 = "type_identifier_reference", ak = 11647, rw = "proto", St12 = "identifier", ew = 43696, At12 = "raw", tw = 126529, nw = 11564, ok2 = 126557, uw = 64911, vk = 67592, iw = 43493, lk = 215, fw = 110588, _63 = 461894857, cw = 92927, sw = 67861, aw = 119980, ow = 43042, mR = -89, vw = 66965, lw = 67391, W32 = "computed", hR = "unreachable jsxtext", pw = 71167, kw = 42559, mw = 72966, dR = 180, hw = 197, pk = 64319, yR = 169, _R = "*", kk = 129, dw = 66335, w63 = "meta", yw = 43388, mk = 94178, ft10 = "optional", hk = "unknown", _w = 120121, ww = 123180, dk = 8469, gw = 68220, wR = "|", bw = 43187, Tw = 94207, Ew = 124895, yk = 120513, Sw = 42527, Ov = 8286, Aw = 94177, g62 = "var", K72 = "component_type_param", Iw = 66421, gR = 285, Pw = 92991, Cw = 68415, H72 = "comment", W72 = "match_pattern_array_element", jv = 244, _k = "^", Nw = 173791, bR = 136, Ow = 42890, jw = "ENOTDIR", Dw = "??", Rw = 43711, Fw = 66303, Mw = 113800, Lw = 42239, qw = 12703, V72 = "variance_opt", $72 = "+", TR = ">>>=", ER = 147, SR = 376, wk = "mixed", Bw2 = 65613, Uw = 73029, AR = 318, Xw = 68191, IR = "*=", gk = 8487, Gw = 8477, Q72 = "toplevel_statement_list", bk = "never", Tk = "do", So4 = 125, Yw = 72249, PR = "Pervasives.do_at_exit", CR = "visit_trailing_comment", Z72 = "jsx_closing_element", xu3 = "jsx_namespaced_name", zw = 124908, Jw = 126651, ru4 = "component_declaration", Kw = 15, eu4 = "interface_type", tu3 = "function_type_return_annotation", Hw = 64109, Ek = 65595, Sk = 126560, Ww = 110927, Ak = 65598, Ik = 8488, nu3 = "`.", NR = 175, Pk = "package", Ck = "else", Nk = 120771, Vw = 68023, OR = "fd ", Dv = 8238, Ok = 888960333, jk = 119965, $w = 42655, uu4 = "match_object_pattern", Qw = 11710, Zw = 119993, iu3 = "boolean_literal", jR = 290, fu4 = "statement_list", cu3 = "function_param", su3 = "match_as_pattern", au3 = "pattern_object_property_bigint_literal_key", Dk = 69959, xg2 = 120485, DR = 240, rg2 = 191456, ou3 = "declare_enum", Rk = 120597, Fk = 70281, vu4 = "type_annotation", lu4 = "spread_element", Mk = 126544, eg2 = 120069, en10 = "key", tg2 = 43583, ng2 = "out", ug2 = `
|
|
269124
269124
|
`, RR = "**=", pu2 = "pattern_object_property_pattern", ig2 = "e", fg2 = 72712, FR = "Internal Error: Found object private prop", cg2 = "ENOENT", sg2 = -42, ku3 = "jsx_opening_attribute", ag2 = 67646, mu3 = "component_type", og2 = 64296, vg2 = 43887, MR = "Division_by_zero", LR = "EnumDefaultedMember", hu4 = "typeof_member_identifier", lg2 = 43792, du4 = "match_member_pattern_property", yu5 = "declare_export_declaration_decl", pg2 = 93026, _u4 = "type_annotation_hint", kg2 = 42887, mg2 = 43881, hg2 = 43761, Lk = 8526, qR = 287, b63 = 119, dg2 = 43866, yg2 = 72847, _g2 = 8348, k12 = 101, wg2 = 94026, qk = 72272, BR = "src/parser/flow_lexer.ml", gg2 = 120744, Rv = 8191, V32 = "implies", Bk = 255, Uk = 11711, wu3 = "match_unary_pattern_argument", bg2 = 71235, UR = 288, Xk = 68116, cr8 = 100, gu4 = "match_expression", bu4 = "enum_body", Gk = 1114111, Tu5 = "assignment", Tg2 = 71955, Yk = 43260, Eu5 = "pattern_array_e", Eg2 = 126583, XR = "prefix", Su3 = "class_body", T62 = "shorthand", Sg2 = 171, Ag2 = 66256, zk = -97, GR = " =", Ig2 = 94032, Pg2 = 42606, Au3 = "match_case", Cg2 = 71839, Jk = 120134, Ng2 = 55291, Og2 = 92862, jg2 = 43019, Dg2 = 126543, $32 = "function", Rg2 = 111355, Fg2 = 11389, Mg2 = 70753, Lg2 = 43249, qg2 = 64829, Kk = "line", Iu4 = "function_declaration", Hk = "undefined", YR = "([^/]+)", Bg2 = 110947, Ug2 = 70002, zR = "Cygwin", Pu3 = "as_expression", Xg2 = 12591, Wk = 64285, Gg2 = 2048, Yg2 = 73112, Vk = 126589, JR = 225, $k = 43259, zg2 = 72817, Qk = 64318, KR = 172, HR = 209, Cu3 = "match_binding_pattern", Nu4 = " ", Ou5 = "import_source", E62 = "delete", WR = "Enum `", Zk = 126553, Jg2 = 67001, Fv2 = "default", Kg2 = 11630, Hg2 = 206, ju4 = "enum_bigint_member", Wg2 = 67504, x8 = 67593, Vg2 = 113791, VR = "MatchObjectPatternProperty", $g2 = 69572, Du4 = "typeof_type", $R = 212, QR = "%i", Ru4 = "function_this_param", Qg2 = 72329, Ao3 = "0x", Mv = 8239, Zg2 = 75075, ZR = 57343, Fu4 = "pattern_bigint_literal", xb2 = 12341, xF = 201, Lv = "hook", rF2 = ": closedir failed", rb2 = 42959, r8 = 119970, eb2 = 43560, eF = "||=", Mu4 = "member_private_name", tb2 = 120570, Lu4 = "object_key_identifier", e8 = 223, tF2 = "Not_found", qu4 = "record_static_property", nF2 = 230, Bu3 = "jsx_element_name_member_expression", Uu4 = "string_literal", nb2 = 120596, ub2 = 43807, ib2 = 69687, fb2 = 63743, t82 = 72192, Xu3 = "member_property", cb2 = 43262, Gu3 = "class_declaration", uF2 = "renders*", iF2 = "%Li", sb2 = 126578, Yu2 = "jsx_attribute", Q32 = 254, be10 = "empty", S62 = "label", zu3 = "object_internal_slot_property_type", n8 = 120133, ab2 = 43359, Ge11 = "predicate", fF2 = "??=", ob2 = 43697, vb2 = -43, Ju5 = "default_opt", cF2 = "the start of a statement", lb2 = 67826, Ku4 = "record_element", Hu3 = "object_", Wu2 = "class_element", u8 = 11631, i8 = 70855, Vu4 = "opaque_type", $u4 = "number_literal", sF2 = ", ", f8 = 8319, c8 = 120004, s8 = 133, Qu2 = "type_params", Zu2 = "pattern_object_rest_property", W24 = "import", pb2 = 72e3, kb2 = 67413, mb2 = 12343, hb2 = 70080, xi11 = "intersection_type", l24 = -36, db2 = 70005, A63 = "properties", yb2 = 11679, _b2 = 8483, wb2 = 110587, aF2 = 43520, ri10 = "computed_key", oF2 = 207, ei10 = "class_identifier", gb2 = "Invalid number ", ti10 = "function_param_pattern", qv = 12288, bb2 = 113817, Tb2 = 70730, Eb2 = 178207, a8 = 71236, Sb2 = 167, ni10 = "object_indexer_property_type", Ab2 = 64286, vF = "TypeAnnotation", lF2 = 220, ui11 = "type_identifier", ii10 = "spread_property", fi11 = "jsx_attribute_value_expression", Ib2 = 126519, o8 = 70108, v83 = 126, l8 = 42999, Sa2 = "prototype", Pb2 = " : flags Open_text and Open_binary are not compatible", pF = "**", p8 = 43823, Cb2 = ": Not a directory", ci10 = "render_type", k8 = 72349, Z32 = "test", Nb2 = 43776, Ob2 = 92879, jb2 = 11263, kF = 241, Db2 = 93052, si10 = "nullable_type", Rb2 = 43704, Fb2 = 64321, mF = "Property", Mb2 = 72191, hF = 165, I63 = "instanceof", Lb2 = 69247, dF = 302, Ye10 = "name", m8 = 126634, qb2 = 8516, h8 = "typeArguments", Bb2 = 71127, ai10 = "jsx_spread_attribute", Ub2 = 66559, Xb2 = 44031, Gb2 = 43645, e24 = 8233, Yb2 = 71494, zb2 = "opaque", d8 = 72967, Jb2 = 70106, oi10 = "logical", yF = "@[%s =@ ", P63 = "0o", y8 = 126554, Kb2 = 71351, _82 = 8484, Hb2 = 72242, w8 = 120687, xl6 = 252, Wb2 = 183983, C63 = "%S", vi11 = "function_this_param_type", _F = 292, g8 = "decorators", Vb2 = 43255, li10 = "catch_clause", ze11 = "-", $b2 = 67711, wF = ": file descriptor already closed", b8 = 64311, pi11 = "record_declaration", T8 = 120539, Qb2 = "arguments", E8 = 73062, Zb2 = 173823, xT = 42124, rT = 72095, eT = 125259, tT = 42969, S8 = 70280, gF = 12520, nT = 69749, uT = 70066, ki10 = "binary", mi11 = "for_in_statement", iT = 43010, bF = "^=", fT = 126570, hi11 = "for_statement", A8 = 126584, di11 = "function_return_annotation", cT = 72144, sT = 8505, TF = -101, yi10 = "class_expression", aT = 120076, oT = 69807, vT = 40981, lT = -24976191, pT = 72768, kT = 126550, I8 = '"', _i9 = "call_type_arg", EF = "f", Bv2 = "this", P8 = 126628, SF = "===", AF = 56320, wi10 = "declare_module_exports", mT = 120512, p24 = 105, hT = 119974, dT = 71450, yT = 71942, IF = 195, C8 = 120629, PF = "/=", CF = ">>", gi11 = "declare_interface", NF = 4096, bi11 = "pattern_array_rest_element", _T = 71338, N8 = 126520, Ti11 = "as_const_expression", OF = "Popping lex mode from empty stack", jF = "renders?", wT = 68405, Ei10 = "member", Si11 = "class_extends", Uv2 = 12287, O8 = 126590, gT = 66377, DF = "fields", Io5 = "async", Ai9 = "pattern_array_element", rl5 = 240, RF = 308, bT = 69864, Xv = "readonly", TT = 70460, ET = 120779, ST = 66378, Ii8 = "new_", j82 = 126551, Pi8 = "pattern_object_rest_property_pattern", Ci8 = "for_statement_init", AT = 43595, D8 = 68296, FF = 148, MF = "\0\0\0\0", IT = 120712, PT = 64217, CT = 69295, LF = "||", NT = ";", OT = 70461, jT = 66939, DT = "record", qF = "collect_comments", BF = 279, Ni9 = "generic_type", RT = 68295, FT = 44002, R82 = 72162, Oi9 = "object_call_property_type", F82 = 8305, M82 = 119995, L82 = "with", ji7 = "class_property", UF = "qualification", Di8 = "jsx_attribute_name_namespaced", Ri8 = "if_statement", Fi8 = "typeof_qualified_identifier", XF = 238, MT = 65615, GF = 176, t26 = "expression", q82 = 126559, Mi7 = "jsx_attribute_value", Li8 = "<2>", qi8 = "component_param", B8 = "Map.bal", N63 = 132, LT = 70412, qT = 70440, YF = "<<", U82 = "finally", zF = "v", Bi8 = "syntax_opt", Ui8 = "meta_property", BT = 12447, UT = 67514, X82 = 12448, Xi9 = "object_mapped_type_property", Gv = "operator", JF = "closedir", Gi8 = "unary_expression", XT = 126588, GT = 70851, Yi9 = "export_batch_specifier", el5 = "renders", KF = 226, YT = 73111, HF = 221, rx2 = "", zT = 66927, JT = 64967, KT = "elements", HT = 67640, WT = 43754, zi8 = "declare_export_declaration", G82 = -26065557, VT = 65855, O62 = "boolean", Aa3 = "typeof", $T = 124902, WF = 139, QT = 65629, VF = 224, ZT = 43123, Y8 = 70449, xE = 12735, Te10 = 107, z82 = 11719, $F = "!=", Ji7 = "call_type_args", tl4 = "asserts", Po5 = -46, rE = "namespace", Ki9 = "match_pattern", Hi10 = "for_of_statement_lhs", J82 = 126504, eE = 69505, K82 = "for", tE = 72703, H82 = 120127, W82 = 43471, nE = 93047, QF = "Undefined_recursive_module", ZF = 2147483647, Wi8 = "template_literal_element", xM = "Unexpected ", uE = 101631, iE = 65497, V82 = 68120, Vi8 = "import_default_specifier", tn8 = "array", rM = "expressions", fE = 110930, eM = 204, $i9 = "while_", Qi9 = "function_rest_param_type", Co3 = 63, cE = 77808, tM = "Unexpected token `", k24 = 114, Zi8 = "pattern_object_p", sE = 65140, aE = 123190, xf4 = "pattern_object_property_number_literal_key", j63 = "enum", rf3 = "conditional_type", ef3 = 113, tf3 = "array_type", nM = "minus", oE = 43790, nf3 = "do_while", vE = 11567, lE = 11694, D62 = 256, pE = 119976, uf3 = "component_body", nn10 = 111, kE = 177976, $82 = 67644, mE = 73439, R63 = 951901561, uM = "?", iM = ")", Q82 = 43867, Z82 = 65575, hE = 69445, fM = "FunctionTypeParam", xm3 = 119996, dE = 65019, ff3 = "conditional", yE = 11505, cM = 135, _E = 71295, wE = 12799, gE = 67382, cf3 = "type_guard_annotation", sf3 = "object_key_computed", un8 = 123, af3 = "pattern_object_property_key", bE = 119892, TE = 67505, EE = 66962, of8 = "with_", SE = 43273, vf4 = "interface_declaration", rm4 = "bool", AE = 71945, IE = "declaration", PE = 11519, F63 = ">", CE = 66771, em3 = "}", sM = 8472, NE = 43014, lf3 = "declare_function", Gr9 = 127, OE = "RestElement", jE = 190, DE = 8467, aM = "module", tm3 = 126522, oM = "Sys_blocked_io", pf3 = "jsx_opening_element", kf4 = "object_key_number_literal", mf3 = "match_instance_pattern", vM = "|=", lM = "mixins", RE = 205, pM = 217, nm3 = "if", kM = "+=", hf3 = "match_object_pattern_property_key", df3 = "match_rest_pattern", yf3 = "export_named_declaration_specifier", um3 = "try", im3 = "_bigarr02", FE = 70479, fn10 = "right", ME = 245, LE = 11718, _f4 = "tuple_labeled_element", mM = "TypeParameterInstantiation", qE = "mkdir", BE = 71999, UE = 870530776, hM = "@[", dM = -908856609, yM = 331416730, XE = 11670, GE = 66735, YE = 43709, fm3 = 43642, zE = 67002, JE = 69375, wf3 = "function_body_any", KE = 119807, _M = "Assert_failure", gf3 = "function_identifier", HE = 65479, M63 = 131, Yv = "new", bf3 = "for_of_left_declaration", WE = 120084, VE = 100343, $E = 73030, cm3 = 70452, sm3 = 134, QE = 253, ZE = 42954, wM = 227, Tf3 = "jsx_member_expression_object", Ef3 = "class_property_value", xS = 120144, gM = 314, rS = 66994, nl5 = "set", eS = 126498, Sf3 = "tuple_element", Af3 = "arg_list", tS = 65481, nS = 8511, uS = 42964, iS = 11492, am3 = 126555, fS = 71039, cS = "exportKind", If4 = "program", sS = 70187, bM = 173, It11 = "as", zv2 = 124, TM = "visit_leading_comment", aS = 110575, Pf4 = "class_", oS2 = 72440, vS = 67897, EM = 235, lS = 8543, SM = 141, Cf4 = 120, Nf3 = "match_object_pattern_property", L63 = 1024, pS = 101640, AM = 1027, IM = 236, ul6 = 246, PM = "(", kS = 66511, Of3 = "regexp_literal", mS = 65574, hS = 43513, dS = 43695, CM = "&&", om3 = 11558, yS = 66503, _S = 93071, jf3 = "pattern_expression", wS = 65381, vm3 = 126538, gS = 12292, Df4 = "import_namespace_specifier", bS = 67583, TS = 120137, ES = 69622, SS = 120770, AS = 71131, Jv = 8287, IS = 110590, PS = 65135, CS = "Fatal error: exception ", q63 = 118, NS = 181, lm3 = 11687, m24 = "camlinternalFormat.ml", OS2 = 72959, jS = 249, Rf4 = "union_type", NM = 8206, DS = 73064, RS = 70271, FS = 92728, pm3 = 65344, km3 = 11695, Ff3 = "class_decorator", OM = "the end of an expression statement (`;`)", MS = 177983, LS = 8457, jM = 931, qS = 66499, BS = 94175, DM = "#", US = "Identifier", Mf4 = "for_in_statement_lhs", Lf3 = "pattern_string_literal", mm3 = 70302, hm3 = 126496, XS = 66461, GS = 82943, dm3 = 8450, YS = 72271, zS = 70853, JS = "of", RM = "Stack_overflow", B63 = "hasUnknownMembers", U63 = "a", qf3 = "variable_declarator_pattern", KS = 73061, HS = 77711, ym3 = 64317, WS = 73097, FM = 269, Bf3 = "enum_declaration", VS = 66966, $S = 189, QS = 119964, Uf3 = "type_param", cn9 = 782176664, _m3 = 65535, MM = -10, ZS = 64433, wm3 = 43815, gm3 = 94031, bm3 = 73065, xA = 69958, LM = 145, Tm3 = "property", Xf = "jsx_children", Gf3 = "member_property_identifier", rA = 42537, No3 = "const", eA = 70278, Yf3 = "enum_string_member", X63 = "local", zf3 = "jsx_element_name_identifier", tA = 68223, Em3 = "", nA = 119967, Sm3 = 119994, uA = 66993, Jf2 = "jsx_member_expression_identifier", Am3 = "explicitType", iA = 67589, fA = 65597, cA = "exported", sA = 94111, aA = 113775, Kf2 = "object_spread_property_type", oA = 64847, Hf = "component_identifier", Wf3 = "class_implements_interface", qM = 162, BM = 243, vA = 12783, UM = `Fatal error: exception %s
|
|
269125
|
-
`, Im3 = 120093, G63 = "column", Vf3 = "component_rest_param", XM = "methods", lA = 70451, pA = 70312, kA = 69967, Pm3 = 70279, mA = 66463, hA = 92975, Cm3 = 70286, $f3 = "pattern_object_property_computed_key", Qf2 = "object_key_string_literal", dA = "jsError", Zf2 = "type_args", yA = 8304, GM = "==", wr6 = 115, xc3 = "declare_component", _A = 120092, wA = 43638, gA = 66811, Ia5 = -87, bA = 43334, TA = 66863, EA = 77823, YM = 143, rc3 = "optional_call", SA = 126562, Nm3 = 70162, ec3 = 104, zM = "static ", AA = 66963, Kv = "await", Om3 = 70107, V24 = "0", IA = 72250, PA = 8507, CA = 100351, jm3 = "AssignmentPattern", tc3 = "type", JM = "%u", NA = "NonNullExpression", nc4 = "function_expression_or_method", OA = 43470, KM = 146, HM = 242, WM = "camlinternalMod.ml", uc3 = "match_or_pattern", jA = 72750, DA = 69414, RA = 65370, ic3 = "syntax", VM = 32752, FA = 42963, $M = "End_of_file", MA = 12294, LA = 8471, QM = "elementType", qA = 43782, ZM = "++", BA = 43641, UA = 71944, fc3 = "record_property", XA = 126601, GA = 78894, xL = -45, Hv = "null", rL = 177, eL = "satisfies", YA = 131071, cc4 = "import_specifier", sc3 = "class_method", ac3 = "type_", zA = 126514, JA = 8454, tL = "inexact", KA = 67807, HA = 8525, WA = 65470, VA = 71352, oc4 = "tuple_spread_element", nL = 219, $A = "abstract", QA = 73458, Je11 = "return", Y63 = 65536, Dm3 = 126548, vc4 = "array_element", ZA = -253313196, xI = 186, Rm3 = "catch", lc3 = "infer_type", rI = 12295, uL = "Invalid legacy octal ", eI = 69762, tI = 43311, nI = 65437, pc3 = "variable_declaration", iL = -696510241, kc3 = "function_params", uI = 64316, fL = 311, Fm3 = 11565, cL = "infinity", iI = "@]", fI = 65908, mc3 = "extends", cI = 66204, sI = 43784, aI = 11742, Mm3 = 126503, Ke12 = "debugger", oI = 70457, z63 = 912068366, vI = 68786, Lm3 = "keyof", qm3 = 69415, lI = 12686, sn9 = 127343600, hc3 = "declare_type_alias", sL = "the", aL = 233, dc3 = "jsx_element_name_namespaced", pI = 72283, kI = 161, yc3 = "class_static_block", _c3 = "function_param_type", Pt12 = 128, mI = -673950933, Bm3 = 126591, oL = "Sys_error", hI = 74649, dI = 74862, J63 = "is", yI = 43738, _I = 68479, vL = 196, Um3 = 70854, wc3 = "enum_boolean_member", Xm3 = 72163, wI = 92783, lL = 281, gc3 = "component_param_name", gI = 68863, an8 = 32768, pL = 2048, bI = 64284, kL = "@{", TI = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", Gm3 = 8455, bc4 = "update_expression", mL = 276, EI = 65500, K63 = "from", SI = 68447, Ym3 = 12592, AI = 92766, hL = ">>=", n23 = 110, II = 66431, PI = 43586, Tc4 = "jsx_identifier", CI = " : file already exists", R12 = 128, NI = 71958, OI = 66717, Ec4 = "enum_boolean_body", jI = 64262, Yr10 = "id", Sc4 = "component_renders_annotation", DI = 42888, RI = 8584, FI = 73008, Ac3 = "enum_symbol_body", Ic3 = "declare_namespace", zm3 = 72713, MI = 55215, Pc3 = "object_property_value_type", Cc3 = "match_wildcard_pattern", Nc3 = "for_in_assignment_pattern", Jm3 = 8485, LI = 43395, qI = 229, Pa5 = "true", BI = 43743, Oc3 = "enum_number_member", dL = 234, UI = 72969, yL = "expected *", Ee9 = 102, _L = 200, H63 = "symbol", Wv = "source", jc2 = "tparam_const_modifier", XI = 43714, Dc2 = "jsx_fragment", Rc3 = "jsx_attribute_name_identifier", W63 = "public", GI = 43442, Fc2 = "pattern_object_property", YI = 65786, zI = 70783, JI = 43713, KI = 72160, wL = "*-/", Mc2 = "export_named_specifier", Lc2 = "arrow_function", HI = 122623, Km3 = 70006, gL = "${", WI = 43814, qc3 = "generic_qualified_identifier_type", VI = 199, Bc2 = "jsx_spread_child", Hm3 = 8489, Wm3 = 184, bL = 2047, $I = 66955, Uc2 = "try_catch", QI = 70497, TL = 313, EL = 237, ZI = 67431, xP = 125183, SL = -602162310, on7 = "params", rP = "consequent", eP = 68029, tP = 67829, nP = 68095, Xc2 = "enum_string_body", uP = 93823, iP = 68351, fP = 65495, Gc2 = "declare_module", Yc3 = "match_as_pattern_target", zc3 = "body_expression", cP = 66175, sP = 191, Vm4 = 70441, $m3 = 65141, Qm3 = "&", Jc2 = "super_expression", Zm3 = 126564, aP = 72105, LI0 = "fs", He10 = "throw", oP = 68287, vP = 67839, Ca3 = 116, lP = 110882, pP = 69404, kP = 123197, Vv = 65279, il7 = "src/parser/type_parser.ml", mP = 68115, xh2 = 126547, rh2 = 126556, hP = 73055, Kc2 = "member_property_expression", Hc2 = "enum_defaulted_member", dP = 43071, yP = 11726, Wc2 = "component_type_rest_param", _P = 68607, Vc3 = "object_key", AL = 160, $24 = "variance", wP = 70655, gP = 70414, fl6 = "super", bP = 123583, TP = 65594, V63 = "method", EP = 73648, $63 = 121, SP = 93951, $c2 = "pattern_array_element_pattern", AP = 43764, IP = 42993, eh2 = 120145, PP = 74879, IL = 168, th2 = 8486, CP = 72001, Qc2 = "tagged_template", Zc2 = "module_ref_literal", NP = 65312, Oo5 = "implements", OP = 43700, jP = 120003, PL = "Invalid_argument", xs8 = 16777215, DP = 83526, nh2 = 69744, uh2 = 12336, rs8 = "switch_case", CL = -61, es8 = "optional_member", RP = 64274, ih2 = 64322, fh2 = 126530, FP = 71998, ch2 = 72970, MP = 13311, LP = 73647, qP = 120074, cl6 = "let", NL = "global", ts8 = "expression_statement", ns8 = "component_type_params", BP = 512, UP = 69634, XP = 67461, GP = 123627, YP = 64913, OL = "children", jL = "PropertyDefinition", DL = 1026, RL = "%li", us8 = "declare_class", zP = 43258, is9 = "indexed_access_type", JP = 124926, h24 = 112, KP = "b",
|
|
269125
|
+
`, Im3 = 120093, G63 = "column", Vf3 = "component_rest_param", XM = "methods", lA = 70451, pA = 70312, kA = 69967, Pm3 = 70279, mA = 66463, hA = 92975, Cm3 = 70286, $f3 = "pattern_object_property_computed_key", Qf2 = "object_key_string_literal", dA = "jsError", Zf2 = "type_args", yA = 8304, GM = "==", wr6 = 115, xc3 = "declare_component", _A = 120092, wA = 43638, gA = 66811, Ia5 = -87, bA = 43334, TA = 66863, EA = 77823, YM = 143, rc3 = "optional_call", SA = 126562, Nm3 = 70162, ec3 = 104, zM = "static ", AA = 66963, Kv = "await", Om3 = 70107, V24 = "0", IA = 72250, PA = 8507, CA = 100351, jm3 = "AssignmentPattern", tc3 = "type", JM = "%u", NA = "NonNullExpression", nc4 = "function_expression_or_method", OA = 43470, KM = 146, HM = 242, WM = "camlinternalMod.ml", uc3 = "match_or_pattern", jA = 72750, DA = 69414, RA = 65370, ic3 = "syntax", VM = 32752, FA = 42963, $M = "End_of_file", MA = 12294, LA = 8471, QM = "elementType", qA = 43782, ZM = "++", BA = 43641, UA = 71944, fc3 = "record_property", XA = 126601, GA = 78894, xL = -45, Hv = "null", rL = 177, eL = "satisfies", YA = 131071, cc4 = "import_specifier", sc3 = "class_method", ac3 = "type_", zA = 126514, JA = 8454, tL = "inexact", KA = 67807, HA = 8525, WA = 65470, VA = 71352, oc4 = "tuple_spread_element", nL = 219, $A = "abstract", QA = 73458, Je11 = "return", Y63 = 65536, Dm3 = 126548, vc4 = "array_element", ZA = -253313196, xI = 186, Rm3 = "catch", lc3 = "infer_type", rI = 12295, uL = "Invalid legacy octal ", eI = 69762, tI = 43311, nI = 65437, pc3 = "variable_declaration", iL = -696510241, kc3 = "function_params", uI = 64316, fL = 311, Fm3 = 11565, cL = "infinity", iI = "@]", fI = 65908, mc3 = "extends", cI = 66204, sI = 43784, aI = 11742, Mm3 = 126503, Ke12 = "debugger", oI = 70457, z63 = 912068366, vI = 68786, Lm3 = "keyof", qm3 = 69415, lI = 12686, sn9 = 127343600, hc3 = "declare_type_alias", sL = "the", aL = 233, dc3 = "jsx_element_name_namespaced", pI = 72283, kI = 161, yc3 = "class_static_block", _c3 = "function_param_type", Pt12 = 128, mI = -673950933, Bm3 = 126591, oL = "Sys_error", hI = 74649, dI = 74862, J63 = "is", yI = 43738, _I = 68479, vL = 196, Um3 = 70854, wc3 = "enum_boolean_member", Xm3 = 72163, wI = 92783, lL = 281, gc3 = "component_param_name", gI = 68863, an8 = 32768, pL = 2048, bI = 64284, kL = "@{", TI = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", Gm3 = 8455, bc4 = "update_expression", mL = 276, EI = 65500, K63 = "from", SI = 68447, Ym3 = 12592, AI = 92766, hL = ">>=", n23 = 110, II = 66431, PI = 43586, Tc4 = "jsx_identifier", CI = " : file already exists", R12 = 128, NI = 71958, OI = 66717, Ec4 = "enum_boolean_body", jI = 64262, Yr10 = "id", Sc4 = "component_renders_annotation", DI = 42888, RI = 8584, FI = 73008, Ac3 = "enum_symbol_body", Ic3 = "declare_namespace", zm3 = 72713, MI = 55215, Pc3 = "object_property_value_type", Cc3 = "match_wildcard_pattern", Nc3 = "for_in_assignment_pattern", Jm3 = 8485, LI = 43395, qI = 229, Pa5 = "true", BI = 43743, Oc3 = "enum_number_member", dL = 234, UI = 72969, yL = "expected *", Ee9 = 102, _L = 200, H63 = "symbol", Wv = "source", jc2 = "tparam_const_modifier", XI = 43714, Dc2 = "jsx_fragment", Rc3 = "jsx_attribute_name_identifier", W63 = "public", GI = 43442, Fc2 = "pattern_object_property", YI = 65786, zI = 70783, JI = 43713, KI = 72160, wL = "*-/", Mc2 = "export_named_specifier", Lc2 = "arrow_function", HI = 122623, Km3 = 70006, gL = "${", WI = 43814, qc3 = "generic_qualified_identifier_type", VI = 199, Bc2 = "jsx_spread_child", Hm3 = 8489, Wm3 = 184, bL = 2047, $I = 66955, Uc2 = "try_catch", QI = 70497, TL = 313, EL = 237, ZI = 67431, xP = 125183, SL = -602162310, on7 = "params", rP = "consequent", eP = 68029, tP = 67829, nP = 68095, Xc2 = "enum_string_body", uP = 93823, iP = 68351, fP = 65495, Gc2 = "declare_module", Yc3 = "match_as_pattern_target", zc3 = "body_expression", cP = 66175, sP = 191, Vm4 = 70441, $m3 = 65141, Qm3 = "&", Jc2 = "super_expression", Zm3 = 126564, aP = 72105, LI0 = "fs", He10 = "throw", oP = 68287, vP = 67839, Ca3 = 116, lP = 110882, pP = 69404, kP = 123197, Vv = 65279, il7 = "src/parser/type_parser.ml", mP = 68115, xh2 = 126547, rh2 = 126556, hP = 73055, Kc2 = "member_property_expression", Hc2 = "enum_defaulted_member", dP = 43071, yP = 11726, Wc2 = "component_type_rest_param", _P = 68607, Vc3 = "object_key", AL = 160, $24 = "variance", wP = 70655, gP = 70414, fl6 = "super", bP = 123583, TP = 65594, V63 = "method", EP = 73648, $63 = 121, SP = 93951, $c2 = "pattern_array_element_pattern", AP = 43764, IP = 42993, eh2 = 120145, PP = 74879, IL = 168, th2 = 8486, CP = 72001, Qc2 = "tagged_template", Zc2 = "module_ref_literal", NP = 65312, Oo5 = "implements", OP = 43700, jP = 120003, PL = "Invalid_argument", xs8 = 16777215, DP = 83526, nh2 = 69744, uh2 = 12336, rs8 = "switch_case", CL = -61, es8 = "optional_member", RP = 64274, ih2 = 64322, fh2 = 126530, FP = 71998, ch2 = 72970, MP = 13311, LP = 73647, qP = 120074, cl6 = "let", NL = "global", ts8 = "expression_statement", ns8 = "component_type_params", BP = 512, UP = 69634, XP = 67461, GP = 123627, YP = 64913, OL = "children", jL = "PropertyDefinition", DL = 1026, RL = "%li", us8 = "declare_class", zP = 43258, is9 = "indexed_access_type", JP = 124926, h24 = 112, KP = "b", fs9 = "predicate_expression", cs7 = "if_alternate_statement", Q63 = "private", FL = -594953737, ML = 140, HP = "nan", WP = 72103, sh2 = 11735, ss9 = "statement", VP = "rmdir", ah2 = 66512, $P = "match", QP = 198, ZP = 11734, as19 = "import_named_specifier", xC = 69599, rC = 68799, eC = 194559, os7 = "match_array_pattern", LL = 174, vs9 = "function_", ls7 = "bigint_literal", t110 = 248, oh2 = 67638, vh2 = 126539, tC = 11557, qL = 214, nC = 5760, We12 = "break", vn7 = "block", ps7 = "match_member_pattern", uC = 123565, iC = 66815, m12 = "value", BL = 1039100673, fC = 69746, cC = 70448, sC = 74751, ks8 = "init", aC = 69551, lh2 = 65548, ms8 = "jsx_member_expression", ph2 = 68096, d24 = 108, kh2 = 126521, oC = 71487, hs8 = "match_statement", vC = 178205, lC = 12548, UL = " : is a directory", ln9 = ".", pC = 12348, sl6 = -835925911, B24 = "typeParameters", kC = 66855, Y12 = "typeAnnotation", $v = "bigint", ds7 = "jsx_attribute_value_literal", mh2 = 194, XL = "T_JSX_TEXT", mC = 68466, hh2 = 126537, GL = 67714067, hC = 69487, dh2 = "export", dC = 43822, yh2 = 126499, yC = 55242, ys8 = "member_type_identifier", YL = 138, _C = 71679, Qv = 130, wC = 12438, gC = 119969, zL = 298, _h2 = 12539, bC = 119972, JL = ",", TC = 71423, EC = "index out of bounds", Ct12 = 106, al6 = "%d", KL = "T_RENDERS_QUESTION", wh2 = 120571, gh2 = "returnType", SC = 69423, bh = 120070, HL = "%", Z63 = 117, AC = 179, IC = "EBADF", PC = 93759, Th2 = 64325, _s7 = "component_params", CC = 66517, NC = 67423, OC = 605857695, jC = 43518, WL = 251, ws8 = "for_of_statement", DC = 71983, VL = "~", RC = 12442, Ve9 = "switch", FC = 66207, Eh2 = 126535, $L = "&&=", MC = 69289, LC = 71723, gs7 = "generic_identifier_type", qC = 126619, bs8 = "object_type_property_setter", BC = 70418, QL = "<=", UC = 125251, XC = 11702, Ts6 = "enum_number_body", ol7 = 250, GC = 124910, YC = 69297, zC = 67455, JC = 42511, Es8 = "ts_satisfies", ZL = 268, KC = 68324, Sh2 = "an identifier", HC = 126534, Ss8 = 103, WC = 120126, jo4 = 449540197, x43 = "declare", VC = 68899, $C = 126502, As8 = "function_expression", xq = 142, QC = 123135, ZC = 67967, xN = 120487, rN = 120686, Is8 = "export_named_declaration", eN = 66348, Ah2 = 119981, tN = 12352, Ps9 = "tuple_type", nN = 68680, Ih2 = "target", Cs6 = "call";
|
|
269126
269126
|
function Ez(x11, r11, e11, t27, u) {
|
|
269127
269127
|
if (t27 <= r11) for (var i = 1; i <= u; i++) e11[t27 + i] = x11[r11 + i];
|
|
269128
269128
|
else for (var i = u; i >= 1; i--) e11[t27 + i] = x11[r11 + i];
|
|
@@ -271211,7 +271211,7 @@ var init_flow = __esm({
|
|
|
271211
271211
|
function XJ(x11, r11, e11, t27, u, i, c11, v11) {
|
|
271212
271212
|
return (x11.l >= 0 ? x11.l : x11.l = x11.length) == 7 ? x11(r11, e11, t27, u, i, c11, v11) : Os7(x11, [r11, e11, t27, u, i, c11, v11]);
|
|
271213
271213
|
}
|
|
271214
|
-
var D10 = void 0, NN = [t110, cD2, -1], Lq = [t110, oL, -2], mn8 = [t110, sy2, -3], Kh2 = [t110, PL, -4], Ds8 = [t110, tF2, -7], qq = [t110, dD2, -8], Bq = [t110, RM, -9], Nr7 = [t110, _M, -11], s42 = [t110, QF, -12], GJ = [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, 0]]], ON = [0, [11, 'File "', [2, 0, [11, '", line ', [4, 0, 0, 0, [11, mD2, [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, [11, ": ", [2, 0, 0]]]]]]]]]], 'File "%s", line %d, characters %d-%d: %s'], dl6 = [0, 0, [0, 0, 0], [0, 0, 0]], Lo4 = [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], Uq = [0, "first_leading", "last_trailing"], Xq = [0, Af3, tn8, vc4, tf3, Lc2, Ti11, Pu3, Tu5, u7, ls7, ki10, R72, G72, vn7, zc3, iu3, We12, Cs6, _i9, Ji7, l7, li10, c7, Pf4, Su3, Gu3, Ff3, Wu2, yi10, Si11, ei10, B7, Wf3, sc3, y7, ji7, Ef3, yc3, H72, uf3, ru4, Hf, qi8, gc3, Jn9, _s7, Sc4, Vf3, mu3, K72, ns8, Wc2, ri10, ff3, rf3, Xe11, Ke12, us8, xc3, ou3, zi8, yu5, lf3, gi11, Gc2, wi10, Ic3, hc3, qn8, Ju5, nf3, be10, j72, ju4, bu4, Ec4, wc3, Bf3, Hc2, O7, Ts6, Oc3, Xc2, Yf3, Ac3, Yi9, Yn7, A72, Is8, yf3, Mc2, Un8, t26, p7, ts8, Nc3, C72, mi11, Mf4, b7, v72, bf3, ws8, Hi10, hi11, Ci8, vs9, Qn8, wf3, Iu4, As8, nc4, gf3, cu3, ti10, _c3, kc3, S7, Qi9, di11, Ru4, vi11, i7, tu3, gs7, qc3, Ni9, St12, cs7, U72, Ri8, W24, Gn8, Vi8, as19, Df4, Ou5, cc4, is9, lc3, ae9, vf4, eu4, xi11, Yu2, zn9, Rc3, Di8, Mi7, fi11, ds7, I72, Xf, Z72, D7, f7, zf3, Bu3, dc3, z72, Dc2, Tc4, ms8, Jf2, Tf3, xu3, ku3, pf3, ai10, Bc2, Hn8, g7, G12, oi10, N72, os7, su3, Yc3, Cu3, Au3, gu4, mf3, L72, ps7, E7, du4, uu4, Nf3, hf3, uc3, Ki9, W72, df3, hs8, Kn10, wu3, Cc3, Ei10, Mu4, Xu3, Kc2, Gf3, ys8, Ui8, Zc2, Ii8, n7, si10, $u4, Hu3, Oi9, ni10, zu3, Vc3, Xn9, sf3, Lu4, kf4, Qf2, Xi9, r7, Vn7, Pc3, Kf2, o7, e7, Wn8, bs8, Vu4, rc3, x72, es8, ge11, Eu5, Ai9, $c2, bi11, Y7, Fu4, jf3, Bn7, m7, Zi8, Fc2, au3, $f3, P72, af3, xf4, pu2, M72, Zu2, Pi8, Lf3, Ge11,
|
|
271214
|
+
var D10 = void 0, NN = [t110, cD2, -1], Lq = [t110, oL, -2], mn8 = [t110, sy2, -3], Kh2 = [t110, PL, -4], Ds8 = [t110, tF2, -7], qq = [t110, dD2, -8], Bq = [t110, RM, -9], Nr7 = [t110, _M, -11], s42 = [t110, QF, -12], GJ = [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, 0]]], ON = [0, [11, 'File "', [2, 0, [11, '", line ', [4, 0, 0, 0, [11, mD2, [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, [11, ": ", [2, 0, 0]]]]]]]]]], 'File "%s", line %d, characters %d-%d: %s'], dl6 = [0, 0, [0, 0, 0], [0, 0, 0]], Lo4 = [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], Uq = [0, "first_leading", "last_trailing"], Xq = [0, Af3, tn8, vc4, tf3, Lc2, Ti11, Pu3, Tu5, u7, ls7, ki10, R72, G72, vn7, zc3, iu3, We12, Cs6, _i9, Ji7, l7, li10, c7, Pf4, Su3, Gu3, Ff3, Wu2, yi10, Si11, ei10, B7, Wf3, sc3, y7, ji7, Ef3, yc3, H72, uf3, ru4, Hf, qi8, gc3, Jn9, _s7, Sc4, Vf3, mu3, K72, ns8, Wc2, ri10, ff3, rf3, Xe11, Ke12, us8, xc3, ou3, zi8, yu5, lf3, gi11, Gc2, wi10, Ic3, hc3, qn8, Ju5, nf3, be10, j72, ju4, bu4, Ec4, wc3, Bf3, Hc2, O7, Ts6, Oc3, Xc2, Yf3, Ac3, Yi9, Yn7, A72, Is8, yf3, Mc2, Un8, t26, p7, ts8, Nc3, C72, mi11, Mf4, b7, v72, bf3, ws8, Hi10, hi11, Ci8, vs9, Qn8, wf3, Iu4, As8, nc4, gf3, cu3, ti10, _c3, kc3, S7, Qi9, di11, Ru4, vi11, i7, tu3, gs7, qc3, Ni9, St12, cs7, U72, Ri8, W24, Gn8, Vi8, as19, Df4, Ou5, cc4, is9, lc3, ae9, vf4, eu4, xi11, Yu2, zn9, Rc3, Di8, Mi7, fi11, ds7, I72, Xf, Z72, D7, f7, zf3, Bu3, dc3, z72, Dc2, Tc4, ms8, Jf2, Tf3, xu3, ku3, pf3, ai10, Bc2, Hn8, g7, G12, oi10, N72, os7, su3, Yc3, Cu3, Au3, gu4, mf3, L72, ps7, E7, du4, uu4, Nf3, hf3, uc3, Ki9, W72, df3, hs8, Kn10, wu3, Cc3, Ei10, Mu4, Xu3, Kc2, Gf3, ys8, Ui8, Zc2, Ii8, n7, si10, $u4, Hu3, Oi9, ni10, zu3, Vc3, Xn9, sf3, Lu4, kf4, Qf2, Xi9, r7, Vn7, Pc3, Kf2, o7, e7, Wn8, bs8, Vu4, rc3, x72, es8, ge11, Eu5, Ai9, $c2, bi11, Y7, Fu4, jf3, Bn7, m7, Zi8, Fc2, au3, $f3, P72, af3, xf4, pu2, M72, Zu2, Pi8, Lf3, Ge11, fs9, _72, If4, a7, q72, pi11, Ku4, fc3, qu4, Of3, w72, ci10, Je11, T7, lu4, ii10, ss9, k72, fu4, Uu4, Jc2, Ve9, rs8, ic3, Bi8, Qc2, s7, Wi8, t72, He10, Q72, jc2, Uc2, Es8, Sf3, _f4, oc4, Ps9, ac3, $n8, vu4, _u4, Zf2, Zn10, X72, cf3, ui11, J72, Uf3, Qu2, d7, F72, hu4, Fi8, Du4, Gi8, Rf4, bc4, pc3, h7, qf3, $24, V72, $i9, of8, H24], hn9 = [0, 0, 0];
|
|
271215
271215
|
Dt10(11, s42, QF), Dt10(10, Nr7, _M), Dt10(9, [t110, oM, MM], oM), Dt10(8, Bq, RM), Dt10(7, qq, dD2), Dt10(6, Ds8, tF2), Dt10(5, [t110, MR, -6], MR), Dt10(4, [t110, $M, -5], $M), Dt10(3, Kh2, PL), Dt10(2, mn8, sy2), Dt10(1, Lq, oL), Dt10(0, NN, cD2);
|
|
271216
271216
|
function L12(x11) {
|
|
271217
271217
|
if (typeof x11 == "number") return 0;
|
|
@@ -274398,8 +274398,8 @@ var init_flow = __esm({
|
|
|
274398
274398
|
}, 0, r11[1]);
|
|
274399
274399
|
};
|
|
274400
274400
|
}
|
|
274401
|
-
var KV = "Array.sub", HV = "first domain already spawned", WV = [0, "camlinternalOO.ml", BF, 50], VV = [0, WM, 72, 5], $V = [0, WM, 81, 2], QV = "/tmp", ZV = ln9, x$ = [0, "src/wtf8.ml", 65, 9], r$ = [0, "src/third-party/sedlex/flow_sedlexing.ml", jS, 4], e$ = "Flow_sedlexing.MalFormed", t$ = O62, n$ = H32, u$ = K32, i$ = H63, f$ = $v, c$ = [0, [12, 40, [18, [1, [0, [11, Li8, 0], Li8]], [11, "File_key.LibFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.LibFile@ "], s$ = [0, [3, 0, 0], C63], a$ = [0, [17, 0, [12, 41, 0]], ck], o$ = [0, [12, 40, [18, [1, [0, [11, Li8, 0], Li8]], [11, "File_key.SourceFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.SourceFile@ "], v$ = [0, [3, 0, 0], C63], l$ = [0, [17, 0, [12, 41, 0]], ck], p$ = [0, [12, 40, [18, [1, [0, [11, Li8, 0], Li8]], [11, "File_key.JsonFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.JsonFile@ "], k$ = [0, [3, 0, 0], C63], m$ = [0, [17, 0, [12, 41, 0]], ck], h$ = [0, [12, 40, [18, [1, [0, [11, Li8, 0], Li8]], [11, "File_key.ResourceFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.ResourceFile@ "], d$ = [0, [3, 0, 0], C63], y$ = [0, [17, 0, [12, 41, 0]], ck], _$ = [0, 1], w$ = [0, 0], g$ = [0, 1], b$ = [0, 2], T$ = [0, 2], E$ = [0, 0], S$ = [0, 1], A$ = [0, 1], I$ = [0, 1], P$ = [0, 1], C$ = [0, 2], N$ = [0, 1], O$ = [0, 1], j$ = [0, 0, 0], D$ = [0, 0, 0], R$ = [0, ss9, fi11, _c3, Ni9, di11, Cs6, mf3, si10, sf3, z72, eu4, zc3, _u4, e7, Ve9, bs8, Mc2, W72, hf3, Ff3, Es8, Xi9, Z72, Ii8, lc3, I72, Ec4, O7, of8, Fu4, tu3, Ku4, jc2, hi11, m7, pf3, Ic3, Vf3, gs7, wc3, ys8, St12, V72, Mf4, $f3, lf3, Ji7, ti10, l7, f7, Ac3, Lf3, vi11, Hi10, rs8, Vc3, U72, Au3, fu4, Kn10, Ou5, bu4, ai10, Ui8, Si11, ji7, es8, Af3, pu2, Ki9, qi8, X72, Lu4, Zu2, ms8, Wf3, o7, Ge11, r7, Qi9, x72, Gf3, dc3, D7, qc3, G12, ff3, $n8, Oc3, E7, Nf3, Tc4, g7, kc3, su3, P72, tf3, Gc2, Yn7, Mu4, a7, Eu5, vc4, j72, _i9, T7, $24, Pi8, ou3, d7, w72, Ri8, wu3, ki10, Ci8, Q72, Rc3, Wu2, Oi9, ic3, be10, v72, vu4, H24, Hn8, Uc2, zi8, xf4, Du4, $c2, xc3, Yc3, If4, ls7, Gi8, Ef3, yu5, $u4, pc3, du4, Xf, Pu3, oc4, xi11, Cc3, Hc2, Nc3, Wn8, yf3, Bc2, bi11, mi11, Uf3, Ps9, Hf, qf3, _f4, ii10, Qu2, Uu4, Rf4, B7, is9, ws8, y7, oi10, S7, ru4, bc4, H72, Hu3, xu3, Sc4, u7, Ei10, Pf4, yi10, Jn9, L72, ps7, Y7, Tf3, gc3, Xu3, W24, Je11, F72, J72, Jc2, jf3, He10, Ke12, n7, cs7, Vu4, p7, ds7, ge11, iu3, As8, Bf3, cc4, sc3, Un8, cu3, Mi7, Ru4, hu4, Ts6, q72, fs8, fc3, Qn8, Vi8, uc3, qu4, Xc2, A72, ns8, ni10, lu4, Xn9, Df4, Pc3, Fc2, ac3, kf4, M72, Vn7, ui11, wi10, uu4, c7, gi11, G72, zn9, Bi8, ju4, Sf3, i7, _72, Gn8, Qf2, Su3, zu3, zf3, ei10, Cu3, vf4, nf3, Zf2, tn8, h7, Ju5, li10, Zn10, qn8, Bu3, Di8, ri10, ku3, Zi8, Zc2, Yu2, C72, gu4, Jf2, cf3, s7, Tu5, df3, K72, Bn7, Ti11, R72, t26, Ai9, uf3, ts8, hs8, Iu4, wf3, k72, Xe11, gf3, _s7, af3, Yi9, hc3, yc3, Wi8, Qc2, vs9, Is8, Fi8, bf3, os7, rc3, vn7, as19, Gu3, Dc2, Kf2, nc4, us8, pi11, ci10, Yf3, We12, Lc2, ae9, N72, rf3, $i9, mu3, Of3, b7, Wc2, au3, t72, Kc2], F$ = [0, H24, of8, $i9, V72, $24, qf3, h7, pc3, bc4, Rf4, Gi8, Du4, Fi8, hu4, F72, d7, Qu2, Uf3, J72, ui11, cf3, X72, Zn10, Zf2, _u4, vu4, $n8, ac3, Ps9, oc4, _f4, Sf3, Es8, Uc2, jc2, Q72, He10, t72, Wi8, s7, Qc2, Bi8, ic3, rs8, Ve9, Jc2, Uu4, fu4, k72, ss9, ii10, lu4, T7, Je11, ci10, w72, Of3, qu4, fc3, Ku4, pi11, q72, a7, If4, _72, fs8, Ge11, Lf3, Pi8, Zu2, M72, pu2, xf4, af3, P72, $f3, au3, Fc2, Zi8, m7, Bn7, jf3, Fu4, Y7, bi11, $c2, Ai9, Eu5, ge11, es8, x72, rc3, Vu4, bs8, Wn8, e7, o7, Kf2, Pc3, Vn7, r7, Xi9, Qf2, kf4, Lu4, sf3, Xn9, Vc3, zu3, ni10, Oi9, Hu3, $u4, si10, n7, Ii8, Zc2, Ui8, ys8, Gf3, Kc2, Xu3, Mu4, Ei10, Cc3, wu3, Kn10, hs8, df3, W72, Ki9, uc3, hf3, Nf3, uu4, du4, E7, ps7, L72, mf3, gu4, Au3, Cu3, Yc3, su3, os7, N72, oi10, G12, g7, Hn8, Bc2, ai10, pf3, ku3, xu3, Tf3, Jf2, ms8, Tc4, Dc2, z72, dc3, Bu3, zf3, f7, D7, Z72, Xf, I72, ds7, fi11, Mi7, Di8, Rc3, zn9, Yu2, xi11, eu4, vf4, ae9, lc3, is9, cc4, Ou5, Df4, as19, Vi8, Gn8, W24, Ri8, U72, cs7, St12, Ni9, qc3, gs7, tu3, i7, vi11, Ru4, di11, Qi9, S7, kc3, _c3, ti10, cu3, gf3, nc4, As8, Iu4, wf3, Qn8, vs9, Ci8, hi11, Hi10, ws8, bf3, v72, b7, Mf4, mi11, C72, Nc3, ts8, p7, t26, Un8, Mc2, yf3, Is8, A72, Yn7, Yi9, Ac3, Yf3, Xc2, Oc3, Ts6, O7, Hc2, Bf3, wc3, Ec4, bu4, ju4, j72, be10, nf3, Ju5, qn8, hc3, Ic3, wi10, Gc2, gi11, lf3, yu5, zi8, ou3, xc3, us8, Ke12, Xe11, rf3, ff3, ri10, Wc2, ns8, K72, mu3, Vf3, Sc4, _s7, Jn9, gc3, qi8, Hf, ru4, uf3, H72, yc3, Ef3, ji7, y7, sc3, Wf3, B7, ei10, Si11, yi10, Wu2, Ff3, Gu3, Su3, Pf4, c7, li10, l7, Ji7, _i9, Cs6, We12, iu3, zc3, vn7, G72, R72, ki10, ls7, u7, Tu5, Pu3, Ti11, Lc2, tf3, vc4, tn8, Af3], M$ = GM, L$ = $F, q$ = SF, B$ = OD, U$ = Qy2, X$ = QL, G$ = F63, Y$ = WD, z$ = YF, J$ = CF, K$ = yD2, H$ = $72, W$ = ze11, V$ = _R, $$ = pF, Q$ = se11, Z$ = HL, xQ = wR, rQ = _k, eQ = Qm3, tQ = bo5, nQ = I63, uQ = kM, iQ = YD, fQ = IR, cQ = RR, sQ = PF, aQ = qD, oQ = GD, vQ = hL, lQ = TR, pQ = vM, kQ = bF, mQ = yo3, hQ = fF2, dQ = $L, yQ = eF, _Q = g62, wQ = cl6, gQ = No3, bQ = [0, [18, [1, [0, [11, Li8, 0], Li8]], [11, "{ ", 0]], "@[<2>{ "], TQ = "Loc.line", EQ = [0, [18, [1, [0, 0, rx2]], [2, 0, [11, GR, [17, [0, Eo3, 1, 0], 0]]]], yF], SQ = [0, [4, 0, 0, 0, 0], al6], AQ = [0, [17, 0, 0], iI], IQ = [0, [12, 59, [17, [0, Eo3, 1, 0], 0]], ";@ "], PQ = G63, CQ = [0, [18, [1, [0, 0, rx2]], [2, 0, [11, GR, [17, [0, Eo3, 1, 0], 0]]]], yF], NQ = [0, [4, 0, 0, 0, 0], al6], OQ = [0, [17, 0, 0], iI], jQ = [0, [17, [0, Eo3, 1, 0], [12, So4, [17, 0, 0]]], "@ }@]"], DQ = rx2, RQ = "Object literal may not have data and accessor property with the same name", FQ = "Object literal may not have multiple get/set accessors with the same name", MQ = "Unexpected token <. Remember, adjacent JSX elements must be wrapped in an enclosing parent tag", LQ = "`let [` is ambiguous in this position because it is either a `let` binding pattern, or a member expression.", qQ = "Async functions can only be declared at top level or immediately within another function.", BQ = "`await` is an invalid identifier in async functions", UQ = "`await` is not allowed in async function parameters.", XQ = "Computed properties must have a value.", GQ = "Constructor can't be an accessor.", YQ = "Constructor can't be an async function.", zQ = "Constructor can't be a generator.", JQ = "It is sufficient for your declare function to just have a Promise return type.", KQ = "async is an implementation detail and isn't necessary for your declare function statement. ", HQ = "`declare` modifier can only appear on class fields.", WQ = "Unexpected token `=`. Initializers are not allowed in a `declare`.", VQ = "Unexpected token `=`. Initializers are not allowed in a `declare opaque type`.", $Q = "Classes may only have one constructor", QQ = "Rest element must be final element of an array pattern", ZQ = "Cannot export an enum with `export type`, try `export enum E {}` or `module.exports = E;` instead.", xZ = "Enum members are separated with `,`. Replace `;` with `,`.", rZ = "`const` enums are not supported. Flow Enums are designed to allow for inlining, however the inlining itself needs to be part of the build system (whatever you use) rather than Flow itself.", eZ = "Expected an object pattern, array pattern, or an identifier but found an expression instead", tZ = "Missing comma between export specifiers", nZ = "Generators can only be declared at top level or immediately within another function.", uZ = "Getter should have zero parameters", iZ = "A getter cannot have a `this` parameter.", fZ = "Illegal continue statement", cZ = "Illegal return statement", sZ = "Illegal Unicode escape", aZ = "Missing comma between import specifiers", oZ = "It cannot be used with `import type` or `import typeof` statements", vZ = "The `type` and `typeof` keywords on named imports can only be used on regular `import` statements. ", lZ = "Explicit inexact syntax cannot appear inside an explicit exact object type", pZ = "Explicit inexact syntax can only appear inside an object type", kZ = "Component params must be an identifier. If you'd like to destructure, you should use `name as {destructure}`", mZ = "A bigint literal must be an integer", hZ = "JSX value should be either an expression or a quoted JSX text", dZ = "Invalid left-hand side in assignment", yZ = "Invalid left-hand side in exponentiation expression", _Z = "Invalid left-hand side in for-in", wZ = "Invalid left-hand side in for-of", gZ = "Invalid optional indexed access. Indexed access uses bracket notation. Use the format `T?.[K]`.", bZ = "Invalid regular expression", TZ = "A bigint literal cannot use exponential notation", EZ = "Tuple spread elements cannot be optional.", SZ = "Tuple variance annotations can only be used with labeled tuple elements, e.g. `[+foo: number]`", AZ = "`typeof` can only be used to get the type of variables.", IZ = "JSX attributes must only be assigned a non-empty expression", PZ = "Literals cannot be used as shorthand properties.", CZ = "Malformed unicode", NZ = "`match` argument must not be empty", OZ = "`match` argument cannot contain spread elements", jZ = "`await` is not yet supported in `match` expressions", DZ = "`yield` is not yet supported in `match` expressions", RZ = "Object pattern can't contain methods", FZ = "Expected at least one type parameter.", MZ = "Type parameter declaration needs a default, since a preceding type parameter declaration has a default.", LZ = "More than one default clause in switch statement", qZ = "Illegal newline after throw", BZ = "Illegal newline before arrow", UZ = "Missing catch or finally after try", XZ = "Const must be initialized", GZ = "Destructuring assignment must be initialized", YZ = "An optional chain may not be used in a `new` expression.", zZ = "Template literals may not be used in an optional chain.", JZ = "Rest parameter must be final parameter of an argument list", KZ = "Private fields may not be deleted.", HZ = "Private fields can only be referenced from within a class.", WZ = "Rest property must be final property of an object pattern", VZ = "Records to not support private elements. Remove the `#`.", $Z = "Setter should have exactly one parameter", QZ = "A setter cannot have a `this` parameter.", ZZ = "Catch variable may not be eval or arguments in strict mode", x00 = "Delete of an unqualified identifier in strict mode.", r00 = "Duplicate data property in object literal not allowed in strict mode", e00 = "Function name may not be eval or arguments in strict mode", t00 = "Assignment to eval or arguments is not allowed in strict mode", n00 = "Postfix increment/decrement may not have eval or arguments operand in strict mode", u00 = "Prefix increment/decrement may not have eval or arguments operand in strict mode", i00 = "Strict mode code may not include a with statement", f00 = "Number literals with leading zeros are not allowed in strict mode.", c00 = "Octal literals are not allowed in strict mode.", s00 = "Strict mode function may not have duplicate parameter names", a00 = "Parameter name eval or arguments is not allowed in strict mode", o00 = 'Illegal "use strict" directive in function with non-simple parameter list', v00 = "Use of reserved word in strict mode", l00 = "Variable name may not be eval or arguments in strict mode", p00 = "You may not access a private field through the `super` keyword.", k00 = "Flow does not support abstract classes.", m00 = "Flow does not support template literal types.", h00 = "A type annotation is required for the `this` parameter.", d00 = "Arrow functions cannot have a `this` parameter; arrow functions automatically bind `this` when declared.", y00 = "Constructors cannot have a `this` parameter; constructors don't bind `this` like other functions.", _00 = "The `this` parameter cannot be optional.", w00 = "The `this` parameter must be the first function parameter.", g00 = "A trailing comma is not permitted after the rest element", b00 = "Unexpected end of input", T00 = "Explicit inexact syntax must come at the end of an object type", E00 = "Opaque type aliases are not allowed in untyped mode", S00 = "Unexpected proto modifier", A00 = "Unexpected reserved word", I00 = "Unexpected reserved type", P00 = "Spreading a type is only allowed inside an object type", C00 = "Unexpected static modifier", N00 = "Unexpected `super` outside of a class method", O00 = "`super()` is only valid in a class constructor", j00 = "Type aliases are not allowed in untyped mode", D00 = "Type annotations are not allowed in untyped mode", R00 = "Type declarations are not allowed in untyped mode", F00 = "Type exports are not allowed in untyped mode", M00 = "Type imports are not allowed in untyped mode", L00 = "Interfaces are not allowed in untyped mode", q00 = "Unexpected variance sigil", B00 = "Found a decorator in an unsupported position.", U00 = "Invalid regular expression: missing /", X00 = "Unexpected whitespace between `#` and identifier", G00 = "`yield` is an invalid identifier in generators", Y00 = "Yield expression not allowed in formal parameter", z00 = [0, [11, "Duplicate export for `", [2, 0, [12, 96, 0]]], "Duplicate export for `%s`"], J00 = [0, [11, "Private fields may only be declared once. `#", [2, 0, [11, "` is declared more than once.", 0]]], "Private fields may only be declared once. `#%s` is declared more than once."], K00 = [0, [11, "bigint enum members need to be initialized, e.g. `", [2, 0, [11, " = 1n,` in enum `", [2, 0, [11, nu3, 0]]]]], "bigint enum members need to be initialized, e.g. `%s = 1n,` in enum `%s`."], H00 = [0, [11, "Boolean enum members need to be initialized. Use either `", [2, 0, [11, " = true,` or `", [2, 0, [11, " = false,` in enum `", [2, 0, [11, nu3, 0]]]]]]], "Boolean enum members need to be initialized. Use either `%s = true,` or `%s = false,` in enum `%s`."], W00 = [0, [11, "Enum member names need to be unique, but the name `", [2, 0, [11, "` has already been used before in enum `", [2, 0, [11, nu3, 0]]]]], "Enum member names need to be unique, but the name `%s` has already been used before in enum `%s`."], V00 = [0, [11, WR, [2, 0, [11, "` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers.", 0]]], "Enum `%s` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers."], $00 = "The `...` must come at the end of the enum body. Remove the trailing comma.", Q00 = "The `...` must come after all enum members. Move it to the end of the enum body.", Z00 = [0, [11, "Use one of `boolean`, `number`, `string`, `symbol`, or `bigint` in enum `", [2, 0, [11, nu3, 0]]], "Use one of `boolean`, `number`, `string`, `symbol`, or `bigint` in enum `%s`."], xx0 = [0, [11, "Enum type `", [2, 0, [11, "` is not valid. ", [2, 0, 0]]]], "Enum type `%s` is not valid. %s"], rx0 = [0, [11, "Supplied enum type is not valid. ", [2, 0, 0]], "Supplied enum type is not valid. %s"], ex0 = [0, [11, "Enum member names and initializers are separated with `=`. Replace `", [2, 0, [11, ":` with `", [2, 0, [11, " =`.", 0]]]]], "Enum member names and initializers are separated with `=`. Replace `%s:` with `%s =`."], tx0 = [0, [11, WR, [2, 0, [11, "` has type `", [2, 0, [11, "`, so the initializer of `", [2, 0, [11, "` needs to be a ", [2, 0, [11, " literal.", 0]]]]]]]]], "Enum `%s` has type `%s`, so the initializer of `%s` needs to be a %s literal."], nx0 = [0, [11, "Symbol enum members cannot be initialized. Use `", [2, 0, [11, ",` in enum `", [2, 0, [11, nu3, 0]]]]], "Symbol enum members cannot be initialized. Use `%s,` in enum `%s`."], ux0 = [0, [11, "The enum member initializer for `", [2, 0, [11, "` needs to be a literal (either a boolean, number, or string) in enum `", [2, 0, [11, nu3, 0]]]]], "The enum member initializer for `%s` needs to be a literal (either a boolean, number, or string) in enum `%s`."], ix0 = [0, [11, "Enum member names cannot start with lowercase 'a' through 'z'. Instead of using `", [2, 0, [11, "`, consider using `", [2, 0, [11, "`, in enum `", [2, 0, [11, nu3, 0]]]]]]], "Enum member names cannot start with lowercase 'a' through 'z'. Instead of using `%s`, consider using `%s`, in enum `%s`."], fx0 = [0, [11, "Number enum members need to be initialized, e.g. `", [2, 0, [11, " = 1,` in enum `", [2, 0, [11, nu3, 0]]]]], "Number enum members need to be initialized, e.g. `%s = 1,` in enum `%s`."], cx0 = [0, [11, "String enum members need to consistently either all use initializers, or use no initializers, in enum ", [2, 0, [12, 46, 0]]], "String enum members need to consistently either all use initializers, or use no initializers, in enum %s."], sx0 = [0, [11, "Expected corresponding JSX closing tag for ", [2, 0, 0]], "Expected corresponding JSX closing tag for %s"], ax0 = "immediately within another function.", ox0 = "In strict mode code, functions can only be declared at top level or ", vx0 = "inside a block, or as the body of an if statement.", lx0 = "In non-strict mode code, functions can only be declared at top level, ", px0 = " `break` statements are not required in `match` statements, as unlike `switch` statements, `match` statement cases do not fall-through by default.", kx0 = rx2, mx0 = [0, [11, "Illegal break statement.", [2, 0, 0]], "Illegal break statement.%s"], hx0 = zM, dx0 = rx2, yx0 = XM, _x0 = DF, wx0 = DM, gx0 = [0, [11, "Classes may not have ", [2, 0, [2, 0, [11, DD2, [2, 0, [11, nu3, 0]]]]]], "Classes may not have %s%s named `%s`."], bx0 = "Components use `renders` instead of `:` to annotate the render type of a component.", Tx0 = uM, Ex0 = rx2, Sx0 = [0, [11, "String params require local bindings using `as` renaming. You can use `'", [2, 0, [11, "' as ", [2, 0, [2, 0, [11, ": <TYPE>` ", 0]]]]]], "String params require local bindings using `as` renaming. You can use `'%s' as %s%s: <TYPE>` "], Ax0 = "Remove the period.", Ix0 = "Indexed access uses bracket notation.", Px0 = [0, [11, "Invalid indexed access. ", [2, 0, [11, " Use the format `T[K]`.", 0]]], "Invalid indexed access. %s Use the format `T[K]`."], Cx0 = [0, [11, "Invalid flags supplied to RegExp constructor '", [2, 0, [12, 39, 0]]], "Invalid flags supplied to RegExp constructor '%s'"], Nx0 = tn8, Ox0 = Dp3, jx0 = [0, [11, "In match ", [2, 0, [11, " pattern, the rest must be the last element in the pattern", 0]]], "In match %s pattern, the rest must be the last element in the pattern"], Dx0 = [0, [11, "JSX element ", [2, 0, [11, " has no corresponding closing tag.", 0]]], "JSX element %s has no corresponding closing tag."], Rx0 = [0, [11, tM, [2, 0, [11, "`. Parentheses are required to combine `??` with `&&` or `||` expressions.", 0]]], "Unexpected token `%s`. Parentheses are required to combine `??` with `&&` or `||` expressions."], Fx0 = zM, Mx0 = rx2, Lx0 = XM, qx0 = A63, Bx0 = [0, [11, "Records may not have ", [2, 0, [2, 0, [11, DD2, [2, 0, [11, nu3, 0]]]]]], "Records may not have %s%s named `%s`."], Ux0 = [0, [2, 0, [11, " '", [2, 0, [11, "' has already been declared", 0]]]], "%s '%s' has already been declared"], Xx0 = rx2, Gx0 = k63, Yx0 = " You can try using JavaScript private fields by prepending `#` to the field name.", zx0 = Q63, Jx0 = " Fields and methods are public by default. You can simply omit the `public` keyword.", Kx0 = W63, Hx0 = [0, [11, "Flow does not support using `", [2, 0, [11, "` in classes.", [2, 0, 0]]]], "Flow does not support using `%s` in classes.%s"], Wx0 = [0, [11, "Private fields must be declared before they can be referenced. `#", [2, 0, [11, "` has not been declared.", 0]]], "Private fields must be declared before they can be referenced. `#%s` has not been declared."], Vx0 = [0, [11, xM, [2, 0, 0]], "Unexpected %s"], $x0 = [0, [11, tM, [2, 0, [11, "`. Did you mean `", [2, 0, [11, "`?", 0]]]]], "Unexpected token `%s`. Did you mean `%s`?"], Qx0 = [0, [11, xM, [2, 0, [11, ", expected ", [2, 0, 0]]]], "Unexpected %s, expected %s"], Zx0 = [0, [11, "Undefined label '", [2, 0, [12, 39, 0]]], "Undefined label '%s'"], xr0 = "Parse_error.Error", rr0 = [0, [0, 36, 37], [0, 48, 58], [0, 65, 91], [0, 95, 96], [0, 97, un8], [0, py2, Sg2], [0, NS, s9], [0, j_, Wm3], [0, xI, z_], [0, Y32, lk], [0, ty2, Gp3], [0, t110, 706], [0, CD2, 722], [0, 736, 741], [0, 748, 749], [0, 750, 751], [0, 768, 885], [0, 886, 888], [0, 890, 894], [0, 895, 896], [0, 902, 907], [0, 908, 909], [0, 910, 930], [0, jM, 1014], [0, 1015, 1154], [0, 1155, 1160], [0, 1162, 1328], [0, 1329, 1367], [0, 1369, 1370], [0, 1376, 1417], [0, 1425, 1470], [0, 1471, 1472], [0, 1473, 1475], [0, 1476, 1478], [0, 1479, 1480], [0, 1488, 1515], [0, 1519, 1523], [0, 1552, 1563], [0, 1568, 1642], [0, 1646, 1748], [0, 1749, 1757], [0, 1759, 1769], [0, 1770, 1789], [0, 1791, 1792], [0, 1808, 1867], [0, 1869, 1970], [0, 1984, 2038], [0, 2042, 2043], [0, 2045, 2046], [0, Gg2, 2094], [0, 2112, 2140], [0, 2144, 2155], [0, 2208, 2229], [0, 2230, 2238], [0, 2259, 2274], [0, 2275, 2404], [0, 2406, 2416], [0, 2417, 2436], [0, 2437, 2445], [0, 2447, 2449], [0, 2451, 2473], [0, 2474, 2481], [0, 2482, 2483], [0, 2486, 2490], [0, 2492, 2501], [0, 2503, 2505], [0, 2507, 2511], [0, 2519, 2520], [0, 2524, 2526], [0, 2527, 2532], [0, 2534, 2546], [0, 2556, 2557], [0, 2558, 2559], [0, 2561, 2564], [0, 2565, 2571], [0, 2575, 2577], [0, 2579, 2601], [0, 2602, 2609], [0, 2610, 2612], [0, 2613, 2615], [0, 2616, 2618], [0, 2620, 2621], [0, 2622, 2627], [0, 2631, 2633], [0, 2635, 2638], [0, 2641, 2642], [0, 2649, 2653], [0, 2654, 2655], [0, 2662, 2678], [0, 2689, 2692], [0, 2693, 2702], [0, 2703, 2706], [0, 2707, 2729], [0, 2730, 2737], [0, 2738, 2740], [0, 2741, 2746], [0, 2748, 2758], [0, 2759, 2762], [0, 2763, 2766], [0, 2768, 2769], [0, 2784, 2788], [0, 2790, 2800], [0, 2809, 2816], [0, 2817, 2820], [0, 2821, 2829], [0, 2831, 2833], [0, 2835, 2857], [0, 2858, 2865], [0, 2866, 2868], [0, 2869, 2874], [0, 2876, 2885], [0, 2887, 2889], [0, 2891, 2894], [0, 2902, 2904], [0, 2908, 2910], [0, 2911, 2916], [0, 2918, 2928], [0, 2929, 2930], [0, 2946, 2948], [0, 2949, 2955], [0, 2958, 2961], [0, 2962, 2966], [0, 2969, 2971], [0, 2972, 2973], [0, 2974, 2976], [0, 2979, 2981], [0, 2984, 2987], [0, 2990, 3002], [0, 3006, 3011], [0, 3014, 3017], [0, 3018, 3022], [0, 3024, 3025], [0, 3031, 3032], [0, 3046, 3056], [0, 3072, 3085], [0, 3086, 3089], [0, 3090, 3113], [0, 3114, 3130], [0, 3133, 3141], [0, 3142, 3145], [0, 3146, 3150], [0, 3157, 3159], [0, 3160, 3163], [0, 3168, 3172], [0, 3174, 3184], [0, 3200, 3204], [0, 3205, 3213], [0, 3214, 3217], [0, 3218, 3241], [0, 3242, 3252], [0, 3253, 3258], [0, 3260, 3269], [0, 3270, 3273], [0, 3274, 3278], [0, 3285, 3287], [0, 3294, 3295], [0, 3296, 3300], [0, 3302, 3312], [0, 3313, 3315], [0, 3328, 3332], [0, 3333, 3341], [0, 3342, 3345], [0, 3346, 3397], [0, 3398, 3401], [0, 3402, 3407], [0, 3412, 3416], [0, 3423, 3428], [0, 3430, 3440], [0, 3450, 3456], [0, 3458, 3460], [0, 3461, 3479], [0, 3482, 3506], [0, 3507, 3516], [0, 3517, 3518], [0, 3520, 3527], [0, 3530, 3531], [0, 3535, 3541], [0, 3542, 3543], [0, 3544, 3552], [0, 3558, 3568], [0, 3570, 3572], [0, 3585, 3643], [0, 3648, 3663], [0, 3664, 3674], [0, 3713, 3715], [0, 3716, 3717], [0, 3718, 3723], [0, 3724, 3748], [0, 3749, 3750], [0, 3751, 3774], [0, 3776, 3781], [0, 3782, 3783], [0, 3784, 3790], [0, 3792, 3802], [0, 3804, 3808], [0, 3840, 3841], [0, 3864, 3866], [0, 3872, 3882], [0, 3893, 3894], [0, 3895, 3896], [0, 3897, 3898], [0, 3902, 3912], [0, 3913, 3949], [0, 3953, 3973], [0, 3974, 3992], [0, 3993, 4029], [0, 4038, 4039], [0, NF, 4170], [0, 4176, 4254], [0, 4256, 4294], [0, 4295, 4296], [0, 4301, 4302], [0, 4304, 4347], [0, 4348, 4681], [0, 4682, 4686], [0, 4688, 4695], [0, 4696, 4697], [0, 4698, 4702], [0, 4704, 4745], [0, 4746, 4750], [0, 4752, 4785], [0, 4786, 4790], [0, 4792, 4799], [0, 4800, 4801], [0, 4802, 4806], [0, 4808, 4823], [0, 4824, 4881], [0, 4882, 4886], [0, 4888, 4955], [0, 4957, 4960], [0, 4969, 4978], [0, 4992, 5008], [0, 5024, 5110], [0, 5112, 5118], [0, 5121, 5741], [0, 5743, nC], [0, 5761, 5787], [0, 5792, 5867], [0, 5870, 5881], [0, 5888, 5901], [0, 5902, 5909], [0, 5920, 5941], [0, 5952, 5972], [0, 5984, 5997], [0, 5998, 6001], [0, 6002, 6004], [0, 6016, 6100], [0, 6103, 6104], [0, 6108, 6110], [0, 6112, 6122], [0, 6155, 6158], [0, 6160, 6170], [0, 6176, 6265], [0, 6272, 6315], [0, 6320, 6390], [0, 6400, 6431], [0, 6432, 6444], [0, 6448, 6460], [0, 6470, 6510], [0, 6512, 6517], [0, 6528, 6572], [0, 6576, 6602], [0, 6608, 6619], [0, 6656, 6684], [0, 6688, 6751], [0, 6752, 6781], [0, 6783, 6794], [0, 6800, 6810], [0, 6823, 6824], [0, 6832, 6846], [0, 6912, 6988], [0, 6992, 7002], [0, 7019, 7028], [0, 7040, 7156], [0, 7168, 7224], [0, 7232, 7242], [0, 7245, 7294], [0, 7296, 7305], [0, 7312, 7355], [0, 7357, 7360], [0, 7376, 7379], [0, 7380, 7419], [0, 7424, 7674], [0, 7675, 7958], [0, 7960, 7966], [0, 7968, 8006], [0, 8008, 8014], [0, 8016, 8024], [0, 8025, 8026], [0, 8027, 8028], [0, 8029, 8030], [0, 8031, 8062], [0, 8064, 8117], [0, 8118, 8125], [0, 8126, 8127], [0, 8130, 8133], [0, 8134, 8141], [0, 8144, 8148], [0, 8150, 8156], [0, 8160, 8173], [0, 8178, 8181], [0, 8182, 8189], [0, tR, NM], [0, 8255, 8257], [0, 8276, 8277], [0, F82, 8306], [0, f8, 8320], [0, 8336, 8349], [0, 8400, 8413], [0, 8417, 8418], [0, 8421, 8433], [0, dm3, 8451], [0, Gm3, 8456], [0, 8458, tk], [0, dk, 8470], [0, sM, 8478], [0, _82, Jm3], [0, th2, gk], [0, Ik, Hm3], [0, 8490, 8506], [0, 8508, 8512], [0, 8517, 8522], [0, Lk, 8527], [0, 8544, 8585], [0, 11264, 11311], [0, 11312, 11359], [0, 11360, 11493], [0, 11499, 11508], [0, 11520, om3], [0, gp4, 11560], [0, Fm3, 11566], [0, 11568, 11624], [0, u8, 11632], [0, ak, 11671], [0, 11680, lm3], [0, 11688, km3], [0, 11696, bp3], [0, 11704, Uk], [0, 11712, z82], [0, 11720, Ip3], [0, 11728, sh2], [0, 11736, 11743], [0, 11744, 11776], [0, 12293, 12296], [0, 12321, uh2], [0, 12337, 12342], [0, 12344, 12349], [0, 12353, 12439], [0, 12441, X82], [0, 12449, _h2], [0, 12540, 12544], [0, 12549, Ym3], [0, 12593, 12687], [0, 12704, 12731], [0, 12784, 12800], [0, 13312, 19894], [0, 19968, 40944], [0, 40960, 42125], [0, 42192, 42238], [0, 42240, 42509], [0, 42512, 42540], [0, 42560, 42608], [0, 42612, ek], [0, 42623, 42738], [0, 42775, 42784], [0, 42786, 42889], [0, 42891, 42944], [0, 42946, 42951], [0, l8, 43048], [0, 43072, 43124], [0, 43136, 43206], [0, 43216, 43226], [0, 43232, 43256], [0, $k, Yk], [0, 43261, 43310], [0, 43312, 43348], [0, 43360, 43389], [0, 43392, 43457], [0, W82, 43482], [0, 43488, Bp3], [0, aF2, 43575], [0, 43584, 43598], [0, 43600, 43610], [0, 43616, 43639], [0, fm3, 43715], [0, 43739, 43742], [0, 43744, 43760], [0, 43762, 43767], [0, 43777, 43783], [0, 43785, 43791], [0, 43793, 43799], [0, 43808, wm3], [0, 43816, p8], [0, 43824, Q82], [0, 43868, Np4], [0, 43888, 44011], [0, 44012, 44014], [0, 44016, 44026], [0, 44032, 55204], [0, 55216, 55239], [0, 55243, 55292], [0, 63744, 64110], [0, 64112, 64218], [0, 64256, 64263], [0, 64275, 64280], [0, Wk, qp3], [0, 64298, b8], [0, 64312, ym3], [0, Qk, pk], [0, 64320, ih2], [0, 64323, Th2], [0, 64326, 64434], [0, 64467, 64830], [0, 64848, 64912], [0, 64914, 64968], [0, 65008, 65020], [0, 65024, 65040], [0, 65056, 65072], [0, 65075, 65077], [0, 65101, 65104], [0, 65136, $m3], [0, 65142, 65277], [0, 65296, 65306], [0, 65313, 65339], [0, 65343, pm3], [0, 65345, 65371], [0, 65382, 65471], [0, 65474, 65480], [0, 65482, 65488], [0, 65490, 65496], [0, 65498, 65501], [0, Y63, lh2], [0, 65549, Z82], [0, 65576, Ek], [0, 65596, Ak], [0, 65599, 65614], [0, 65616, 65630], [0, 65664, 65787], [0, 65856, 65909], [0, 66045, 66046], [0, 66176, 66205], [0, 66208, 66257], [0, 66272, 66273], [0, 66304, 66336], [0, 66349, 66379], [0, 66384, 66427], [0, 66432, 66462], [0, 66464, 66500], [0, 66504, ah2], [0, 66513, 66518], [0, 66560, 66718], [0, 66720, 66730], [0, 66736, 66772], [0, 66776, 66812], [0, 66816, 66856], [0, 66864, 66916], [0, 67072, 67383], [0, 67392, 67414], [0, 67424, 67432], [0, 67584, 67590], [0, vk, x8], [0, 67594, oh2], [0, 67639, 67641], [0, $82, 67645], [0, 67647, 67670], [0, 67680, 67703], [0, 67712, 67743], [0, 67808, Hp3], [0, 67828, 67830], [0, 67840, 67862], [0, 67872, 67898], [0, 67968, 68024], [0, 68030, 68032], [0, ph2, 68100], [0, 68101, 68103], [0, 68108, Xk], [0, 68117, V82], [0, 68121, 68150], [0, 68152, 68155], [0, 68159, 68160], [0, 68192, 68221], [0, 68224, 68253], [0, 68288, D8], [0, 68297, 68327], [0, 68352, 68406], [0, 68416, 68438], [0, 68448, 68467], [0, 68480, 68498], [0, 68608, 68681], [0, 68736, 68787], [0, 68800, 68851], [0, 68864, 68904], [0, 68912, 68922], [0, 69376, 69405], [0, qm3, 69416], [0, 69424, 69457], [0, 69600, 69623], [0, 69632, 69703], [0, 69734, nh2], [0, 69759, 69819], [0, 69840, 69865], [0, 69872, 69882], [0, 69888, 69941], [0, 69942, 69952], [0, Up3, Dk], [0, 69968, 70004], [0, Km3, 70007], [0, 70016, 70085], [0, 70089, 70093], [0, 70096, Om3], [0, o8, 70109], [0, 70144, Nm3], [0, 70163, 70200], [0, 70206, 70207], [0, 70272, Pm3], [0, S8, Fk], [0, 70282, Cm3], [0, 70287, mm3], [0, 70303, 70313], [0, 70320, 70379], [0, 70384, 70394], [0, 70400, jp3], [0, 70405, 70413], [0, 70415, 70417], [0, 70419, Vm4], [0, 70442, Y8], [0, 70450, cm3], [0, 70453, 70458], [0, 70459, 70469], [0, 70471, 70473], [0, 70475, 70478], [0, Yp3, 70481], [0, 70487, 70488], [0, 70493, 70500], [0, 70502, 70509], [0, 70512, 70517], [0, 70656, 70731], [0, 70736, 70746], [0, uk, 70752], [0, 70784, Um3], [0, i8, 70856], [0, 70864, 70874], [0, 71040, 71094], [0, 71096, 71105], [0, 71128, 71134], [0, 71168, 71233], [0, a8, 71237], [0, 71248, 71258], [0, 71296, 71353], [0, 71360, 71370], [0, 71424, 71451], [0, 71453, 71468], [0, 71472, 71482], [0, 71680, 71739], [0, 71840, 71914], [0, 71935, 71936], [0, 72096, 72104], [0, 72106, 72152], [0, 72154, R82], [0, Xm3, 72165], [0, t82, 72255], [0, 72263, 72264], [0, qk, 72346], [0, k8, 72350], [0, 72384, 72441], [0, 72704, zm3], [0, 72714, 72759], [0, 72760, 72769], [0, 72784, 72794], [0, 72818, 72848], [0, 72850, 72872], [0, 72873, 72887], [0, 72960, d8], [0, 72968, ch2], [0, 72971, 73015], [0, 73018, 73019], [0, 73020, 73022], [0, 73023, 73032], [0, 73040, 73050], [0, 73056, E8], [0, 73063, bm3], [0, 73066, 73103], [0, 73104, 73106], [0, 73107, 73113], [0, 73120, 73130], [0, 73440, 73463], [0, 73728, 74650], [0, 74752, 74863], [0, 74880, 75076], [0, 77824, 78895], [0, 82944, 83527], [0, 92160, 92729], [0, 92736, 92767], [0, 92768, 92778], [0, 92880, 92910], [0, 92912, 92917], [0, 92928, 92983], [0, 92992, 92996], [0, 93008, 93018], [0, 93027, 93048], [0, 93053, 93072], [0, 93760, 93824], [0, 93952, 94027], [0, gm3, 94088], [0, 94095, 94112], [0, 94176, mk], [0, Op3, 94180], [0, 94208, 100344], [0, 100352, 101107], [0, 110592, 110879], [0, 110928, 110931], [0, 110948, 110952], [0, 110960, 111356], [0, 113664, 113771], [0, 113776, 113789], [0, 113792, 113801], [0, 113808, 113818], [0, 113821, 113823], [0, 119141, 119146], [0, 119149, 119155], [0, 119163, 119171], [0, 119173, 119180], [0, 119210, 119214], [0, 119362, 119365], [0, 119808, Fp3], [0, 119894, jk], [0, 119966, 119968], [0, r8, 119971], [0, 119973, 119975], [0, 119977, Ah2], [0, 119982, Sm3], [0, M82, xm3], [0, 119997, c8], [0, 120005, bh], [0, 120071, 120075], [0, 120077, sk], [0, 120086, Im3], [0, 120094, Xp3], [0, 120123, H82], [0, 120128, n8], [0, Jk, 120135], [0, 120138, eh2], [0, 120146, 120486], [0, 120488, yk], [0, 120514, T8], [0, 120540, wh2], [0, 120572, Rk], [0, 120598, C8], [0, 120630, Zp3], [0, 120656, w8], [0, 120688, zp3], [0, 120714, Cp3], [0, 120746, Nk], [0, 120772, 120780], [0, 120782, 120832], [0, 121344, 121399], [0, 121403, 121453], [0, 121461, 121462], [0, 121476, 121477], [0, 121499, 121504], [0, 121505, 121520], [0, 122880, 122887], [0, 122888, 122905], [0, 122907, 122914], [0, 122915, 122917], [0, 122918, 122923], [0, 123136, 123181], [0, 123184, 123198], [0, 123200, 123210], [0, Sp3, 123215], [0, 123584, 123642], [0, 124928, 125125], [0, 125136, 125143], [0, 125184, 125260], [0, 125264, 125274], [0, 126464, xk], [0, 126469, hm3], [0, 126497, yh2], [0, Pp4, 126501], [0, Mm3, J82], [0, 126505, Ep3], [0, 126516, N8], [0, kh2, tm3], [0, Vp3, 126524], [0, fh2, 126531], [0, Eh2, Qp3], [0, hh2, vm3], [0, vh2, Mp3], [0, 126541, Mk], [0, 126545, xh2], [0, Dm3, 126549], [0, j82, $p3], [0, Zk, y8], [0, am3, rh2], [0, ok2, Jp3], [0, q82, Sk], [0, 126561, Wp3], [0, Zm3, 126565], [0, 126567, Rp3], [0, 126572, nk], [0, 126580, A8], [0, 126585, Vk], [0, O8, Bm3], [0, 126592, Kp3], [0, 126603, 126620], [0, 126625, P8], [0, 126629, m8], [0, 126635, 126652], [0, 131072, 173783], [0, 173824, 177973], [0, 177984, 178206], [0, 178208, 183970], [0, 183984, 191457], [0, 194560, 195102], [0, 917760, 918e3]], er0 = [0, 1, 0], tr0 = [0, 0, [0, 1, 0], [0, 1, 0]], nr0 = sL, ur0 = "end of input", ir0 = U63, fr0 = "template literal part", cr0 = U63, sr0 = nD2, ar0 = sL, or0 = U63, vr0 = H32, lr0 = U63, pr0 = $v, kr0 = U63, mr0 = K32, hr0 = "an", dr0 = St12, yr0 = Nu4, _r0 = [0, [11, "token `", [2, 0, [12, 96, 0]]], "token `%s`"], wr0 = "{", gr0 = em3, br0 = "{|", Tr0 = "|}", Er0 = PM, Sr0 = iM, Ar0 = "[", Ir0 = "]", Pr0 = NT, Cr0 = JL, Nr0 = ln9, Or0 = "=>", jr0 = "...", Dr0 = _D, Rr0 = DM, Fr0 = $32, Mr0 = nm3, Lr0 = bo5, qr0 = I63, Br0 = Je11, Ur0 = Ve9, Xr0 = $P, Gr0 = DT, Yr0 = Bv2, zr0 = He10, Jr0 = um3, Kr0 = g62, Hr0 = Tp3, Wr0 = L82, Vr0 = No3, $r0 = cl6, Qr0 = Hv, Zr0 = wa4, x10 = Pa5, r10 = We12, e10 = rk, t102 = Rm3, n10 = Xe11, u10 = Fv2, i10 = Tk, f10 = U82, c10 = K82, s10 = h62, a10 = mc3, o10 = Ue10, v10 = Ck, l10 = Yv, p10 = E62, k10 = Aa3, m10 = ga2, h10 = j63, d10 = dh2, y10 = W24, _10 = fl6, w10 = Oo5, g10 = ae9, b10 = Pk, T10 = Q63, E10 = k63, S10 = W63, A10 = H24, I10 = Ke12, P10 = x43, C102 = tc3, N10 = zb2, O10 = JS, j10 = Io5, D102 = Kv, R10 = "%checks", F10 = TR, M10 = hL, L10 = GD, q102 = bF, B10 = vM, U10 = yo3, X102 = qD, G10 = PF, Y10 = IR, z10 = RR, J102 = YD, K102 = kM, H102 = fF2, W10 = $L, V102 = eF, $10 = p_2, Q10 = "?.", Z10 = Dw, x20 = uM, r20 = Iv2, e20 = LF, t202 = CM, n20 = wR, u20 = _k, i20 = Qm3, f20 = GM, c20 = $F, s20 = SF, a20 = OD, o20 = QL, v20 = WD, l20 = Qy2, p20 = F63, k20 = YF, m20 = CF, h20 = yD2, d20 = $72, y20 = ze11, _20 = se11, w20 = _R, g20 = pF, b20 = HL, T20 = SD, E20 = VL, S20 = ZM, A20 = kR, I20 = rx2, P20 = ik, C20 = wk, N20 = be10, O20 = H32, j20 = $v, D20 = K32, R20 = ga2, F20 = H63, M20 = hk, L20 = bk, q20 = Hk, B20 = Lm3, U20 = Xv, X20 = FD2, G20 = J63, Y20 = tl4, z20 = V32, J20 = jF, K20 = uF2, H20 = m62, W20 = m62, V20 = gL, $20 = m62, Q20 = m62, Z20 = em3, xe0 = em3, re0 = gL, ee0 = se11, te0 = se11, ne0 = O62, ue0 = rm4, ie0 = "T_LCURLY", fe0 = "T_RCURLY", ce0 = "T_LCURLYBAR", se0 = "T_RCURLYBAR", ae0 = "T_LPAREN", oe0 = "T_RPAREN", ve0 = "T_LBRACKET", le0 = "T_RBRACKET", pe0 = "T_SEMICOLON", ke0 = "T_COMMA", me0 = "T_PERIOD", he0 = "T_ARROW", de0 = "T_ELLIPSIS", ye0 = "T_AT", _e0 = "T_POUND", we0 = "T_FUNCTION", ge0 = "T_IF", be0 = "T_IN", Te0 = "T_INSTANCEOF", Ee0 = "T_RETURN", Se0 = "T_SWITCH", Ae0 = "T_MATCH", Ie0 = "T_RECORD", Pe0 = "T_THIS", Ce0 = "T_THROW", Ne0 = "T_TRY", Oe0 = "T_VAR", je0 = "T_WHILE", De0 = "T_WITH", Re0 = "T_CONST", Fe0 = "T_LET", Me0 = "T_NULL", Le0 = "T_FALSE", qe0 = "T_TRUE", Be0 = "T_BREAK", Ue0 = "T_CASE", Xe0 = "T_CATCH", Ge0 = "T_CONTINUE", Ye0 = "T_DEFAULT", ze0 = "T_DO", Je0 = "T_FINALLY", Ke0 = "T_FOR", He0 = "T_CLASS", We0 = "T_EXTENDS", Ve0 = "T_STATIC", $e0 = "T_ELSE", Qe0 = "T_NEW", Ze0 = "T_DELETE", xt0 = "T_TYPEOF", rt0 = "T_VOID", et0 = "T_ENUM", tt0 = "T_EXPORT", nt0 = "T_IMPORT", ut0 = "T_SUPER", it0 = "T_IMPLEMENTS", ft0 = "T_INTERFACE", ct0 = "T_PACKAGE", st0 = "T_PRIVATE", at0 = "T_PROTECTED", ot0 = "T_PUBLIC", vt0 = "T_YIELD", lt0 = "T_DEBUGGER", pt0 = "T_DECLARE", kt0 = "T_TYPE", mt0 = "T_OPAQUE", ht0 = "T_OF", dt0 = "T_ASYNC", yt0 = "T_AWAIT", _t0 = "T_CHECKS", wt0 = "T_RSHIFT3_ASSIGN", gt0 = "T_RSHIFT_ASSIGN", bt0 = "T_LSHIFT_ASSIGN", Tt0 = "T_BIT_XOR_ASSIGN", Et0 = "T_BIT_OR_ASSIGN", St0 = "T_BIT_AND_ASSIGN", At0 = "T_MOD_ASSIGN", It0 = "T_DIV_ASSIGN", Pt0 = "T_MULT_ASSIGN", Ct0 = "T_EXP_ASSIGN", Nt0 = "T_MINUS_ASSIGN", Ot0 = "T_PLUS_ASSIGN", jt0 = "T_NULLISH_ASSIGN", Dt0 = "T_AND_ASSIGN", Rt0 = "T_OR_ASSIGN", Ft0 = "T_ASSIGN", Mt0 = "T_PLING_PERIOD", Lt0 = "T_PLING_PLING", qt0 = "T_PLING", Bt0 = "T_COLON", Ut0 = "T_OR", Xt0 = "T_AND", Gt0 = "T_BIT_OR", Yt0 = "T_BIT_XOR", zt0 = "T_BIT_AND", Jt0 = "T_EQUAL", Kt0 = "T_NOT_EQUAL", Ht0 = "T_STRICT_EQUAL", Wt0 = "T_STRICT_NOT_EQUAL", Vt0 = "T_LESS_THAN_EQUAL", $t0 = "T_GREATER_THAN_EQUAL", Qt0 = "T_LESS_THAN", Zt0 = "T_GREATER_THAN", xn0 = "T_LSHIFT", rn0 = "T_RSHIFT", en0 = "T_RSHIFT3", tn0 = "T_PLUS", nn0 = "T_MINUS", un0 = "T_DIV", in0 = "T_MULT", fn0 = "T_EXP", cn0 = "T_MOD", sn0 = "T_NOT", an0 = "T_BIT_NOT", on0 = "T_INCR", vn0 = "T_DECR", ln0 = "T_EOF", pn0 = "T_ANY_TYPE", kn0 = "T_MIXED_TYPE", mn0 = "T_EMPTY_TYPE", hn0 = "T_NUMBER_TYPE", dn0 = "T_BIGINT_TYPE", yn0 = "T_STRING_TYPE", _n0 = "T_VOID_TYPE", wn0 = "T_SYMBOL_TYPE", gn0 = "T_UNKNOWN_TYPE", bn0 = "T_NEVER_TYPE", Tn0 = "T_UNDEFINED_TYPE", En0 = "T_KEYOF", Sn0 = "T_READONLY", An0 = "T_INFER", In0 = "T_IS", Pn0 = "T_ASSERTS", Cn0 = "T_IMPLIES", Nn0 = KL, On0 = KL, jn0 = "T_NUMBER", Dn0 = "T_BIGINT", Rn0 = "T_STRING", Fn0 = "T_TEMPLATE_PART", Mn0 = "T_IDENTIFIER", Ln0 = "T_REGEXP", qn0 = "T_INTERPRETER", Bn0 = "T_ERROR", Un0 = "T_JSX_IDENTIFIER", Xn0 = XL, Gn0 = XL, Yn0 = "T_BOOLEAN_TYPE", zn0 = "T_NUMBER_SINGLETON_TYPE", Jn0 = "T_BIGINT_SINGLETON_TYPE", Kn0 = [0, BR, $S, 9], Hn0 = [0, BR, Hg2, 9], Wn0 = wL, Vn0 = "*/", $n0 = wL, Qn0 = "unreachable line_comment", Zn0 = "unreachable string_quote", x70 = "\\", r70 = "unreachable template_part", e70 = `\r
|
|
274402
|
-
`, t70 = ug2, n70 = "unreachable regexp_class", u70 = LD, i70 = "unreachable regexp_body", f70 = rx2, c70 = rx2, s70 = rx2, a70 = rx2, o70 = hR, v70 = "{'>'}", l70 = F63, p70 = "{'}'}", k70 = em3, m70 = Ao3, h70 = NT, d70 = Qm3, y70 = hR, _70 = Ao3, w70 = NT, g70 = Qm3, b70 = "unreachable type_token wholenumber", T70 = "unreachable type_token wholebigint", E70 = "unreachable type_token floatbigint", S70 = "unreachable type_token scinumber", A70 = "unreachable type_token scibigint", I70 = "unreachable type_token hexnumber", P70 = "unreachable type_token hexbigint", C70 = "unreachable type_token legacyoctnumber", N70 = "unreachable type_token octnumber", O70 = "unreachable type_token octbigint", j70 = "unreachable type_token binnumber", D70 = "unreachable type_token bigbigint", R70 = "unreachable type_token", F70 = yL, M70 = [11, 1], L70 = [11, 0], q70 = "unreachable template_tail", B70 = rx2, U70 = rx2, X70 = "unreachable jsx_child", G70 = "unreachable jsx_tag", Y70 = [0, hw], z70 = [0, 913], J70 = [0, Y32], K70 = [0, mh2], H70 = [0, cR], W70 = [0, QP], V70 = [0, 8747], $70 = [0, gD], Q70 = [0, 916], Z70 = [0, 8225], xu0 = [0, 935], ru0 = [0, VI], eu0 = [0, 914], tu0 = [0, vL], nu0 = [0, IF], uu0 = [0, RE], iu0 = [0, 915], fu0 = [0, TD], cu0 = [0, 919], su0 = [0, 917], au0 = [0, _L], ou0 = [0, KD], vu0 = [0, HR], lu0 = [0, 924], pu0 = [0, 923], ku0 = [0, 922], mu0 = [0, oF2], hu0 = [0, 921], du0 = [0, eM], yu0 = [0, Hg2], _u0 = [0, xF], wu0 = [0, ty2], gu0 = [0, 927], bu0 = [0, 937], Tu0 = [0, HD], Eu0 = [0, $R], Su0 = [0, uR], Au0 = [0, 338], Iu0 = [0, 352], Pu0 = [0, 929], Cu0 = [0, 936], Nu0 = [0, 8243], Ou0 = [0, 928], ju0 = [0, 934], Du0 = [0, qL], Ru0 = [0, o_2], Fu0 = [0, 933], Mu0 = [0, pM], Lu0 = [0, nL], qu0 = [0, fD2], Bu0 = [0, 920], Uu0 = [0, 932], Xu0 = [0, jD], Gu0 = [0, dR], Yu0 = [0, KF], zu0 = [0, JR], Ju0 = [0, 918], Ku0 = [0, SR], Hu0 = [0, HF], Wu0 = [0, 926], Vu0 = [0, lF2], $u0 = [0, jM], Qu0 = [0, 925], Zu0 = [0, 39], xi0 = [0, 8736], ri0 = [0, 8743], ei0 = [0, 38], ti0 = [0, 945], ni0 = [0, 8501], ui0 = [0, Sv2], ii0 = [0, 8226], fi0 = [0, JD2], ci0 = [0, 946], si0 = [0, 8222], ai0 = [0, RD], oi0 = [0, wM], vi0 = [0, 8776], li0 = [0, qI], pi0 = [0, 8773], ki0 = [0, 9827], mi0 = [0, CD2], hi0 = [0, 967], di0 = [0, qM], yi0 = [0, Wm3], _i0 = [0, PD], wi0 = [0, GF], gi0 = [0, 8595], bi0 = [0, 8224], Ti0 = [0, 8659], Ei0 = [0, sR], Si0 = [0, 8746], Ai0 = [0, 8629], Ii0 = [0, yR], Pi0 = [0, 8745], Ci0 = [0, 8195], Ni0 = [0, 8709], Oi0 = [0, iD2], ji0 = [0, dL], Di0 = [0, aL], Ri0 = [0, Gp3], Fi0 = [0, 9830], Mi0 = [0, 8707], Li0 = [0, 8364], qi0 = [0, EM], Bi0 = [0, rl5], Ui0 = [0, 951], Xi0 = [0, 8801], Gi0 = [0, 949], Yi0 = [0, 8194], zi0 = [0, 8805], Ji0 = [0, 947], Ki0 = [0, 8260], Hi0 = [0, jE], Wi0 = [0, nR], Vi0 = [0, $S], $i0 = [0, 8704], Qi0 = [0, XF], Zi0 = [0, EL], xf0 = [0, 8230], rf0 = [0, 9829], ef0 = [0, 8596], tf0 = [0, 8660], nf0 = [0, 62], uf0 = [0, 402], if0 = [0, 948], ff0 = [0, nF2], cf0 = [0, E9], sf0 = [0, 8712], af0 = [0, sP], of0 = [0, 953], vf0 = [0, 8734], lf0 = [0, 8465], pf0 = [0, IM], kf0 = [0, 8220], mf0 = [0, 8968], hf0 = [0, 8592], df0 = [0, Sg2], yf0 = [0, 10216], _f0 = [0, 955], wf0 = [0, 8656], gf0 = [0, 954], bf0 = [0, 60], Tf0 = [0, 8216], Ef0 = [0, 8249], Sf0 = [0, NM], Af0 = [0, 9674], If0 = [0, 8727], Pf0 = [0, 8970], Cf0 = [0, AL], Nf0 = [0, 8711], Of0 = [0, 956], jf0 = [0, 8722], Df0 = [0, j_], Rf0 = [0, NS], Ff0 = [0, 8212], Mf0 = [0, NR], Lf0 = [0, 8804], qf0 = [0, 957], Bf0 = [0, kF], Uf0 = [0, 8836], Xf0 = [0, 8713], Gf0 = [0, KR], Yf0 = [0, 8715], zf0 = [0, 8800], Jf0 = [0, 8853], Kf0 = [0, 959], Hf0 = [0, 969], Wf0 = [0, 8254], Vf0 = [0, HM], $f0 = [0, 339], Qf0 = [0, jv], Zf0 = [0, BM], xc0 = [0, s9], rc0 = [0, ul6], ec0 = [0, 8855], tc0 = [0, ME], nc0 = [0, t110], uc0 = [0, xI], ic0 = [0, py2], fc0 = [0, da5], cc0 = [0, rL], sc0 = [0, 982], ac0 = [0, 960], oc0 = [0, 966], vc0 = [0, 8869], lc0 = [0, 8240], pc0 = [0, 8706], kc0 = [0, 8744], mc0 = [0, 8211], hc0 = [0, 10217], dc0 = [0, 8730], yc0 = [0, 8658], _c0 = [0, 34], wc0 = [0, 968], gc0 = [0, 8733], bc0 = [0, 8719], Tc0 = [0, 961], Ec0 = [0, 8971], Sc0 = [0, LL], Ac0 = [0, 8476], Ic0 = [0, 8221], Pc0 = [0, 8969], Cc0 = [0, 8594], Nc0 = [0, z_], Oc0 = [0, bM], jc0 = [0, Sb2], Dc0 = [0, 8901], Rc0 = [0, 353], Fc0 = [0, 8218], Mc0 = [0, 8217], Lc0 = [0, 8250], qc0 = [0, 8835], Bc0 = [0, 8721], Uc0 = [0, 8838], Xc0 = [0, 8834], Gc0 = [0, 9824], Yc0 = [0, 8764], zc0 = [0, 962], Jc0 = [0, 963], Kc0 = [0, 8207], Hc0 = [0, 952], Wc0 = [0, 8756], Vc0 = [0, 964], $c0 = [0, e8], Qc0 = [0, 8839], Zc0 = [0, AC], xs0 = [0, fk], rs0 = [0, ol7], es0 = [0, 8657], ts0 = [0, 8482], ns0 = [0, lk], us0 = [0, 732], is0 = [0, Q32], fs0 = [0, 8201], cs0 = [0, 977], ss0 = [0, sM], as0 = [0, xl6], os0 = [0, 965], vs0 = [0, 978], ls0 = [0, IL], ps0 = [0, jS], ks0 = [0, WL], ms0 = [0, tR], hs0 = [0, 8205], ds0 = [0, 950], ys0 = [0, Bk], _s0 = [0, hF], ws0 = [0, QE], gs0 = [0, 958], bs0 = [0, 8593], Ts0 = [0, oD2], Es0 = [0, 8242], Ss0 = [0, kI], As0 = "unreachable regexp", Is0 = "unreachable token wholenumber", Ps0 = "unreachable token wholebigint", Cs0 = "unreachable token floatbigint", Ns0 = "unreachable token scinumber", Os0 = "unreachable token scibigint", js0 = "unreachable token hexnumber", Ds0 = "unreachable token hexbigint", Rs0 = "unreachable token legacyoctnumber", Fs0 = "unreachable token legacynonoctnumber", Ms0 = "unreachable token octnumber", Ls0 = "unreachable token octbigint", qs0 = "unreachable token bignumber", Bs0 = "unreachable token bigint", Us0 = "unreachable token", Xs0 = yL, Gs0 = [7, "#!"], Ys0 = "expected ?", zs0 = "unreachable string_escape", Js0 = V24, Ks0 = P63, Hs0 = P63, Ws0 = V24, Vs0 = KP, $s0 = EF, Qs0 = "n", Zs0 = "r", xa0 = "t", ra0 = zF, ea0 = P63, ta0 = Ao3, na0 = Ao3, ua0 = "unreachable id_char", ia0 = Ao3, fa0 = Ao3, ca0 = P63, sa0 = uL, aa0 = pD2, oa0 = gb2, va0 = [28, "token ILLEGAL"], la0 = [0, [11, "the identifier `", [2, 0, [12, 96, 0]]], "the identifier `%s`"], pa0 = [0, 1], ka0 = [0, 1], ma0 = OF, ha0 = OF, da0 = [0, [11, "an identifier. When exporting a ", [2, 0, [11, " as a named export, you must specify a ", [2, 0, [11, " name. Did you mean `export default ", [2, 0, [11, " ...`?", 0]]]]]]], "an identifier. When exporting a %s as a named export, you must specify a %s name. Did you mean `export default %s ...`?"], ya0 = Sh2, _a0 = "Peeking current location when not available", wa0 = [0, "src/parser/parser_env.ml", SR, 9], ga0 = "Internal Error: Tried to add_declared_private with outside of class scope.", ba0 = "Internal Error: `exit_class` called before a matching `enter_class`", Ta0 = rx2, Ea0 = [0, 0, 0], Sa0 = [0, 0, 0], Aa0 = "Parser_env.Try.Rollback", Ia0 = rx2, Pa0 = rx2, Ca0 = [0, H24, of8, $i9, CR, TM, V72, $24, qf3, h7, pc3, bc4, Rf4, Gi8, Du4, Fi8, hu4, F72, d7, Qu2, Uf3, J72, ui11, cf3, X72, Zn10, Zf2, _u4, vu4, $n8, ac3, Ps9, oc4, _f4, Sf3, Es8, Uc2, jc2, Q72, He10, t72, Wi8, s7, Qc2, Bi8, ic3, rs8, Ve9, Jc2, Uu4, fu4, k72, ss9, ii10, lu4, T7, Je11, ci10, w72, Of3, qu4, fc3, Ku4, pi11, q72, a7, If4, _72, fs8, Ge11, Lf3, Pi8, Zu2, M72, pu2, xf4, af3, P72, $f3, au3, Fc2, Zi8, m7, Bn7, jf3, Fu4, Y7, bi11, $c2, Ai9, Eu5, ge11, es8, x72, rc3, Vu4, bs8, Wn8, e7, o7, Kf2, Pc3, Vn7, r7, Xi9, Qf2, kf4, Lu4, sf3, Xn9, Vc3, zu3, ni10, Oi9, Hu3, $u4, si10, n7, Ii8, Zc2, Ui8, ys8, Gf3, Kc2, Xu3, Mu4, Ei10, Cc3, wu3, Kn10, hs8, df3, W72, Ki9, uc3, hf3, Nf3, uu4, du4, E7, ps7, L72, mf3, gu4, Au3, Cu3, Yc3, su3, os7, N72, oi10, G12, g7, Hn8, Bc2, ai10, pf3, ku3, xu3, Tf3, Jf2, ms8, Tc4, Dc2, z72, dc3, Bu3, zf3, f7, D7, Z72, Xf, I72, ds7, fi11, Mi7, Di8, Rc3, zn9, Yu2, xi11, eu4, vf4, ae9, lc3, is9, cc4, Ou5, Df4, as19, Vi8, Gn8, W24, Ri8, U72, cs7, St12, Ni9, qc3, gs7, tu3, i7, vi11, Ru4, di11, Qi9, S7, kc3, _c3, ti10, cu3, gf3, nc4, As8, Iu4, wf3, Qn8, vs9, Ci8, hi11, Hi10, ws8, bf3, v72, b7, Mf4, mi11, C72, Nc3, ts8, p7, t26, Un8, Mc2, yf3, Is8, A72, Yn7, Yi9, Ac3, Yf3, Xc2, Oc3, Ts6, O7, Hc2, Bf3, wc3, Ec4, bu4, ju4, j72, be10, nf3, Ju5, qn8, hc3, Ic3, wi10, Gc2, gi11, lf3, yu5, zi8, ou3, xc3, us8, Ke12, Xe11, rf3, ff3, ri10, Wc2, ns8, K72, mu3, Vf3, Sc4, _s7, Jn9, gc3, qi8, Hf, ru4, uf3, aR, H72, vD, qF, yc3, Ef3, ji7, y7, sc3, Wf3, B7, ei10, Si11, yi10, Wu2, Ff3, Gu3, Su3, Pf4, c7, li10, l7, Ji7, _i9, Cs6, We12, iu3, zc3, vn7, G72, R72, ki10, ls7, u7, Tu5, Pu3, Ti11, Lc2, tf3, vc4, tn8, Af3], Na0 = [0, ss9, fi11, _c3, Ni9, di11, Cs6, mf3, si10, sf3, z72, eu4, zc3, _u4, e7, Ve9, bs8, Mc2, W72, hf3, Ff3, Es8, Xi9, Z72, Ii8, lc3, I72, Ec4, O7, of8, Fu4, tu3, Ku4, jc2, hi11, m7, pf3, Ic3, Vf3, gs7, wc3, ys8, St12, V72, Mf4, $f3, lf3, Ji7, ti10, l7, f7, Ac3, Lf3, vi11, Hi10, rs8, Vc3, U72, Au3, fu4, Kn10, Ou5, bu4, ai10, Ui8, Si11, ji7, es8, Af3, pu2, Ki9, qi8, X72, Lu4, Zu2, ms8, Wf3, o7, Ge11, r7, Qi9, x72, Gf3, dc3, D7, qc3, G12, ff3, $n8, Oc3, E7, Nf3, Tc4, g7, kc3, su3, P72, tf3, Gc2, Yn7, Mu4, a7, Eu5, vc4, j72, _i9, T7, $24, Pi8, ou3, d7, w72, Ri8, wu3, ki10, Ci8, Q72, Rc3, Wu2, Oi9, ic3, be10, v72, vu4, H24, Hn8, Uc2, zi8, xf4, Du4, $c2, xc3, Yc3, If4, ls7, Gi8, Ef3, yu5, $u4, pc3, du4, Xf, Pu3, oc4, xi11, Cc3, Hc2, Nc3, Wn8, yf3, Bc2, bi11, mi11, Uf3, Ps9, Hf, qf3, _f4, ii10, Qu2, Uu4, Rf4, B7, is9, ws8, y7, oi10, S7, ru4, bc4, H72, Hu3, xu3, Sc4, u7, Ei10, Pf4, yi10, Jn9, L72, ps7, Y7, Tf3, gc3, Xu3, W24, Je11, F72, J72, Jc2, jf3, He10, Ke12, n7, cs7, Vu4, p7, ds7, ge11, iu3, As8, Bf3, cc4, sc3, Un8, cu3, Mi7, Ru4, hu4, Ts6, q72, fs8, fc3, Qn8, Vi8, uc3, qu4, Xc2, A72, ns8, ni10, lu4, Xn9, Df4, Pc3, Fc2, ac3, kf4, M72, Vn7, ui11, wi10, uu4, c7, gi11, G72, zn9, Bi8, ju4, Sf3, i7, _72, Gn8, Qf2, Su3, zu3, zf3, ei10, Cu3, vf4, nf3, Zf2, tn8, h7, Ju5, li10, Zn10, qn8, Bu3, Di8, ri10, ku3, Zi8, Zc2, Yu2, C72, gu4, Jf2, cf3, s7, Tu5, df3, K72, Bn7, Ti11, R72, t26, Ai9, uf3, ts8, hs8, Iu4, wf3, k72, Xe11, gf3, _s7, af3, Yi9, hc3, yc3, Wi8, Qc2, vs9, Is8, Fi8, bf3, os7, rc3, vn7, as19, Gu3, Dc2, Kf2, nc4, us8, pi11, ci10, Yf3, We12, Lc2, ae9, N72, rf3, $i9, mu3, Of3, b7, Wc2, au3, t72, Kc2], Oa0 = [0, ss9, fi11, _c3, Ni9, di11, Cs6, mf3, si10, sf3, z72, eu4, zc3, _u4, e7, Ve9, bs8, Mc2, W72, hf3, Ff3, Es8, Xi9, Z72, Ii8, lc3, I72, Ec4, O7, of8, Fu4, tu3, Ku4, jc2, hi11, m7, pf3, Ic3, Vf3, gs7, wc3, ys8, St12, V72, TM, Mf4, $f3, lf3, Ji7, ti10, l7, f7, Ac3, Lf3, vi11, Hi10, rs8, Vc3, U72, Au3, fu4, Kn10, Ou5, bu4, ai10, Ui8, Si11, ji7, es8, Af3, pu2, Ki9, qi8, vD, X72, Lu4, Zu2, ms8, Wf3, o7, Ge11, r7, Qi9, x72, Gf3, dc3, D7, qc3, G12, ff3, $n8, Oc3, E7, Nf3, Tc4, g7, kc3, su3, P72, tf3, Gc2, Yn7, Mu4, a7, Eu5, vc4, j72, _i9, T7, $24, Pi8, ou3, d7, w72, Ri8, wu3, ki10, Ci8, Q72, Rc3, Wu2, Oi9, ic3, be10, v72, vu4, H24, Hn8, Uc2, zi8, xf4, Du4, $c2, xc3, Yc3, If4, ls7, Gi8, Ef3, yu5, $u4, pc3, du4, Xf, Pu3, oc4, xi11, Cc3, Hc2, Nc3, Wn8, yf3, Bc2, bi11, mi11, Uf3, Ps9, Hf, qf3, _f4, ii10, Qu2, Uu4, Rf4, B7, is9, ws8, y7, oi10, S7, ru4, bc4, H72, Hu3, xu3, Sc4, u7, Ei10, Pf4, yi10, Jn9, L72, ps7, Y7, Tf3, gc3, Xu3, W24, Je11, F72, J72, Jc2, jf3, He10, Ke12, n7, cs7, Vu4, p7, ds7, ge11, iu3, As8, Bf3, cc4, sc3, Un8, cu3, Mi7, Ru4, hu4, Ts6, q72, fs8, fc3, Qn8, Vi8, uc3, qu4, Xc2, A72, ns8, ni10, lu4, Xn9, Df4, Pc3, Fc2, ac3, kf4, M72, Vn7, ui11, wi10, uu4, c7, gi11, G72, zn9, qF, Bi8, ju4, Sf3, i7, _72, Gn8, Qf2, Su3, zu3, zf3, ei10, Cu3, vf4, nf3, Zf2, aR, tn8, h7, Ju5, li10, Zn10, CR, qn8, Bu3, Di8, ri10, ku3, Zi8, Zc2, Yu2, C72, gu4, Jf2, cf3, s7, Tu5, df3, K72, Bn7, Ti11, R72, t26, Ai9, uf3, ts8, hs8, Iu4, wf3, k72, Xe11, gf3, _s7, af3, Yi9, hc3, yc3, Wi8, Qc2, vs9, Is8, Fi8, bf3, os7, rc3, vn7, as19, Gu3, Dc2, Kf2, nc4, us8, pi11, ci10, Yf3, We12, Lc2, ae9, N72, rf3, $i9, mu3, Of3, b7, Wc2, au3, t72, Kc2], ja0 = [0, H24, of8, $i9, V72, $24, qf3, h7, pc3, bc4, Rf4, Gi8, Du4, Fi8, hu4, F72, d7, Qu2, Uf3, J72, ui11, cf3, X72, Zn10, Zf2, _u4, vu4, $n8, ac3, Ps9, oc4, _f4, Sf3, Es8, Uc2, jc2, Q72, He10, t72, Wi8, s7, Qc2, Bi8, ic3, rs8, Ve9, Jc2, Uu4, fu4, k72, ss9, ii10, lu4, T7, Je11, ci10, w72, Of3, qu4, fc3, Ku4, pi11, q72, a7, If4, _72, fs8, Ge11, Lf3, Pi8, Zu2, M72, pu2, xf4, af3, P72, $f3, au3, Fc2, Zi8, m7, Bn7, jf3, Fu4, Y7, bi11, $c2, Ai9, Eu5, ge11, es8, x72, rc3, Vu4, bs8, Wn8, e7, o7, Kf2, Pc3, Vn7, r7, Xi9, Qf2, kf4, Lu4, sf3, Xn9, Vc3, zu3, ni10, Oi9, Hu3, $u4, si10, n7, Ii8, Zc2, Ui8, ys8, Gf3, Kc2, Xu3, Mu4, Ei10, Cc3, wu3, Kn10, hs8, df3, W72, Ki9, uc3, hf3, Nf3, uu4, du4, E7, ps7, L72, mf3, gu4, Au3, Cu3, Yc3, su3, os7, N72, oi10, G12, g7, Hn8, Bc2, ai10, pf3, ku3, xu3, Tf3, Jf2, ms8, Tc4, Dc2, z72, dc3, Bu3, zf3, f7, D7, Z72, Xf, I72, ds7, fi11, Mi7, Di8, Rc3, zn9, Yu2, xi11, eu4, vf4, ae9, lc3, is9, cc4, Ou5, Df4, as19, Vi8, Gn8, W24, Ri8, U72, cs7, St12, Ni9, qc3, gs7, tu3, i7, vi11, Ru4, di11, Qi9, S7, kc3, _c3, ti10, cu3, gf3, nc4, As8, Iu4, wf3, Qn8, vs9, Ci8, hi11, Hi10, ws8, bf3, v72, b7, Mf4, mi11, C72, Nc3, ts8, p7, t26, Un8, Mc2, yf3, Is8, A72, Yn7, Yi9, Ac3, Yf3, Xc2, Oc3, Ts6, O7, Hc2, Bf3, wc3, Ec4, bu4, ju4, j72, be10, nf3, Ju5, qn8, hc3, Ic3, wi10, Gc2, gi11, lf3, yu5, zi8, ou3, xc3, us8, Ke12, Xe11, rf3, ff3, ri10, Wc2, ns8, K72, mu3, Vf3, Sc4, _s7, Jn9, gc3, qi8, Hf, ru4, uf3, H72, yc3, Ef3, ji7, y7, sc3, Wf3, B7, ei10, Si11, yi10, Wu2, Ff3, Gu3, Su3, Pf4, c7, li10, l7, Ji7, _i9, Cs6, We12, iu3, zc3, vn7, G72, R72, ki10, ls7, u7, Tu5, Pu3, Ti11, Lc2, tf3, vc4, tn8, Af3], Da0 = $32, Ra0 = nm3, Fa0 = bo5, Ma0 = I63, La0 = Je11, qa0 = Ve9, Ba0 = $P, Ua0 = DT, Xa0 = Bv2, Ga0 = He10, Ya0 = um3, za0 = g62, Ja0 = Tp3, Ka0 = L82, Ha0 = No3, Wa0 = cl6, Va0 = Hv, $a0 = wa4, Qa0 = Pa5, Za0 = We12, xo0 = rk, ro0 = Rm3, eo0 = Xe11, to0 = Fv2, no0 = Tk, uo0 = U82, io0 = K82, fo0 = h62, co0 = mc3, so0 = Ue10, ao0 = Ck, oo0 = Yv, vo0 = E62, lo0 = Aa3, po0 = ga2, ko0 = j63, mo0 = dh2, ho0 = W24, do0 = fl6, yo0 = Oo5, _o0 = ae9, wo0 = Pk, go0 = Q63, bo0 = k63, To0 = W63, Eo0 = H24, So0 = Ke12, Ao0 = x43, Io0 = tc3, Po0 = zb2, Co0 = JS, No0 = Io5, Oo0 = Kv, jo0 = ik, Do0 = wk, Ro0 = be10, Fo0 = H32, Mo0 = $v, Lo0 = K32, qo0 = ga2, Bo0 = H63, Uo0 = hk, Xo0 = bk, Go0 = Hk, Yo0 = Lm3, zo0 = Xv, Jo0 = J63, Ko0 = tl4, Ho0 = V32, Wo0 = O62, Vo0 = rm4, $o0 = [0, Sh2], Qo0 = rx2, Zo0 = [19, 1], xv0 = [19, 0], rv0 = [0, 0], ev0 = Ta3, tv0 = [0, 0], nv0 = [0, "a type"], uv0 = [0, 0], iv0 = [0, "a number literal type"], fv0 = [0, 0], cv0 = J63, sv0 = tl4, av0 = V32, ov0 = "You should only call render_type after making sure the next token is a renders variant", vv0 = [0, [0, 0, 0, 0, 0]], lv0 = [0, 0, 0, 0], pv0 = [0, 1], kv0 = [0, il7, 1466, 6], mv0 = [0, il7, 1469, 6], hv0 = [0, il7, 1572, 8], dv0 = [0, 1], yv0 = [0, il7, 1589, 8], _v0 = "Can not have both `static` and `proto`", wv0 = Ue10, gv0 = rw, bv0 = [0, 0], Tv0 = [0, "the end of a tuple type (no trailing comma is allowed in inexact tuple type)."], Ev0 = [0, il7, Sv2, 15], Sv0 = [0, il7, sP, 15], Av0 = ze11, Iv0 = ze11, Pv0 = Kk, Cv0 = G63, Nv0 = [0, [11, "Failure while looking up ", [2, 0, [11, ". Index: ", [4, 0, 0, 0, [11, ". Length: ", [4, 0, 0, 0, [12, 46, 0]]]]]]], "Failure while looking up %s. Index: %d. Length: %d."], Ov0 = [0, 0, 0, 0], jv0 = "Offset_utils.Offset_lookup_failed", Dv0 = m12, Rv0 = kD, Fv0 = G63, Mv0 = Kk, Lv0 = wD, qv0 = G63, Bv0 = Kk, Uv0 = vR, Xv0 = Yx, Gv0 = "normal", Yv0 = tc3, zv0 = "jsxTag", Jv0 = "jsxChild", Kv0 = "template", Hv0 = nD2, Wv0 = "context", Vv0 = tc3, $v0 = [6, 0], Qv0 = [0, 0], Zv0 = [0, 1], x30 = [0, 4], r30 = [0, 2], e30 = [0, 3], t30 = [0, 0], n30 = ze11, u30 = [0, 0, 0, 0, 0, 0], i30 = [0, 0], f30 = [0, OM], c30 = [0, 1], s30 = [0, 0], a30 = Ta3, o30 = [0, 73], v30 = [0, 84], l30 = aM, p30 = rE, k30 = "exports", m30 = K63, h30 = [0, rx2, rx2, 0], d30 = [0, AD], y30 = [0, 84], _30 = [0, "a declaration, statement or export specifiers"], w30 = [0, 1], g30 = [0, I9, 1971, 21], b30 = [0, "the keyword `as`"], T30 = [0, 29], E30 = [0, 29], S30 = [0, 0], A30 = [0, 1], I30 = [0, AD], P30 = [0, "the keyword `from`"], C30 = [0, rx2, rx2, 0], N30 = "Label", O30 = [0, OM], j30 = [0, 0, 0], D30 = [0, 38], R30 = [0, I9, 372, 22], F30 = [0, 37], M30 = [0, I9, 391, 22], L30 = [0, 0], q30 = "the token `;`", B30 = [0, 0], U30 = [0, 0], X30 = FR, G30 = [0, Sh2], Y30 = FR, z30 = [28, St12], J30 = Ta3, K30 = [0, 73], H30 = [0, rx2, 0], W30 = It11, V30 = [0, rx2, 0], $30 = [0, 73], Q30 = [0, 73], Z30 = $32, xl0 = [0, rx2, 0], rl0 = [0, 0, 0], el0 = [0, 0, 0], tl0 = [0, [0, 8]], nl0 = [0, [0, 7]], ul0 = [0, [0, 6]], il0 = [0, [0, 10]], fl0 = [0, [0, 9]], cl0 = [0, [0, 11]], sl0 = [0, [0, 5]], al0 = [0, [0, 4]], ol0 = [0, [0, 2]], vl0 = [0, [0, 3]], ll0 = [0, [0, 1]], pl0 = [0, [0, 0]], kl0 = [0, [0, 12]], ml0 = [0, [0, 13]], hl0 = [0, [0, 14]], dl0 = [0, 0], yl0 = [0, 1], _l0 = [0, 0], wl0 = [0, 2], gl0 = [0, 3], bl0 = [0, 7], Tl0 = [0, 6], El0 = [0, 4], Sl0 = [0, 5], Al0 = [0, 1], Il0 = [0, 0], Pl0 = [0, 1], Cl0 = [0, 0], Nl0 = fl6, Ol0 = [0, "either a call or access of `super`"], jl0 = fl6, Dl0 = W24, Rl0 = w63, Fl0 = w63, Ml0 = [0, 2], Ll0 = [0, 0], ql0 = [0, 1], Bl0 = Yv, Ul0 = [0, "the identifier `target`"], Xl0 = [0, 0], Gl0 = [0, 1], Yl0 = [0, 0], zl0 = [0, 0], Jl0 = [0, 2], Kl0 = [0, 2], Hl0 = [0, 1], Wl0 = [0, 73], Vl0 = P63, $l0 = uL, Ql0 = gb2, Zl0 = gb2, x60 = pD2, r60 = [0, 0], e60 = [0, 1], t60 = [0, 0], n60 = se11, u60 = se11, i60 = [0, "a regular expression"], f60 = rx2, c60 = rx2, s60 = rx2, a60 = [0, 81], o60 = [0, "src/parser/expression_parser.ml", 1550, 17], v60 = [0, "a template literal part"], l60 = [0, [0, rx2, rx2], 1], p60 = Pv2, k60 = [0, 6], m60 = [0, [0, 17, [0, 2]]], h60 = [0, [0, 18, [0, 3]]], d60 = [0, [0, 19, [0, 4]]], y60 = [0, [0, 0, [0, 5]]], _60 = [0, [0, 1, [0, 5]]], w60 = [0, [0, 2, [0, 5]]], g60 = [0, [0, 3, [0, 5]]], b60 = [0, [0, 5, [0, 6]]], T60 = [0, [0, 7, [0, 6]]], E60 = [0, [0, 4, [0, 6]]], S60 = [0, [0, 6, [0, 6]]], A60 = [0, [0, 8, [0, 7]]], I60 = [0, [0, 9, [0, 7]]], P60 = [0, [0, 10, [0, 7]]], C60 = [0, [0, 11, [0, 8]]], N60 = [0, [0, 12, [0, 8]]], O60 = [0, [0, 15, [0, 9]]], j60 = [0, [0, 13, [0, 9]]], D60 = [0, [0, 14, [1, 10]]], R60 = [0, [0, 16, [0, 9]]], F60 = [0, [0, 21, [0, 6]]], M60 = [0, [0, 20, [0, 6]]], L60 = [23, Dw], q60 = [13, "JSX fragment"], B60 = Iv2, U60 = ln9, X60 = [0, sn9], G60 = [1, sn9], Y60 = [0, rx2, rx2, 0], z60 = [0, Sh2], J60 = rx2, K60 = [0, "a numeric or string literal"], H60 = [0, rx2, '""', 0], W60 = [0, 0], V60 = [0, "a number literal"], $60 = [0, [0, 0, V24, 0]], Q60 = [0, 84], Z60 = [21, dM], x40 = [21, R63], r40 = [0, 0, 0], e40 = h62, t40 = [0, rx2, 0], n40 = "unexpected PrivateName in Property, expected a PrivateField", u40 = [0, 0, 0], i40 = Sa2, f40 = "Must be one of the above", c40 = [0, 1], s40 = [0, 1], a40 = [0, 1], o40 = Sa2, v40 = Sa2, l40 = p_2, p40 = "Internal Error: private name found in object props", k40 = [0, 0, 0, 0], m40 = [0, cF2], h40 = [19, [0, 0]], d40 = [0, cF2], y40 = ug2, _40 = "Nooo: ", w40 = Fv2, g40 = "Parser error: No such thing as an expression pattern!", b40 = [0, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], T40 = [0, "src/parser/parser_flow.ml", fk, 28], E40 = [0, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], S40 = kD, A40 = Yx, I40 = $D, P40 = eR, C40 = eR, N40 = $D, O40 = tc3, j40 = sD2, D40 = w12, R40 = m12, F40 = "InterpreterDirective", M40 = "interpreter", L40 = "Program", q40 = w12, B40 = "RecordBody", U40 = m12, X40 = Y12, G40 = en10, Y40 = "RecordStaticProperty", z40 = "defaultValue", J40 = Y12, K40 = en10, H40 = "RecordProperty", W40 = S62, V40 = "BreakStatement", $40 = S62, Q40 = "ContinueStatement", Z40 = "DebuggerStatement", xp0 = Wv, rp0 = "DeclareExportAllDeclaration", ep0 = Wv, tp0 = l_2, np0 = IE, up0 = Fv2, ip0 = "DeclareExportDeclaration", fp0 = w12, cp0 = Yr10, sp0 = "DeclareModule", ap0 = Y12, op0 = "DeclareModuleExports", vp0 = w12, lp0 = Yr10, pp0 = NL, kp0 = "DeclareNamespace", mp0 = Z32, hp0 = w12, dp0 = "DoWhileStatement", yp0 = "EmptyStatement", _p0 = cS, wp0 = IE, gp0 = "ExportDefaultDeclaration", bp0 = cS, Tp0 = cA, Ep0 = Wv, Sp0 = "ExportAllDeclaration", Ap0 = cS, Ip0 = Wv, Pp0 = l_2, Cp0 = IE, Np0 = "ExportNamedDeclaration", Op0 = "directive", jp0 = t26, Dp0 = "ExpressionStatement", Rp0 = w12, Fp0 = "update", Mp0 = Z32, Lp0 = ks8, qp0 = "ForStatement", Bp0 = "each", Up0 = w12, Xp0 = fn10, Gp0 = Ea5, Yp0 = "ForInStatement", zp0 = Kv, Jp0 = w12, Kp0 = fn10, Hp0 = Ea5, Wp0 = "ForOfStatement", Vp0 = lR, $p0 = rP, Qp0 = Z32, Zp0 = "IfStatement", xk0 = tc3, rk0 = Aa3, ek0 = m12, tk0 = XD, nk0 = Wv, uk0 = l_2, ik0 = "ImportDeclaration", fk0 = w12, ck0 = S62, sk0 = "LabeledStatement", ak0 = J92, ok0 = $12, vk0 = "MatchStatement", lk0 = "RecordImplements", pk0 = w12, kk0 = Oo5, mk0 = B24, hk0 = Yr10, dk0 = "RecordDeclaration", yk0 = $12, _k0 = "ReturnStatement", wk0 = J92, gk0 = "discriminant", bk0 = "SwitchStatement", Tk0 = $12, Ek0 = "ThrowStatement", Sk0 = "finalizer", Ak0 = "handler", Ik0 = vn7, Pk0 = "TryStatement", Ck0 = w12, Nk0 = Z32, Ok0 = "WhileStatement", jk0 = w12, Dk0 = Dp3, Rk0 = "WithStatement", Fk0 = x9, Mk0 = $12, Lk0 = NA, qk0 = x9, Bk0 = $12, Uk0 = NA, Xk0 = KT, Gk0 = "ArrayExpression", Yk0 = B24, zk0 = gh2, Jk0 = t26, Kk0 = Ge11, Hk0 = Ey2, Wk0 = Io5, Vk0 = w12, $k0 = on7, Qk0 = Yr10, Zk0 = "ArrowFunctionExpression", x80 = t26, r80 = "AsConstExpression", e80 = Y12, t80 = t26, n80 = "AsExpression", u80 = p_2, i80 = fn10, f80 = Ea5, c80 = Gv, s80 = "AssignmentExpression", a80 = fn10, o80 = Ea5, v80 = Gv, l80 = "BinaryExpression", p80 = "CallExpression", k80 = lR, m80 = rP, h80 = Z32, d80 = "ConditionalExpression", y80 = Wv, _80 = "ImportExpression", w80 = LF, g80 = CM, b80 = Dw, T80 = fn10, E80 = Ea5, S80 = Gv, A80 = "LogicalExpression", I80 = J92, P80 = $12, C80 = "MatchExpression", N80 = "MemberExpression", O80 = Tm3, j80 = w63, D80 = "MetaProperty", R80 = Qb2, F80 = h8, M80 = fR, L80 = "NewExpression", q80 = A63, B80 = "ObjectExpression", U80 = ft10, X80 = "OptionalCallExpression", G80 = ft10, Y80 = "OptionalMemberExpression", z80 = rM, J80 = "SequenceExpression", K80 = "Super", H80 = "ThisExpression", W80 = Y12, V80 = t26, $80 = "TypeCastExpression", Q80 = Y12, Z80 = t26, xm0 = "SatisfiesExpression", rm0 = x9, em0 = $12, tm0 = NA, nm0 = ze11, um0 = $72, im0 = SD, fm0 = VL, cm0 = Aa3, sm0 = ga2, am0 = E62, om0 = "matched above", vm0 = $12, lm0 = XR, pm0 = Gv, km0 = "UnaryExpression", mm0 = $12, hm0 = "AwaitExpression", dm0 = kR, ym0 = ZM, _m0 = XR, wm0 = $12, gm0 = Gv, bm0 = "UpdateExpression", Tm0 = "delegate", Em0 = $12, Sm0 = "YieldExpression", Am0 = "MatchExpressionCase", Im0 = "guard", Pm0 = w12, Cm0 = ge11, Nm0 = "MatchStatementCase", Om0 = "literal", jm0 = "MatchLiteralPattern", Dm0 = "MatchWildcardPattern", Rm0 = ze11, Fm0 = $72, Mm0 = $12, Lm0 = Gv, qm0 = "MatchUnaryPattern", Bm0 = "MatchObjectPattern", Um0 = "MatchInstanceObjectPattern", Xm0 = DF, Gm0 = _a6, Ym0 = "MatchInstancePattern", zm0 = "patterns", Jm0 = "MatchOrPattern", Km0 = Ih2, Hm0 = ge11, Wm0 = "MatchAsPattern", Vm0 = Yr10, $m0 = "MatchIdentifierPattern", Qm0 = Tm3, Zm0 = "base", xh0 = "MatchMemberPattern", rh0 = ba3, eh0 = Yr10, th0 = "MatchBindingPattern", nh0 = p62, uh0 = KT, ih0 = "MatchArrayPattern", fh0 = T62, ch0 = ge11, sh0 = en10, ah0 = VR, oh0 = T62, vh0 = ge11, lh0 = en10, ph0 = VR, kh0 = p62, mh0 = A63, hh0 = $12, dh0 = "MatchRestPattern", yh0 = "Unexpected FunctionDeclaration with BodyExpression", _h0 = "HookDeclaration", wh0 = t26, gh0 = Ge11, bh0 = Ey2, Th0 = Io5, Eh0 = "FunctionDeclaration", Sh0 = B24, Ah0 = gh2, Ih0 = w12, Ph0 = on7, Ch0 = Yr10, Nh0 = "Unexpected FunctionExpression with BodyExpression", Oh0 = B24, jh0 = gh2, Dh0 = t26, Rh0 = Ge11, Fh0 = Ey2, Mh0 = Io5, Lh0 = w12, qh0 = on7, Bh0 = Yr10, Uh0 = "FunctionExpression", Xh0 = ft10, Gh0 = Y12, Yh0 = Ye10, zh0 = US, Jh0 = ft10, Kh0 = Y12, Hh0 = Ye10, Wh0 = "PrivateIdentifier", Vh0 = ft10, $h0 = Y12, Qh0 = Ye10, Zh0 = US, xd0 = rP, rd0 = Z32, ed0 = "SwitchCase", td0 = w12, nd0 = "param", ud0 = "CatchClause", id0 = w12, fd0 = "BlockStatement", cd0 = ba3, sd0 = Yr10, ad0 = "DeclareVariable", od0 = "DeclareHook", vd0 = Ge11, ld0 = "DeclareFunction", pd0 = Yr10, kd0 = lM, md0 = Oo5, hd0 = mc3, dd0 = w12, yd0 = B24, _d0 = Yr10, wd0 = "DeclareClass", gd0 = B24, bd0 = f_2, Td0 = on7, Ed0 = p62, Sd0 = on7, Ad0 = Yr10, Id0 = "DeclareComponent", Pd0 = B24, Cd0 = f_2, Nd0 = p62, Od0 = on7, jd0 = "ComponentTypeAnnotation", Dd0 = ft10, Rd0 = Y12, Fd0 = Ye10, Md0 = "ComponentTypeParameter", Ld0 = w12, qd0 = Yr10, Bd0 = "DeclareEnum", Ud0 = mc3, Xd0 = w12, Gd0 = B24, Yd0 = Yr10, zd0 = "DeclareInterface", Jd0 = m12, Kd0 = tc3, Hd0 = cA, Wd0 = "ExportNamespaceSpecifier", Vd0 = fn10, $d0 = B24, Qd0 = Yr10, Zd0 = "DeclareTypeAlias", x50 = fn10, r50 = B24, e50 = Yr10, t50 = "TypeAlias", n50 = "DeclareOpaqueType", u50 = "OpaqueType", i50 = "supertype", f50 = "upperBound", c50 = "lowerBound", s50 = "impltype", a50 = B24, o50 = Yr10, v50 = "ClassDeclaration", l50 = "ClassExpression", p50 = g8, k50 = Oo5, m50 = "superTypeParameters", h50 = "superClass", d50 = B24, y50 = w12, _50 = Yr10, w50 = t26, g50 = "Decorator", b50 = B24, T50 = Yr10, E50 = "ClassImplements", S50 = w12, A50 = "ClassBody", I50 = w12, P50 = "StaticBlock", C50 = _a6, N50 = V63, O50 = Nv2, j50 = nl5, D50 = g8, R50 = W32, F50 = Ue10, M50 = ba3, L50 = m12, q50 = en10, B50 = "MethodDefinition", U50 = x43, X50 = g8, G50 = $24, Y50 = Ue10, z50 = W32, J50 = Y12, K50 = m12, H50 = en10, W50 = jL, V50 = "Internal Error: Private name found in class prop", $50 = x43, Q50 = g8, Z50 = $24, xy0 = Ue10, ry0 = W32, ey0 = Y12, ty0 = m12, ny0 = en10, uy0 = jL, iy0 = B24, fy0 = f_2, cy0 = on7, sy0 = Yr10, ay0 = w12, oy0 = "ComponentDeclaration", vy0 = $12, ly0 = OE, py0 = fn10, ky0 = Ea5, my0 = jm3, hy0 = T62, dy0 = X63, yy0 = Ye10, _y0 = "ComponentParameter", wy0 = ks8, gy0 = Yr10, by0 = "EnumBigIntMember", Ty0 = Yr10, Ey0 = LR, Sy0 = ks8, Ay0 = Yr10, Iy0 = "EnumStringMember", Py0 = Yr10, Cy0 = LR, Ny0 = ks8, Oy0 = Yr10, jy0 = "EnumNumberMember", Dy0 = ks8, Ry0 = Yr10, Fy0 = "EnumBooleanMember", My0 = B63, Ly0 = Am3, qy0 = y62, By0 = "EnumBooleanBody", Uy0 = B63, Xy0 = Am3, Gy0 = y62, Yy0 = "EnumNumberBody", zy0 = B63, Jy0 = Am3, Ky0 = y62, Hy0 = "EnumStringBody", Wy0 = B63, Vy0 = y62, $y0 = "EnumSymbolBody", Qy0 = B63, Zy0 = Am3, x90 = y62, r90 = "EnumBigIntBody", e90 = w12, t90 = Yr10, n90 = "EnumDeclaration", u90 = mc3, i90 = w12, f90 = B24, c90 = Yr10, s90 = "InterfaceDeclaration", a90 = B24, o90 = Yr10, v90 = "InterfaceExtends", l90 = Y12, p90 = A63, k90 = "ObjectPattern", m90 = Y12, h90 = KT, d90 = "ArrayPattern", y90 = fn10, _90 = Ea5, w90 = jm3, g90 = Y12, b90 = Ye10, T90 = US, E90 = $12, S90 = OE, A90 = $12, I90 = OE, P90 = fn10, C90 = Ea5, N90 = jm3, O90 = ks8, j90 = ks8, D90 = Nv2, R90 = nl5, F90 = VD, M90 = W32, L90 = T62, q90 = V63, B90 = ba3, U90 = m12, X90 = en10, G90 = mF, Y90 = $12, z90 = iR, J90 = fn10, K90 = Ea5, H90 = jm3, W90 = W32, V90 = T62, $90 = V63, Q90 = ba3, Z90 = m12, x_0 = en10, r_0 = mF, e_0 = $12, t_0 = iR, n_0 = At12, u_0 = m12, i_0 = J32, f_0 = rx2, c_0 = At12, s_0 = $v, a_0 = m12, o_0 = J32, v_0 = At12, l_0 = m12, p_0 = J32, k_0 = Pa5, m_0 = wa4, h_0 = At12, d_0 = m12, y_0 = J32, __0 = "flags", w_0 = ge11, g_0 = "regex", b_0 = At12, T_0 = m12, E_0 = J32, S_0 = At12, A_0 = m12, I_0 = J32, P_0 = rM, C_0 = "quasis", N_0 = "TemplateLiteral", O_0 = "cooked", j_0 = At12, D_0 = "tail", R_0 = m12, F_0 = "TemplateElement", M_0 = "quasi", L_0 = "tag", q_0 = "TaggedTemplateExpression", B_0 = ba3, U_0 = "declarations", X_0 = "VariableDeclaration", G_0 = ks8, Y_0 = Yr10, z_0 = "VariableDeclarator", J_0 = "plus", K_0 = nM, H_0 = Xv, W_0 = bo5, V_0 = ng2, $_0 = "in-out", Q_0 = ba3, Z_0 = "Variance", xw0 = "AnyTypeAnnotation", rw0 = "MixedTypeAnnotation", ew0 = "EmptyTypeAnnotation", tw0 = "VoidTypeAnnotation", nw0 = "NullLiteralTypeAnnotation", uw0 = "SymbolTypeAnnotation", iw0 = "NumberTypeAnnotation", fw0 = "BigIntTypeAnnotation", cw0 = "StringTypeAnnotation", sw0 = "BooleanTypeAnnotation", aw0 = Y12, ow0 = "NullableTypeAnnotation", vw0 = "UnknownTypeAnnotation", lw0 = "NeverTypeAnnotation", pw0 = "UndefinedTypeAnnotation", kw0 = ba3, mw0 = Y12, hw0 = "parameterName", dw0 = "TypePredicate", yw0 = "HookTypeAnnotation", _w0 = "FunctionTypeAnnotation", ww0 = Bv2, gw0 = B24, bw0 = p62, Tw0 = gh2, Ew0 = on7, Sw0 = ft10, Aw0 = Y12, Iw0 = Ye10, Pw0 = fM, Cw0 = ft10, Nw0 = Y12, Ow0 = Ye10, jw0 = fM, Dw0 = [0, 0, 0, 0, 0], Rw0 = "internalSlots", Fw0 = "callProperties", Mw0 = "indexers", Lw0 = A63, qw0 = "exact", Bw0 = tL, Uw0 = "ObjectTypeAnnotation", Xw0 = VD, Gw0 = "There should not be computed object type property keys", Yw0 = ks8, zw0 = Nv2, Jw0 = nl5, Kw0 = ba3, Hw0 = $24, Ww0 = rw, Vw0 = Ue10, $w0 = ft10, Qw0 = V63, Zw0 = m12, xg0 = en10, rg0 = "ObjectTypeProperty", eg0 = $12, tg0 = "ObjectTypeSpreadProperty", ng0 = $24, ug0 = Ue10, ig0 = m12, fg0 = en10, cg0 = Yr10, sg0 = "ObjectTypeIndexer", ag0 = Ue10, og0 = m12, vg0 = "ObjectTypeCallProperty", lg0 = ft10, pg0 = $24, kg0 = "sourceType", mg0 = "propType", hg0 = "keyTparam", dg0 = "ObjectTypeMappedTypeProperty", yg0 = m12, _g0 = V63, wg0 = Ue10, gg0 = ft10, bg0 = Yr10, Tg0 = "ObjectTypeInternalSlot", Eg0 = w12, Sg0 = mc3, Ag0 = "InterfaceTypeAnnotation", Ig0 = QM, Pg0 = "ArrayTypeAnnotation", Cg0 = "falseType", Ng0 = "trueType", Og0 = "extendsType", jg0 = "checkType", Dg0 = "ConditionalTypeAnnotation", Rg0 = "typeParameter", Fg0 = "InferTypeAnnotation", Mg0 = Yr10, Lg0 = UF, qg0 = "QualifiedTypeIdentifier", Bg0 = B24, Ug0 = Yr10, Xg0 = "GenericTypeAnnotation", Gg0 = "indexType", Yg0 = "objectType", zg0 = "IndexedAccessType", Jg0 = ft10, Kg0 = "OptionalIndexedAccessType", Hg0 = w_2, Wg0 = "UnionTypeAnnotation", Vg0 = w_2, $g0 = "IntersectionTypeAnnotation", Qg0 = h8, Zg0 = $12, xb0 = "TypeofTypeAnnotation", rb0 = Yr10, eb0 = UF, tb0 = "QualifiedTypeofIdentifier", nb0 = $12, ub0 = "KeyofTypeAnnotation", ib0 = el5, fb0 = jF, cb0 = uF2, sb0 = Y12, ab0 = Gv, ob0 = "TypeOperator", vb0 = Xv, lb0 = tL, pb0 = "elementTypes", kb0 = "TupleTypeAnnotation", mb0 = ft10, hb0 = $24, db0 = QM, yb0 = S62, _b0 = "TupleTypeLabeledElement", wb0 = Y12, gb0 = S62, bb0 = "TupleTypeSpreadElement", Tb0 = At12, Eb0 = m12, Sb0 = "StringLiteralTypeAnnotation", Ab0 = At12, Ib0 = m12, Pb0 = "NumberLiteralTypeAnnotation", Cb0 = At12, Nb0 = m12, Ob0 = "BigIntLiteralTypeAnnotation", jb0 = Pa5, Db0 = wa4, Rb0 = At12, Fb0 = m12, Mb0 = "BooleanLiteralTypeAnnotation", Lb0 = "ExistsTypeAnnotation", qb0 = Y12, Bb0 = vF, Ub0 = Y12, Xb0 = vF, Gb0 = on7, Yb0 = "TypeParameterDeclaration", zb0 = "usesExtendsBound", Jb0 = Fv2, Kb0 = $24, Hb0 = No3, Wb0 = "bound", Vb0 = Ye10, $b0 = "TypeParameter", Qb0 = on7, Zb0 = mM, xT0 = on7, rT0 = mM, eT0 = Pv2, tT0 = OL, nT0 = "closingElement", uT0 = "openingElement", iT0 = "JSXElement", fT0 = "closingFragment", cT0 = OL, sT0 = "openingFragment", aT0 = "JSXFragment", oT0 = h8, vT0 = "selfClosing", lT0 = "attributes", pT0 = Ye10, kT0 = "JSXOpeningElement", mT0 = "JSXOpeningFragment", hT0 = Ye10, dT0 = "JSXClosingElement", yT0 = "JSXClosingFragment", _T0 = m12, wT0 = Ye10, gT0 = "JSXAttribute", bT0 = $12, TT0 = "JSXSpreadAttribute", ET0 = "JSXEmptyExpression", ST0 = t26, AT0 = "JSXExpressionContainer", IT0 = t26, PT0 = "JSXSpreadChild", CT0 = At12, NT0 = m12, OT0 = "JSXText", jT0 = Tm3, DT0 = Dp3, RT0 = "JSXMemberExpression", FT0 = Ye10, MT0 = rE, LT0 = "JSXNamespacedName", qT0 = Ye10, BT0 = "JSXIdentifier", UT0 = cA, XT0 = X63, GT0 = "ExportSpecifier", YT0 = X63, zT0 = "ImportDefaultSpecifier", JT0 = X63, KT0 = "ImportNamespaceSpecifier", HT0 = XD, WT0 = X63, VT0 = "imported", $T0 = "ImportSpecifier", QT0 = "Line", ZT0 = "Block", xE0 = m12, rE0 = m12, eE0 = "DeclaredPredicate", tE0 = "InferredPredicate", nE0 = Qb2, uE0 = h8, iE0 = fR, fE0 = W32, cE0 = Tm3, sE0 = Dp3, aE0 = "message", oE0 = Yx, vE0 = wD, lE0 = vR, pE0 = Wv, kE0 = G63, mE0 = Kk, hE0 = [0, ss9, fi11, _c3, Ni9, di11, Cs6, mf3, si10, sf3, z72, eu4, zc3, _u4, e7, Ve9, bs8, Mc2, W72, hf3, Ff3, Es8, Xi9, Z72, Ii8, lc3, I72, Ec4, O7, of8, Fu4, tu3, Ku4, jc2, hi11, m7, pf3, Ic3, Vf3, gs7, wc3, ys8, St12, V72, Mf4, $f3, lf3, Ji7, ti10, l7, f7, Ac3, Lf3, vi11, Hi10, rs8, Vc3, U72, Au3, fu4, Kn10, Ou5, bu4, ai10, Ui8, Si11, ji7, es8, Af3, pu2, Ki9, qi8, X72, Lu4, Zu2, ms8, Wf3, o7, Ge11, r7, Qi9, x72, Gf3, dc3, D7, qc3, G12, ff3, $n8, Oc3, E7, Nf3, Tc4, g7, kc3, su3, P72, tf3, Gc2, Yn7, Mu4, a7, Eu5, vc4, j72, _i9, T7, $24, Pi8, ou3, d7, w72, Ri8, wu3, ki10, Ci8, Q72, Rc3, Wu2, Oi9, ic3, be10, v72, vu4, H24, Hn8, Uc2, zi8, xf4, Du4, $c2, xc3, Yc3, If4, ls7, Gi8, Ef3, yu5, $u4, pc3, du4, Xf, Pu3, oc4, xi11, Cc3, Hc2, Nc3, Wn8, yf3, Bc2, bi11, mi11, Uf3, Ps9, Hf, qf3, _f4, ii10, Qu2, Uu4, Rf4, B7, is9, ws8, y7, oi10, S7, ru4, bc4, H72, Hu3, xu3, Sc4, u7, Ei10, Pf4, yi10, Jn9, L72, ps7, Y7, Tf3, gc3, Xu3, W24, Je11, F72, J72, Jc2, jf3, He10, Ke12, n7, cs7, Vu4, p7, ds7, ge11, iu3, As8, Bf3, cc4, sc3, Un8, cu3, Mi7, Ru4, hu4, Ts6, q72, fs8, fc3, Qn8, Vi8, uc3, qu4, Xc2, A72, ns8, ni10, lu4, Xn9, Df4, Pc3, Fc2, ac3, kf4, M72, Vn7, ui11, wi10, uu4, c7, gi11, G72, zn9, Bi8, ju4, Sf3, i7, _72, Gn8, Qf2, Su3, zu3, zf3, ei10, Cu3, vf4, nf3, Zf2, tn8, h7, Ju5, li10, Zn10, qn8, Bu3, Di8, ri10, ku3, Zi8, Zc2, Yu2, C72, gu4, Jf2, cf3, s7, Tu5, df3, K72, Bn7, Ti11, R72, t26, Ai9, uf3, ts8, hs8, Iu4, wf3, k72, Xe11, gf3, _s7, af3, Yi9, hc3, yc3, Wi8, Qc2, vs9, Is8, Fi8, bf3, os7, rc3, vn7, as19, Gu3, Dc2, Kf2, nc4, us8, pi11, ci10, Yf3, We12, Lc2, ae9, N72, rf3, $i9, mu3, Of3, b7, Wc2, au3, t72, Kc2], dE0 = [0, H24, of8, $i9, V72, $24, qf3, h7, pc3, bc4, Rf4, Gi8, Du4, Fi8, hu4, F72, d7, Qu2, Uf3, J72, ui11, cf3, X72, Zn10, Zf2, _u4, vu4, $n8, ac3, Ps9, oc4, _f4, Sf3, Es8, Uc2, jc2, Q72, He10, t72, Wi8, s7, Qc2, Bi8, ic3, rs8, Ve9, Jc2, Uu4, fu4, k72, ss9, ii10, lu4, T7, Je11, ci10, w72, Of3, qu4, fc3, Ku4, pi11, q72, a7, If4, _72, fs8, Ge11, Lf3, Pi8, Zu2, M72, pu2, xf4, af3, P72, $f3, au3, Fc2, Zi8, m7, Bn7, jf3, Fu4, Y7, bi11, $c2, Ai9, Eu5, ge11, es8, x72, rc3, Vu4, bs8, Wn8, e7, o7, Kf2, Pc3, Vn7, r7, Xi9, Qf2, kf4, Lu4, sf3, Xn9, Vc3, zu3, ni10, Oi9, Hu3, $u4, si10, n7, Ii8, Zc2, Ui8, ys8, Gf3, Kc2, Xu3, Mu4, Ei10, Cc3, wu3, Kn10, hs8, df3, W72, Ki9, uc3, hf3, Nf3, uu4, du4, E7, ps7, L72, mf3, gu4, Au3, Cu3, Yc3, su3, os7, N72, oi10, G12, g7, Hn8, Bc2, ai10, pf3, ku3, xu3, Tf3, Jf2, ms8, Tc4, Dc2, z72, dc3, Bu3, zf3, f7, D7, Z72, Xf, I72, ds7, fi11, Mi7, Di8, Rc3, zn9, Yu2, xi11, eu4, vf4, ae9, lc3, is9, cc4, Ou5, Df4, as19, Vi8, Gn8, W24, Ri8, U72, cs7, St12, Ni9, qc3, gs7, tu3, i7, vi11, Ru4, di11, Qi9, S7, kc3, _c3, ti10, cu3, gf3, nc4, As8, Iu4, wf3, Qn8, vs9, Ci8, hi11, Hi10, ws8, bf3, v72, b7, Mf4, mi11, C72, Nc3, ts8, p7, t26, Un8, Mc2, yf3, Is8, A72, Yn7, Yi9, Ac3, Yf3, Xc2, Oc3, Ts6, O7, Hc2, Bf3, wc3, Ec4, bu4, ju4, j72, be10, nf3, Ju5, qn8, hc3, Ic3, wi10, Gc2, gi11, lf3, yu5, zi8, ou3, xc3, us8, Ke12, Xe11, rf3, ff3, ri10, Wc2, ns8, K72, mu3, Vf3, Sc4, _s7, Jn9, gc3, qi8, Hf, ru4, uf3, H72, yc3, Ef3, ji7, y7, sc3, Wf3, B7, ei10, Si11, yi10, Wu2, Ff3, Gu3, Su3, Pf4, c7, li10, l7, Ji7, _i9, Cs6, We12, iu3, zc3, vn7, G72, R72, ki10, ls7, u7, Tu5, Pu3, Ti11, Lc2, tf3, vc4, tn8, Af3], yE0 = [0, Af3, tn8, vc4, tf3, Lc2, Ti11, Pu3, Tu5, u7, ls7, ki10, R72, G72, vn7, zc3, iu3, We12, Cs6, _i9, Ji7, l7, li10, c7, Pf4, Su3, Gu3, Ff3, Wu2, yi10, Si11, ei10, B7, Wf3, sc3, y7, ji7, Ef3, yc3, H72, uf3, ru4, Hf, qi8, gc3, Jn9, _s7, Sc4, Vf3, mu3, K72, ns8, Wc2, ri10, ff3, rf3, Xe11, Ke12, us8, xc3, ou3, zi8, yu5, lf3, gi11, Gc2, wi10, Ic3, hc3, qn8, Ju5, nf3, be10, j72, ju4, bu4, Ec4, wc3, Bf3, Hc2, O7, Ts6, Oc3, Xc2, Yf3, Ac3, Yi9, Yn7, A72, Is8, yf3, Mc2, Un8, t26, p7, ts8, Nc3, C72, mi11, Mf4, b7, v72, bf3, ws8, Hi10, hi11, Ci8, vs9, Qn8, wf3, Iu4, As8, nc4, gf3, cu3, ti10, _c3, kc3, S7, Qi9, di11, Ru4, vi11, i7, tu3, gs7, qc3, Ni9, St12, cs7, U72, Ri8, W24, Gn8, Vi8, as19, Df4, Ou5, cc4, is9, lc3, ae9, vf4, eu4, xi11, Yu2, zn9, Rc3, Di8, Mi7, fi11, ds7, I72, Xf, Z72, D7, f7, zf3, Bu3, dc3, z72, Dc2, Tc4, ms8, Jf2, Tf3, xu3, ku3, pf3, ai10, Bc2, Hn8, g7, G12, oi10, N72, os7, su3, Yc3, Cu3, Au3, gu4, mf3, L72, ps7, E7, du4, uu4, Nf3, hf3, uc3, Ki9, W72, df3, hs8, Kn10, wu3, Cc3, Ei10, Mu4, Xu3, Kc2, Gf3, ys8, Ui8, Zc2, Ii8, n7, si10, $u4, Hu3, Oi9, ni10, zu3, Vc3, Xn9, sf3, Lu4, kf4, Qf2, Xi9, r7, Vn7, Pc3, Kf2, o7, e7, Wn8, bs8, Vu4, rc3, x72, es8, ge11, Eu5, Ai9, $c2, bi11, Y7, Fu4, jf3, Bn7, m7, Zi8, Fc2, au3, $f3, P72, af3, xf4, pu2, M72, Zu2, Pi8, Lf3, Ge11, fs8, _72, If4, a7, q72, pi11, Ku4, fc3, qu4, Of3, w72, ci10, Je11, T7, lu4, ii10, ss9, k72, fu4, Uu4, Jc2, Ve9, rs8, ic3, Bi8, Qc2, s7, Wi8, t72, He10, Q72, jc2, Uc2, Es8, Sf3, _f4, oc4, Ps9, ac3, $n8, vu4, _u4, Zf2, Zn10, X72, cf3, ui11, J72, Uf3, Qu2, d7, F72, hu4, Fi8, Du4, Gi8, Rf4, bc4, pc3, h7, qf3, $24, V72, $i9, of8, H24], _E0 = "Jsoo_runtime.Error.Exn", wE0 = [0, 0], gE0 = "assert_operator", bE0 = "use_strict", TE0 = w_2, EE0 = "esproposal_decorators", SE0 = "records", AE0 = "pattern_matching", IE0 = "enums", PE0 = "components", CE0 = "Internal error: ", NE0 = [t110, "CamlinternalLazy.Undefined", js9(0)];
|
|
274401
|
+
var KV = "Array.sub", HV = "first domain already spawned", WV = [0, "camlinternalOO.ml", BF, 50], VV = [0, WM, 72, 5], $V = [0, WM, 81, 2], QV = "/tmp", ZV = ln9, x$ = [0, "src/wtf8.ml", 65, 9], r$ = [0, "src/third-party/sedlex/flow_sedlexing.ml", jS, 4], e$ = "Flow_sedlexing.MalFormed", t$ = O62, n$ = H32, u$ = K32, i$ = H63, f$ = $v, c$ = [0, [12, 40, [18, [1, [0, [11, Li8, 0], Li8]], [11, "File_key.LibFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.LibFile@ "], s$ = [0, [3, 0, 0], C63], a$ = [0, [17, 0, [12, 41, 0]], ck], o$ = [0, [12, 40, [18, [1, [0, [11, Li8, 0], Li8]], [11, "File_key.SourceFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.SourceFile@ "], v$ = [0, [3, 0, 0], C63], l$ = [0, [17, 0, [12, 41, 0]], ck], p$ = [0, [12, 40, [18, [1, [0, [11, Li8, 0], Li8]], [11, "File_key.JsonFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.JsonFile@ "], k$ = [0, [3, 0, 0], C63], m$ = [0, [17, 0, [12, 41, 0]], ck], h$ = [0, [12, 40, [18, [1, [0, [11, Li8, 0], Li8]], [11, "File_key.ResourceFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.ResourceFile@ "], d$ = [0, [3, 0, 0], C63], y$ = [0, [17, 0, [12, 41, 0]], ck], _$ = [0, 1], w$ = [0, 0], g$ = [0, 1], b$ = [0, 2], T$ = [0, 2], E$ = [0, 0], S$ = [0, 1], A$ = [0, 1], I$ = [0, 1], P$ = [0, 1], C$ = [0, 2], N$ = [0, 1], O$ = [0, 1], j$ = [0, 0, 0], D$ = [0, 0, 0], R$ = [0, ss9, fi11, _c3, Ni9, di11, Cs6, mf3, si10, sf3, z72, eu4, zc3, _u4, e7, Ve9, bs8, Mc2, W72, hf3, Ff3, Es8, Xi9, Z72, Ii8, lc3, I72, Ec4, O7, of8, Fu4, tu3, Ku4, jc2, hi11, m7, pf3, Ic3, Vf3, gs7, wc3, ys8, St12, V72, Mf4, $f3, lf3, Ji7, ti10, l7, f7, Ac3, Lf3, vi11, Hi10, rs8, Vc3, U72, Au3, fu4, Kn10, Ou5, bu4, ai10, Ui8, Si11, ji7, es8, Af3, pu2, Ki9, qi8, X72, Lu4, Zu2, ms8, Wf3, o7, Ge11, r7, Qi9, x72, Gf3, dc3, D7, qc3, G12, ff3, $n8, Oc3, E7, Nf3, Tc4, g7, kc3, su3, P72, tf3, Gc2, Yn7, Mu4, a7, Eu5, vc4, j72, _i9, T7, $24, Pi8, ou3, d7, w72, Ri8, wu3, ki10, Ci8, Q72, Rc3, Wu2, Oi9, ic3, be10, v72, vu4, H24, Hn8, Uc2, zi8, xf4, Du4, $c2, xc3, Yc3, If4, ls7, Gi8, Ef3, yu5, $u4, pc3, du4, Xf, Pu3, oc4, xi11, Cc3, Hc2, Nc3, Wn8, yf3, Bc2, bi11, mi11, Uf3, Ps9, Hf, qf3, _f4, ii10, Qu2, Uu4, Rf4, B7, is9, ws8, y7, oi10, S7, ru4, bc4, H72, Hu3, xu3, Sc4, u7, Ei10, Pf4, yi10, Jn9, L72, ps7, Y7, Tf3, gc3, Xu3, W24, Je11, F72, J72, Jc2, jf3, He10, Ke12, n7, cs7, Vu4, p7, ds7, ge11, iu3, As8, Bf3, cc4, sc3, Un8, cu3, Mi7, Ru4, hu4, Ts6, q72, fs9, fc3, Qn8, Vi8, uc3, qu4, Xc2, A72, ns8, ni10, lu4, Xn9, Df4, Pc3, Fc2, ac3, kf4, M72, Vn7, ui11, wi10, uu4, c7, gi11, G72, zn9, Bi8, ju4, Sf3, i7, _72, Gn8, Qf2, Su3, zu3, zf3, ei10, Cu3, vf4, nf3, Zf2, tn8, h7, Ju5, li10, Zn10, qn8, Bu3, Di8, ri10, ku3, Zi8, Zc2, Yu2, C72, gu4, Jf2, cf3, s7, Tu5, df3, K72, Bn7, Ti11, R72, t26, Ai9, uf3, ts8, hs8, Iu4, wf3, k72, Xe11, gf3, _s7, af3, Yi9, hc3, yc3, Wi8, Qc2, vs9, Is8, Fi8, bf3, os7, rc3, vn7, as19, Gu3, Dc2, Kf2, nc4, us8, pi11, ci10, Yf3, We12, Lc2, ae9, N72, rf3, $i9, mu3, Of3, b7, Wc2, au3, t72, Kc2], F$ = [0, H24, of8, $i9, V72, $24, qf3, h7, pc3, bc4, Rf4, Gi8, Du4, Fi8, hu4, F72, d7, Qu2, Uf3, J72, ui11, cf3, X72, Zn10, Zf2, _u4, vu4, $n8, ac3, Ps9, oc4, _f4, Sf3, Es8, Uc2, jc2, Q72, He10, t72, Wi8, s7, Qc2, Bi8, ic3, rs8, Ve9, Jc2, Uu4, fu4, k72, ss9, ii10, lu4, T7, Je11, ci10, w72, Of3, qu4, fc3, Ku4, pi11, q72, a7, If4, _72, fs9, Ge11, Lf3, Pi8, Zu2, M72, pu2, xf4, af3, P72, $f3, au3, Fc2, Zi8, m7, Bn7, jf3, Fu4, Y7, bi11, $c2, Ai9, Eu5, ge11, es8, x72, rc3, Vu4, bs8, Wn8, e7, o7, Kf2, Pc3, Vn7, r7, Xi9, Qf2, kf4, Lu4, sf3, Xn9, Vc3, zu3, ni10, Oi9, Hu3, $u4, si10, n7, Ii8, Zc2, Ui8, ys8, Gf3, Kc2, Xu3, Mu4, Ei10, Cc3, wu3, Kn10, hs8, df3, W72, Ki9, uc3, hf3, Nf3, uu4, du4, E7, ps7, L72, mf3, gu4, Au3, Cu3, Yc3, su3, os7, N72, oi10, G12, g7, Hn8, Bc2, ai10, pf3, ku3, xu3, Tf3, Jf2, ms8, Tc4, Dc2, z72, dc3, Bu3, zf3, f7, D7, Z72, Xf, I72, ds7, fi11, Mi7, Di8, Rc3, zn9, Yu2, xi11, eu4, vf4, ae9, lc3, is9, cc4, Ou5, Df4, as19, Vi8, Gn8, W24, Ri8, U72, cs7, St12, Ni9, qc3, gs7, tu3, i7, vi11, Ru4, di11, Qi9, S7, kc3, _c3, ti10, cu3, gf3, nc4, As8, Iu4, wf3, Qn8, vs9, Ci8, hi11, Hi10, ws8, bf3, v72, b7, Mf4, mi11, C72, Nc3, ts8, p7, t26, Un8, Mc2, yf3, Is8, A72, Yn7, Yi9, Ac3, Yf3, Xc2, Oc3, Ts6, O7, Hc2, Bf3, wc3, Ec4, bu4, ju4, j72, be10, nf3, Ju5, qn8, hc3, Ic3, wi10, Gc2, gi11, lf3, yu5, zi8, ou3, xc3, us8, Ke12, Xe11, rf3, ff3, ri10, Wc2, ns8, K72, mu3, Vf3, Sc4, _s7, Jn9, gc3, qi8, Hf, ru4, uf3, H72, yc3, Ef3, ji7, y7, sc3, Wf3, B7, ei10, Si11, yi10, Wu2, Ff3, Gu3, Su3, Pf4, c7, li10, l7, Ji7, _i9, Cs6, We12, iu3, zc3, vn7, G72, R72, ki10, ls7, u7, Tu5, Pu3, Ti11, Lc2, tf3, vc4, tn8, Af3], M$ = GM, L$ = $F, q$ = SF, B$ = OD, U$ = Qy2, X$ = QL, G$ = F63, Y$ = WD, z$ = YF, J$ = CF, K$ = yD2, H$ = $72, W$ = ze11, V$ = _R, $$ = pF, Q$ = se11, Z$ = HL, xQ = wR, rQ = _k, eQ = Qm3, tQ = bo5, nQ = I63, uQ = kM, iQ = YD, fQ = IR, cQ = RR, sQ = PF, aQ = qD, oQ = GD, vQ = hL, lQ = TR, pQ = vM, kQ = bF, mQ = yo3, hQ = fF2, dQ = $L, yQ = eF, _Q = g62, wQ = cl6, gQ = No3, bQ = [0, [18, [1, [0, [11, Li8, 0], Li8]], [11, "{ ", 0]], "@[<2>{ "], TQ = "Loc.line", EQ = [0, [18, [1, [0, 0, rx2]], [2, 0, [11, GR, [17, [0, Eo3, 1, 0], 0]]]], yF], SQ = [0, [4, 0, 0, 0, 0], al6], AQ = [0, [17, 0, 0], iI], IQ = [0, [12, 59, [17, [0, Eo3, 1, 0], 0]], ";@ "], PQ = G63, CQ = [0, [18, [1, [0, 0, rx2]], [2, 0, [11, GR, [17, [0, Eo3, 1, 0], 0]]]], yF], NQ = [0, [4, 0, 0, 0, 0], al6], OQ = [0, [17, 0, 0], iI], jQ = [0, [17, [0, Eo3, 1, 0], [12, So4, [17, 0, 0]]], "@ }@]"], DQ = rx2, RQ = "Object literal may not have data and accessor property with the same name", FQ = "Object literal may not have multiple get/set accessors with the same name", MQ = "Unexpected token <. Remember, adjacent JSX elements must be wrapped in an enclosing parent tag", LQ = "`let [` is ambiguous in this position because it is either a `let` binding pattern, or a member expression.", qQ = "Async functions can only be declared at top level or immediately within another function.", BQ = "`await` is an invalid identifier in async functions", UQ = "`await` is not allowed in async function parameters.", XQ = "Computed properties must have a value.", GQ = "Constructor can't be an accessor.", YQ = "Constructor can't be an async function.", zQ = "Constructor can't be a generator.", JQ = "It is sufficient for your declare function to just have a Promise return type.", KQ = "async is an implementation detail and isn't necessary for your declare function statement. ", HQ = "`declare` modifier can only appear on class fields.", WQ = "Unexpected token `=`. Initializers are not allowed in a `declare`.", VQ = "Unexpected token `=`. Initializers are not allowed in a `declare opaque type`.", $Q = "Classes may only have one constructor", QQ = "Rest element must be final element of an array pattern", ZQ = "Cannot export an enum with `export type`, try `export enum E {}` or `module.exports = E;` instead.", xZ = "Enum members are separated with `,`. Replace `;` with `,`.", rZ = "`const` enums are not supported. Flow Enums are designed to allow for inlining, however the inlining itself needs to be part of the build system (whatever you use) rather than Flow itself.", eZ = "Expected an object pattern, array pattern, or an identifier but found an expression instead", tZ = "Missing comma between export specifiers", nZ = "Generators can only be declared at top level or immediately within another function.", uZ = "Getter should have zero parameters", iZ = "A getter cannot have a `this` parameter.", fZ = "Illegal continue statement", cZ = "Illegal return statement", sZ = "Illegal Unicode escape", aZ = "Missing comma between import specifiers", oZ = "It cannot be used with `import type` or `import typeof` statements", vZ = "The `type` and `typeof` keywords on named imports can only be used on regular `import` statements. ", lZ = "Explicit inexact syntax cannot appear inside an explicit exact object type", pZ = "Explicit inexact syntax can only appear inside an object type", kZ = "Component params must be an identifier. If you'd like to destructure, you should use `name as {destructure}`", mZ = "A bigint literal must be an integer", hZ = "JSX value should be either an expression or a quoted JSX text", dZ = "Invalid left-hand side in assignment", yZ = "Invalid left-hand side in exponentiation expression", _Z = "Invalid left-hand side in for-in", wZ = "Invalid left-hand side in for-of", gZ = "Invalid optional indexed access. Indexed access uses bracket notation. Use the format `T?.[K]`.", bZ = "Invalid regular expression", TZ = "A bigint literal cannot use exponential notation", EZ = "Tuple spread elements cannot be optional.", SZ = "Tuple variance annotations can only be used with labeled tuple elements, e.g. `[+foo: number]`", AZ = "`typeof` can only be used to get the type of variables.", IZ = "JSX attributes must only be assigned a non-empty expression", PZ = "Literals cannot be used as shorthand properties.", CZ = "Malformed unicode", NZ = "`match` argument must not be empty", OZ = "`match` argument cannot contain spread elements", jZ = "`await` is not yet supported in `match` expressions", DZ = "`yield` is not yet supported in `match` expressions", RZ = "Object pattern can't contain methods", FZ = "Expected at least one type parameter.", MZ = "Type parameter declaration needs a default, since a preceding type parameter declaration has a default.", LZ = "More than one default clause in switch statement", qZ = "Illegal newline after throw", BZ = "Illegal newline before arrow", UZ = "Missing catch or finally after try", XZ = "Const must be initialized", GZ = "Destructuring assignment must be initialized", YZ = "An optional chain may not be used in a `new` expression.", zZ = "Template literals may not be used in an optional chain.", JZ = "Rest parameter must be final parameter of an argument list", KZ = "Private fields may not be deleted.", HZ = "Private fields can only be referenced from within a class.", WZ = "Rest property must be final property of an object pattern", VZ = "Records to not support private elements. Remove the `#`.", $Z = "Setter should have exactly one parameter", QZ = "A setter cannot have a `this` parameter.", ZZ = "Catch variable may not be eval or arguments in strict mode", x00 = "Delete of an unqualified identifier in strict mode.", r00 = "Duplicate data property in object literal not allowed in strict mode", e00 = "Function name may not be eval or arguments in strict mode", t00 = "Assignment to eval or arguments is not allowed in strict mode", n00 = "Postfix increment/decrement may not have eval or arguments operand in strict mode", u00 = "Prefix increment/decrement may not have eval or arguments operand in strict mode", i00 = "Strict mode code may not include a with statement", f00 = "Number literals with leading zeros are not allowed in strict mode.", c00 = "Octal literals are not allowed in strict mode.", s00 = "Strict mode function may not have duplicate parameter names", a00 = "Parameter name eval or arguments is not allowed in strict mode", o00 = 'Illegal "use strict" directive in function with non-simple parameter list', v00 = "Use of reserved word in strict mode", l00 = "Variable name may not be eval or arguments in strict mode", p00 = "You may not access a private field through the `super` keyword.", k00 = "Flow does not support abstract classes.", m00 = "Flow does not support template literal types.", h00 = "A type annotation is required for the `this` parameter.", d00 = "Arrow functions cannot have a `this` parameter; arrow functions automatically bind `this` when declared.", y00 = "Constructors cannot have a `this` parameter; constructors don't bind `this` like other functions.", _00 = "The `this` parameter cannot be optional.", w00 = "The `this` parameter must be the first function parameter.", g00 = "A trailing comma is not permitted after the rest element", b00 = "Unexpected end of input", T00 = "Explicit inexact syntax must come at the end of an object type", E00 = "Opaque type aliases are not allowed in untyped mode", S00 = "Unexpected proto modifier", A00 = "Unexpected reserved word", I00 = "Unexpected reserved type", P00 = "Spreading a type is only allowed inside an object type", C00 = "Unexpected static modifier", N00 = "Unexpected `super` outside of a class method", O00 = "`super()` is only valid in a class constructor", j00 = "Type aliases are not allowed in untyped mode", D00 = "Type annotations are not allowed in untyped mode", R00 = "Type declarations are not allowed in untyped mode", F00 = "Type exports are not allowed in untyped mode", M00 = "Type imports are not allowed in untyped mode", L00 = "Interfaces are not allowed in untyped mode", q00 = "Unexpected variance sigil", B00 = "Found a decorator in an unsupported position.", U00 = "Invalid regular expression: missing /", X00 = "Unexpected whitespace between `#` and identifier", G00 = "`yield` is an invalid identifier in generators", Y00 = "Yield expression not allowed in formal parameter", z00 = [0, [11, "Duplicate export for `", [2, 0, [12, 96, 0]]], "Duplicate export for `%s`"], J00 = [0, [11, "Private fields may only be declared once. `#", [2, 0, [11, "` is declared more than once.", 0]]], "Private fields may only be declared once. `#%s` is declared more than once."], K00 = [0, [11, "bigint enum members need to be initialized, e.g. `", [2, 0, [11, " = 1n,` in enum `", [2, 0, [11, nu3, 0]]]]], "bigint enum members need to be initialized, e.g. `%s = 1n,` in enum `%s`."], H00 = [0, [11, "Boolean enum members need to be initialized. Use either `", [2, 0, [11, " = true,` or `", [2, 0, [11, " = false,` in enum `", [2, 0, [11, nu3, 0]]]]]]], "Boolean enum members need to be initialized. Use either `%s = true,` or `%s = false,` in enum `%s`."], W00 = [0, [11, "Enum member names need to be unique, but the name `", [2, 0, [11, "` has already been used before in enum `", [2, 0, [11, nu3, 0]]]]], "Enum member names need to be unique, but the name `%s` has already been used before in enum `%s`."], V00 = [0, [11, WR, [2, 0, [11, "` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers.", 0]]], "Enum `%s` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers."], $00 = "The `...` must come at the end of the enum body. Remove the trailing comma.", Q00 = "The `...` must come after all enum members. Move it to the end of the enum body.", Z00 = [0, [11, "Use one of `boolean`, `number`, `string`, `symbol`, or `bigint` in enum `", [2, 0, [11, nu3, 0]]], "Use one of `boolean`, `number`, `string`, `symbol`, or `bigint` in enum `%s`."], xx0 = [0, [11, "Enum type `", [2, 0, [11, "` is not valid. ", [2, 0, 0]]]], "Enum type `%s` is not valid. %s"], rx0 = [0, [11, "Supplied enum type is not valid. ", [2, 0, 0]], "Supplied enum type is not valid. %s"], ex0 = [0, [11, "Enum member names and initializers are separated with `=`. Replace `", [2, 0, [11, ":` with `", [2, 0, [11, " =`.", 0]]]]], "Enum member names and initializers are separated with `=`. Replace `%s:` with `%s =`."], tx0 = [0, [11, WR, [2, 0, [11, "` has type `", [2, 0, [11, "`, so the initializer of `", [2, 0, [11, "` needs to be a ", [2, 0, [11, " literal.", 0]]]]]]]]], "Enum `%s` has type `%s`, so the initializer of `%s` needs to be a %s literal."], nx0 = [0, [11, "Symbol enum members cannot be initialized. Use `", [2, 0, [11, ",` in enum `", [2, 0, [11, nu3, 0]]]]], "Symbol enum members cannot be initialized. Use `%s,` in enum `%s`."], ux0 = [0, [11, "The enum member initializer for `", [2, 0, [11, "` needs to be a literal (either a boolean, number, or string) in enum `", [2, 0, [11, nu3, 0]]]]], "The enum member initializer for `%s` needs to be a literal (either a boolean, number, or string) in enum `%s`."], ix0 = [0, [11, "Enum member names cannot start with lowercase 'a' through 'z'. Instead of using `", [2, 0, [11, "`, consider using `", [2, 0, [11, "`, in enum `", [2, 0, [11, nu3, 0]]]]]]], "Enum member names cannot start with lowercase 'a' through 'z'. Instead of using `%s`, consider using `%s`, in enum `%s`."], fx0 = [0, [11, "Number enum members need to be initialized, e.g. `", [2, 0, [11, " = 1,` in enum `", [2, 0, [11, nu3, 0]]]]], "Number enum members need to be initialized, e.g. `%s = 1,` in enum `%s`."], cx0 = [0, [11, "String enum members need to consistently either all use initializers, or use no initializers, in enum ", [2, 0, [12, 46, 0]]], "String enum members need to consistently either all use initializers, or use no initializers, in enum %s."], sx0 = [0, [11, "Expected corresponding JSX closing tag for ", [2, 0, 0]], "Expected corresponding JSX closing tag for %s"], ax0 = "immediately within another function.", ox0 = "In strict mode code, functions can only be declared at top level or ", vx0 = "inside a block, or as the body of an if statement.", lx0 = "In non-strict mode code, functions can only be declared at top level, ", px0 = " `break` statements are not required in `match` statements, as unlike `switch` statements, `match` statement cases do not fall-through by default.", kx0 = rx2, mx0 = [0, [11, "Illegal break statement.", [2, 0, 0]], "Illegal break statement.%s"], hx0 = zM, dx0 = rx2, yx0 = XM, _x0 = DF, wx0 = DM, gx0 = [0, [11, "Classes may not have ", [2, 0, [2, 0, [11, DD2, [2, 0, [11, nu3, 0]]]]]], "Classes may not have %s%s named `%s`."], bx0 = "Components use `renders` instead of `:` to annotate the render type of a component.", Tx0 = uM, Ex0 = rx2, Sx0 = [0, [11, "String params require local bindings using `as` renaming. You can use `'", [2, 0, [11, "' as ", [2, 0, [2, 0, [11, ": <TYPE>` ", 0]]]]]], "String params require local bindings using `as` renaming. You can use `'%s' as %s%s: <TYPE>` "], Ax0 = "Remove the period.", Ix0 = "Indexed access uses bracket notation.", Px0 = [0, [11, "Invalid indexed access. ", [2, 0, [11, " Use the format `T[K]`.", 0]]], "Invalid indexed access. %s Use the format `T[K]`."], Cx0 = [0, [11, "Invalid flags supplied to RegExp constructor '", [2, 0, [12, 39, 0]]], "Invalid flags supplied to RegExp constructor '%s'"], Nx0 = tn8, Ox0 = Dp3, jx0 = [0, [11, "In match ", [2, 0, [11, " pattern, the rest must be the last element in the pattern", 0]]], "In match %s pattern, the rest must be the last element in the pattern"], Dx0 = [0, [11, "JSX element ", [2, 0, [11, " has no corresponding closing tag.", 0]]], "JSX element %s has no corresponding closing tag."], Rx0 = [0, [11, tM, [2, 0, [11, "`. Parentheses are required to combine `??` with `&&` or `||` expressions.", 0]]], "Unexpected token `%s`. Parentheses are required to combine `??` with `&&` or `||` expressions."], Fx0 = zM, Mx0 = rx2, Lx0 = XM, qx0 = A63, Bx0 = [0, [11, "Records may not have ", [2, 0, [2, 0, [11, DD2, [2, 0, [11, nu3, 0]]]]]], "Records may not have %s%s named `%s`."], Ux0 = [0, [2, 0, [11, " '", [2, 0, [11, "' has already been declared", 0]]]], "%s '%s' has already been declared"], Xx0 = rx2, Gx0 = k63, Yx0 = " You can try using JavaScript private fields by prepending `#` to the field name.", zx0 = Q63, Jx0 = " Fields and methods are public by default. You can simply omit the `public` keyword.", Kx0 = W63, Hx0 = [0, [11, "Flow does not support using `", [2, 0, [11, "` in classes.", [2, 0, 0]]]], "Flow does not support using `%s` in classes.%s"], Wx0 = [0, [11, "Private fields must be declared before they can be referenced. `#", [2, 0, [11, "` has not been declared.", 0]]], "Private fields must be declared before they can be referenced. `#%s` has not been declared."], Vx0 = [0, [11, xM, [2, 0, 0]], "Unexpected %s"], $x0 = [0, [11, tM, [2, 0, [11, "`. Did you mean `", [2, 0, [11, "`?", 0]]]]], "Unexpected token `%s`. Did you mean `%s`?"], Qx0 = [0, [11, xM, [2, 0, [11, ", expected ", [2, 0, 0]]]], "Unexpected %s, expected %s"], Zx0 = [0, [11, "Undefined label '", [2, 0, [12, 39, 0]]], "Undefined label '%s'"], xr0 = "Parse_error.Error", rr0 = [0, [0, 36, 37], [0, 48, 58], [0, 65, 91], [0, 95, 96], [0, 97, un8], [0, py2, Sg2], [0, NS, s9], [0, j_, Wm3], [0, xI, z_], [0, Y32, lk], [0, ty2, Gp3], [0, t110, 706], [0, CD2, 722], [0, 736, 741], [0, 748, 749], [0, 750, 751], [0, 768, 885], [0, 886, 888], [0, 890, 894], [0, 895, 896], [0, 902, 907], [0, 908, 909], [0, 910, 930], [0, jM, 1014], [0, 1015, 1154], [0, 1155, 1160], [0, 1162, 1328], [0, 1329, 1367], [0, 1369, 1370], [0, 1376, 1417], [0, 1425, 1470], [0, 1471, 1472], [0, 1473, 1475], [0, 1476, 1478], [0, 1479, 1480], [0, 1488, 1515], [0, 1519, 1523], [0, 1552, 1563], [0, 1568, 1642], [0, 1646, 1748], [0, 1749, 1757], [0, 1759, 1769], [0, 1770, 1789], [0, 1791, 1792], [0, 1808, 1867], [0, 1869, 1970], [0, 1984, 2038], [0, 2042, 2043], [0, 2045, 2046], [0, Gg2, 2094], [0, 2112, 2140], [0, 2144, 2155], [0, 2208, 2229], [0, 2230, 2238], [0, 2259, 2274], [0, 2275, 2404], [0, 2406, 2416], [0, 2417, 2436], [0, 2437, 2445], [0, 2447, 2449], [0, 2451, 2473], [0, 2474, 2481], [0, 2482, 2483], [0, 2486, 2490], [0, 2492, 2501], [0, 2503, 2505], [0, 2507, 2511], [0, 2519, 2520], [0, 2524, 2526], [0, 2527, 2532], [0, 2534, 2546], [0, 2556, 2557], [0, 2558, 2559], [0, 2561, 2564], [0, 2565, 2571], [0, 2575, 2577], [0, 2579, 2601], [0, 2602, 2609], [0, 2610, 2612], [0, 2613, 2615], [0, 2616, 2618], [0, 2620, 2621], [0, 2622, 2627], [0, 2631, 2633], [0, 2635, 2638], [0, 2641, 2642], [0, 2649, 2653], [0, 2654, 2655], [0, 2662, 2678], [0, 2689, 2692], [0, 2693, 2702], [0, 2703, 2706], [0, 2707, 2729], [0, 2730, 2737], [0, 2738, 2740], [0, 2741, 2746], [0, 2748, 2758], [0, 2759, 2762], [0, 2763, 2766], [0, 2768, 2769], [0, 2784, 2788], [0, 2790, 2800], [0, 2809, 2816], [0, 2817, 2820], [0, 2821, 2829], [0, 2831, 2833], [0, 2835, 2857], [0, 2858, 2865], [0, 2866, 2868], [0, 2869, 2874], [0, 2876, 2885], [0, 2887, 2889], [0, 2891, 2894], [0, 2902, 2904], [0, 2908, 2910], [0, 2911, 2916], [0, 2918, 2928], [0, 2929, 2930], [0, 2946, 2948], [0, 2949, 2955], [0, 2958, 2961], [0, 2962, 2966], [0, 2969, 2971], [0, 2972, 2973], [0, 2974, 2976], [0, 2979, 2981], [0, 2984, 2987], [0, 2990, 3002], [0, 3006, 3011], [0, 3014, 3017], [0, 3018, 3022], [0, 3024, 3025], [0, 3031, 3032], [0, 3046, 3056], [0, 3072, 3085], [0, 3086, 3089], [0, 3090, 3113], [0, 3114, 3130], [0, 3133, 3141], [0, 3142, 3145], [0, 3146, 3150], [0, 3157, 3159], [0, 3160, 3163], [0, 3168, 3172], [0, 3174, 3184], [0, 3200, 3204], [0, 3205, 3213], [0, 3214, 3217], [0, 3218, 3241], [0, 3242, 3252], [0, 3253, 3258], [0, 3260, 3269], [0, 3270, 3273], [0, 3274, 3278], [0, 3285, 3287], [0, 3294, 3295], [0, 3296, 3300], [0, 3302, 3312], [0, 3313, 3315], [0, 3328, 3332], [0, 3333, 3341], [0, 3342, 3345], [0, 3346, 3397], [0, 3398, 3401], [0, 3402, 3407], [0, 3412, 3416], [0, 3423, 3428], [0, 3430, 3440], [0, 3450, 3456], [0, 3458, 3460], [0, 3461, 3479], [0, 3482, 3506], [0, 3507, 3516], [0, 3517, 3518], [0, 3520, 3527], [0, 3530, 3531], [0, 3535, 3541], [0, 3542, 3543], [0, 3544, 3552], [0, 3558, 3568], [0, 3570, 3572], [0, 3585, 3643], [0, 3648, 3663], [0, 3664, 3674], [0, 3713, 3715], [0, 3716, 3717], [0, 3718, 3723], [0, 3724, 3748], [0, 3749, 3750], [0, 3751, 3774], [0, 3776, 3781], [0, 3782, 3783], [0, 3784, 3790], [0, 3792, 3802], [0, 3804, 3808], [0, 3840, 3841], [0, 3864, 3866], [0, 3872, 3882], [0, 3893, 3894], [0, 3895, 3896], [0, 3897, 3898], [0, 3902, 3912], [0, 3913, 3949], [0, 3953, 3973], [0, 3974, 3992], [0, 3993, 4029], [0, 4038, 4039], [0, NF, 4170], [0, 4176, 4254], [0, 4256, 4294], [0, 4295, 4296], [0, 4301, 4302], [0, 4304, 4347], [0, 4348, 4681], [0, 4682, 4686], [0, 4688, 4695], [0, 4696, 4697], [0, 4698, 4702], [0, 4704, 4745], [0, 4746, 4750], [0, 4752, 4785], [0, 4786, 4790], [0, 4792, 4799], [0, 4800, 4801], [0, 4802, 4806], [0, 4808, 4823], [0, 4824, 4881], [0, 4882, 4886], [0, 4888, 4955], [0, 4957, 4960], [0, 4969, 4978], [0, 4992, 5008], [0, 5024, 5110], [0, 5112, 5118], [0, 5121, 5741], [0, 5743, nC], [0, 5761, 5787], [0, 5792, 5867], [0, 5870, 5881], [0, 5888, 5901], [0, 5902, 5909], [0, 5920, 5941], [0, 5952, 5972], [0, 5984, 5997], [0, 5998, 6001], [0, 6002, 6004], [0, 6016, 6100], [0, 6103, 6104], [0, 6108, 6110], [0, 6112, 6122], [0, 6155, 6158], [0, 6160, 6170], [0, 6176, 6265], [0, 6272, 6315], [0, 6320, 6390], [0, 6400, 6431], [0, 6432, 6444], [0, 6448, 6460], [0, 6470, 6510], [0, 6512, 6517], [0, 6528, 6572], [0, 6576, 6602], [0, 6608, 6619], [0, 6656, 6684], [0, 6688, 6751], [0, 6752, 6781], [0, 6783, 6794], [0, 6800, 6810], [0, 6823, 6824], [0, 6832, 6846], [0, 6912, 6988], [0, 6992, 7002], [0, 7019, 7028], [0, 7040, 7156], [0, 7168, 7224], [0, 7232, 7242], [0, 7245, 7294], [0, 7296, 7305], [0, 7312, 7355], [0, 7357, 7360], [0, 7376, 7379], [0, 7380, 7419], [0, 7424, 7674], [0, 7675, 7958], [0, 7960, 7966], [0, 7968, 8006], [0, 8008, 8014], [0, 8016, 8024], [0, 8025, 8026], [0, 8027, 8028], [0, 8029, 8030], [0, 8031, 8062], [0, 8064, 8117], [0, 8118, 8125], [0, 8126, 8127], [0, 8130, 8133], [0, 8134, 8141], [0, 8144, 8148], [0, 8150, 8156], [0, 8160, 8173], [0, 8178, 8181], [0, 8182, 8189], [0, tR, NM], [0, 8255, 8257], [0, 8276, 8277], [0, F82, 8306], [0, f8, 8320], [0, 8336, 8349], [0, 8400, 8413], [0, 8417, 8418], [0, 8421, 8433], [0, dm3, 8451], [0, Gm3, 8456], [0, 8458, tk], [0, dk, 8470], [0, sM, 8478], [0, _82, Jm3], [0, th2, gk], [0, Ik, Hm3], [0, 8490, 8506], [0, 8508, 8512], [0, 8517, 8522], [0, Lk, 8527], [0, 8544, 8585], [0, 11264, 11311], [0, 11312, 11359], [0, 11360, 11493], [0, 11499, 11508], [0, 11520, om3], [0, gp4, 11560], [0, Fm3, 11566], [0, 11568, 11624], [0, u8, 11632], [0, ak, 11671], [0, 11680, lm3], [0, 11688, km3], [0, 11696, bp3], [0, 11704, Uk], [0, 11712, z82], [0, 11720, Ip3], [0, 11728, sh2], [0, 11736, 11743], [0, 11744, 11776], [0, 12293, 12296], [0, 12321, uh2], [0, 12337, 12342], [0, 12344, 12349], [0, 12353, 12439], [0, 12441, X82], [0, 12449, _h2], [0, 12540, 12544], [0, 12549, Ym3], [0, 12593, 12687], [0, 12704, 12731], [0, 12784, 12800], [0, 13312, 19894], [0, 19968, 40944], [0, 40960, 42125], [0, 42192, 42238], [0, 42240, 42509], [0, 42512, 42540], [0, 42560, 42608], [0, 42612, ek], [0, 42623, 42738], [0, 42775, 42784], [0, 42786, 42889], [0, 42891, 42944], [0, 42946, 42951], [0, l8, 43048], [0, 43072, 43124], [0, 43136, 43206], [0, 43216, 43226], [0, 43232, 43256], [0, $k, Yk], [0, 43261, 43310], [0, 43312, 43348], [0, 43360, 43389], [0, 43392, 43457], [0, W82, 43482], [0, 43488, Bp3], [0, aF2, 43575], [0, 43584, 43598], [0, 43600, 43610], [0, 43616, 43639], [0, fm3, 43715], [0, 43739, 43742], [0, 43744, 43760], [0, 43762, 43767], [0, 43777, 43783], [0, 43785, 43791], [0, 43793, 43799], [0, 43808, wm3], [0, 43816, p8], [0, 43824, Q82], [0, 43868, Np4], [0, 43888, 44011], [0, 44012, 44014], [0, 44016, 44026], [0, 44032, 55204], [0, 55216, 55239], [0, 55243, 55292], [0, 63744, 64110], [0, 64112, 64218], [0, 64256, 64263], [0, 64275, 64280], [0, Wk, qp3], [0, 64298, b8], [0, 64312, ym3], [0, Qk, pk], [0, 64320, ih2], [0, 64323, Th2], [0, 64326, 64434], [0, 64467, 64830], [0, 64848, 64912], [0, 64914, 64968], [0, 65008, 65020], [0, 65024, 65040], [0, 65056, 65072], [0, 65075, 65077], [0, 65101, 65104], [0, 65136, $m3], [0, 65142, 65277], [0, 65296, 65306], [0, 65313, 65339], [0, 65343, pm3], [0, 65345, 65371], [0, 65382, 65471], [0, 65474, 65480], [0, 65482, 65488], [0, 65490, 65496], [0, 65498, 65501], [0, Y63, lh2], [0, 65549, Z82], [0, 65576, Ek], [0, 65596, Ak], [0, 65599, 65614], [0, 65616, 65630], [0, 65664, 65787], [0, 65856, 65909], [0, 66045, 66046], [0, 66176, 66205], [0, 66208, 66257], [0, 66272, 66273], [0, 66304, 66336], [0, 66349, 66379], [0, 66384, 66427], [0, 66432, 66462], [0, 66464, 66500], [0, 66504, ah2], [0, 66513, 66518], [0, 66560, 66718], [0, 66720, 66730], [0, 66736, 66772], [0, 66776, 66812], [0, 66816, 66856], [0, 66864, 66916], [0, 67072, 67383], [0, 67392, 67414], [0, 67424, 67432], [0, 67584, 67590], [0, vk, x8], [0, 67594, oh2], [0, 67639, 67641], [0, $82, 67645], [0, 67647, 67670], [0, 67680, 67703], [0, 67712, 67743], [0, 67808, Hp3], [0, 67828, 67830], [0, 67840, 67862], [0, 67872, 67898], [0, 67968, 68024], [0, 68030, 68032], [0, ph2, 68100], [0, 68101, 68103], [0, 68108, Xk], [0, 68117, V82], [0, 68121, 68150], [0, 68152, 68155], [0, 68159, 68160], [0, 68192, 68221], [0, 68224, 68253], [0, 68288, D8], [0, 68297, 68327], [0, 68352, 68406], [0, 68416, 68438], [0, 68448, 68467], [0, 68480, 68498], [0, 68608, 68681], [0, 68736, 68787], [0, 68800, 68851], [0, 68864, 68904], [0, 68912, 68922], [0, 69376, 69405], [0, qm3, 69416], [0, 69424, 69457], [0, 69600, 69623], [0, 69632, 69703], [0, 69734, nh2], [0, 69759, 69819], [0, 69840, 69865], [0, 69872, 69882], [0, 69888, 69941], [0, 69942, 69952], [0, Up3, Dk], [0, 69968, 70004], [0, Km3, 70007], [0, 70016, 70085], [0, 70089, 70093], [0, 70096, Om3], [0, o8, 70109], [0, 70144, Nm3], [0, 70163, 70200], [0, 70206, 70207], [0, 70272, Pm3], [0, S8, Fk], [0, 70282, Cm3], [0, 70287, mm3], [0, 70303, 70313], [0, 70320, 70379], [0, 70384, 70394], [0, 70400, jp3], [0, 70405, 70413], [0, 70415, 70417], [0, 70419, Vm4], [0, 70442, Y8], [0, 70450, cm3], [0, 70453, 70458], [0, 70459, 70469], [0, 70471, 70473], [0, 70475, 70478], [0, Yp3, 70481], [0, 70487, 70488], [0, 70493, 70500], [0, 70502, 70509], [0, 70512, 70517], [0, 70656, 70731], [0, 70736, 70746], [0, uk, 70752], [0, 70784, Um3], [0, i8, 70856], [0, 70864, 70874], [0, 71040, 71094], [0, 71096, 71105], [0, 71128, 71134], [0, 71168, 71233], [0, a8, 71237], [0, 71248, 71258], [0, 71296, 71353], [0, 71360, 71370], [0, 71424, 71451], [0, 71453, 71468], [0, 71472, 71482], [0, 71680, 71739], [0, 71840, 71914], [0, 71935, 71936], [0, 72096, 72104], [0, 72106, 72152], [0, 72154, R82], [0, Xm3, 72165], [0, t82, 72255], [0, 72263, 72264], [0, qk, 72346], [0, k8, 72350], [0, 72384, 72441], [0, 72704, zm3], [0, 72714, 72759], [0, 72760, 72769], [0, 72784, 72794], [0, 72818, 72848], [0, 72850, 72872], [0, 72873, 72887], [0, 72960, d8], [0, 72968, ch2], [0, 72971, 73015], [0, 73018, 73019], [0, 73020, 73022], [0, 73023, 73032], [0, 73040, 73050], [0, 73056, E8], [0, 73063, bm3], [0, 73066, 73103], [0, 73104, 73106], [0, 73107, 73113], [0, 73120, 73130], [0, 73440, 73463], [0, 73728, 74650], [0, 74752, 74863], [0, 74880, 75076], [0, 77824, 78895], [0, 82944, 83527], [0, 92160, 92729], [0, 92736, 92767], [0, 92768, 92778], [0, 92880, 92910], [0, 92912, 92917], [0, 92928, 92983], [0, 92992, 92996], [0, 93008, 93018], [0, 93027, 93048], [0, 93053, 93072], [0, 93760, 93824], [0, 93952, 94027], [0, gm3, 94088], [0, 94095, 94112], [0, 94176, mk], [0, Op3, 94180], [0, 94208, 100344], [0, 100352, 101107], [0, 110592, 110879], [0, 110928, 110931], [0, 110948, 110952], [0, 110960, 111356], [0, 113664, 113771], [0, 113776, 113789], [0, 113792, 113801], [0, 113808, 113818], [0, 113821, 113823], [0, 119141, 119146], [0, 119149, 119155], [0, 119163, 119171], [0, 119173, 119180], [0, 119210, 119214], [0, 119362, 119365], [0, 119808, Fp3], [0, 119894, jk], [0, 119966, 119968], [0, r8, 119971], [0, 119973, 119975], [0, 119977, Ah2], [0, 119982, Sm3], [0, M82, xm3], [0, 119997, c8], [0, 120005, bh], [0, 120071, 120075], [0, 120077, sk], [0, 120086, Im3], [0, 120094, Xp3], [0, 120123, H82], [0, 120128, n8], [0, Jk, 120135], [0, 120138, eh2], [0, 120146, 120486], [0, 120488, yk], [0, 120514, T8], [0, 120540, wh2], [0, 120572, Rk], [0, 120598, C8], [0, 120630, Zp3], [0, 120656, w8], [0, 120688, zp3], [0, 120714, Cp3], [0, 120746, Nk], [0, 120772, 120780], [0, 120782, 120832], [0, 121344, 121399], [0, 121403, 121453], [0, 121461, 121462], [0, 121476, 121477], [0, 121499, 121504], [0, 121505, 121520], [0, 122880, 122887], [0, 122888, 122905], [0, 122907, 122914], [0, 122915, 122917], [0, 122918, 122923], [0, 123136, 123181], [0, 123184, 123198], [0, 123200, 123210], [0, Sp3, 123215], [0, 123584, 123642], [0, 124928, 125125], [0, 125136, 125143], [0, 125184, 125260], [0, 125264, 125274], [0, 126464, xk], [0, 126469, hm3], [0, 126497, yh2], [0, Pp4, 126501], [0, Mm3, J82], [0, 126505, Ep3], [0, 126516, N8], [0, kh2, tm3], [0, Vp3, 126524], [0, fh2, 126531], [0, Eh2, Qp3], [0, hh2, vm3], [0, vh2, Mp3], [0, 126541, Mk], [0, 126545, xh2], [0, Dm3, 126549], [0, j82, $p3], [0, Zk, y8], [0, am3, rh2], [0, ok2, Jp3], [0, q82, Sk], [0, 126561, Wp3], [0, Zm3, 126565], [0, 126567, Rp3], [0, 126572, nk], [0, 126580, A8], [0, 126585, Vk], [0, O8, Bm3], [0, 126592, Kp3], [0, 126603, 126620], [0, 126625, P8], [0, 126629, m8], [0, 126635, 126652], [0, 131072, 173783], [0, 173824, 177973], [0, 177984, 178206], [0, 178208, 183970], [0, 183984, 191457], [0, 194560, 195102], [0, 917760, 918e3]], er0 = [0, 1, 0], tr0 = [0, 0, [0, 1, 0], [0, 1, 0]], nr0 = sL, ur0 = "end of input", ir0 = U63, fr0 = "template literal part", cr0 = U63, sr0 = nD2, ar0 = sL, or0 = U63, vr0 = H32, lr0 = U63, pr0 = $v, kr0 = U63, mr0 = K32, hr0 = "an", dr0 = St12, yr0 = Nu4, _r0 = [0, [11, "token `", [2, 0, [12, 96, 0]]], "token `%s`"], wr0 = "{", gr0 = em3, br0 = "{|", Tr0 = "|}", Er0 = PM, Sr0 = iM, Ar0 = "[", Ir0 = "]", Pr0 = NT, Cr0 = JL, Nr0 = ln9, Or0 = "=>", jr0 = "...", Dr0 = _D, Rr0 = DM, Fr0 = $32, Mr0 = nm3, Lr0 = bo5, qr0 = I63, Br0 = Je11, Ur0 = Ve9, Xr0 = $P, Gr0 = DT, Yr0 = Bv2, zr0 = He10, Jr0 = um3, Kr0 = g62, Hr0 = Tp3, Wr0 = L82, Vr0 = No3, $r0 = cl6, Qr0 = Hv, Zr0 = wa4, x10 = Pa5, r10 = We12, e10 = rk, t102 = Rm3, n10 = Xe11, u10 = Fv2, i10 = Tk, f10 = U82, c10 = K82, s10 = h62, a10 = mc3, o10 = Ue10, v10 = Ck, l10 = Yv, p10 = E62, k10 = Aa3, m10 = ga2, h10 = j63, d10 = dh2, y10 = W24, _10 = fl6, w10 = Oo5, g10 = ae9, b10 = Pk, T10 = Q63, E10 = k63, S10 = W63, A10 = H24, I10 = Ke12, P10 = x43, C102 = tc3, N10 = zb2, O10 = JS, j10 = Io5, D102 = Kv, R10 = "%checks", F10 = TR, M10 = hL, L10 = GD, q102 = bF, B10 = vM, U10 = yo3, X102 = qD, G10 = PF, Y10 = IR, z10 = RR, J102 = YD, K102 = kM, H102 = fF2, W10 = $L, V102 = eF, $10 = p_2, Q10 = "?.", Z10 = Dw, x20 = uM, r20 = Iv2, e20 = LF, t202 = CM, n20 = wR, u20 = _k, i20 = Qm3, f20 = GM, c20 = $F, s20 = SF, a20 = OD, o20 = QL, v20 = WD, l20 = Qy2, p20 = F63, k20 = YF, m20 = CF, h20 = yD2, d20 = $72, y20 = ze11, _20 = se11, w20 = _R, g20 = pF, b20 = HL, T20 = SD, E20 = VL, S20 = ZM, A20 = kR, I20 = rx2, P20 = ik, C20 = wk, N20 = be10, O20 = H32, j20 = $v, D20 = K32, R20 = ga2, F20 = H63, M20 = hk, L20 = bk, q20 = Hk, B20 = Lm3, U20 = Xv, X20 = FD2, G20 = J63, Y20 = tl4, z20 = V32, J20 = jF, K20 = uF2, H20 = m62, W20 = m62, V20 = gL, $20 = m62, Q20 = m62, Z20 = em3, xe0 = em3, re0 = gL, ee0 = se11, te0 = se11, ne0 = O62, ue0 = rm4, ie0 = "T_LCURLY", fe0 = "T_RCURLY", ce0 = "T_LCURLYBAR", se0 = "T_RCURLYBAR", ae0 = "T_LPAREN", oe0 = "T_RPAREN", ve0 = "T_LBRACKET", le0 = "T_RBRACKET", pe0 = "T_SEMICOLON", ke0 = "T_COMMA", me0 = "T_PERIOD", he0 = "T_ARROW", de0 = "T_ELLIPSIS", ye0 = "T_AT", _e0 = "T_POUND", we0 = "T_FUNCTION", ge0 = "T_IF", be0 = "T_IN", Te0 = "T_INSTANCEOF", Ee0 = "T_RETURN", Se0 = "T_SWITCH", Ae0 = "T_MATCH", Ie0 = "T_RECORD", Pe0 = "T_THIS", Ce0 = "T_THROW", Ne0 = "T_TRY", Oe0 = "T_VAR", je0 = "T_WHILE", De0 = "T_WITH", Re0 = "T_CONST", Fe0 = "T_LET", Me0 = "T_NULL", Le0 = "T_FALSE", qe0 = "T_TRUE", Be0 = "T_BREAK", Ue0 = "T_CASE", Xe0 = "T_CATCH", Ge0 = "T_CONTINUE", Ye0 = "T_DEFAULT", ze0 = "T_DO", Je0 = "T_FINALLY", Ke0 = "T_FOR", He0 = "T_CLASS", We0 = "T_EXTENDS", Ve0 = "T_STATIC", $e0 = "T_ELSE", Qe0 = "T_NEW", Ze0 = "T_DELETE", xt0 = "T_TYPEOF", rt0 = "T_VOID", et0 = "T_ENUM", tt0 = "T_EXPORT", nt0 = "T_IMPORT", ut0 = "T_SUPER", it0 = "T_IMPLEMENTS", ft0 = "T_INTERFACE", ct0 = "T_PACKAGE", st0 = "T_PRIVATE", at0 = "T_PROTECTED", ot0 = "T_PUBLIC", vt0 = "T_YIELD", lt0 = "T_DEBUGGER", pt0 = "T_DECLARE", kt0 = "T_TYPE", mt0 = "T_OPAQUE", ht0 = "T_OF", dt0 = "T_ASYNC", yt0 = "T_AWAIT", _t0 = "T_CHECKS", wt0 = "T_RSHIFT3_ASSIGN", gt0 = "T_RSHIFT_ASSIGN", bt0 = "T_LSHIFT_ASSIGN", Tt0 = "T_BIT_XOR_ASSIGN", Et0 = "T_BIT_OR_ASSIGN", St0 = "T_BIT_AND_ASSIGN", At0 = "T_MOD_ASSIGN", It0 = "T_DIV_ASSIGN", Pt0 = "T_MULT_ASSIGN", Ct0 = "T_EXP_ASSIGN", Nt0 = "T_MINUS_ASSIGN", Ot0 = "T_PLUS_ASSIGN", jt0 = "T_NULLISH_ASSIGN", Dt0 = "T_AND_ASSIGN", Rt0 = "T_OR_ASSIGN", Ft0 = "T_ASSIGN", Mt0 = "T_PLING_PERIOD", Lt0 = "T_PLING_PLING", qt0 = "T_PLING", Bt0 = "T_COLON", Ut0 = "T_OR", Xt0 = "T_AND", Gt0 = "T_BIT_OR", Yt0 = "T_BIT_XOR", zt0 = "T_BIT_AND", Jt0 = "T_EQUAL", Kt0 = "T_NOT_EQUAL", Ht0 = "T_STRICT_EQUAL", Wt0 = "T_STRICT_NOT_EQUAL", Vt0 = "T_LESS_THAN_EQUAL", $t0 = "T_GREATER_THAN_EQUAL", Qt0 = "T_LESS_THAN", Zt0 = "T_GREATER_THAN", xn0 = "T_LSHIFT", rn0 = "T_RSHIFT", en0 = "T_RSHIFT3", tn0 = "T_PLUS", nn0 = "T_MINUS", un0 = "T_DIV", in0 = "T_MULT", fn0 = "T_EXP", cn0 = "T_MOD", sn0 = "T_NOT", an0 = "T_BIT_NOT", on0 = "T_INCR", vn0 = "T_DECR", ln0 = "T_EOF", pn0 = "T_ANY_TYPE", kn0 = "T_MIXED_TYPE", mn0 = "T_EMPTY_TYPE", hn0 = "T_NUMBER_TYPE", dn0 = "T_BIGINT_TYPE", yn0 = "T_STRING_TYPE", _n0 = "T_VOID_TYPE", wn0 = "T_SYMBOL_TYPE", gn0 = "T_UNKNOWN_TYPE", bn0 = "T_NEVER_TYPE", Tn0 = "T_UNDEFINED_TYPE", En0 = "T_KEYOF", Sn0 = "T_READONLY", An0 = "T_INFER", In0 = "T_IS", Pn0 = "T_ASSERTS", Cn0 = "T_IMPLIES", Nn0 = KL, On0 = KL, jn0 = "T_NUMBER", Dn0 = "T_BIGINT", Rn0 = "T_STRING", Fn0 = "T_TEMPLATE_PART", Mn0 = "T_IDENTIFIER", Ln0 = "T_REGEXP", qn0 = "T_INTERPRETER", Bn0 = "T_ERROR", Un0 = "T_JSX_IDENTIFIER", Xn0 = XL, Gn0 = XL, Yn0 = "T_BOOLEAN_TYPE", zn0 = "T_NUMBER_SINGLETON_TYPE", Jn0 = "T_BIGINT_SINGLETON_TYPE", Kn0 = [0, BR, $S, 9], Hn0 = [0, BR, Hg2, 9], Wn0 = wL, Vn0 = "*/", $n0 = wL, Qn0 = "unreachable line_comment", Zn0 = "unreachable string_quote", x70 = "\\", r70 = "unreachable template_part", e70 = `\r
|
|
274402
|
+
`, t70 = ug2, n70 = "unreachable regexp_class", u70 = LD, i70 = "unreachable regexp_body", f70 = rx2, c70 = rx2, s70 = rx2, a70 = rx2, o70 = hR, v70 = "{'>'}", l70 = F63, p70 = "{'}'}", k70 = em3, m70 = Ao3, h70 = NT, d70 = Qm3, y70 = hR, _70 = Ao3, w70 = NT, g70 = Qm3, b70 = "unreachable type_token wholenumber", T70 = "unreachable type_token wholebigint", E70 = "unreachable type_token floatbigint", S70 = "unreachable type_token scinumber", A70 = "unreachable type_token scibigint", I70 = "unreachable type_token hexnumber", P70 = "unreachable type_token hexbigint", C70 = "unreachable type_token legacyoctnumber", N70 = "unreachable type_token octnumber", O70 = "unreachable type_token octbigint", j70 = "unreachable type_token binnumber", D70 = "unreachable type_token bigbigint", R70 = "unreachable type_token", F70 = yL, M70 = [11, 1], L70 = [11, 0], q70 = "unreachable template_tail", B70 = rx2, U70 = rx2, X70 = "unreachable jsx_child", G70 = "unreachable jsx_tag", Y70 = [0, hw], z70 = [0, 913], J70 = [0, Y32], K70 = [0, mh2], H70 = [0, cR], W70 = [0, QP], V70 = [0, 8747], $70 = [0, gD], Q70 = [0, 916], Z70 = [0, 8225], xu0 = [0, 935], ru0 = [0, VI], eu0 = [0, 914], tu0 = [0, vL], nu0 = [0, IF], uu0 = [0, RE], iu0 = [0, 915], fu0 = [0, TD], cu0 = [0, 919], su0 = [0, 917], au0 = [0, _L], ou0 = [0, KD], vu0 = [0, HR], lu0 = [0, 924], pu0 = [0, 923], ku0 = [0, 922], mu0 = [0, oF2], hu0 = [0, 921], du0 = [0, eM], yu0 = [0, Hg2], _u0 = [0, xF], wu0 = [0, ty2], gu0 = [0, 927], bu0 = [0, 937], Tu0 = [0, HD], Eu0 = [0, $R], Su0 = [0, uR], Au0 = [0, 338], Iu0 = [0, 352], Pu0 = [0, 929], Cu0 = [0, 936], Nu0 = [0, 8243], Ou0 = [0, 928], ju0 = [0, 934], Du0 = [0, qL], Ru0 = [0, o_2], Fu0 = [0, 933], Mu0 = [0, pM], Lu0 = [0, nL], qu0 = [0, fD2], Bu0 = [0, 920], Uu0 = [0, 932], Xu0 = [0, jD], Gu0 = [0, dR], Yu0 = [0, KF], zu0 = [0, JR], Ju0 = [0, 918], Ku0 = [0, SR], Hu0 = [0, HF], Wu0 = [0, 926], Vu0 = [0, lF2], $u0 = [0, jM], Qu0 = [0, 925], Zu0 = [0, 39], xi0 = [0, 8736], ri0 = [0, 8743], ei0 = [0, 38], ti0 = [0, 945], ni0 = [0, 8501], ui0 = [0, Sv2], ii0 = [0, 8226], fi0 = [0, JD2], ci0 = [0, 946], si0 = [0, 8222], ai0 = [0, RD], oi0 = [0, wM], vi0 = [0, 8776], li0 = [0, qI], pi0 = [0, 8773], ki0 = [0, 9827], mi0 = [0, CD2], hi0 = [0, 967], di0 = [0, qM], yi0 = [0, Wm3], _i0 = [0, PD], wi0 = [0, GF], gi0 = [0, 8595], bi0 = [0, 8224], Ti0 = [0, 8659], Ei0 = [0, sR], Si0 = [0, 8746], Ai0 = [0, 8629], Ii0 = [0, yR], Pi0 = [0, 8745], Ci0 = [0, 8195], Ni0 = [0, 8709], Oi0 = [0, iD2], ji0 = [0, dL], Di0 = [0, aL], Ri0 = [0, Gp3], Fi0 = [0, 9830], Mi0 = [0, 8707], Li0 = [0, 8364], qi0 = [0, EM], Bi0 = [0, rl5], Ui0 = [0, 951], Xi0 = [0, 8801], Gi0 = [0, 949], Yi0 = [0, 8194], zi0 = [0, 8805], Ji0 = [0, 947], Ki0 = [0, 8260], Hi0 = [0, jE], Wi0 = [0, nR], Vi0 = [0, $S], $i0 = [0, 8704], Qi0 = [0, XF], Zi0 = [0, EL], xf0 = [0, 8230], rf0 = [0, 9829], ef0 = [0, 8596], tf0 = [0, 8660], nf0 = [0, 62], uf0 = [0, 402], if0 = [0, 948], ff0 = [0, nF2], cf0 = [0, E9], sf0 = [0, 8712], af0 = [0, sP], of0 = [0, 953], vf0 = [0, 8734], lf0 = [0, 8465], pf0 = [0, IM], kf0 = [0, 8220], mf0 = [0, 8968], hf0 = [0, 8592], df0 = [0, Sg2], yf0 = [0, 10216], _f0 = [0, 955], wf0 = [0, 8656], gf0 = [0, 954], bf0 = [0, 60], Tf0 = [0, 8216], Ef0 = [0, 8249], Sf0 = [0, NM], Af0 = [0, 9674], If0 = [0, 8727], Pf0 = [0, 8970], Cf0 = [0, AL], Nf0 = [0, 8711], Of0 = [0, 956], jf0 = [0, 8722], Df0 = [0, j_], Rf0 = [0, NS], Ff0 = [0, 8212], Mf0 = [0, NR], Lf0 = [0, 8804], qf0 = [0, 957], Bf0 = [0, kF], Uf0 = [0, 8836], Xf0 = [0, 8713], Gf0 = [0, KR], Yf0 = [0, 8715], zf0 = [0, 8800], Jf0 = [0, 8853], Kf0 = [0, 959], Hf0 = [0, 969], Wf0 = [0, 8254], Vf0 = [0, HM], $f0 = [0, 339], Qf0 = [0, jv], Zf0 = [0, BM], xc0 = [0, s9], rc0 = [0, ul6], ec0 = [0, 8855], tc0 = [0, ME], nc0 = [0, t110], uc0 = [0, xI], ic0 = [0, py2], fc0 = [0, da5], cc0 = [0, rL], sc0 = [0, 982], ac0 = [0, 960], oc0 = [0, 966], vc0 = [0, 8869], lc0 = [0, 8240], pc0 = [0, 8706], kc0 = [0, 8744], mc0 = [0, 8211], hc0 = [0, 10217], dc0 = [0, 8730], yc0 = [0, 8658], _c0 = [0, 34], wc0 = [0, 968], gc0 = [0, 8733], bc0 = [0, 8719], Tc0 = [0, 961], Ec0 = [0, 8971], Sc0 = [0, LL], Ac0 = [0, 8476], Ic0 = [0, 8221], Pc0 = [0, 8969], Cc0 = [0, 8594], Nc0 = [0, z_], Oc0 = [0, bM], jc0 = [0, Sb2], Dc0 = [0, 8901], Rc0 = [0, 353], Fc0 = [0, 8218], Mc0 = [0, 8217], Lc0 = [0, 8250], qc0 = [0, 8835], Bc0 = [0, 8721], Uc0 = [0, 8838], Xc0 = [0, 8834], Gc0 = [0, 9824], Yc0 = [0, 8764], zc0 = [0, 962], Jc0 = [0, 963], Kc0 = [0, 8207], Hc0 = [0, 952], Wc0 = [0, 8756], Vc0 = [0, 964], $c0 = [0, e8], Qc0 = [0, 8839], Zc0 = [0, AC], xs0 = [0, fk], rs0 = [0, ol7], es0 = [0, 8657], ts0 = [0, 8482], ns0 = [0, lk], us0 = [0, 732], is0 = [0, Q32], fs0 = [0, 8201], cs0 = [0, 977], ss0 = [0, sM], as0 = [0, xl6], os0 = [0, 965], vs0 = [0, 978], ls0 = [0, IL], ps0 = [0, jS], ks0 = [0, WL], ms0 = [0, tR], hs0 = [0, 8205], ds0 = [0, 950], ys0 = [0, Bk], _s0 = [0, hF], ws0 = [0, QE], gs0 = [0, 958], bs0 = [0, 8593], Ts0 = [0, oD2], Es0 = [0, 8242], Ss0 = [0, kI], As0 = "unreachable regexp", Is0 = "unreachable token wholenumber", Ps0 = "unreachable token wholebigint", Cs0 = "unreachable token floatbigint", Ns0 = "unreachable token scinumber", Os0 = "unreachable token scibigint", js0 = "unreachable token hexnumber", Ds0 = "unreachable token hexbigint", Rs0 = "unreachable token legacyoctnumber", Fs0 = "unreachable token legacynonoctnumber", Ms0 = "unreachable token octnumber", Ls0 = "unreachable token octbigint", qs0 = "unreachable token bignumber", Bs0 = "unreachable token bigint", Us0 = "unreachable token", Xs0 = yL, Gs0 = [7, "#!"], Ys0 = "expected ?", zs0 = "unreachable string_escape", Js0 = V24, Ks0 = P63, Hs0 = P63, Ws0 = V24, Vs0 = KP, $s0 = EF, Qs0 = "n", Zs0 = "r", xa0 = "t", ra0 = zF, ea0 = P63, ta0 = Ao3, na0 = Ao3, ua0 = "unreachable id_char", ia0 = Ao3, fa0 = Ao3, ca0 = P63, sa0 = uL, aa0 = pD2, oa0 = gb2, va0 = [28, "token ILLEGAL"], la0 = [0, [11, "the identifier `", [2, 0, [12, 96, 0]]], "the identifier `%s`"], pa0 = [0, 1], ka0 = [0, 1], ma0 = OF, ha0 = OF, da0 = [0, [11, "an identifier. When exporting a ", [2, 0, [11, " as a named export, you must specify a ", [2, 0, [11, " name. Did you mean `export default ", [2, 0, [11, " ...`?", 0]]]]]]], "an identifier. When exporting a %s as a named export, you must specify a %s name. Did you mean `export default %s ...`?"], ya0 = Sh2, _a0 = "Peeking current location when not available", wa0 = [0, "src/parser/parser_env.ml", SR, 9], ga0 = "Internal Error: Tried to add_declared_private with outside of class scope.", ba0 = "Internal Error: `exit_class` called before a matching `enter_class`", Ta0 = rx2, Ea0 = [0, 0, 0], Sa0 = [0, 0, 0], Aa0 = "Parser_env.Try.Rollback", Ia0 = rx2, Pa0 = rx2, Ca0 = [0, H24, of8, $i9, CR, TM, V72, $24, qf3, h7, pc3, bc4, Rf4, Gi8, Du4, Fi8, hu4, F72, d7, Qu2, Uf3, J72, ui11, cf3, X72, Zn10, Zf2, _u4, vu4, $n8, ac3, Ps9, oc4, _f4, Sf3, Es8, Uc2, jc2, Q72, He10, t72, Wi8, s7, Qc2, Bi8, ic3, rs8, Ve9, Jc2, Uu4, fu4, k72, ss9, ii10, lu4, T7, Je11, ci10, w72, Of3, qu4, fc3, Ku4, pi11, q72, a7, If4, _72, fs9, Ge11, Lf3, Pi8, Zu2, M72, pu2, xf4, af3, P72, $f3, au3, Fc2, Zi8, m7, Bn7, jf3, Fu4, Y7, bi11, $c2, Ai9, Eu5, ge11, es8, x72, rc3, Vu4, bs8, Wn8, e7, o7, Kf2, Pc3, Vn7, r7, Xi9, Qf2, kf4, Lu4, sf3, Xn9, Vc3, zu3, ni10, Oi9, Hu3, $u4, si10, n7, Ii8, Zc2, Ui8, ys8, Gf3, Kc2, Xu3, Mu4, Ei10, Cc3, wu3, Kn10, hs8, df3, W72, Ki9, uc3, hf3, Nf3, uu4, du4, E7, ps7, L72, mf3, gu4, Au3, Cu3, Yc3, su3, os7, N72, oi10, G12, g7, Hn8, Bc2, ai10, pf3, ku3, xu3, Tf3, Jf2, ms8, Tc4, Dc2, z72, dc3, Bu3, zf3, f7, D7, Z72, Xf, I72, ds7, fi11, Mi7, Di8, Rc3, zn9, Yu2, xi11, eu4, vf4, ae9, lc3, is9, cc4, Ou5, Df4, as19, Vi8, Gn8, W24, Ri8, U72, cs7, St12, Ni9, qc3, gs7, tu3, i7, vi11, Ru4, di11, Qi9, S7, kc3, _c3, ti10, cu3, gf3, nc4, As8, Iu4, wf3, Qn8, vs9, Ci8, hi11, Hi10, ws8, bf3, v72, b7, Mf4, mi11, C72, Nc3, ts8, p7, t26, Un8, Mc2, yf3, Is8, A72, Yn7, Yi9, Ac3, Yf3, Xc2, Oc3, Ts6, O7, Hc2, Bf3, wc3, Ec4, bu4, ju4, j72, be10, nf3, Ju5, qn8, hc3, Ic3, wi10, Gc2, gi11, lf3, yu5, zi8, ou3, xc3, us8, Ke12, Xe11, rf3, ff3, ri10, Wc2, ns8, K72, mu3, Vf3, Sc4, _s7, Jn9, gc3, qi8, Hf, ru4, uf3, aR, H72, vD, qF, yc3, Ef3, ji7, y7, sc3, Wf3, B7, ei10, Si11, yi10, Wu2, Ff3, Gu3, Su3, Pf4, c7, li10, l7, Ji7, _i9, Cs6, We12, iu3, zc3, vn7, G72, R72, ki10, ls7, u7, Tu5, Pu3, Ti11, Lc2, tf3, vc4, tn8, Af3], Na0 = [0, ss9, fi11, _c3, Ni9, di11, Cs6, mf3, si10, sf3, z72, eu4, zc3, _u4, e7, Ve9, bs8, Mc2, W72, hf3, Ff3, Es8, Xi9, Z72, Ii8, lc3, I72, Ec4, O7, of8, Fu4, tu3, Ku4, jc2, hi11, m7, pf3, Ic3, Vf3, gs7, wc3, ys8, St12, V72, Mf4, $f3, lf3, Ji7, ti10, l7, f7, Ac3, Lf3, vi11, Hi10, rs8, Vc3, U72, Au3, fu4, Kn10, Ou5, bu4, ai10, Ui8, Si11, ji7, es8, Af3, pu2, Ki9, qi8, X72, Lu4, Zu2, ms8, Wf3, o7, Ge11, r7, Qi9, x72, Gf3, dc3, D7, qc3, G12, ff3, $n8, Oc3, E7, Nf3, Tc4, g7, kc3, su3, P72, tf3, Gc2, Yn7, Mu4, a7, Eu5, vc4, j72, _i9, T7, $24, Pi8, ou3, d7, w72, Ri8, wu3, ki10, Ci8, Q72, Rc3, Wu2, Oi9, ic3, be10, v72, vu4, H24, Hn8, Uc2, zi8, xf4, Du4, $c2, xc3, Yc3, If4, ls7, Gi8, Ef3, yu5, $u4, pc3, du4, Xf, Pu3, oc4, xi11, Cc3, Hc2, Nc3, Wn8, yf3, Bc2, bi11, mi11, Uf3, Ps9, Hf, qf3, _f4, ii10, Qu2, Uu4, Rf4, B7, is9, ws8, y7, oi10, S7, ru4, bc4, H72, Hu3, xu3, Sc4, u7, Ei10, Pf4, yi10, Jn9, L72, ps7, Y7, Tf3, gc3, Xu3, W24, Je11, F72, J72, Jc2, jf3, He10, Ke12, n7, cs7, Vu4, p7, ds7, ge11, iu3, As8, Bf3, cc4, sc3, Un8, cu3, Mi7, Ru4, hu4, Ts6, q72, fs9, fc3, Qn8, Vi8, uc3, qu4, Xc2, A72, ns8, ni10, lu4, Xn9, Df4, Pc3, Fc2, ac3, kf4, M72, Vn7, ui11, wi10, uu4, c7, gi11, G72, zn9, Bi8, ju4, Sf3, i7, _72, Gn8, Qf2, Su3, zu3, zf3, ei10, Cu3, vf4, nf3, Zf2, tn8, h7, Ju5, li10, Zn10, qn8, Bu3, Di8, ri10, ku3, Zi8, Zc2, Yu2, C72, gu4, Jf2, cf3, s7, Tu5, df3, K72, Bn7, Ti11, R72, t26, Ai9, uf3, ts8, hs8, Iu4, wf3, k72, Xe11, gf3, _s7, af3, Yi9, hc3, yc3, Wi8, Qc2, vs9, Is8, Fi8, bf3, os7, rc3, vn7, as19, Gu3, Dc2, Kf2, nc4, us8, pi11, ci10, Yf3, We12, Lc2, ae9, N72, rf3, $i9, mu3, Of3, b7, Wc2, au3, t72, Kc2], Oa0 = [0, ss9, fi11, _c3, Ni9, di11, Cs6, mf3, si10, sf3, z72, eu4, zc3, _u4, e7, Ve9, bs8, Mc2, W72, hf3, Ff3, Es8, Xi9, Z72, Ii8, lc3, I72, Ec4, O7, of8, Fu4, tu3, Ku4, jc2, hi11, m7, pf3, Ic3, Vf3, gs7, wc3, ys8, St12, V72, TM, Mf4, $f3, lf3, Ji7, ti10, l7, f7, Ac3, Lf3, vi11, Hi10, rs8, Vc3, U72, Au3, fu4, Kn10, Ou5, bu4, ai10, Ui8, Si11, ji7, es8, Af3, pu2, Ki9, qi8, vD, X72, Lu4, Zu2, ms8, Wf3, o7, Ge11, r7, Qi9, x72, Gf3, dc3, D7, qc3, G12, ff3, $n8, Oc3, E7, Nf3, Tc4, g7, kc3, su3, P72, tf3, Gc2, Yn7, Mu4, a7, Eu5, vc4, j72, _i9, T7, $24, Pi8, ou3, d7, w72, Ri8, wu3, ki10, Ci8, Q72, Rc3, Wu2, Oi9, ic3, be10, v72, vu4, H24, Hn8, Uc2, zi8, xf4, Du4, $c2, xc3, Yc3, If4, ls7, Gi8, Ef3, yu5, $u4, pc3, du4, Xf, Pu3, oc4, xi11, Cc3, Hc2, Nc3, Wn8, yf3, Bc2, bi11, mi11, Uf3, Ps9, Hf, qf3, _f4, ii10, Qu2, Uu4, Rf4, B7, is9, ws8, y7, oi10, S7, ru4, bc4, H72, Hu3, xu3, Sc4, u7, Ei10, Pf4, yi10, Jn9, L72, ps7, Y7, Tf3, gc3, Xu3, W24, Je11, F72, J72, Jc2, jf3, He10, Ke12, n7, cs7, Vu4, p7, ds7, ge11, iu3, As8, Bf3, cc4, sc3, Un8, cu3, Mi7, Ru4, hu4, Ts6, q72, fs9, fc3, Qn8, Vi8, uc3, qu4, Xc2, A72, ns8, ni10, lu4, Xn9, Df4, Pc3, Fc2, ac3, kf4, M72, Vn7, ui11, wi10, uu4, c7, gi11, G72, zn9, qF, Bi8, ju4, Sf3, i7, _72, Gn8, Qf2, Su3, zu3, zf3, ei10, Cu3, vf4, nf3, Zf2, aR, tn8, h7, Ju5, li10, Zn10, CR, qn8, Bu3, Di8, ri10, ku3, Zi8, Zc2, Yu2, C72, gu4, Jf2, cf3, s7, Tu5, df3, K72, Bn7, Ti11, R72, t26, Ai9, uf3, ts8, hs8, Iu4, wf3, k72, Xe11, gf3, _s7, af3, Yi9, hc3, yc3, Wi8, Qc2, vs9, Is8, Fi8, bf3, os7, rc3, vn7, as19, Gu3, Dc2, Kf2, nc4, us8, pi11, ci10, Yf3, We12, Lc2, ae9, N72, rf3, $i9, mu3, Of3, b7, Wc2, au3, t72, Kc2], ja0 = [0, H24, of8, $i9, V72, $24, qf3, h7, pc3, bc4, Rf4, Gi8, Du4, Fi8, hu4, F72, d7, Qu2, Uf3, J72, ui11, cf3, X72, Zn10, Zf2, _u4, vu4, $n8, ac3, Ps9, oc4, _f4, Sf3, Es8, Uc2, jc2, Q72, He10, t72, Wi8, s7, Qc2, Bi8, ic3, rs8, Ve9, Jc2, Uu4, fu4, k72, ss9, ii10, lu4, T7, Je11, ci10, w72, Of3, qu4, fc3, Ku4, pi11, q72, a7, If4, _72, fs9, Ge11, Lf3, Pi8, Zu2, M72, pu2, xf4, af3, P72, $f3, au3, Fc2, Zi8, m7, Bn7, jf3, Fu4, Y7, bi11, $c2, Ai9, Eu5, ge11, es8, x72, rc3, Vu4, bs8, Wn8, e7, o7, Kf2, Pc3, Vn7, r7, Xi9, Qf2, kf4, Lu4, sf3, Xn9, Vc3, zu3, ni10, Oi9, Hu3, $u4, si10, n7, Ii8, Zc2, Ui8, ys8, Gf3, Kc2, Xu3, Mu4, Ei10, Cc3, wu3, Kn10, hs8, df3, W72, Ki9, uc3, hf3, Nf3, uu4, du4, E7, ps7, L72, mf3, gu4, Au3, Cu3, Yc3, su3, os7, N72, oi10, G12, g7, Hn8, Bc2, ai10, pf3, ku3, xu3, Tf3, Jf2, ms8, Tc4, Dc2, z72, dc3, Bu3, zf3, f7, D7, Z72, Xf, I72, ds7, fi11, Mi7, Di8, Rc3, zn9, Yu2, xi11, eu4, vf4, ae9, lc3, is9, cc4, Ou5, Df4, as19, Vi8, Gn8, W24, Ri8, U72, cs7, St12, Ni9, qc3, gs7, tu3, i7, vi11, Ru4, di11, Qi9, S7, kc3, _c3, ti10, cu3, gf3, nc4, As8, Iu4, wf3, Qn8, vs9, Ci8, hi11, Hi10, ws8, bf3, v72, b7, Mf4, mi11, C72, Nc3, ts8, p7, t26, Un8, Mc2, yf3, Is8, A72, Yn7, Yi9, Ac3, Yf3, Xc2, Oc3, Ts6, O7, Hc2, Bf3, wc3, Ec4, bu4, ju4, j72, be10, nf3, Ju5, qn8, hc3, Ic3, wi10, Gc2, gi11, lf3, yu5, zi8, ou3, xc3, us8, Ke12, Xe11, rf3, ff3, ri10, Wc2, ns8, K72, mu3, Vf3, Sc4, _s7, Jn9, gc3, qi8, Hf, ru4, uf3, H72, yc3, Ef3, ji7, y7, sc3, Wf3, B7, ei10, Si11, yi10, Wu2, Ff3, Gu3, Su3, Pf4, c7, li10, l7, Ji7, _i9, Cs6, We12, iu3, zc3, vn7, G72, R72, ki10, ls7, u7, Tu5, Pu3, Ti11, Lc2, tf3, vc4, tn8, Af3], Da0 = $32, Ra0 = nm3, Fa0 = bo5, Ma0 = I63, La0 = Je11, qa0 = Ve9, Ba0 = $P, Ua0 = DT, Xa0 = Bv2, Ga0 = He10, Ya0 = um3, za0 = g62, Ja0 = Tp3, Ka0 = L82, Ha0 = No3, Wa0 = cl6, Va0 = Hv, $a0 = wa4, Qa0 = Pa5, Za0 = We12, xo0 = rk, ro0 = Rm3, eo0 = Xe11, to0 = Fv2, no0 = Tk, uo0 = U82, io0 = K82, fo0 = h62, co0 = mc3, so0 = Ue10, ao0 = Ck, oo0 = Yv, vo0 = E62, lo0 = Aa3, po0 = ga2, ko0 = j63, mo0 = dh2, ho0 = W24, do0 = fl6, yo0 = Oo5, _o0 = ae9, wo0 = Pk, go0 = Q63, bo0 = k63, To0 = W63, Eo0 = H24, So0 = Ke12, Ao0 = x43, Io0 = tc3, Po0 = zb2, Co0 = JS, No0 = Io5, Oo0 = Kv, jo0 = ik, Do0 = wk, Ro0 = be10, Fo0 = H32, Mo0 = $v, Lo0 = K32, qo0 = ga2, Bo0 = H63, Uo0 = hk, Xo0 = bk, Go0 = Hk, Yo0 = Lm3, zo0 = Xv, Jo0 = J63, Ko0 = tl4, Ho0 = V32, Wo0 = O62, Vo0 = rm4, $o0 = [0, Sh2], Qo0 = rx2, Zo0 = [19, 1], xv0 = [19, 0], rv0 = [0, 0], ev0 = Ta3, tv0 = [0, 0], nv0 = [0, "a type"], uv0 = [0, 0], iv0 = [0, "a number literal type"], fv0 = [0, 0], cv0 = J63, sv0 = tl4, av0 = V32, ov0 = "You should only call render_type after making sure the next token is a renders variant", vv0 = [0, [0, 0, 0, 0, 0]], lv0 = [0, 0, 0, 0], pv0 = [0, 1], kv0 = [0, il7, 1466, 6], mv0 = [0, il7, 1469, 6], hv0 = [0, il7, 1572, 8], dv0 = [0, 1], yv0 = [0, il7, 1589, 8], _v0 = "Can not have both `static` and `proto`", wv0 = Ue10, gv0 = rw, bv0 = [0, 0], Tv0 = [0, "the end of a tuple type (no trailing comma is allowed in inexact tuple type)."], Ev0 = [0, il7, Sv2, 15], Sv0 = [0, il7, sP, 15], Av0 = ze11, Iv0 = ze11, Pv0 = Kk, Cv0 = G63, Nv0 = [0, [11, "Failure while looking up ", [2, 0, [11, ". Index: ", [4, 0, 0, 0, [11, ". Length: ", [4, 0, 0, 0, [12, 46, 0]]]]]]], "Failure while looking up %s. Index: %d. Length: %d."], Ov0 = [0, 0, 0, 0], jv0 = "Offset_utils.Offset_lookup_failed", Dv0 = m12, Rv0 = kD, Fv0 = G63, Mv0 = Kk, Lv0 = wD, qv0 = G63, Bv0 = Kk, Uv0 = vR, Xv0 = Yx, Gv0 = "normal", Yv0 = tc3, zv0 = "jsxTag", Jv0 = "jsxChild", Kv0 = "template", Hv0 = nD2, Wv0 = "context", Vv0 = tc3, $v0 = [6, 0], Qv0 = [0, 0], Zv0 = [0, 1], x30 = [0, 4], r30 = [0, 2], e30 = [0, 3], t30 = [0, 0], n30 = ze11, u30 = [0, 0, 0, 0, 0, 0], i30 = [0, 0], f30 = [0, OM], c30 = [0, 1], s30 = [0, 0], a30 = Ta3, o30 = [0, 73], v30 = [0, 84], l30 = aM, p30 = rE, k30 = "exports", m30 = K63, h30 = [0, rx2, rx2, 0], d30 = [0, AD], y30 = [0, 84], _30 = [0, "a declaration, statement or export specifiers"], w30 = [0, 1], g30 = [0, I9, 1971, 21], b30 = [0, "the keyword `as`"], T30 = [0, 29], E30 = [0, 29], S30 = [0, 0], A30 = [0, 1], I30 = [0, AD], P30 = [0, "the keyword `from`"], C30 = [0, rx2, rx2, 0], N30 = "Label", O30 = [0, OM], j30 = [0, 0, 0], D30 = [0, 38], R30 = [0, I9, 372, 22], F30 = [0, 37], M30 = [0, I9, 391, 22], L30 = [0, 0], q30 = "the token `;`", B30 = [0, 0], U30 = [0, 0], X30 = FR, G30 = [0, Sh2], Y30 = FR, z30 = [28, St12], J30 = Ta3, K30 = [0, 73], H30 = [0, rx2, 0], W30 = It11, V30 = [0, rx2, 0], $30 = [0, 73], Q30 = [0, 73], Z30 = $32, xl0 = [0, rx2, 0], rl0 = [0, 0, 0], el0 = [0, 0, 0], tl0 = [0, [0, 8]], nl0 = [0, [0, 7]], ul0 = [0, [0, 6]], il0 = [0, [0, 10]], fl0 = [0, [0, 9]], cl0 = [0, [0, 11]], sl0 = [0, [0, 5]], al0 = [0, [0, 4]], ol0 = [0, [0, 2]], vl0 = [0, [0, 3]], ll0 = [0, [0, 1]], pl0 = [0, [0, 0]], kl0 = [0, [0, 12]], ml0 = [0, [0, 13]], hl0 = [0, [0, 14]], dl0 = [0, 0], yl0 = [0, 1], _l0 = [0, 0], wl0 = [0, 2], gl0 = [0, 3], bl0 = [0, 7], Tl0 = [0, 6], El0 = [0, 4], Sl0 = [0, 5], Al0 = [0, 1], Il0 = [0, 0], Pl0 = [0, 1], Cl0 = [0, 0], Nl0 = fl6, Ol0 = [0, "either a call or access of `super`"], jl0 = fl6, Dl0 = W24, Rl0 = w63, Fl0 = w63, Ml0 = [0, 2], Ll0 = [0, 0], ql0 = [0, 1], Bl0 = Yv, Ul0 = [0, "the identifier `target`"], Xl0 = [0, 0], Gl0 = [0, 1], Yl0 = [0, 0], zl0 = [0, 0], Jl0 = [0, 2], Kl0 = [0, 2], Hl0 = [0, 1], Wl0 = [0, 73], Vl0 = P63, $l0 = uL, Ql0 = gb2, Zl0 = gb2, x60 = pD2, r60 = [0, 0], e60 = [0, 1], t60 = [0, 0], n60 = se11, u60 = se11, i60 = [0, "a regular expression"], f60 = rx2, c60 = rx2, s60 = rx2, a60 = [0, 81], o60 = [0, "src/parser/expression_parser.ml", 1550, 17], v60 = [0, "a template literal part"], l60 = [0, [0, rx2, rx2], 1], p60 = Pv2, k60 = [0, 6], m60 = [0, [0, 17, [0, 2]]], h60 = [0, [0, 18, [0, 3]]], d60 = [0, [0, 19, [0, 4]]], y60 = [0, [0, 0, [0, 5]]], _60 = [0, [0, 1, [0, 5]]], w60 = [0, [0, 2, [0, 5]]], g60 = [0, [0, 3, [0, 5]]], b60 = [0, [0, 5, [0, 6]]], T60 = [0, [0, 7, [0, 6]]], E60 = [0, [0, 4, [0, 6]]], S60 = [0, [0, 6, [0, 6]]], A60 = [0, [0, 8, [0, 7]]], I60 = [0, [0, 9, [0, 7]]], P60 = [0, [0, 10, [0, 7]]], C60 = [0, [0, 11, [0, 8]]], N60 = [0, [0, 12, [0, 8]]], O60 = [0, [0, 15, [0, 9]]], j60 = [0, [0, 13, [0, 9]]], D60 = [0, [0, 14, [1, 10]]], R60 = [0, [0, 16, [0, 9]]], F60 = [0, [0, 21, [0, 6]]], M60 = [0, [0, 20, [0, 6]]], L60 = [23, Dw], q60 = [13, "JSX fragment"], B60 = Iv2, U60 = ln9, X60 = [0, sn9], G60 = [1, sn9], Y60 = [0, rx2, rx2, 0], z60 = [0, Sh2], J60 = rx2, K60 = [0, "a numeric or string literal"], H60 = [0, rx2, '""', 0], W60 = [0, 0], V60 = [0, "a number literal"], $60 = [0, [0, 0, V24, 0]], Q60 = [0, 84], Z60 = [21, dM], x40 = [21, R63], r40 = [0, 0, 0], e40 = h62, t40 = [0, rx2, 0], n40 = "unexpected PrivateName in Property, expected a PrivateField", u40 = [0, 0, 0], i40 = Sa2, f40 = "Must be one of the above", c40 = [0, 1], s40 = [0, 1], a40 = [0, 1], o40 = Sa2, v40 = Sa2, l40 = p_2, p40 = "Internal Error: private name found in object props", k40 = [0, 0, 0, 0], m40 = [0, cF2], h40 = [19, [0, 0]], d40 = [0, cF2], y40 = ug2, _40 = "Nooo: ", w40 = Fv2, g40 = "Parser error: No such thing as an expression pattern!", b40 = [0, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], T40 = [0, "src/parser/parser_flow.ml", fk, 28], E40 = [0, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], S40 = kD, A40 = Yx, I40 = $D, P40 = eR, C40 = eR, N40 = $D, O40 = tc3, j40 = sD2, D40 = w12, R40 = m12, F40 = "InterpreterDirective", M40 = "interpreter", L40 = "Program", q40 = w12, B40 = "RecordBody", U40 = m12, X40 = Y12, G40 = en10, Y40 = "RecordStaticProperty", z40 = "defaultValue", J40 = Y12, K40 = en10, H40 = "RecordProperty", W40 = S62, V40 = "BreakStatement", $40 = S62, Q40 = "ContinueStatement", Z40 = "DebuggerStatement", xp0 = Wv, rp0 = "DeclareExportAllDeclaration", ep0 = Wv, tp0 = l_2, np0 = IE, up0 = Fv2, ip0 = "DeclareExportDeclaration", fp0 = w12, cp0 = Yr10, sp0 = "DeclareModule", ap0 = Y12, op0 = "DeclareModuleExports", vp0 = w12, lp0 = Yr10, pp0 = NL, kp0 = "DeclareNamespace", mp0 = Z32, hp0 = w12, dp0 = "DoWhileStatement", yp0 = "EmptyStatement", _p0 = cS, wp0 = IE, gp0 = "ExportDefaultDeclaration", bp0 = cS, Tp0 = cA, Ep0 = Wv, Sp0 = "ExportAllDeclaration", Ap0 = cS, Ip0 = Wv, Pp0 = l_2, Cp0 = IE, Np0 = "ExportNamedDeclaration", Op0 = "directive", jp0 = t26, Dp0 = "ExpressionStatement", Rp0 = w12, Fp0 = "update", Mp0 = Z32, Lp0 = ks8, qp0 = "ForStatement", Bp0 = "each", Up0 = w12, Xp0 = fn10, Gp0 = Ea5, Yp0 = "ForInStatement", zp0 = Kv, Jp0 = w12, Kp0 = fn10, Hp0 = Ea5, Wp0 = "ForOfStatement", Vp0 = lR, $p0 = rP, Qp0 = Z32, Zp0 = "IfStatement", xk0 = tc3, rk0 = Aa3, ek0 = m12, tk0 = XD, nk0 = Wv, uk0 = l_2, ik0 = "ImportDeclaration", fk0 = w12, ck0 = S62, sk0 = "LabeledStatement", ak0 = J92, ok0 = $12, vk0 = "MatchStatement", lk0 = "RecordImplements", pk0 = w12, kk0 = Oo5, mk0 = B24, hk0 = Yr10, dk0 = "RecordDeclaration", yk0 = $12, _k0 = "ReturnStatement", wk0 = J92, gk0 = "discriminant", bk0 = "SwitchStatement", Tk0 = $12, Ek0 = "ThrowStatement", Sk0 = "finalizer", Ak0 = "handler", Ik0 = vn7, Pk0 = "TryStatement", Ck0 = w12, Nk0 = Z32, Ok0 = "WhileStatement", jk0 = w12, Dk0 = Dp3, Rk0 = "WithStatement", Fk0 = x9, Mk0 = $12, Lk0 = NA, qk0 = x9, Bk0 = $12, Uk0 = NA, Xk0 = KT, Gk0 = "ArrayExpression", Yk0 = B24, zk0 = gh2, Jk0 = t26, Kk0 = Ge11, Hk0 = Ey2, Wk0 = Io5, Vk0 = w12, $k0 = on7, Qk0 = Yr10, Zk0 = "ArrowFunctionExpression", x80 = t26, r80 = "AsConstExpression", e80 = Y12, t80 = t26, n80 = "AsExpression", u80 = p_2, i80 = fn10, f80 = Ea5, c80 = Gv, s80 = "AssignmentExpression", a80 = fn10, o80 = Ea5, v80 = Gv, l80 = "BinaryExpression", p80 = "CallExpression", k80 = lR, m80 = rP, h80 = Z32, d80 = "ConditionalExpression", y80 = Wv, _80 = "ImportExpression", w80 = LF, g80 = CM, b80 = Dw, T80 = fn10, E80 = Ea5, S80 = Gv, A80 = "LogicalExpression", I80 = J92, P80 = $12, C80 = "MatchExpression", N80 = "MemberExpression", O80 = Tm3, j80 = w63, D80 = "MetaProperty", R80 = Qb2, F80 = h8, M80 = fR, L80 = "NewExpression", q80 = A63, B80 = "ObjectExpression", U80 = ft10, X80 = "OptionalCallExpression", G80 = ft10, Y80 = "OptionalMemberExpression", z80 = rM, J80 = "SequenceExpression", K80 = "Super", H80 = "ThisExpression", W80 = Y12, V80 = t26, $80 = "TypeCastExpression", Q80 = Y12, Z80 = t26, xm0 = "SatisfiesExpression", rm0 = x9, em0 = $12, tm0 = NA, nm0 = ze11, um0 = $72, im0 = SD, fm0 = VL, cm0 = Aa3, sm0 = ga2, am0 = E62, om0 = "matched above", vm0 = $12, lm0 = XR, pm0 = Gv, km0 = "UnaryExpression", mm0 = $12, hm0 = "AwaitExpression", dm0 = kR, ym0 = ZM, _m0 = XR, wm0 = $12, gm0 = Gv, bm0 = "UpdateExpression", Tm0 = "delegate", Em0 = $12, Sm0 = "YieldExpression", Am0 = "MatchExpressionCase", Im0 = "guard", Pm0 = w12, Cm0 = ge11, Nm0 = "MatchStatementCase", Om0 = "literal", jm0 = "MatchLiteralPattern", Dm0 = "MatchWildcardPattern", Rm0 = ze11, Fm0 = $72, Mm0 = $12, Lm0 = Gv, qm0 = "MatchUnaryPattern", Bm0 = "MatchObjectPattern", Um0 = "MatchInstanceObjectPattern", Xm0 = DF, Gm0 = _a6, Ym0 = "MatchInstancePattern", zm0 = "patterns", Jm0 = "MatchOrPattern", Km0 = Ih2, Hm0 = ge11, Wm0 = "MatchAsPattern", Vm0 = Yr10, $m0 = "MatchIdentifierPattern", Qm0 = Tm3, Zm0 = "base", xh0 = "MatchMemberPattern", rh0 = ba3, eh0 = Yr10, th0 = "MatchBindingPattern", nh0 = p62, uh0 = KT, ih0 = "MatchArrayPattern", fh0 = T62, ch0 = ge11, sh0 = en10, ah0 = VR, oh0 = T62, vh0 = ge11, lh0 = en10, ph0 = VR, kh0 = p62, mh0 = A63, hh0 = $12, dh0 = "MatchRestPattern", yh0 = "Unexpected FunctionDeclaration with BodyExpression", _h0 = "HookDeclaration", wh0 = t26, gh0 = Ge11, bh0 = Ey2, Th0 = Io5, Eh0 = "FunctionDeclaration", Sh0 = B24, Ah0 = gh2, Ih0 = w12, Ph0 = on7, Ch0 = Yr10, Nh0 = "Unexpected FunctionExpression with BodyExpression", Oh0 = B24, jh0 = gh2, Dh0 = t26, Rh0 = Ge11, Fh0 = Ey2, Mh0 = Io5, Lh0 = w12, qh0 = on7, Bh0 = Yr10, Uh0 = "FunctionExpression", Xh0 = ft10, Gh0 = Y12, Yh0 = Ye10, zh0 = US, Jh0 = ft10, Kh0 = Y12, Hh0 = Ye10, Wh0 = "PrivateIdentifier", Vh0 = ft10, $h0 = Y12, Qh0 = Ye10, Zh0 = US, xd0 = rP, rd0 = Z32, ed0 = "SwitchCase", td0 = w12, nd0 = "param", ud0 = "CatchClause", id0 = w12, fd0 = "BlockStatement", cd0 = ba3, sd0 = Yr10, ad0 = "DeclareVariable", od0 = "DeclareHook", vd0 = Ge11, ld0 = "DeclareFunction", pd0 = Yr10, kd0 = lM, md0 = Oo5, hd0 = mc3, dd0 = w12, yd0 = B24, _d0 = Yr10, wd0 = "DeclareClass", gd0 = B24, bd0 = f_2, Td0 = on7, Ed0 = p62, Sd0 = on7, Ad0 = Yr10, Id0 = "DeclareComponent", Pd0 = B24, Cd0 = f_2, Nd0 = p62, Od0 = on7, jd0 = "ComponentTypeAnnotation", Dd0 = ft10, Rd0 = Y12, Fd0 = Ye10, Md0 = "ComponentTypeParameter", Ld0 = w12, qd0 = Yr10, Bd0 = "DeclareEnum", Ud0 = mc3, Xd0 = w12, Gd0 = B24, Yd0 = Yr10, zd0 = "DeclareInterface", Jd0 = m12, Kd0 = tc3, Hd0 = cA, Wd0 = "ExportNamespaceSpecifier", Vd0 = fn10, $d0 = B24, Qd0 = Yr10, Zd0 = "DeclareTypeAlias", x50 = fn10, r50 = B24, e50 = Yr10, t50 = "TypeAlias", n50 = "DeclareOpaqueType", u50 = "OpaqueType", i50 = "supertype", f50 = "upperBound", c50 = "lowerBound", s50 = "impltype", a50 = B24, o50 = Yr10, v50 = "ClassDeclaration", l50 = "ClassExpression", p50 = g8, k50 = Oo5, m50 = "superTypeParameters", h50 = "superClass", d50 = B24, y50 = w12, _50 = Yr10, w50 = t26, g50 = "Decorator", b50 = B24, T50 = Yr10, E50 = "ClassImplements", S50 = w12, A50 = "ClassBody", I50 = w12, P50 = "StaticBlock", C50 = _a6, N50 = V63, O50 = Nv2, j50 = nl5, D50 = g8, R50 = W32, F50 = Ue10, M50 = ba3, L50 = m12, q50 = en10, B50 = "MethodDefinition", U50 = x43, X50 = g8, G50 = $24, Y50 = Ue10, z50 = W32, J50 = Y12, K50 = m12, H50 = en10, W50 = jL, V50 = "Internal Error: Private name found in class prop", $50 = x43, Q50 = g8, Z50 = $24, xy0 = Ue10, ry0 = W32, ey0 = Y12, ty0 = m12, ny0 = en10, uy0 = jL, iy0 = B24, fy0 = f_2, cy0 = on7, sy0 = Yr10, ay0 = w12, oy0 = "ComponentDeclaration", vy0 = $12, ly0 = OE, py0 = fn10, ky0 = Ea5, my0 = jm3, hy0 = T62, dy0 = X63, yy0 = Ye10, _y0 = "ComponentParameter", wy0 = ks8, gy0 = Yr10, by0 = "EnumBigIntMember", Ty0 = Yr10, Ey0 = LR, Sy0 = ks8, Ay0 = Yr10, Iy0 = "EnumStringMember", Py0 = Yr10, Cy0 = LR, Ny0 = ks8, Oy0 = Yr10, jy0 = "EnumNumberMember", Dy0 = ks8, Ry0 = Yr10, Fy0 = "EnumBooleanMember", My0 = B63, Ly0 = Am3, qy0 = y62, By0 = "EnumBooleanBody", Uy0 = B63, Xy0 = Am3, Gy0 = y62, Yy0 = "EnumNumberBody", zy0 = B63, Jy0 = Am3, Ky0 = y62, Hy0 = "EnumStringBody", Wy0 = B63, Vy0 = y62, $y0 = "EnumSymbolBody", Qy0 = B63, Zy0 = Am3, x90 = y62, r90 = "EnumBigIntBody", e90 = w12, t90 = Yr10, n90 = "EnumDeclaration", u90 = mc3, i90 = w12, f90 = B24, c90 = Yr10, s90 = "InterfaceDeclaration", a90 = B24, o90 = Yr10, v90 = "InterfaceExtends", l90 = Y12, p90 = A63, k90 = "ObjectPattern", m90 = Y12, h90 = KT, d90 = "ArrayPattern", y90 = fn10, _90 = Ea5, w90 = jm3, g90 = Y12, b90 = Ye10, T90 = US, E90 = $12, S90 = OE, A90 = $12, I90 = OE, P90 = fn10, C90 = Ea5, N90 = jm3, O90 = ks8, j90 = ks8, D90 = Nv2, R90 = nl5, F90 = VD, M90 = W32, L90 = T62, q90 = V63, B90 = ba3, U90 = m12, X90 = en10, G90 = mF, Y90 = $12, z90 = iR, J90 = fn10, K90 = Ea5, H90 = jm3, W90 = W32, V90 = T62, $90 = V63, Q90 = ba3, Z90 = m12, x_0 = en10, r_0 = mF, e_0 = $12, t_0 = iR, n_0 = At12, u_0 = m12, i_0 = J32, f_0 = rx2, c_0 = At12, s_0 = $v, a_0 = m12, o_0 = J32, v_0 = At12, l_0 = m12, p_0 = J32, k_0 = Pa5, m_0 = wa4, h_0 = At12, d_0 = m12, y_0 = J32, __0 = "flags", w_0 = ge11, g_0 = "regex", b_0 = At12, T_0 = m12, E_0 = J32, S_0 = At12, A_0 = m12, I_0 = J32, P_0 = rM, C_0 = "quasis", N_0 = "TemplateLiteral", O_0 = "cooked", j_0 = At12, D_0 = "tail", R_0 = m12, F_0 = "TemplateElement", M_0 = "quasi", L_0 = "tag", q_0 = "TaggedTemplateExpression", B_0 = ba3, U_0 = "declarations", X_0 = "VariableDeclaration", G_0 = ks8, Y_0 = Yr10, z_0 = "VariableDeclarator", J_0 = "plus", K_0 = nM, H_0 = Xv, W_0 = bo5, V_0 = ng2, $_0 = "in-out", Q_0 = ba3, Z_0 = "Variance", xw0 = "AnyTypeAnnotation", rw0 = "MixedTypeAnnotation", ew0 = "EmptyTypeAnnotation", tw0 = "VoidTypeAnnotation", nw0 = "NullLiteralTypeAnnotation", uw0 = "SymbolTypeAnnotation", iw0 = "NumberTypeAnnotation", fw0 = "BigIntTypeAnnotation", cw0 = "StringTypeAnnotation", sw0 = "BooleanTypeAnnotation", aw0 = Y12, ow0 = "NullableTypeAnnotation", vw0 = "UnknownTypeAnnotation", lw0 = "NeverTypeAnnotation", pw0 = "UndefinedTypeAnnotation", kw0 = ba3, mw0 = Y12, hw0 = "parameterName", dw0 = "TypePredicate", yw0 = "HookTypeAnnotation", _w0 = "FunctionTypeAnnotation", ww0 = Bv2, gw0 = B24, bw0 = p62, Tw0 = gh2, Ew0 = on7, Sw0 = ft10, Aw0 = Y12, Iw0 = Ye10, Pw0 = fM, Cw0 = ft10, Nw0 = Y12, Ow0 = Ye10, jw0 = fM, Dw0 = [0, 0, 0, 0, 0], Rw0 = "internalSlots", Fw0 = "callProperties", Mw0 = "indexers", Lw0 = A63, qw0 = "exact", Bw0 = tL, Uw0 = "ObjectTypeAnnotation", Xw0 = VD, Gw0 = "There should not be computed object type property keys", Yw0 = ks8, zw0 = Nv2, Jw0 = nl5, Kw0 = ba3, Hw0 = $24, Ww0 = rw, Vw0 = Ue10, $w0 = ft10, Qw0 = V63, Zw0 = m12, xg0 = en10, rg0 = "ObjectTypeProperty", eg0 = $12, tg0 = "ObjectTypeSpreadProperty", ng0 = $24, ug0 = Ue10, ig0 = m12, fg0 = en10, cg0 = Yr10, sg0 = "ObjectTypeIndexer", ag0 = Ue10, og0 = m12, vg0 = "ObjectTypeCallProperty", lg0 = ft10, pg0 = $24, kg0 = "sourceType", mg0 = "propType", hg0 = "keyTparam", dg0 = "ObjectTypeMappedTypeProperty", yg0 = m12, _g0 = V63, wg0 = Ue10, gg0 = ft10, bg0 = Yr10, Tg0 = "ObjectTypeInternalSlot", Eg0 = w12, Sg0 = mc3, Ag0 = "InterfaceTypeAnnotation", Ig0 = QM, Pg0 = "ArrayTypeAnnotation", Cg0 = "falseType", Ng0 = "trueType", Og0 = "extendsType", jg0 = "checkType", Dg0 = "ConditionalTypeAnnotation", Rg0 = "typeParameter", Fg0 = "InferTypeAnnotation", Mg0 = Yr10, Lg0 = UF, qg0 = "QualifiedTypeIdentifier", Bg0 = B24, Ug0 = Yr10, Xg0 = "GenericTypeAnnotation", Gg0 = "indexType", Yg0 = "objectType", zg0 = "IndexedAccessType", Jg0 = ft10, Kg0 = "OptionalIndexedAccessType", Hg0 = w_2, Wg0 = "UnionTypeAnnotation", Vg0 = w_2, $g0 = "IntersectionTypeAnnotation", Qg0 = h8, Zg0 = $12, xb0 = "TypeofTypeAnnotation", rb0 = Yr10, eb0 = UF, tb0 = "QualifiedTypeofIdentifier", nb0 = $12, ub0 = "KeyofTypeAnnotation", ib0 = el5, fb0 = jF, cb0 = uF2, sb0 = Y12, ab0 = Gv, ob0 = "TypeOperator", vb0 = Xv, lb0 = tL, pb0 = "elementTypes", kb0 = "TupleTypeAnnotation", mb0 = ft10, hb0 = $24, db0 = QM, yb0 = S62, _b0 = "TupleTypeLabeledElement", wb0 = Y12, gb0 = S62, bb0 = "TupleTypeSpreadElement", Tb0 = At12, Eb0 = m12, Sb0 = "StringLiteralTypeAnnotation", Ab0 = At12, Ib0 = m12, Pb0 = "NumberLiteralTypeAnnotation", Cb0 = At12, Nb0 = m12, Ob0 = "BigIntLiteralTypeAnnotation", jb0 = Pa5, Db0 = wa4, Rb0 = At12, Fb0 = m12, Mb0 = "BooleanLiteralTypeAnnotation", Lb0 = "ExistsTypeAnnotation", qb0 = Y12, Bb0 = vF, Ub0 = Y12, Xb0 = vF, Gb0 = on7, Yb0 = "TypeParameterDeclaration", zb0 = "usesExtendsBound", Jb0 = Fv2, Kb0 = $24, Hb0 = No3, Wb0 = "bound", Vb0 = Ye10, $b0 = "TypeParameter", Qb0 = on7, Zb0 = mM, xT0 = on7, rT0 = mM, eT0 = Pv2, tT0 = OL, nT0 = "closingElement", uT0 = "openingElement", iT0 = "JSXElement", fT0 = "closingFragment", cT0 = OL, sT0 = "openingFragment", aT0 = "JSXFragment", oT0 = h8, vT0 = "selfClosing", lT0 = "attributes", pT0 = Ye10, kT0 = "JSXOpeningElement", mT0 = "JSXOpeningFragment", hT0 = Ye10, dT0 = "JSXClosingElement", yT0 = "JSXClosingFragment", _T0 = m12, wT0 = Ye10, gT0 = "JSXAttribute", bT0 = $12, TT0 = "JSXSpreadAttribute", ET0 = "JSXEmptyExpression", ST0 = t26, AT0 = "JSXExpressionContainer", IT0 = t26, PT0 = "JSXSpreadChild", CT0 = At12, NT0 = m12, OT0 = "JSXText", jT0 = Tm3, DT0 = Dp3, RT0 = "JSXMemberExpression", FT0 = Ye10, MT0 = rE, LT0 = "JSXNamespacedName", qT0 = Ye10, BT0 = "JSXIdentifier", UT0 = cA, XT0 = X63, GT0 = "ExportSpecifier", YT0 = X63, zT0 = "ImportDefaultSpecifier", JT0 = X63, KT0 = "ImportNamespaceSpecifier", HT0 = XD, WT0 = X63, VT0 = "imported", $T0 = "ImportSpecifier", QT0 = "Line", ZT0 = "Block", xE0 = m12, rE0 = m12, eE0 = "DeclaredPredicate", tE0 = "InferredPredicate", nE0 = Qb2, uE0 = h8, iE0 = fR, fE0 = W32, cE0 = Tm3, sE0 = Dp3, aE0 = "message", oE0 = Yx, vE0 = wD, lE0 = vR, pE0 = Wv, kE0 = G63, mE0 = Kk, hE0 = [0, ss9, fi11, _c3, Ni9, di11, Cs6, mf3, si10, sf3, z72, eu4, zc3, _u4, e7, Ve9, bs8, Mc2, W72, hf3, Ff3, Es8, Xi9, Z72, Ii8, lc3, I72, Ec4, O7, of8, Fu4, tu3, Ku4, jc2, hi11, m7, pf3, Ic3, Vf3, gs7, wc3, ys8, St12, V72, Mf4, $f3, lf3, Ji7, ti10, l7, f7, Ac3, Lf3, vi11, Hi10, rs8, Vc3, U72, Au3, fu4, Kn10, Ou5, bu4, ai10, Ui8, Si11, ji7, es8, Af3, pu2, Ki9, qi8, X72, Lu4, Zu2, ms8, Wf3, o7, Ge11, r7, Qi9, x72, Gf3, dc3, D7, qc3, G12, ff3, $n8, Oc3, E7, Nf3, Tc4, g7, kc3, su3, P72, tf3, Gc2, Yn7, Mu4, a7, Eu5, vc4, j72, _i9, T7, $24, Pi8, ou3, d7, w72, Ri8, wu3, ki10, Ci8, Q72, Rc3, Wu2, Oi9, ic3, be10, v72, vu4, H24, Hn8, Uc2, zi8, xf4, Du4, $c2, xc3, Yc3, If4, ls7, Gi8, Ef3, yu5, $u4, pc3, du4, Xf, Pu3, oc4, xi11, Cc3, Hc2, Nc3, Wn8, yf3, Bc2, bi11, mi11, Uf3, Ps9, Hf, qf3, _f4, ii10, Qu2, Uu4, Rf4, B7, is9, ws8, y7, oi10, S7, ru4, bc4, H72, Hu3, xu3, Sc4, u7, Ei10, Pf4, yi10, Jn9, L72, ps7, Y7, Tf3, gc3, Xu3, W24, Je11, F72, J72, Jc2, jf3, He10, Ke12, n7, cs7, Vu4, p7, ds7, ge11, iu3, As8, Bf3, cc4, sc3, Un8, cu3, Mi7, Ru4, hu4, Ts6, q72, fs9, fc3, Qn8, Vi8, uc3, qu4, Xc2, A72, ns8, ni10, lu4, Xn9, Df4, Pc3, Fc2, ac3, kf4, M72, Vn7, ui11, wi10, uu4, c7, gi11, G72, zn9, Bi8, ju4, Sf3, i7, _72, Gn8, Qf2, Su3, zu3, zf3, ei10, Cu3, vf4, nf3, Zf2, tn8, h7, Ju5, li10, Zn10, qn8, Bu3, Di8, ri10, ku3, Zi8, Zc2, Yu2, C72, gu4, Jf2, cf3, s7, Tu5, df3, K72, Bn7, Ti11, R72, t26, Ai9, uf3, ts8, hs8, Iu4, wf3, k72, Xe11, gf3, _s7, af3, Yi9, hc3, yc3, Wi8, Qc2, vs9, Is8, Fi8, bf3, os7, rc3, vn7, as19, Gu3, Dc2, Kf2, nc4, us8, pi11, ci10, Yf3, We12, Lc2, ae9, N72, rf3, $i9, mu3, Of3, b7, Wc2, au3, t72, Kc2], dE0 = [0, H24, of8, $i9, V72, $24, qf3, h7, pc3, bc4, Rf4, Gi8, Du4, Fi8, hu4, F72, d7, Qu2, Uf3, J72, ui11, cf3, X72, Zn10, Zf2, _u4, vu4, $n8, ac3, Ps9, oc4, _f4, Sf3, Es8, Uc2, jc2, Q72, He10, t72, Wi8, s7, Qc2, Bi8, ic3, rs8, Ve9, Jc2, Uu4, fu4, k72, ss9, ii10, lu4, T7, Je11, ci10, w72, Of3, qu4, fc3, Ku4, pi11, q72, a7, If4, _72, fs9, Ge11, Lf3, Pi8, Zu2, M72, pu2, xf4, af3, P72, $f3, au3, Fc2, Zi8, m7, Bn7, jf3, Fu4, Y7, bi11, $c2, Ai9, Eu5, ge11, es8, x72, rc3, Vu4, bs8, Wn8, e7, o7, Kf2, Pc3, Vn7, r7, Xi9, Qf2, kf4, Lu4, sf3, Xn9, Vc3, zu3, ni10, Oi9, Hu3, $u4, si10, n7, Ii8, Zc2, Ui8, ys8, Gf3, Kc2, Xu3, Mu4, Ei10, Cc3, wu3, Kn10, hs8, df3, W72, Ki9, uc3, hf3, Nf3, uu4, du4, E7, ps7, L72, mf3, gu4, Au3, Cu3, Yc3, su3, os7, N72, oi10, G12, g7, Hn8, Bc2, ai10, pf3, ku3, xu3, Tf3, Jf2, ms8, Tc4, Dc2, z72, dc3, Bu3, zf3, f7, D7, Z72, Xf, I72, ds7, fi11, Mi7, Di8, Rc3, zn9, Yu2, xi11, eu4, vf4, ae9, lc3, is9, cc4, Ou5, Df4, as19, Vi8, Gn8, W24, Ri8, U72, cs7, St12, Ni9, qc3, gs7, tu3, i7, vi11, Ru4, di11, Qi9, S7, kc3, _c3, ti10, cu3, gf3, nc4, As8, Iu4, wf3, Qn8, vs9, Ci8, hi11, Hi10, ws8, bf3, v72, b7, Mf4, mi11, C72, Nc3, ts8, p7, t26, Un8, Mc2, yf3, Is8, A72, Yn7, Yi9, Ac3, Yf3, Xc2, Oc3, Ts6, O7, Hc2, Bf3, wc3, Ec4, bu4, ju4, j72, be10, nf3, Ju5, qn8, hc3, Ic3, wi10, Gc2, gi11, lf3, yu5, zi8, ou3, xc3, us8, Ke12, Xe11, rf3, ff3, ri10, Wc2, ns8, K72, mu3, Vf3, Sc4, _s7, Jn9, gc3, qi8, Hf, ru4, uf3, H72, yc3, Ef3, ji7, y7, sc3, Wf3, B7, ei10, Si11, yi10, Wu2, Ff3, Gu3, Su3, Pf4, c7, li10, l7, Ji7, _i9, Cs6, We12, iu3, zc3, vn7, G72, R72, ki10, ls7, u7, Tu5, Pu3, Ti11, Lc2, tf3, vc4, tn8, Af3], yE0 = [0, Af3, tn8, vc4, tf3, Lc2, Ti11, Pu3, Tu5, u7, ls7, ki10, R72, G72, vn7, zc3, iu3, We12, Cs6, _i9, Ji7, l7, li10, c7, Pf4, Su3, Gu3, Ff3, Wu2, yi10, Si11, ei10, B7, Wf3, sc3, y7, ji7, Ef3, yc3, H72, uf3, ru4, Hf, qi8, gc3, Jn9, _s7, Sc4, Vf3, mu3, K72, ns8, Wc2, ri10, ff3, rf3, Xe11, Ke12, us8, xc3, ou3, zi8, yu5, lf3, gi11, Gc2, wi10, Ic3, hc3, qn8, Ju5, nf3, be10, j72, ju4, bu4, Ec4, wc3, Bf3, Hc2, O7, Ts6, Oc3, Xc2, Yf3, Ac3, Yi9, Yn7, A72, Is8, yf3, Mc2, Un8, t26, p7, ts8, Nc3, C72, mi11, Mf4, b7, v72, bf3, ws8, Hi10, hi11, Ci8, vs9, Qn8, wf3, Iu4, As8, nc4, gf3, cu3, ti10, _c3, kc3, S7, Qi9, di11, Ru4, vi11, i7, tu3, gs7, qc3, Ni9, St12, cs7, U72, Ri8, W24, Gn8, Vi8, as19, Df4, Ou5, cc4, is9, lc3, ae9, vf4, eu4, xi11, Yu2, zn9, Rc3, Di8, Mi7, fi11, ds7, I72, Xf, Z72, D7, f7, zf3, Bu3, dc3, z72, Dc2, Tc4, ms8, Jf2, Tf3, xu3, ku3, pf3, ai10, Bc2, Hn8, g7, G12, oi10, N72, os7, su3, Yc3, Cu3, Au3, gu4, mf3, L72, ps7, E7, du4, uu4, Nf3, hf3, uc3, Ki9, W72, df3, hs8, Kn10, wu3, Cc3, Ei10, Mu4, Xu3, Kc2, Gf3, ys8, Ui8, Zc2, Ii8, n7, si10, $u4, Hu3, Oi9, ni10, zu3, Vc3, Xn9, sf3, Lu4, kf4, Qf2, Xi9, r7, Vn7, Pc3, Kf2, o7, e7, Wn8, bs8, Vu4, rc3, x72, es8, ge11, Eu5, Ai9, $c2, bi11, Y7, Fu4, jf3, Bn7, m7, Zi8, Fc2, au3, $f3, P72, af3, xf4, pu2, M72, Zu2, Pi8, Lf3, Ge11, fs9, _72, If4, a7, q72, pi11, Ku4, fc3, qu4, Of3, w72, ci10, Je11, T7, lu4, ii10, ss9, k72, fu4, Uu4, Jc2, Ve9, rs8, ic3, Bi8, Qc2, s7, Wi8, t72, He10, Q72, jc2, Uc2, Es8, Sf3, _f4, oc4, Ps9, ac3, $n8, vu4, _u4, Zf2, Zn10, X72, cf3, ui11, J72, Uf3, Qu2, d7, F72, hu4, Fi8, Du4, Gi8, Rf4, bc4, pc3, h7, qf3, $24, V72, $i9, of8, H24], _E0 = "Jsoo_runtime.Error.Exn", wE0 = [0, 0], gE0 = "assert_operator", bE0 = "use_strict", TE0 = w_2, EE0 = "esproposal_decorators", SE0 = "records", AE0 = "pattern_matching", IE0 = "enums", PE0 = "components", CE0 = "Internal error: ", NE0 = [t110, "CamlinternalLazy.Undefined", js9(0)];
|
|
274403
274403
|
function OE0(x11, r11) {
|
|
274404
274404
|
var e11 = Rx(r11) - 1 | 0, t27 = 0;
|
|
274405
274405
|
if (e11 >= 0) for (var u = t27; ; ) {
|
|
@@ -296658,7 +296658,7 @@ function Qe6(e7, t26) {
|
|
|
296658
296658
|
function ps5(e7) {
|
|
296659
296659
|
return /^\[.*\]$/.test(e7) ? e7.substring(1, e7.length - 1) : e7;
|
|
296660
296660
|
}
|
|
296661
|
-
function
|
|
296661
|
+
function fs6(e7, t26) {
|
|
296662
296662
|
return { open: e7.charAt(2) === "~", close: t26.charAt(t26.length - 3) === "~" };
|
|
296663
296663
|
}
|
|
296664
296664
|
function ms5(e7) {
|
|
@@ -297956,7 +297956,7 @@ Expecting ` + Qt10.join(", ") + ", got '" + (this.terminals_[L9] || L9) + "'" :
|
|
|
297956
297956
|
};
|
|
297957
297957
|
jr3 = G5;
|
|
297958
297958
|
Ft5 = {};
|
|
297959
|
-
Oe5(Ft5, { SourceLocation: () => Qe6, id: () => ps5, prepareBlock: () => ys5, prepareMustache: () => gs5, preparePartialBlock: () => ks5, preparePath: () => ds5, prepareProgram: () => Ss4, prepareRawBlock: () => bs5, stripComment: () => ms5, stripFlags: () =>
|
|
297959
|
+
Oe5(Ft5, { SourceLocation: () => Qe6, id: () => ps5, prepareBlock: () => ys5, prepareMustache: () => gs5, preparePartialBlock: () => ks5, preparePath: () => ds5, prepareProgram: () => Ss4, prepareRawBlock: () => bs5, stripComment: () => ms5, stripFlags: () => fs6 });
|
|
297960
297960
|
hs5 = function(e7, t26, r5) {
|
|
297961
297961
|
if (r5 || arguments.length === 2) for (var s5 = 0, n5 = t26.length, i; s5 < n5; s5++) (i || !(s5 in t26)) && (i || (i = Array.prototype.slice.call(t26, 0, s5)), i[s5] = t26[s5]);
|
|
297962
297962
|
return e7.concat(i || Array.prototype.slice.call(t26));
|
|
@@ -301922,7 +301922,7 @@ function gt7(e7) {
|
|
|
301922
301922
|
let t26 = Jt8(e7), r5 = t26.name === "vue" ? bs6 : Xr4;
|
|
301923
301923
|
return { parse: (n5, i) => Kr5(n5, r5, t26, i), hasPragma: vi7, hasIgnorePragma: Ti7, astFormat: "html", locStart: Q7, locEnd: te8 };
|
|
301924
301924
|
}
|
|
301925
|
-
var Jr4, Zr5, ks6, en6, ir7, xs7, $e7, tn6, ws6, xe6, As6, ys6, w5, Ls7, F7, Ps7, ze8, Ye6, je8, St8, Ae7, ye7, Et8, Ne6, Le7, Pe6, Oe7, Ct8, vt8, Y5, Tt8, De7, bt8, wt8, Ds7, sr7, rn4, D4, kt8, sn5, an5, j5, _6, k7, Ms7, v7, Bs7, nn6, cn5, un5, Fs7, qs7, pn5, lr6, hn5, Vs6, Us7, y3, cr6, mn5, Ws7, Gs7, dn5, gn5, zs7, Ys7, _n4, Xs7, En5, Cn4, Ie7, ea3, At8, yt7, ce7, Xe8, pr7, bn4, hr7, wn4, mr5, ue7, aa3, fr7, kn5, Ea2, Vn3, Un4, Er5, va2, Gn5, $n4, zn5, Cr5, wa2, Yn4, jn4, Xn5, Kn5, xa2, Aa2, ya2, Na2, Zn5, La2, ei7, ti7, ri7, Oa2, ii7, si7, vr5, G7, Ra3, ui7, Fa3, pi7, Q7, te8, hi7, qt7, Ya3, fi7, nt8, Xa4, di7, I6, gi7, Qa3, _i6, Si7, Ei7, Ci6, vi7, Ti7, bi7, wi7, Ja3, R7, kr4, xr5, re6, to4, Vt7, Di6, ro4, no4, io4, so4, ao4, Ii6, oo4, Ri6, f5, Mi5, lt6, qe7, mt8, h3, Fi6, ne8, Ce7, Hi6, Vi6, Ui6, Wi6, Gi6, ie7, $i6, zi6, ve8, J8, Yi6, Nr5, Lr6, Pr4, Te7, co4, l4, Lo3, Po3, Mr6, Do7, ft7, Io2, is7, Uo2, Vr6, N6, Wo2, ls6, Go2, us6, Ur6, $o2, zo2, ps6, al2, hs6, ms6, Wr4,
|
|
301925
|
+
var Jr4, Zr5, ks6, en6, ir7, xs7, $e7, tn6, ws6, xe6, As6, ys6, w5, Ls7, F7, Ps7, ze8, Ye6, je8, St8, Ae7, ye7, Et8, Ne6, Le7, Pe6, Oe7, Ct8, vt8, Y5, Tt8, De7, bt8, wt8, Ds7, sr7, rn4, D4, kt8, sn5, an5, j5, _6, k7, Ms7, v7, Bs7, nn6, cn5, un5, Fs7, qs7, pn5, lr6, hn5, Vs6, Us7, y3, cr6, mn5, Ws7, Gs7, dn5, gn5, zs7, Ys7, _n4, Xs7, En5, Cn4, Ie7, ea3, At8, yt7, ce7, Xe8, pr7, bn4, hr7, wn4, mr5, ue7, aa3, fr7, kn5, Ea2, Vn3, Un4, Er5, va2, Gn5, $n4, zn5, Cr5, wa2, Yn4, jn4, Xn5, Kn5, xa2, Aa2, ya2, Na2, Zn5, La2, ei7, ti7, ri7, Oa2, ii7, si7, vr5, G7, Ra3, ui7, Fa3, pi7, Q7, te8, hi7, qt7, Ya3, fi7, nt8, Xa4, di7, I6, gi7, Qa3, _i6, Si7, Ei7, Ci6, vi7, Ti7, bi7, wi7, Ja3, R7, kr4, xr5, re6, to4, Vt7, Di6, ro4, no4, io4, so4, ao4, Ii6, oo4, Ri6, f5, Mi5, lt6, qe7, mt8, h3, Fi6, ne8, Ce7, Hi6, Vi6, Ui6, Wi6, Gi6, ie7, $i6, zi6, ve8, J8, Yi6, Nr5, Lr6, Pr4, Te7, co4, l4, Lo3, Po3, Mr6, Do7, ft7, Io2, is7, Uo2, Vr6, N6, Wo2, ls6, Go2, us6, Ur6, $o2, zo2, ps6, al2, hs6, ms6, Wr4, fs7, ol3, ds6, Qr6, gs6, cl2, Zt8, _s6, er7, Ss5, oe7, $r6, zr5, We8, tr7, pl2, Yr6, rr7, wl2, kl2, xl2, Al2, yl2, Nl2, Ll2;
|
|
301926
301926
|
var init_html = __esm({
|
|
301927
301927
|
"node_modules/prettier/plugins/html.mjs"() {
|
|
301928
301928
|
"use strict";
|
|
@@ -303413,8 +303413,8 @@ If '${e7}' is a directive input, make sure the directive is imported by the curr
|
|
|
303413
303413
|
hs6 = al2;
|
|
303414
303414
|
ms6 = [{ name: "Angular", type: "markup", aceMode: "html", extensions: [".component.html"], tmScope: "text.html.basic", aliases: ["xhtml"], codemirrorMode: "htmlmixed", codemirrorMimeType: "text/html", parsers: ["angular"], vscodeLanguageIds: ["html"], filenames: [], linguistLanguageId: 146 }, { name: "HTML", type: "markup", aceMode: "html", extensions: [".html", ".hta", ".htm", ".html.hl", ".inc", ".xht", ".xhtml"], tmScope: "text.html.basic", aliases: ["xhtml"], codemirrorMode: "htmlmixed", codemirrorMimeType: "text/html", parsers: ["html"], vscodeLanguageIds: ["html"], linguistLanguageId: 146 }, { name: "Lightning Web Components", type: "markup", aceMode: "html", extensions: [], tmScope: "text.html.basic", aliases: ["xhtml"], codemirrorMode: "htmlmixed", codemirrorMimeType: "text/html", parsers: ["lwc"], vscodeLanguageIds: ["html"], filenames: [], linguistLanguageId: 146 }, { name: "MJML", type: "markup", aceMode: "html", extensions: [".mjml"], tmScope: "text.mjml.basic", aliases: ["MJML", "mjml"], codemirrorMode: "htmlmixed", codemirrorMimeType: "text/html", parsers: ["mjml"], filenames: [], vscodeLanguageIds: ["mjml"], linguistLanguageId: 146 }, { name: "Vue", type: "markup", aceMode: "vue", extensions: [".vue"], tmScope: "source.vue", codemirrorMode: "vue", codemirrorMimeType: "text/x-vue", parsers: ["vue"], vscodeLanguageIds: ["vue"], linguistLanguageId: 391 }];
|
|
303415
303415
|
Wr4 = { bracketSpacing: { category: "Common", type: "boolean", default: true, description: "Print spaces between brackets.", oppositeDescription: "Do not print spaces between brackets." }, objectWrap: { category: "Common", type: "choice", default: "preserve", description: "How to wrap object literals.", choices: [{ value: "preserve", description: "Keep as multi-line, if there is a newline between the opening brace and first property." }, { value: "collapse", description: "Fit to a single line when possible." }] }, singleQuote: { category: "Common", type: "boolean", default: false, description: "Use single quotes instead of double quotes." }, proseWrap: { category: "Common", type: "choice", default: "preserve", description: "How to wrap prose.", choices: [{ value: "always", description: "Wrap prose if it exceeds the print width." }, { value: "never", description: "Do not wrap prose." }, { value: "preserve", description: "Wrap prose as-is." }] }, bracketSameLine: { category: "Common", type: "boolean", default: false, description: "Put > of opening tags on the last line instead of on a new line." }, singleAttributePerLine: { category: "Common", type: "boolean", default: false, description: "Enforce single attribute per line in HTML, Vue and JSX." } };
|
|
303416
|
-
|
|
303417
|
-
ol3 = { bracketSameLine: Wr4.bracketSameLine, htmlWhitespaceSensitivity: { category:
|
|
303416
|
+
fs7 = "HTML";
|
|
303417
|
+
ol3 = { bracketSameLine: Wr4.bracketSameLine, htmlWhitespaceSensitivity: { category: fs7, type: "choice", default: "css", description: "How to handle whitespaces in HTML.", choices: [{ value: "css", description: "Respect the default value of CSS display property." }, { value: "strict", description: "Whitespaces are considered sensitive." }, { value: "ignore", description: "Whitespaces are considered insensitive." }] }, singleAttributePerLine: Wr4.singleAttributePerLine, vueIndentScriptAndStyle: { category: fs7, type: "boolean", default: false, description: "Indent script and style tags in Vue files." } };
|
|
303418
303418
|
ds6 = ol3;
|
|
303419
303419
|
Qr6 = {};
|
|
303420
303420
|
en6(Qr6, { angular: () => Al2, html: () => wl2, lwc: () => Nl2, mjml: () => xl2, vue: () => yl2 });
|
|
@@ -306022,7 +306022,7 @@ $$`;
|
|
|
306022
306022
|
ds7.exports = hs8;
|
|
306023
306023
|
hs8.locator = T02;
|
|
306024
306024
|
var B0 = `
|
|
306025
|
-
`, _02 = "!", ls7 = '"',
|
|
306025
|
+
`, _02 = "!", ls7 = '"', fs9 = "'", Ze11 = "(", xr6 = ")", wn8 = "<", kn9 = ">", Ds8 = "[", yr7 = "\\", O0 = "]", ps7 = "`";
|
|
306026
306026
|
function hs8(e7, r5, t26) {
|
|
306027
306027
|
var n5 = this, i = "", u = 0, a5 = r5.charAt(0), o5 = n5.options.pedantic, s5 = n5.options.commonmark, l5 = n5.options.gfm, c7, f7, D7, m7, p4, h5, F10, g5, E7, v9, A8, b7, d5, y5, w8, C8, k8, T7;
|
|
306028
306028
|
if (a5 === _02 && (g5 = true, i = a5, a5 = r5.charAt(++u)), a5 === Ds8 && !(!g5 && n5.inLink)) {
|
|
@@ -306050,7 +306050,7 @@ $$`;
|
|
|
306050
306050
|
if (r5.charAt(u) !== kn9) return;
|
|
306051
306051
|
i += wn8 + y5 + kn9, w8 = y5, u++;
|
|
306052
306052
|
} else {
|
|
306053
|
-
for (a5 = null, h5 = ""; u < A8 && (a5 = r5.charAt(u), !(h5 && (a5 === ls7 || a5 ===
|
|
306053
|
+
for (a5 = null, h5 = ""; u < A8 && (a5 = r5.charAt(u), !(h5 && (a5 === ls7 || a5 === fs9 || s5 && a5 === Ze11))); ) {
|
|
306054
306054
|
if (br7(a5)) {
|
|
306055
306055
|
if (!o5) break;
|
|
306056
306056
|
h5 += a5;
|
|
@@ -306067,7 +306067,7 @@ $$`;
|
|
|
306067
306067
|
i += y5, w8 = y5, u = i.length;
|
|
306068
306068
|
}
|
|
306069
306069
|
for (y5 = ""; u < A8 && (a5 = r5.charAt(u), !!br7(a5)); ) y5 += a5, u++;
|
|
306070
|
-
if (a5 = r5.charAt(u), i += y5, y5 && (a5 === ls7 || a5 ===
|
|
306070
|
+
if (a5 = r5.charAt(u), i += y5, y5 && (a5 === ls7 || a5 === fs9 || s5 && a5 === Ze11)) if (u++, i += a5, y5 = "", v9 = a5 === Ze11 ? xr6 : a5, p4 = i, s5) {
|
|
306071
306071
|
for (; u < A8 && (a5 = r5.charAt(u), a5 !== v9); ) a5 === yr7 && (y5 += yr7, a5 = r5.charAt(++u)), u++, y5 += a5;
|
|
306072
306072
|
if (a5 = r5.charAt(u), a5 !== v9) return;
|
|
306073
306073
|
for (b7 = y5, i += y5 + a5, u++; u < A8 && (a5 = r5.charAt(u), !!br7(a5)); ) i += a5, u++;
|
|
@@ -311297,7 +311297,7 @@ var init_postcss = __esm({
|
|
|
311297
311297
|
});
|
|
311298
311298
|
fe9 = w6((wx, zi8) => {
|
|
311299
311299
|
"use strict";
|
|
311300
|
-
var Bi8 = Me11(), Ui8 = ft9(), Fc2 = ut9(), { isClean: Fi8, my: $i9 } = Ht10(),
|
|
311300
|
+
var Bi8 = Me11(), Ui8 = ft9(), Fc2 = ut9(), { isClean: Fi8, my: $i9 } = Ht10(), fs9, Wi8, Gi8, ps7;
|
|
311301
311301
|
function Yi9(t26) {
|
|
311302
311302
|
return t26.map((e7) => (e7.nodes && (e7.nodes = Yi9(e7.nodes)), delete e7.source, e7));
|
|
311303
311303
|
}
|
|
@@ -311375,7 +311375,7 @@ var init_postcss = __esm({
|
|
|
311375
311375
|
if (typeof e7.value > "u") throw new Error("Value field is missed in node creation");
|
|
311376
311376
|
typeof e7.value != "string" && (e7.value = String(e7.value)), e7 = [new Ui8(e7)];
|
|
311377
311377
|
} else if (e7.selector || e7.selectors) e7 = [new ps7(e7)];
|
|
311378
|
-
else if (e7.name) e7 = [new
|
|
311378
|
+
else if (e7.name) e7 = [new fs9(e7)];
|
|
311379
311379
|
else if (e7.text) e7 = [new Bi8(e7)];
|
|
311380
311380
|
else throw new Error("Unknown node type in node creation");
|
|
311381
311381
|
return e7.map((n5) => (n5[$i9] || t26.rebuild(n5), n5 = n5.proxyOf, n5.parent && n5.parent.removeChild(n5), n5[Fi8] && Vi8(n5), n5.raws || (n5.raws = {}), typeof n5.raws.before > "u" && s5 && typeof s5.raws.before < "u" && (n5.raws.before = s5.raws.before.replace(/\S/g, "")), n5.parent = this.proxyOf, n5));
|
|
@@ -311461,7 +311461,7 @@ var init_postcss = __esm({
|
|
|
311461
311461
|
ps7 = t26;
|
|
311462
311462
|
};
|
|
311463
311463
|
z9.registerAtRule = (t26) => {
|
|
311464
|
-
|
|
311464
|
+
fs9 = t26;
|
|
311465
311465
|
};
|
|
311466
311466
|
z9.registerRoot = (t26) => {
|
|
311467
311467
|
Gi8 = t26;
|
|
@@ -311469,7 +311469,7 @@ var init_postcss = __esm({
|
|
|
311469
311469
|
zi8.exports = z9;
|
|
311470
311470
|
z9.default = z9;
|
|
311471
311471
|
z9.rebuild = (t26) => {
|
|
311472
|
-
t26.type === "atrule" ? Object.setPrototypeOf(t26,
|
|
311472
|
+
t26.type === "atrule" ? Object.setPrototypeOf(t26, fs9.prototype) : t26.type === "rule" ? Object.setPrototypeOf(t26, ps7.prototype) : t26.type === "decl" ? Object.setPrototypeOf(t26, Ui8.prototype) : t26.type === "comment" ? Object.setPrototypeOf(t26, Bi8.prototype) : t26.type === "root" && Object.setPrototypeOf(t26, Gi8.prototype), t26[$i9] = true, t26.nodes && t26.nodes.forEach((e7) => {
|
|
311473
311473
|
z9.rebuild(e7);
|
|
311474
311474
|
});
|
|
311475
311475
|
};
|
|
@@ -318129,7 +318129,7 @@ function wf2(e7, t26) {
|
|
|
318129
318129
|
return _9();
|
|
318130
318130
|
}, get converters() {
|
|
318131
318131
|
return f7();
|
|
318132
|
-
}, baseFactory: t26, flags: e7, createNodeArray: de11, createNumericLiteral: V11, createBigIntLiteral: oe10, createStringLiteral: ft10, createStringLiteralFromNode: nr9, createRegularExpressionLiteral: mn8, createLiteralLikeNode: rr8, createIdentifier: We12, createTempVariable: ir10, createLoopVariable: Ir6, createUniqueName: Ot12, getGeneratedNameForNode: Bn7, createPrivateIdentifier: Mt12, createUniquePrivateName: $e11, getGeneratedPrivateNameForNode: qn8, createToken: ot8, createSuper: at11, createThis: Bt10, createNull: Lt10, createTrue: ct9, createFalse: ar9, createModifier: dt8, createModifiersFromModifierFlags: yn9, createQualifiedName: yt10, updateQualifiedName: _n7, createComputedPropertyName: tt11, updateComputedPropertyName: qt11, createTypeParameterDeclaration: tn8, updateTypeParameterDeclaration: sr10, createParameterDeclaration: mr7, updateParameterDeclaration: hr8, createDecorator: Fn6, updateDecorator: zn9, createPropertySignature: Or8, updatePropertySignature: Vn7, createPropertyDeclaration: yr7, updatePropertyDeclaration: L9, createMethodSignature: se11, updateMethodSignature: fe10, createMethodDeclaration: Te10, updateMethodDeclaration: He10, createConstructorDeclaration: lt8, updateConstructorDeclaration: Mr8, createGetAccessorDeclaration: Nn6, updateGetAccessorDeclaration: Wn8, createSetAccessorDeclaration: U9, updateSetAccessorDeclaration: K11, createCallSignature: xe10, updateCallSignature: Se11, createConstructSignature: we9, updateConstructSignature: me12, createIndexSignature: Ve9, updateIndexSignature: Ze11, createClassStaticBlockDeclaration: st8, updateClassStaticBlockDeclaration: Ct12, createTemplateLiteralTypeSpan: Ye10, updateTemplateLiteralTypeSpan: Ee9, createKeywordTypeNode: gn8, createTypePredicateNode: rt12, updateTypePredicateNode: on7, createTypeReferenceNode: Zr8, updateTypeReferenceNode: M10, createFunctionTypeNode: Ue10, updateFunctionTypeNode: u, createConstructorTypeNode: Me12, updateConstructorTypeNode: nn10, createTypeQueryNode: Dt10, updateTypeQueryNode: wt11, createTypeLiteralNode: Pt12, updateTypeLiteralNode: Ft11, createArrayTypeNode: Gn8, updateArrayTypeNode: ki10, createTupleTypeNode: cn9, updateTupleTypeNode: H11, createNamedTupleMember: le9, updateNamedTupleMember: qe11, createOptionalTypeNode: ve11, updateOptionalTypeNode: J12, createRestTypeNode: mt10, updateRestTypeNode: xt10, createUnionTypeNode: ql4, updateUnionTypeNode: C_, createIntersectionTypeNode: Lr8, updateIntersectionTypeNode: Le11, createConditionalTypeNode: pt10, updateConditionalTypeNode: Fl3, createInferTypeNode: Yn7, updateInferTypeNode: zl4, createImportTypeNode: _r8, updateImportTypeNode: oa3, createParenthesizedType: Qt10, updateParenthesizedType: At12, createThisTypeNode: P8, createTypeOperatorNode: Gt9, updateTypeOperatorNode: Jr6, createIndexedAccessTypeNode: or9, updateIndexedAccessTypeNode: Ka4, createMappedTypeNode: gt10, updateMappedTypeNode: jt8, createLiteralTypeNode: ei10, updateLiteralTypeNode: br7, createTemplateLiteralType: Wt10, updateTemplateLiteralType: Vl4, createObjectBindingPattern: D_, updateObjectBindingPattern: Wl4, createArrayBindingPattern: jr6, updateArrayBindingPattern: Gl4, createBindingElement: ca4, updateBindingElement: ti10, createArrayLiteralExpression: Za3, updateArrayLiteralExpression: P_, createObjectLiteralExpression: Ei10, updateObjectLiteralExpression: Yl4, createPropertyAccessExpression: e7 & 4 ? (n5, i) => setEmitFlags(cr8(n5, i), 262144) : cr8, updatePropertyAccessExpression: Hl4, createPropertyAccessChain: e7 & 4 ? (n5, i, s5) => setEmitFlags(Ai9(n5, i, s5), 262144) : Ai9, updatePropertyAccessChain: la3, createElementAccessExpression: Ci8, updateElementAccessExpression: Xl4, createElementAccessChain: O_, updateElementAccessChain: es8, createCallExpression: Di8, updateCallExpression: ua5, createCallChain: ts8, updateCallChain: L_, createNewExpression: bn7, updateNewExpression: ns8, createTaggedTemplateExpression: pa5, updateTaggedTemplateExpression: J_, createTypeAssertion: j_, updateTypeAssertion: R_, createParenthesizedExpression: rs8, updateParenthesizedExpression: U_, createFunctionExpression: is9, updateFunctionExpression: B_, createArrowFunction: as19, updateArrowFunction: q_, createDeleteExpression: F_, updateDeleteExpression: z_, createTypeOfExpression: fa4, updateTypeOfExpression: un8, createVoidExpression: ss9, updateVoidExpression: lr8, createAwaitExpression: V_, updateAwaitExpression: Rr7, createPrefixUnaryExpression: Ur8, updatePrefixUnaryExpression: $l4, createPostfixUnaryExpression: ni10, updatePostfixUnaryExpression: Ql4, createBinaryExpression: da5, updateBinaryExpression: Kl4, createConditionalExpression: G_, updateConditionalExpression: Y_, createTemplateExpression: H_, updateTemplateExpression: Hn8, createTemplateHead: $_, createTemplateMiddle: ma5, createTemplateTail: _s7, createNoSubstitutionTemplateLiteral: eu4, createTemplateLiteralLikeNode: ii10, createYieldExpression: os7, updateYieldExpression: tu3, createSpreadElement: Q_, updateSpreadElement: nu3, createClassExpression: K_, updateClassExpression: cs7, createOmittedExpression: ls7, createExpressionWithTypeArguments: Z_, updateExpressionWithTypeArguments: eo5, createAsExpression: pn8, updateAsExpression: ha2, createNonNullExpression: to5, updateNonNullExpression: no6, createSatisfiesExpression: us8, updateSatisfiesExpression: ro5, createNonNullChain: ps7, updateNonNullChain: In7, createMetaProperty: io5, updateMetaProperty:
|
|
318132
|
+
}, baseFactory: t26, flags: e7, createNodeArray: de11, createNumericLiteral: V11, createBigIntLiteral: oe10, createStringLiteral: ft10, createStringLiteralFromNode: nr9, createRegularExpressionLiteral: mn8, createLiteralLikeNode: rr8, createIdentifier: We12, createTempVariable: ir10, createLoopVariable: Ir6, createUniqueName: Ot12, getGeneratedNameForNode: Bn7, createPrivateIdentifier: Mt12, createUniquePrivateName: $e11, getGeneratedPrivateNameForNode: qn8, createToken: ot8, createSuper: at11, createThis: Bt10, createNull: Lt10, createTrue: ct9, createFalse: ar9, createModifier: dt8, createModifiersFromModifierFlags: yn9, createQualifiedName: yt10, updateQualifiedName: _n7, createComputedPropertyName: tt11, updateComputedPropertyName: qt11, createTypeParameterDeclaration: tn8, updateTypeParameterDeclaration: sr10, createParameterDeclaration: mr7, updateParameterDeclaration: hr8, createDecorator: Fn6, updateDecorator: zn9, createPropertySignature: Or8, updatePropertySignature: Vn7, createPropertyDeclaration: yr7, updatePropertyDeclaration: L9, createMethodSignature: se11, updateMethodSignature: fe10, createMethodDeclaration: Te10, updateMethodDeclaration: He10, createConstructorDeclaration: lt8, updateConstructorDeclaration: Mr8, createGetAccessorDeclaration: Nn6, updateGetAccessorDeclaration: Wn8, createSetAccessorDeclaration: U9, updateSetAccessorDeclaration: K11, createCallSignature: xe10, updateCallSignature: Se11, createConstructSignature: we9, updateConstructSignature: me12, createIndexSignature: Ve9, updateIndexSignature: Ze11, createClassStaticBlockDeclaration: st8, updateClassStaticBlockDeclaration: Ct12, createTemplateLiteralTypeSpan: Ye10, updateTemplateLiteralTypeSpan: Ee9, createKeywordTypeNode: gn8, createTypePredicateNode: rt12, updateTypePredicateNode: on7, createTypeReferenceNode: Zr8, updateTypeReferenceNode: M10, createFunctionTypeNode: Ue10, updateFunctionTypeNode: u, createConstructorTypeNode: Me12, updateConstructorTypeNode: nn10, createTypeQueryNode: Dt10, updateTypeQueryNode: wt11, createTypeLiteralNode: Pt12, updateTypeLiteralNode: Ft11, createArrayTypeNode: Gn8, updateArrayTypeNode: ki10, createTupleTypeNode: cn9, updateTupleTypeNode: H11, createNamedTupleMember: le9, updateNamedTupleMember: qe11, createOptionalTypeNode: ve11, updateOptionalTypeNode: J12, createRestTypeNode: mt10, updateRestTypeNode: xt10, createUnionTypeNode: ql4, updateUnionTypeNode: C_, createIntersectionTypeNode: Lr8, updateIntersectionTypeNode: Le11, createConditionalTypeNode: pt10, updateConditionalTypeNode: Fl3, createInferTypeNode: Yn7, updateInferTypeNode: zl4, createImportTypeNode: _r8, updateImportTypeNode: oa3, createParenthesizedType: Qt10, updateParenthesizedType: At12, createThisTypeNode: P8, createTypeOperatorNode: Gt9, updateTypeOperatorNode: Jr6, createIndexedAccessTypeNode: or9, updateIndexedAccessTypeNode: Ka4, createMappedTypeNode: gt10, updateMappedTypeNode: jt8, createLiteralTypeNode: ei10, updateLiteralTypeNode: br7, createTemplateLiteralType: Wt10, updateTemplateLiteralType: Vl4, createObjectBindingPattern: D_, updateObjectBindingPattern: Wl4, createArrayBindingPattern: jr6, updateArrayBindingPattern: Gl4, createBindingElement: ca4, updateBindingElement: ti10, createArrayLiteralExpression: Za3, updateArrayLiteralExpression: P_, createObjectLiteralExpression: Ei10, updateObjectLiteralExpression: Yl4, createPropertyAccessExpression: e7 & 4 ? (n5, i) => setEmitFlags(cr8(n5, i), 262144) : cr8, updatePropertyAccessExpression: Hl4, createPropertyAccessChain: e7 & 4 ? (n5, i, s5) => setEmitFlags(Ai9(n5, i, s5), 262144) : Ai9, updatePropertyAccessChain: la3, createElementAccessExpression: Ci8, updateElementAccessExpression: Xl4, createElementAccessChain: O_, updateElementAccessChain: es8, createCallExpression: Di8, updateCallExpression: ua5, createCallChain: ts8, updateCallChain: L_, createNewExpression: bn7, updateNewExpression: ns8, createTaggedTemplateExpression: pa5, updateTaggedTemplateExpression: J_, createTypeAssertion: j_, updateTypeAssertion: R_, createParenthesizedExpression: rs8, updateParenthesizedExpression: U_, createFunctionExpression: is9, updateFunctionExpression: B_, createArrowFunction: as19, updateArrowFunction: q_, createDeleteExpression: F_, updateDeleteExpression: z_, createTypeOfExpression: fa4, updateTypeOfExpression: un8, createVoidExpression: ss9, updateVoidExpression: lr8, createAwaitExpression: V_, updateAwaitExpression: Rr7, createPrefixUnaryExpression: Ur8, updatePrefixUnaryExpression: $l4, createPostfixUnaryExpression: ni10, updatePostfixUnaryExpression: Ql4, createBinaryExpression: da5, updateBinaryExpression: Kl4, createConditionalExpression: G_, updateConditionalExpression: Y_, createTemplateExpression: H_, updateTemplateExpression: Hn8, createTemplateHead: $_, createTemplateMiddle: ma5, createTemplateTail: _s7, createNoSubstitutionTemplateLiteral: eu4, createTemplateLiteralLikeNode: ii10, createYieldExpression: os7, updateYieldExpression: tu3, createSpreadElement: Q_, updateSpreadElement: nu3, createClassExpression: K_, updateClassExpression: cs7, createOmittedExpression: ls7, createExpressionWithTypeArguments: Z_, updateExpressionWithTypeArguments: eo5, createAsExpression: pn8, updateAsExpression: ha2, createNonNullExpression: to5, updateNonNullExpression: no6, createSatisfiesExpression: us8, updateSatisfiesExpression: ro5, createNonNullChain: ps7, updateNonNullChain: In7, createMetaProperty: io5, updateMetaProperty: fs9, createTemplateSpan: Xn9, updateTemplateSpan: ya3, createSemicolonClassElement: ao5, createBlock: Br8, updateBlock: ru4, createVariableStatement: ds7, updateVariableStatement: so5, createEmptyStatement: _o3, createExpressionStatement: Ni9, updateExpressionStatement: oo6, createIfStatement: co5, updateIfStatement: lo5, createDoStatement: uo5, updateDoStatement: po6, createWhileStatement: fo5, updateWhileStatement: iu3, createForStatement: mo3, updateForStatement: ho3, createForInStatement: ms8, updateForInStatement: au3, createForOfStatement: yo3, updateForOfStatement: su3, createContinueStatement: go5, updateContinueStatement: _u4, createBreakStatement: hs8, updateBreakStatement: bo5, createReturnStatement: ys8, updateReturnStatement: ou3, createWithStatement: gs7, updateWithStatement: vo4, createSwitchStatement: bs8, updateSwitchStatement: ai10, createLabeledStatement: To4, updateLabeledStatement: xo4, createThrowStatement: So4, updateThrowStatement: cu3, createTryStatement: wo6, updateTryStatement: lu4, createDebuggerStatement: ko3, createVariableDeclaration: ga2, updateVariableDeclaration: Eo3, createVariableDeclarationList: vs9, updateVariableDeclarationList: uu4, createFunctionDeclaration: Ao3, updateFunctionDeclaration: Ts6, createClassDeclaration: Co3, updateClassDeclaration: ba3, createInterfaceDeclaration: Do8, updateInterfaceDeclaration: Po5, createTypeAliasDeclaration: _t9, updateTypeAliasDeclaration: vr6, createEnumDeclaration: xs8, updateEnumDeclaration: Tr7, createModuleDeclaration: No3, updateModuleDeclaration: kt12, createModuleBlock: xr6, updateModuleBlock: zt10, createCaseBlock: Io5, updateCaseBlock: fu4, createNamespaceExportDeclaration: Oo5, updateNamespaceExportDeclaration: Mo3, createImportEqualsDeclaration: Lo4, updateImportEqualsDeclaration: Jo5, createImportDeclaration: jo4, updateImportDeclaration: Ro3, createImportClause: Uo4, updateImportClause: Bo4, createAssertClause: Ss8, updateAssertClause: mu3, createAssertEntry: Ii8, updateAssertEntry: qo4, createImportTypeAssertionContainer: ws8, updateImportTypeAssertionContainer: Fo3, createImportAttributes: zo4, updateImportAttributes: ks8, createImportAttribute: Vo3, updateImportAttribute: Wo3, createNamespaceImport: Go3, updateNamespaceImport: hu4, createNamespaceExport: Yo4, updateNamespaceExport: yu5, createNamedImports: Ho3, updateNamedImports: Xo3, createImportSpecifier: Sr7, updateImportSpecifier: gu4, createExportAssignment: va4, updateExportAssignment: Oi9, createExportDeclaration: Ta3, updateExportDeclaration: $o3, createNamedExports: Es8, updateNamedExports: bu4, createExportSpecifier: xa5, updateExportSpecifier: vu4, createMissingDeclaration: Tu5, createExternalModuleReference: As8, updateExternalModuleReference: xu3, get createJSDocAllType() {
|
|
318133
318133
|
return c7(313);
|
|
318134
318134
|
}, get createJSDocUnknownType() {
|
|
318135
318135
|
return c7(314);
|
|
@@ -319098,7 +319098,7 @@ function wf2(e7, t26) {
|
|
|
319098
319098
|
}
|
|
319099
319099
|
return s5.flowNode = void 0, s5;
|
|
319100
319100
|
}
|
|
319101
|
-
function
|
|
319101
|
+
function fs9(n5, i) {
|
|
319102
319102
|
return n5.name !== i ? j9(io5(n5.keywordToken, i), n5) : n5;
|
|
319103
319103
|
}
|
|
319104
319104
|
function Xn9(n5, i) {
|
|
@@ -324071,7 +324071,7 @@ ${Me12.join(`
|
|
|
324071
324071
|
function io5(o5, p4) {
|
|
324072
324072
|
return o5 === 39 ? (J12(o5), true) : Le11(59) ? true : p4 && u() === 39 ? (Ee9(A7._0_expected, nt10(59)), B7(), true) : false;
|
|
324073
324073
|
}
|
|
324074
|
-
function
|
|
324074
|
+
function fs9(o5, p4) {
|
|
324075
324075
|
let m7 = we9(), g5 = Ye10();
|
|
324076
324076
|
He10(!!(o5 & 1)), st8(!!(o5 & 2));
|
|
324077
324077
|
let b7 = o5 & 32 ? un8(17, cs7) : un8(16, () => p4 ? us8(g5) : ro5(g5));
|
|
@@ -324079,7 +324079,7 @@ ${Me12.join(`
|
|
|
324079
324079
|
}
|
|
324080
324080
|
function Xn9(o5) {
|
|
324081
324081
|
if (!J12(21)) return lr8();
|
|
324082
|
-
let p4 =
|
|
324082
|
+
let p4 = fs9(o5, true);
|
|
324083
324083
|
return J12(22), p4;
|
|
324084
324084
|
}
|
|
324085
324085
|
function ya3() {
|
|
@@ -324652,9 +324652,9 @@ ${Me12.join(`
|
|
|
324652
324652
|
function Bo4(o5, p4) {
|
|
324653
324653
|
let m7 = M10(), g5 = Ue10(), b7 = Uc2(), N8 = Zt10(b7, cl5) ? 2 : 0, Q10 = pn8(), _e11;
|
|
324654
324654
|
if (J12(21)) {
|
|
324655
|
-
if (o5) _e11 =
|
|
324655
|
+
if (o5) _e11 = fs9(N8, o5);
|
|
324656
324656
|
else {
|
|
324657
|
-
let ur9 =
|
|
324657
|
+
let ur9 = fs9(N8, o5);
|
|
324658
324658
|
if (!ur9) return;
|
|
324659
324659
|
_e11 = ur9;
|
|
324660
324660
|
}
|
|
@@ -337535,9 +337535,9 @@ var prettyLoggerTty = (options8) => {
|
|
|
337535
337535
|
let firstLine = color(`[${options8.formatDate(date3)}]`, colors.white) + ` ${color(logLevel2.label, ...logLevelColors[logLevel2._tag])} (${threadName(fiberId3)})`;
|
|
337536
337536
|
if (isCons(spans)) {
|
|
337537
337537
|
const now2 = date3.getTime();
|
|
337538
|
-
const
|
|
337538
|
+
const render3 = render(now2);
|
|
337539
337539
|
for (const span4 of spans) {
|
|
337540
|
-
firstLine += " " +
|
|
337540
|
+
firstLine += " " + render3(span4);
|
|
337541
337541
|
}
|
|
337542
337542
|
}
|
|
337543
337543
|
firstLine += ":";
|
|
@@ -337595,9 +337595,9 @@ var prettyLoggerBrowser = (options8) => {
|
|
|
337595
337595
|
}
|
|
337596
337596
|
if (isCons(spans)) {
|
|
337597
337597
|
const now2 = date3.getTime();
|
|
337598
|
-
const
|
|
337598
|
+
const render3 = render(now2);
|
|
337599
337599
|
for (const span4 of spans) {
|
|
337600
|
-
firstLine += " " +
|
|
337600
|
+
firstLine += " " + render3(span4);
|
|
337601
337601
|
}
|
|
337602
337602
|
}
|
|
337603
337603
|
firstLine += ":";
|
|
@@ -365226,12 +365226,12 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
365226
365226
|
resolve,
|
|
365227
365227
|
normalize(path15) {
|
|
365228
365228
|
if (path15.length === 0) return ".";
|
|
365229
|
-
const
|
|
365229
|
+
const isAbsolute2 = path15.charCodeAt(0) === 47;
|
|
365230
365230
|
const trailingSeparator = path15.charCodeAt(path15.length - 1) === 47;
|
|
365231
|
-
path15 = normalizeStringPosix(path15, !
|
|
365232
|
-
if (path15.length === 0 && !
|
|
365231
|
+
path15 = normalizeStringPosix(path15, !isAbsolute2);
|
|
365232
|
+
if (path15.length === 0 && !isAbsolute2) path15 = ".";
|
|
365233
365233
|
if (path15.length > 0 && trailingSeparator) path15 += "/";
|
|
365234
|
-
if (
|
|
365234
|
+
if (isAbsolute2) return "/" + path15;
|
|
365235
365235
|
return path15;
|
|
365236
365236
|
},
|
|
365237
365237
|
isAbsolute(path15) {
|
|
@@ -365451,9 +365451,9 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
365451
365451
|
};
|
|
365452
365452
|
if (path15.length === 0) return ret;
|
|
365453
365453
|
let code = path15.charCodeAt(0);
|
|
365454
|
-
const
|
|
365454
|
+
const isAbsolute2 = code === 47;
|
|
365455
365455
|
let start5;
|
|
365456
|
-
if (
|
|
365456
|
+
if (isAbsolute2) {
|
|
365457
365457
|
ret.root = "/";
|
|
365458
365458
|
start5 = 1;
|
|
365459
365459
|
} else {
|
|
@@ -365489,11 +365489,11 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
365489
365489
|
preDotState === 0 || // The (right-most) trimmed path component is exactly '..'
|
|
365490
365490
|
preDotState === 1 && startDot === end6 - 1 && startDot === startPart + 1) {
|
|
365491
365491
|
if (end6 !== -1) {
|
|
365492
|
-
if (startPart === 0 &&
|
|
365492
|
+
if (startPart === 0 && isAbsolute2) ret.base = ret.name = path15.slice(1, end6);
|
|
365493
365493
|
else ret.base = ret.name = path15.slice(startPart, end6);
|
|
365494
365494
|
}
|
|
365495
365495
|
} else {
|
|
365496
|
-
if (startPart === 0 &&
|
|
365496
|
+
if (startPart === 0 && isAbsolute2) {
|
|
365497
365497
|
ret.name = path15.slice(1, startDot);
|
|
365498
365498
|
ret.base = path15.slice(1, end6);
|
|
365499
365499
|
} else {
|
|
@@ -365503,7 +365503,7 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
365503
365503
|
ret.ext = path15.slice(startDot, end6);
|
|
365504
365504
|
}
|
|
365505
365505
|
if (startPart > 0) ret.dir = path15.slice(0, startPart - 1);
|
|
365506
|
-
else if (
|
|
365506
|
+
else if (isAbsolute2) ret.dir = "/";
|
|
365507
365507
|
return ret;
|
|
365508
365508
|
},
|
|
365509
365509
|
sep: "/",
|
|
@@ -367027,7 +367027,7 @@ var runMain3 = runMain2;
|
|
|
367027
367027
|
var import_cosmiconfig = __toESM(require_dist(), 1);
|
|
367028
367028
|
var import_yaml = __toESM(require_dist2(), 1);
|
|
367029
367029
|
import { homedir } from "os";
|
|
367030
|
-
import { dirname as dirname2 } from "path";
|
|
367030
|
+
import { dirname as dirname2, join as join6 } from "path";
|
|
367031
367031
|
|
|
367032
367032
|
// src/Cwd.ts
|
|
367033
367033
|
var Cwd = class _Cwd extends Context_exports.Tag("Cwd")() {
|
|
@@ -367163,6 +367163,35 @@ var loadMerged = (root2) => Effect_exports.tryPromise({
|
|
|
367163
367163
|
},
|
|
367164
367164
|
catch: (e7) => e7 instanceof Error ? e7 : new Error(String(e7))
|
|
367165
367165
|
});
|
|
367166
|
+
var SCHEMA_URL = "https://raw.githubusercontent.com/pmelab/gtd/main/schema.json";
|
|
367167
|
+
var SCHEMA_STUB = `${JSON.stringify({ $schema: SCHEMA_URL }, null, 2)}
|
|
367168
|
+
`;
|
|
367169
|
+
var anyConfigPresent = (root2) => Effect_exports.tryPromise({
|
|
367170
|
+
try: async () => {
|
|
367171
|
+
const home = homedir();
|
|
367172
|
+
const chain = walkUp(root2, home);
|
|
367173
|
+
const explorer = (0, import_cosmiconfig.cosmiconfig)("gtd", {
|
|
367174
|
+
searchPlaces: SEARCH_PLACES,
|
|
367175
|
+
searchStrategy: "none",
|
|
367176
|
+
loaders: {
|
|
367177
|
+
noExt: yamlLoader,
|
|
367178
|
+
".json": jsonLoader,
|
|
367179
|
+
".yaml": yamlLoader,
|
|
367180
|
+
".yml": yamlLoader
|
|
367181
|
+
}
|
|
367182
|
+
});
|
|
367183
|
+
for (const dir of chain) {
|
|
367184
|
+
const result = await explorer.search(dir);
|
|
367185
|
+
if (result && !result.isEmpty) return true;
|
|
367186
|
+
}
|
|
367187
|
+
return false;
|
|
367188
|
+
},
|
|
367189
|
+
catch: (e7) => e7 instanceof Error ? e7 : new Error(String(e7))
|
|
367190
|
+
});
|
|
367191
|
+
var writeSchemaStub = (root2) => Effect_exports.gen(function* () {
|
|
367192
|
+
const fs9 = yield* FileSystem_exports.FileSystem;
|
|
367193
|
+
yield* fs9.writeFileString(join6(root2, ".gtdrc.json"), SCHEMA_STUB);
|
|
367194
|
+
}).pipe(Effect_exports.mapError((e7) => e7 instanceof Error ? e7 : new Error(String(e7))));
|
|
367166
367195
|
var toOperations = (decoded) => {
|
|
367167
367196
|
const resolveModel = (state) => {
|
|
367168
367197
|
const stateOverride = decoded.models?.states?.[state];
|
|
@@ -367191,8 +367220,20 @@ var ConfigService = class _ConfigService extends Context_exports.Tag("ConfigServ
|
|
|
367191
367220
|
_ConfigService,
|
|
367192
367221
|
Effect_exports.gen(function* () {
|
|
367193
367222
|
const { root: root2 } = yield* Cwd;
|
|
367223
|
+
const present = yield* anyConfigPresent(root2);
|
|
367224
|
+
if (!present) {
|
|
367225
|
+
const executor = yield* CommandExecutor_exports.CommandExecutor;
|
|
367226
|
+
const git = (...args2) => executor.exitCode(Command_exports.make("git", ...args2).pipe(Command_exports.workingDirectory(root2)));
|
|
367227
|
+
const headSubject = yield* Command_exports.make("git", "log", "-1", "--pretty=%s").pipe(Command_exports.workingDirectory(root2), Command_exports.string).pipe(Effect_exports.map((s5) => s5.trim())).pipe(Effect_exports.catchAll(() => Effect_exports.succeed("")));
|
|
367228
|
+
if (!headSubject.startsWith("gtd:")) {
|
|
367229
|
+
yield* writeSchemaStub(root2);
|
|
367230
|
+
yield* git("add", ".gtdrc.json");
|
|
367231
|
+
yield* git("commit", "-m", "chore: add .gtdrc.json");
|
|
367232
|
+
}
|
|
367233
|
+
}
|
|
367194
367234
|
const merged = yield* loadMerged(root2);
|
|
367195
|
-
const
|
|
367235
|
+
const { $schema: _schema, ...cleaned } = merged;
|
|
367236
|
+
const decoded = yield* Schema_exports.decodeUnknown(ConfigSchema)(cleaned, {
|
|
367196
367237
|
onExcessProperty: "error"
|
|
367197
367238
|
}).pipe(Effect_exports.mapError(formatSchemaError)).pipe(Effect_exports.mapError((msg) => new Error(msg)));
|
|
367198
367239
|
return toOperations(decoded);
|
|
@@ -367202,7 +367243,7 @@ var ConfigService = class _ConfigService extends Context_exports.Tag("ConfigServ
|
|
|
367202
367243
|
|
|
367203
367244
|
// src/Git.ts
|
|
367204
367245
|
import { readFileSync, existsSync } from "fs";
|
|
367205
|
-
import { join as
|
|
367246
|
+
import { join as join7 } from "path";
|
|
367206
367247
|
|
|
367207
367248
|
// src/Diff.ts
|
|
367208
367249
|
import crypto from "crypto";
|
|
@@ -367643,7 +367684,7 @@ var applyExcludes = (paths, exclude3) => {
|
|
|
367643
367684
|
});
|
|
367644
367685
|
};
|
|
367645
367686
|
var readWorktreeFile = (root2, path15) => {
|
|
367646
|
-
const resolved =
|
|
367687
|
+
const resolved = join7(root2, path15);
|
|
367647
367688
|
if (!existsSync(resolved)) return null;
|
|
367648
367689
|
try {
|
|
367649
367690
|
return readFileSync(resolved, "utf8");
|
|
@@ -367940,46 +367981,513 @@ var TestRunner = class _TestRunner extends Context_exports.Tag("TestRunner")() {
|
|
|
367940
367981
|
};
|
|
367941
367982
|
|
|
367942
367983
|
// src/Events.ts
|
|
367943
|
-
import { join as
|
|
367984
|
+
import { join as join11 } from "path";
|
|
367985
|
+
|
|
367986
|
+
// node_modules/eta/dist/index.mjs
|
|
367987
|
+
import * as fs from "fs";
|
|
367988
|
+
import * as path from "path";
|
|
367989
|
+
var EtaError = class extends Error {
|
|
367990
|
+
constructor(message) {
|
|
367991
|
+
super(message);
|
|
367992
|
+
this.name = "Eta Error";
|
|
367993
|
+
}
|
|
367994
|
+
};
|
|
367995
|
+
var EtaParseError = class extends EtaError {
|
|
367996
|
+
constructor(message) {
|
|
367997
|
+
super(message);
|
|
367998
|
+
this.name = "EtaParser Error";
|
|
367999
|
+
}
|
|
368000
|
+
};
|
|
368001
|
+
var EtaRuntimeError = class extends EtaError {
|
|
368002
|
+
constructor(message) {
|
|
368003
|
+
super(message);
|
|
368004
|
+
this.name = "EtaRuntime Error";
|
|
368005
|
+
}
|
|
368006
|
+
};
|
|
368007
|
+
var EtaFileResolutionError = class extends EtaError {
|
|
368008
|
+
constructor(message) {
|
|
368009
|
+
super(message);
|
|
368010
|
+
this.name = "EtaFileResolution Error";
|
|
368011
|
+
}
|
|
368012
|
+
};
|
|
368013
|
+
var EtaNameResolutionError = class extends EtaError {
|
|
368014
|
+
constructor(message) {
|
|
368015
|
+
super(message);
|
|
368016
|
+
this.name = "EtaNameResolution Error";
|
|
368017
|
+
}
|
|
368018
|
+
};
|
|
368019
|
+
function ParseErr(message, str, indx) {
|
|
368020
|
+
const whitespace = str.slice(0, indx).split(/\n/);
|
|
368021
|
+
const lineNo = whitespace.length;
|
|
368022
|
+
const colNo = whitespace[lineNo - 1].length + 1;
|
|
368023
|
+
message += " at line " + lineNo + " col " + colNo + ":\n\n " + str.split(/\n/)[lineNo - 1] + "\n " + Array(colNo).join(" ") + "^";
|
|
368024
|
+
throw new EtaParseError(message);
|
|
368025
|
+
}
|
|
368026
|
+
function RuntimeErr(originalError, str, lineNo, path$1) {
|
|
368027
|
+
const lines3 = str.split("\n");
|
|
368028
|
+
const start5 = Math.max(lineNo - 3, 0);
|
|
368029
|
+
const end6 = Math.min(lines3.length, lineNo + 3);
|
|
368030
|
+
const filename = path$1;
|
|
368031
|
+
const context10 = lines3.slice(start5, end6).map((line3, i) => {
|
|
368032
|
+
const curr = i + start5 + 1;
|
|
368033
|
+
return (curr === lineNo ? " >> " : " ") + curr + "| " + line3;
|
|
368034
|
+
}).join("\n");
|
|
368035
|
+
const err = new EtaRuntimeError((filename ? filename + ":" + lineNo + "\n" : "line " + lineNo + "\n") + context10 + "\n\n" + originalError.message);
|
|
368036
|
+
err.name = originalError.name;
|
|
368037
|
+
err.cause = originalError;
|
|
368038
|
+
throw err;
|
|
368039
|
+
}
|
|
368040
|
+
function readFile3(path$1) {
|
|
368041
|
+
let res = "";
|
|
368042
|
+
try {
|
|
368043
|
+
res = fs.readFileSync(path$1, "utf8");
|
|
368044
|
+
} catch (err) {
|
|
368045
|
+
if (err?.code === "ENOENT") throw new EtaFileResolutionError(`Could not find template: ${path$1}`);
|
|
368046
|
+
else throw err;
|
|
368047
|
+
}
|
|
368048
|
+
return res;
|
|
368049
|
+
}
|
|
368050
|
+
function resolvePath(templatePath, options8) {
|
|
368051
|
+
let resolvedFilePath = "";
|
|
368052
|
+
const views = this.config.views;
|
|
368053
|
+
if (!views) throw new EtaFileResolutionError("Views directory is not defined");
|
|
368054
|
+
const baseFilePath = options8?.filepath;
|
|
368055
|
+
const defaultExtension = this.config.defaultExtension === void 0 ? ".eta" : this.config.defaultExtension;
|
|
368056
|
+
const cacheIndex = JSON.stringify({
|
|
368057
|
+
filename: baseFilePath,
|
|
368058
|
+
path: templatePath,
|
|
368059
|
+
views: this.config.views
|
|
368060
|
+
});
|
|
368061
|
+
templatePath += path.extname(templatePath) ? "" : defaultExtension;
|
|
368062
|
+
if (baseFilePath) {
|
|
368063
|
+
if (this.config.cacheFilepaths && this.filepathCache[cacheIndex]) return this.filepathCache[cacheIndex];
|
|
368064
|
+
if (absolutePathRegExp.exec(templatePath)?.length) {
|
|
368065
|
+
const formattedPath = templatePath.replace(/^\/*|^\\*/, "");
|
|
368066
|
+
resolvedFilePath = path.join(views, formattedPath);
|
|
368067
|
+
} else resolvedFilePath = path.join(path.dirname(baseFilePath), templatePath);
|
|
368068
|
+
} else resolvedFilePath = path.join(views, templatePath);
|
|
368069
|
+
if (dirIsChild(views, resolvedFilePath)) {
|
|
368070
|
+
if (baseFilePath && this.config.cacheFilepaths) this.filepathCache[cacheIndex] = resolvedFilePath;
|
|
368071
|
+
return resolvedFilePath;
|
|
368072
|
+
} else throw new EtaFileResolutionError(`Template '${templatePath}' is not in the views directory`);
|
|
368073
|
+
}
|
|
368074
|
+
function dirIsChild(parent, dir) {
|
|
368075
|
+
const relative3 = path.relative(parent, dir);
|
|
368076
|
+
return relative3 && !relative3.startsWith("..") && !path.isAbsolute(relative3);
|
|
368077
|
+
}
|
|
368078
|
+
var absolutePathRegExp = /^\\|^\//;
|
|
368079
|
+
var AsyncFunction = (async () => {
|
|
368080
|
+
}).constructor;
|
|
368081
|
+
function compile(str, options8) {
|
|
368082
|
+
const config2 = this.config;
|
|
368083
|
+
const ctor = options8?.async ? AsyncFunction : Function;
|
|
368084
|
+
try {
|
|
368085
|
+
return new ctor(config2.varName, "options", this.compileToString.call(this, str, options8));
|
|
368086
|
+
} catch (e7) {
|
|
368087
|
+
if (e7 instanceof SyntaxError) throw new EtaParseError("Bad template syntax\n\n" + e7.message + "\n" + Array(e7.message.length + 1).join("=") + "\n" + this.compileToString.call(this, str, options8) + "\n");
|
|
368088
|
+
else throw e7;
|
|
368089
|
+
}
|
|
368090
|
+
}
|
|
368091
|
+
function compileToString(str, options8) {
|
|
368092
|
+
const config2 = this.config;
|
|
368093
|
+
const isAsync = options8?.async;
|
|
368094
|
+
const compileBody$1 = this.compileBody;
|
|
368095
|
+
const buffer5 = this.parse.call(this, str);
|
|
368096
|
+
let res = `${config2.functionHeader}
|
|
368097
|
+
let include = (__eta_t, __eta_d) => this.render(__eta_t, {...${config2.varName}, ...(__eta_d ?? {})}, options);
|
|
368098
|
+
let includeAsync = (__eta_t, __eta_d) => this.renderAsync(__eta_t, {...${config2.varName}, ...(__eta_d ?? {})}, options);
|
|
368099
|
+
|
|
368100
|
+
let __eta = {res: "", e: this.config.escapeFunction, f: this.config.filterFunction, blocks: {}${config2.debug ? ', line: 1, templateStr: "' + str.replace(/\\|"/g, "\\$&").replace(/\r\n|\n|\r/g, "\\n") + '"' : ""}};
|
|
368101
|
+
|
|
368102
|
+
function layout(path, data) {
|
|
368103
|
+
__eta.layout = path;
|
|
368104
|
+
__eta.layoutData = data;
|
|
368105
|
+
}${config2.debug ? "try {" : ""}${config2.useWith ? "with(" + config2.varName + "||{}){" : ""}
|
|
368106
|
+
|
|
368107
|
+
function ${config2.outputFunctionName}(s){__eta.res+=s;}
|
|
368108
|
+
function capture(fn){const s=__eta.res;__eta.res='';try{fn();return __eta.res}finally{__eta.res=s;}}
|
|
368109
|
+
async function captureAsync(fn){const s=__eta.res;__eta.res='';try{await fn();return __eta.res}finally{__eta.res=s;}}
|
|
368110
|
+
function block(name,fn){if(__eta.layout){if(fn){__eta.blocks[name]=capture(fn);}return '';}const b=${config2.varName}.__blocks||{};if(name in b){return b[name];}return fn?capture(fn):'';}
|
|
368111
|
+
async function blockAsync(name,fn){if(__eta.layout){if(fn){__eta.blocks[name]=await captureAsync(fn);}return '';}const b=${config2.varName}.__blocks||{};if(name in b){return b[name];}return fn?await captureAsync(fn):'';}
|
|
368112
|
+
|
|
368113
|
+
${compileBody$1.call(this, buffer5)}
|
|
368114
|
+
if (__eta.layout) {
|
|
368115
|
+
__eta.res = ${isAsync ? "await includeAsync" : "include"} (__eta.layout, {...${config2.varName}, body: __eta.res, ...__eta.layoutData, __blocks: __eta.blocks});
|
|
368116
|
+
}
|
|
368117
|
+
${config2.useWith ? "}" : ""}${config2.debug ? "} catch (e) { this.RuntimeErr(e, __eta.templateStr, __eta.line, options.filepath) }" : ""}
|
|
368118
|
+
return __eta.res;
|
|
368119
|
+
`;
|
|
368120
|
+
if (config2.plugins) for (let i = 0; i < config2.plugins.length; i++) {
|
|
368121
|
+
const plugin = config2.plugins[i];
|
|
368122
|
+
if (plugin.processFnString) res = plugin.processFnString(res, config2);
|
|
368123
|
+
}
|
|
368124
|
+
return res;
|
|
368125
|
+
}
|
|
368126
|
+
function compileBody(buff) {
|
|
368127
|
+
const config2 = this.config;
|
|
368128
|
+
let i = 0;
|
|
368129
|
+
const buffLength = buff.length;
|
|
368130
|
+
let returnStr = "";
|
|
368131
|
+
for (; i < buffLength; i++) {
|
|
368132
|
+
const currentBlock = buff[i];
|
|
368133
|
+
if (typeof currentBlock === "string") returnStr += "__eta.res+='" + currentBlock + "';\n";
|
|
368134
|
+
else {
|
|
368135
|
+
const type = currentBlock.t;
|
|
368136
|
+
let content = currentBlock.val || "";
|
|
368137
|
+
if (config2.debug) returnStr += "__eta.line=" + currentBlock.lineNo + "\n";
|
|
368138
|
+
if (type === "r") {
|
|
368139
|
+
if (config2.autoFilter) content = "__eta.f(" + content + ")";
|
|
368140
|
+
returnStr += "__eta.res+=" + content + ";\n";
|
|
368141
|
+
} else if (type === "i") {
|
|
368142
|
+
if (config2.autoFilter) content = "__eta.f(" + content + ")";
|
|
368143
|
+
if (config2.autoEscape) content = "__eta.e(" + content + ")";
|
|
368144
|
+
returnStr += "__eta.res+=" + content + ";\n";
|
|
368145
|
+
} else if (type === "e") returnStr += content + "\n";
|
|
368146
|
+
else if (Object.hasOwn(config2.customTags, type)) returnStr += `__eta.res+=this.config.customTags[${JSON.stringify(type)}](${JSON.stringify(content)},${config2.varName});
|
|
368147
|
+
`;
|
|
368148
|
+
}
|
|
368149
|
+
}
|
|
368150
|
+
return returnStr;
|
|
368151
|
+
}
|
|
368152
|
+
function trimWS(str, config2, wsLeft, wsRight) {
|
|
368153
|
+
let leftTrim;
|
|
368154
|
+
let rightTrim;
|
|
368155
|
+
if (Array.isArray(config2.autoTrim)) {
|
|
368156
|
+
leftTrim = config2.autoTrim[1];
|
|
368157
|
+
rightTrim = config2.autoTrim[0];
|
|
368158
|
+
} else leftTrim = rightTrim = config2.autoTrim;
|
|
368159
|
+
if (wsLeft || wsLeft === false) leftTrim = wsLeft;
|
|
368160
|
+
if (wsRight || wsRight === false) rightTrim = wsRight;
|
|
368161
|
+
if (!rightTrim && !leftTrim) return str;
|
|
368162
|
+
if (leftTrim === "slurp" && rightTrim === "slurp") return str.trim();
|
|
368163
|
+
if (leftTrim === "_" || leftTrim === "slurp") str = str.trimStart();
|
|
368164
|
+
else if (leftTrim === "-" || leftTrim === "nl") str = str.replace(/^(?:\r\n|\n|\r)/, "");
|
|
368165
|
+
if (rightTrim === "_" || rightTrim === "slurp") str = str.trimEnd();
|
|
368166
|
+
else if (rightTrim === "-" || rightTrim === "nl") str = str.replace(/(?:\r\n|\n|\r)$/, "");
|
|
368167
|
+
return str;
|
|
368168
|
+
}
|
|
368169
|
+
var escMap = {
|
|
368170
|
+
"&": "&",
|
|
368171
|
+
"<": "<",
|
|
368172
|
+
">": ">",
|
|
368173
|
+
'"': """,
|
|
368174
|
+
"'": "'"
|
|
368175
|
+
};
|
|
368176
|
+
function replaceChar(s5) {
|
|
368177
|
+
return escMap[s5];
|
|
368178
|
+
}
|
|
368179
|
+
function XMLEscape(str) {
|
|
368180
|
+
const newStr = String(str);
|
|
368181
|
+
if (/[&<>"']/.test(newStr)) return newStr.replace(/[&<>"']/g, replaceChar);
|
|
368182
|
+
else return newStr;
|
|
368183
|
+
}
|
|
368184
|
+
var defaultConfig = {
|
|
368185
|
+
autoEscape: true,
|
|
368186
|
+
autoFilter: false,
|
|
368187
|
+
autoTrim: [false, "nl"],
|
|
368188
|
+
cache: false,
|
|
368189
|
+
cacheFilepaths: true,
|
|
368190
|
+
customTags: {},
|
|
368191
|
+
debug: false,
|
|
368192
|
+
escapeFunction: XMLEscape,
|
|
368193
|
+
filterFunction: (val) => String(val),
|
|
368194
|
+
outputFunctionName: "output",
|
|
368195
|
+
functionHeader: "",
|
|
368196
|
+
parse: {
|
|
368197
|
+
exec: "",
|
|
368198
|
+
interpolate: "=",
|
|
368199
|
+
raw: "~"
|
|
368200
|
+
},
|
|
368201
|
+
plugins: [],
|
|
368202
|
+
rmWhitespace: false,
|
|
368203
|
+
tags: ["<%", "%>"],
|
|
368204
|
+
useWith: false,
|
|
368205
|
+
varName: "it",
|
|
368206
|
+
defaultExtension: ".eta"
|
|
368207
|
+
};
|
|
368208
|
+
var templateLitReg = /`(?:\\[\s\S]|\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})*}|(?!\${)[^\\`])*`/g;
|
|
368209
|
+
var singleQuoteReg = /'(?:\\[\s\w"'\\`]|[^\n\r'\\])*?'/g;
|
|
368210
|
+
var doubleQuoteReg = /"(?:\\[\s\w"'\\`]|[^\n\r"\\])*?"/g;
|
|
368211
|
+
function escapeRegExp(string7) {
|
|
368212
|
+
return string7.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&");
|
|
368213
|
+
}
|
|
368214
|
+
function getLineNo(str, index) {
|
|
368215
|
+
return str.slice(0, index).split("\n").length;
|
|
368216
|
+
}
|
|
368217
|
+
function parse2(str) {
|
|
368218
|
+
const config2 = this.config;
|
|
368219
|
+
let buffer5 = [];
|
|
368220
|
+
let trimLeftOfNextStr = false;
|
|
368221
|
+
let lastIndex = 0;
|
|
368222
|
+
const parseOptions = config2.parse;
|
|
368223
|
+
const customTagPrefixes = Object.keys(config2.customTags);
|
|
368224
|
+
if (config2.plugins) for (let i = 0; i < config2.plugins.length; i++) {
|
|
368225
|
+
const plugin = config2.plugins[i];
|
|
368226
|
+
if (plugin.processTemplate) str = plugin.processTemplate(str, config2);
|
|
368227
|
+
}
|
|
368228
|
+
if (config2.rmWhitespace) str = str.replace(/[\r\n]+/g, "\n").replace(/^\s+|\s+$/gm, "");
|
|
368229
|
+
templateLitReg.lastIndex = 0;
|
|
368230
|
+
singleQuoteReg.lastIndex = 0;
|
|
368231
|
+
doubleQuoteReg.lastIndex = 0;
|
|
368232
|
+
function pushString(strng, shouldTrimRightOfString) {
|
|
368233
|
+
if (strng) {
|
|
368234
|
+
strng = trimWS(strng, config2, trimLeftOfNextStr, shouldTrimRightOfString);
|
|
368235
|
+
if (strng) {
|
|
368236
|
+
strng = strng.replace(/\\|'/g, "\\$&").replace(/\r\n|\n|\r/g, "\\n");
|
|
368237
|
+
buffer5.push(strng);
|
|
368238
|
+
}
|
|
368239
|
+
}
|
|
368240
|
+
}
|
|
368241
|
+
const prefixes = [
|
|
368242
|
+
parseOptions.exec,
|
|
368243
|
+
parseOptions.interpolate,
|
|
368244
|
+
parseOptions.raw,
|
|
368245
|
+
...customTagPrefixes
|
|
368246
|
+
].reduce((accumulator, prefix) => {
|
|
368247
|
+
if (accumulator && prefix) return accumulator + "|" + escapeRegExp(prefix);
|
|
368248
|
+
else if (prefix) return escapeRegExp(prefix);
|
|
368249
|
+
else return accumulator;
|
|
368250
|
+
}, "");
|
|
368251
|
+
const parseOpenReg = new RegExp(escapeRegExp(config2.tags[0]) + "(-|_)?\\s*(" + prefixes + ")?\\s*", "g");
|
|
368252
|
+
const parseCloseReg = new RegExp("'|\"|`|\\/\\*|(\\s*(-|_)?" + escapeRegExp(config2.tags[1]) + ")", "g");
|
|
368253
|
+
let m7;
|
|
368254
|
+
while (m7 = parseOpenReg.exec(str)) {
|
|
368255
|
+
const precedingString = str.slice(lastIndex, m7.index);
|
|
368256
|
+
lastIndex = m7[0].length + m7.index;
|
|
368257
|
+
const wsLeft = m7[1];
|
|
368258
|
+
const prefix = m7[2] || "";
|
|
368259
|
+
pushString(precedingString, wsLeft);
|
|
368260
|
+
parseCloseReg.lastIndex = lastIndex;
|
|
368261
|
+
let closeTag;
|
|
368262
|
+
let currentObj = false;
|
|
368263
|
+
while (closeTag = parseCloseReg.exec(str)) if (closeTag[1]) {
|
|
368264
|
+
const content = str.slice(lastIndex, closeTag.index);
|
|
368265
|
+
parseOpenReg.lastIndex = lastIndex = parseCloseReg.lastIndex;
|
|
368266
|
+
trimLeftOfNextStr = closeTag[2];
|
|
368267
|
+
currentObj = {
|
|
368268
|
+
t: prefix === parseOptions.exec ? "e" : prefix === parseOptions.raw ? "r" : prefix === parseOptions.interpolate ? "i" : customTagPrefixes.includes(prefix) ? prefix : "",
|
|
368269
|
+
val: content
|
|
368270
|
+
};
|
|
368271
|
+
break;
|
|
368272
|
+
} else {
|
|
368273
|
+
const char2 = closeTag[0];
|
|
368274
|
+
if (char2 === "/*") {
|
|
368275
|
+
const commentCloseInd = str.indexOf("*/", parseCloseReg.lastIndex);
|
|
368276
|
+
if (commentCloseInd === -1) ParseErr("unclosed comment", str, closeTag.index);
|
|
368277
|
+
parseCloseReg.lastIndex = commentCloseInd;
|
|
368278
|
+
} else if (char2 === "'") {
|
|
368279
|
+
singleQuoteReg.lastIndex = closeTag.index;
|
|
368280
|
+
if (singleQuoteReg.exec(str)) parseCloseReg.lastIndex = singleQuoteReg.lastIndex;
|
|
368281
|
+
else ParseErr("unclosed string", str, closeTag.index);
|
|
368282
|
+
} else if (char2 === '"') {
|
|
368283
|
+
doubleQuoteReg.lastIndex = closeTag.index;
|
|
368284
|
+
if (doubleQuoteReg.exec(str)) parseCloseReg.lastIndex = doubleQuoteReg.lastIndex;
|
|
368285
|
+
else ParseErr("unclosed string", str, closeTag.index);
|
|
368286
|
+
} else if (char2 === "`") {
|
|
368287
|
+
templateLitReg.lastIndex = closeTag.index;
|
|
368288
|
+
if (templateLitReg.exec(str)) parseCloseReg.lastIndex = templateLitReg.lastIndex;
|
|
368289
|
+
else ParseErr("unclosed string", str, closeTag.index);
|
|
368290
|
+
}
|
|
368291
|
+
}
|
|
368292
|
+
if (currentObj) {
|
|
368293
|
+
if (config2.debug) currentObj.lineNo = getLineNo(str, m7.index);
|
|
368294
|
+
buffer5.push(currentObj);
|
|
368295
|
+
} else ParseErr("unclosed tag", str, m7.index);
|
|
368296
|
+
}
|
|
368297
|
+
pushString(str.slice(lastIndex, str.length), false);
|
|
368298
|
+
if (config2.plugins) for (let i = 0; i < config2.plugins.length; i++) {
|
|
368299
|
+
const plugin = config2.plugins[i];
|
|
368300
|
+
if (plugin.processAST) buffer5 = plugin.processAST(buffer5, config2);
|
|
368301
|
+
}
|
|
368302
|
+
return buffer5;
|
|
368303
|
+
}
|
|
368304
|
+
function handleCache(template, options8) {
|
|
368305
|
+
const templateStore = options8?.async ? this.templatesAsync : this.templatesSync;
|
|
368306
|
+
if (this.resolvePath && this.readFile && !template.startsWith("@")) {
|
|
368307
|
+
const templatePath = options8.filepath;
|
|
368308
|
+
const cachedTemplate = templateStore.get(templatePath);
|
|
368309
|
+
if (this.config.cache && cachedTemplate) return cachedTemplate;
|
|
368310
|
+
else {
|
|
368311
|
+
const templateString = this.readFile(templatePath);
|
|
368312
|
+
const templateFn = this.compile(templateString, options8);
|
|
368313
|
+
if (this.config.cache) templateStore.define(templatePath, templateFn);
|
|
368314
|
+
return templateFn;
|
|
368315
|
+
}
|
|
368316
|
+
} else {
|
|
368317
|
+
const cachedTemplate = templateStore.get(template);
|
|
368318
|
+
if (cachedTemplate) return cachedTemplate;
|
|
368319
|
+
else throw new EtaNameResolutionError(`Failed to get template '${template}'`);
|
|
368320
|
+
}
|
|
368321
|
+
}
|
|
368322
|
+
function render2(template, data, meta) {
|
|
368323
|
+
let templateFn;
|
|
368324
|
+
const options8 = {
|
|
368325
|
+
...meta,
|
|
368326
|
+
async: false
|
|
368327
|
+
};
|
|
368328
|
+
if (typeof template === "string") {
|
|
368329
|
+
if (this.resolvePath && this.readFile && !template.startsWith("@")) options8.filepath = this.resolvePath(template, options8);
|
|
368330
|
+
templateFn = handleCache.call(this, template, options8);
|
|
368331
|
+
} else templateFn = template;
|
|
368332
|
+
return templateFn.call(this, data, options8);
|
|
368333
|
+
}
|
|
368334
|
+
function renderAsync(template, data, meta) {
|
|
368335
|
+
let templateFn;
|
|
368336
|
+
const options8 = {
|
|
368337
|
+
...meta,
|
|
368338
|
+
async: true
|
|
368339
|
+
};
|
|
368340
|
+
if (typeof template === "string") {
|
|
368341
|
+
if (this.resolvePath && this.readFile && !template.startsWith("@")) options8.filepath = this.resolvePath(template, options8);
|
|
368342
|
+
templateFn = handleCache.call(this, template, options8);
|
|
368343
|
+
} else templateFn = template;
|
|
368344
|
+
const res = templateFn.call(this, data, options8);
|
|
368345
|
+
return Promise.resolve(res);
|
|
368346
|
+
}
|
|
368347
|
+
function renderString(template, data) {
|
|
368348
|
+
const templateFn = this.compile(template, { async: false });
|
|
368349
|
+
return render2.call(this, templateFn, data);
|
|
368350
|
+
}
|
|
368351
|
+
function renderStringAsync(template, data) {
|
|
368352
|
+
const templateFn = this.compile(template, { async: true });
|
|
368353
|
+
return renderAsync.call(this, templateFn, data);
|
|
368354
|
+
}
|
|
368355
|
+
var Cacher = class {
|
|
368356
|
+
constructor(cache3) {
|
|
368357
|
+
this.cache = cache3;
|
|
368358
|
+
}
|
|
368359
|
+
define(key2, val) {
|
|
368360
|
+
this.cache[key2] = val;
|
|
368361
|
+
}
|
|
368362
|
+
get(key2) {
|
|
368363
|
+
return this.cache[key2];
|
|
368364
|
+
}
|
|
368365
|
+
remove(key2) {
|
|
368366
|
+
delete this.cache[key2];
|
|
368367
|
+
}
|
|
368368
|
+
reset() {
|
|
368369
|
+
this.cache = {};
|
|
368370
|
+
}
|
|
368371
|
+
load(cacheObj) {
|
|
368372
|
+
this.cache = {
|
|
368373
|
+
...this.cache,
|
|
368374
|
+
...cacheObj
|
|
368375
|
+
};
|
|
368376
|
+
}
|
|
368377
|
+
};
|
|
368378
|
+
var Eta$1 = class {
|
|
368379
|
+
constructor(customConfig) {
|
|
368380
|
+
if (customConfig) this.config = {
|
|
368381
|
+
...defaultConfig,
|
|
368382
|
+
...customConfig
|
|
368383
|
+
};
|
|
368384
|
+
else this.config = { ...defaultConfig };
|
|
368385
|
+
const reserved = [
|
|
368386
|
+
this.config.parse.exec,
|
|
368387
|
+
this.config.parse.interpolate,
|
|
368388
|
+
this.config.parse.raw,
|
|
368389
|
+
"-",
|
|
368390
|
+
"_"
|
|
368391
|
+
];
|
|
368392
|
+
for (const prefix of Object.keys(this.config.customTags)) if (reserved.includes(prefix)) throw new EtaError(`Custom tag prefix "${prefix}" conflicts with a built-in prefix`);
|
|
368393
|
+
}
|
|
368394
|
+
config;
|
|
368395
|
+
RuntimeErr = RuntimeErr;
|
|
368396
|
+
compile = compile;
|
|
368397
|
+
compileToString = compileToString;
|
|
368398
|
+
compileBody = compileBody;
|
|
368399
|
+
parse = parse2;
|
|
368400
|
+
render = render2;
|
|
368401
|
+
renderAsync = renderAsync;
|
|
368402
|
+
renderString = renderString;
|
|
368403
|
+
renderStringAsync = renderStringAsync;
|
|
368404
|
+
filepathCache = {};
|
|
368405
|
+
templatesSync = new Cacher({});
|
|
368406
|
+
templatesAsync = new Cacher({});
|
|
368407
|
+
resolvePath = null;
|
|
368408
|
+
readFile = null;
|
|
368409
|
+
configure(customConfig) {
|
|
368410
|
+
this.config = {
|
|
368411
|
+
...this.config,
|
|
368412
|
+
...customConfig
|
|
368413
|
+
};
|
|
368414
|
+
}
|
|
368415
|
+
withConfig(customConfig) {
|
|
368416
|
+
return {
|
|
368417
|
+
...this,
|
|
368418
|
+
config: {
|
|
368419
|
+
...this.config,
|
|
368420
|
+
...customConfig
|
|
368421
|
+
}
|
|
368422
|
+
};
|
|
368423
|
+
}
|
|
368424
|
+
loadTemplate(name, template, options8) {
|
|
368425
|
+
if (typeof template === "string") (options8?.async ? this.templatesAsync : this.templatesSync).define(name, this.compile(template, options8));
|
|
368426
|
+
else {
|
|
368427
|
+
let templates = this.templatesSync;
|
|
368428
|
+
if (template.constructor.name === "AsyncFunction" || options8?.async) templates = this.templatesAsync;
|
|
368429
|
+
templates.define(name, template);
|
|
368430
|
+
}
|
|
368431
|
+
}
|
|
368432
|
+
};
|
|
368433
|
+
var Eta = class extends Eta$1 {
|
|
368434
|
+
readFile = readFile3;
|
|
368435
|
+
resolvePath = resolvePath;
|
|
368436
|
+
};
|
|
367944
368437
|
|
|
367945
368438
|
// src/prompts/header.md
|
|
367946
|
-
var header_default = "You are an autonomous coding agent orchestrating work on the user's repo
|
|
368439
|
+
var header_default = "You are an autonomous coding agent orchestrating work on the user's repo.\n";
|
|
367947
368440
|
|
|
367948
|
-
// src/prompts/
|
|
367949
|
-
var
|
|
368441
|
+
// src/prompts/partials/context.md
|
|
368442
|
+
var context_default = '<%\n const ctx = it.context\n const fF = it.fenceFor\n const lines = ["## Context", ""]\n lines.push(ctx.lastCommitSubject === "" ? "Last commit: _(repository has no commits yet)_" : "Last commit: `" + ctx.lastCommitSubject + "`")\n lines.push("Working tree: " + (ctx.workingTreeClean ? "clean" : "dirty"))\n if (ctx.packages.length > 0) {\n lines.push("", "### Work packages in `.gtd/`", "")\n for (const pkg of ctx.packages) {\n lines.push("- `" + pkg.name + "/`")\n for (const task of pkg.tasks) lines.push(" - `" + task + "`")\n }\n }\n if (ctx.diff !== "") {\n const body = ctx.diff.replace(/\\n$/, "")\n const fence = fF(body)\n lines.push("", "### Working-tree diff (`git diff HEAD`, untracked included)", "", fence + "diff", body, fence, "")\n }\n%><%~ lines.join("\\n") + "\\n" %>\n';
|
|
368443
|
+
|
|
368444
|
+
// src/prompts/partials/diff.md
|
|
368445
|
+
var diff_default = '<%\n const body = it.diff.replace(/\\n$/, "")\n const fence = it.fenceFor(body)\n const out = ["", "### " + it.heading, "", fence + "diff", body, fence, ""].join("\\n")\n%><%~ out %>\n';
|
|
368446
|
+
|
|
368447
|
+
// src/prompts/partials/feedback.md
|
|
368448
|
+
var feedback_default = '<%\n const body = it.content.replace(/\\n$/, "")\n const fence = it.fenceFor(body)\n const out = ["", "### Feedback to address", "", fence, body, fence, ""].join("\\n")\n%><%~ out %>\n';
|
|
368449
|
+
|
|
368450
|
+
// src/prompts/partials/package.md
|
|
368451
|
+
var package_default = '<%\n const lines = ["", "### Package: `" + it.pkg.name + "/`", ""]\n for (const task of it.pkg.taskContents) {\n const fence = it.fenceFor(task.content)\n lines.push("#### `" + task.name + "`", "", fence, task.content.replace(/\\n$/, ""), fence, "")\n }\n%><%~ lines.join("\\n") %>\n';
|
|
368452
|
+
|
|
368453
|
+
// src/prompts/partials/auto-advance.md
|
|
368454
|
+
var auto_advance_default = "After completing the tasks above, run `gtd` in the current working directory and\nfollow its output verbatim \u2014 execute exactly what it says, step by step, without\nadding interpretation or extra steps.\n";
|
|
368455
|
+
|
|
368456
|
+
// src/prompts/partials/neutral.md
|
|
368457
|
+
var neutral_default = "Complete the tasks above, then end your turn. An outside process will decide\nwhat to do next.\n";
|
|
368458
|
+
|
|
368459
|
+
// src/prompts/partials/stop.md
|
|
368460
|
+
var stop_default = "After the tasks above are done, end your turn and never invoke an additional\nprocess. This is a human feedback gate and the next step has to be invoked by a\nhuman manually.\n";
|
|
368461
|
+
|
|
368462
|
+
// src/prompts/grilling-iterate.md
|
|
368463
|
+
var grilling_iterate_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\n`TODO.md` holds the plan under development. The grilling loop interviews it \u2014\nsurfacing and resolving open questions \u2014 until the plan is solid enough to\ndecompose into work packages.\n\n### The convergence marker\n\nEvery open question carries a single placeholder comment on its own line,\ndirectly beneath the question:\n\n`<!-- user answers here -->`\n\nThis placeholder is the **convergence marker**. While _any_ marker is present in\n`TODO.md`, the harness **stops** and waits for the user to answer inline. When\nthere are genuinely no open questions left, write the sentinel line\n\n`no open questions \u2014 ready to plan`\n\nand leave **no** markers \u2014 the next cycle advances the plan to decomposition.\nThe sentinel means the plan is fully developed and ready to decompose \u2014 it is\nnever a substitute for writing the plan.\n\n### Develop the plan\n\nSpawn a **planning-model subagent** using model `<%= it.model %>` to develop the plan.\nThe subagent works entirely by editing `TODO.md` (it cannot talk to the user):\n\n1. **Always develop `TODO.md` into a concrete plan.** Replace the captured input\n / seed template with a real implementation plan \u2014 the files to change,\n exactly what changes, and why \u2014 grounded in the codebase. Do this on every\n iteration, whether or not any questions remain open. A plan that still\n contains only the seed "Captured input" block is never ready to converge.\n2. **Read any "Captured input" diff block as feedback, not finished work:** code\n changes are suggestions \u2014 fold them into the plan and re-implement them\n properly, including test coverage, rather than restoring them verbatim; code\n comments are positional feedback about the code at that location;\n TODO.md/REVIEW.md text changes are global feedback on the plan or the\n reviewed work as a whole; checkbox flips in a captured REVIEW.md diff are\n approval noise \u2014 ignore them. the harness has already reverted captured code\n from the working tree.\n3. For every question the user has just answered (the answer written in place of\n its `<!-- user answers here -->` marker): integrate the answer into the plan\n body, then move the question into a `## Resolved` section at the bottom,\n recording the user\'s response as `**Answer:** \u2026`.\n4. Continue interviewing the plan with this discipline:\n - **Explore before asking** \u2014 if the codebase or docs answer it, explore\n instead of asking.\n - **Prioritize high-stakes questions** \u2014 hard-to-reverse decisions before\n easy-to-change ones.\n - **Walk branches completely** \u2014 group related questions so the user can\n resolve one branch fully before the next.\n - **Every question advances a decision** \u2014 never ask something that would not\n change the implementation.\n - Every answer opens new branches; generate fresh questions for any ambiguity\n the answers surface.\n5. Write each new open question near the top of the file, each followed on its\n own line by the `<!-- user answers here -->` marker.\n6. If the plan is now fully resolved, leave **no** markers and write the\n sentinel `no open questions \u2014 ready to plan` instead. Only write the sentinel\n once `TODO.md` holds a concrete plan \u2014 the sentinel signals the plan is ready\n to decompose, not that planning can be skipped.\n\nLeave `TODO.md` **uncommitted** \u2014 the next cycle commits it `gtd: grilling` and\nre-derives.\n\n<%~ include(it.tail) %>\n';
|
|
368464
|
+
|
|
368465
|
+
// src/prompts/grilling-stop.md
|
|
368466
|
+
var grilling_stop_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\n`TODO.md` holds the plan under development. The grilling loop interviews it \u2014\nsurfacing and resolving open questions \u2014 until the plan is solid enough to\ndecompose into work packages.\n\n### The convergence marker\n\nEvery open question carries a single placeholder comment on its own line,\ndirectly beneath the question:\n\n`<!-- user answers here -->`\n\nThis placeholder is the **convergence marker**. While _any_ marker is present in\n`TODO.md`, the harness **stops** and waits for the user to answer inline. When\nthere are genuinely no open questions left, write the sentinel line\n\n`no open questions \u2014 ready to plan`\n\nand leave **no** markers \u2014 the next cycle advances the plan to decomposition.\nThe sentinel means the plan is fully developed and ready to decompose \u2014 it is\nnever a substitute for writing the plan.\n\n### Open questions await the user\n\n`TODO.md` contains one or more `<!-- user answers here -->` markers \u2014 unanswered\nquestions. This is a human gate; there is nothing for you to do.\n\nTell the user to open `TODO.md`, answer each question inline (replacing its\n`<!-- user answers here -->` marker with the answer).\n\n<%~ include(it.tail) %>\n';
|
|
367950
368467
|
|
|
367951
368468
|
// src/prompts/decompose.md
|
|
367952
|
-
var decompose_default = '
|
|
368469
|
+
var decompose_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\n`TODO.md` contains an implementation plan. Decompose it into an ordered set of\nexecutable work packages stored in the `.gtd/` directory. If `.gtd/` already\nholds packages from an earlier turn, immediately abort and raise an error.\n\nSpawn a **planning-model subagent** using model `<%= it.model %>` to perform the\ndecomposition. It creates numbered package directories, each holding numbered\ntask files:\n\n```\n.gtd/\n 01-<package-name>/\n 01-<task-name>.md\n 02-<task-name>.md\n 02-<package-name>/\n ...\n```\n\n**Rules for the subagent:**\n\n1. **Packages are sequential, in dependency order** \u2014 ordinal-prefixed\n directories (`01-`, `02-`, \u2026) execute in that order and the set is frozen\n once written. Order them so each package depends only on lower-numbered ones.\n\n2. **Each package is green on its own** \u2014 the test suite runs after every\n package. Never split a feature so the tree stays red until a later package\n lands.\n\n3. **Tasks within a package are parallel and file-disjoint** \u2014 all tasks in a\n package run simultaneously, each via one subagent, against the same working\n tree with no isolation. Two tasks that would touch the same file must be\n **merged** into one. If task B depends on task A, put them in separate\n packages.\n\n4. **Vertical slices, not horizontal** \u2014 each package is a thin, end-to-end\n slice that is demoable or verifiable on its own. Prefer many thin packages\n over few thick ones; never a "set up infrastructure" package.\n\n5. **Task files are self-contained** \u2014 each task `.md` includes a clear\n description of what to build, acceptance criteria as `- [ ] Criterion`\n checkboxes, the relevant file paths to examine, and any constraints or edge\n cases. It is the only context building agents will receive to work on the\n task.\n\n**DO NOT** commit any changes. This process runs within a larger orchestration\nthat depends on uncommitted changes.\n\n<%~ include(it.tail) %>\n';
|
|
367953
368470
|
|
|
367954
368471
|
// src/prompts/building.md
|
|
367955
|
-
var building_default = "
|
|
368472
|
+
var building_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\nBuild the package described below by orchestrating the execution \u2014 you do not\nimplement the tasks yourself. Spawn **one subagent per task**, all in\n**parallel**, each using model `<%= it.model %>`:\n\n- **Context**: the task content only (it is self-contained).\n- **Fresh context**: each worker starts cold, with no shared history.\n- **TDD discipline** (inline rules for workers):\n - Write ONE test \u2192 implement \u2192 pass \u2192 repeat (vertical slices).\n - **Do NOT** write all tests first then implement (horizontal slicing).\n - Tests verify behavior through public interfaces, not implementation details\n \u2014 a good test survives a refactor.\n\nWait for all workers to complete. **If any worker fails** (crash, timeout, error\n\u2014 not a test failure): report which tasks failed and ask the user whether to\nretry the failed tasks, skip and continue, or abort.\n\nLeave all changes uncommitted. An outside process handles that.\n<% if (it.context.packages[0]) { %>\n<%~ include("@package", { pkg: it.context.packages[0], fenceFor: it.fenceFor }) %>\n<% } %>\n\n<%~ include(it.tail) %>\n';
|
|
367956
368473
|
|
|
367957
368474
|
// src/prompts/fixing.md
|
|
367958
|
-
var fixing_default = "
|
|
368475
|
+
var fixing_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\nSpawn a **fix subagent** using model `<%= it.model %>` to apply fixes for the feedback\nbelow:\n\n1. **Work through the Feedback to address section below** \u2014 address every item\n it lists. For test output, make the failing tests pass; for review findings,\n satisfy each finding against the package\'s task specs.\n2. **Make the fix in place** \u2014 change the code to resolve the feedback. Keep the\n change focused; do not refactor unrelated code.\n3. **Leave every change uncommitted** \u2014 do **not** commit or stage.\n<% if (it.context.feedbackContent.trim()) { %>\n<%~ include("@feedback", { content: it.context.feedbackContent, fenceFor: it.fenceFor }) %>\n<% } %>\n\n<%~ include(it.tail) %>\n';
|
|
367959
368476
|
|
|
367960
368477
|
// src/prompts/agentic-review.md
|
|
367961
|
-
var agentic_review_default = "
|
|
368478
|
+
var agentic_review_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\nSpawn a **reviewing subagent** using model `<%= it.model %>`. The package\'s task spec\nfiles and its cumulative diff are found below. The subagent must:\n\n1. **Read the task spec files** \u2014 they define the acceptance criteria. Every\n requirement must be checked.\n2. **Read the package diff** \u2014 examine every hunk to determine whether the\n implementation satisfies the spec.\n3. **Always write `FEEDBACK.md`** in the repo root:\n - **Fully satisfies the spec** \u2192 write an **empty** `FEEDBACK.md` (zero bytes\n or whitespace only). This empty file is the **approval** signal.\n - **Does not fully satisfy** \u2192 write concrete, actionable findings anchored\n to specific file and symbol names, grouped under short headings, so the fix\n agent can act without re-reading the diff.\n4. **Do not edit source files and do not commit** \u2014 the reviewer only writes\n `FEEDBACK.md`, left uncommitted.\n<% if (it.context.packages[0]) { %>\n<%~ include("@package", { pkg: it.context.packages[0], fenceFor: it.fenceFor }) %>\n<% } %><% if (it.context.refDiff && it.context.refDiff.trim()) { %>\n<%~ include("@diff", { heading: "Package diff", diff: it.context.refDiff, fenceFor: it.fenceFor }) %>\n<% } %>\n\n<%~ include(it.tail) %>\n';
|
|
367962
368479
|
|
|
367963
368480
|
// src/prompts/clean.md
|
|
367964
|
-
var clean_default = "
|
|
368481
|
+
var clean_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\nSpawn a **planning-model subagent** using model `<%= it.model %>` to author a\n`REVIEW.md` file that will help a human to review the changes. It must:\n\n1. **Read the diff inlined below** \u2014 extract the changed hunks with their file\n paths.\n2. **Group hunks semantically** \u2014 cluster hunks that serve the same logical\n concern (the same feature, refactor, or fix), even across files. Aim for the\n fewest chunks that keep the review navigable.\n3. **Write `REVIEW.md`** in the repo root in this format:\n\n ```markdown\n # Review: <short-hash>\n\n <!-- base: <full-hash> -->\n\n ## <Chunk Title>\n\n <What this chunk changes and why>\n\n - [ ] ./path/to/file.ts#42\n - [ ] ./path/to/file.ts#99\n\n ## <Another Chunk Title>\n\n <Explanation>\n\n - [ ] ./path/to/another.ts#1\n ```\n\n - `<short-hash>` is the first 7 characters of the review base SHA;\n `<full-hash>` is the full SHA. Both are read from the `Review base:` line /\n diff label in the prompt context.\n - Chunk titles are short imperative phrases (\u2264 6 words).\n - Explanations describe _what_ changed and _why_, not just where.\n - File pointers are relative, prefixed with `./`; the line numbers (`#42`)\n are creation-time hints that will drift \u2014 not authoritative.\n - Checkboxes (`- [ ]`) signal approval \u2014 ticking them (with no other edits)\n counts as approving the review (`gtd: done`). Only non-checkbox edits to\n `REVIEW.md` (or any code edits) are treated as a change-request.\n - The user checks off or edits items in place as they work through the\n review; there is no separate Resolved section.\n\n4. Leave `REVIEW.md` **uncommitted**, the outer loop will process it.\n<% if (it.context.refDiff && it.context.refDiff.trim()) { %>\n<%= it.context.reviewBase !== undefined ? "\\nReview base: " + it.context.reviewBase + "\\n" : "" %>\n<%~ include("@diff", { heading: "Changes to review (`git diff " + (it.context.reviewBase !== undefined ? it.context.reviewBase : "<base>") + " HEAD`)", diff: it.context.refDiff, fenceFor: it.fenceFor }) %>\n<% } %>\n\n<%~ include(it.tail) %>\n';
|
|
367965
368482
|
|
|
367966
368483
|
// src/prompts/squashing.md
|
|
367967
|
-
var squashing_default = "
|
|
368484
|
+
var squashing_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\nThe process is **approved and done**. Your job is to author a clean\nconventional-commits squash message and hand it off to the harness.\n\n### Step 1 \u2014 Extract decisions from grilling rounds\n\nScan the git history of recent `gtd: ...` commits. Look for changes to `TODO.md`\n\u2014 specifically the `## Captured input (grilling)` sections and any edits to plan\ntext. Extract **key decisions, trade-offs, and design choices** made during\ngrilling rounds. These will appear in the commit body so the history is\nself-documenting.\n\n### Step 2 \u2014 Draft the commit message\n\nDraft ONE conventional-commits message:\n\n```\ntype(scope): subject\n\nbody (explain the why \u2014 motivation, trade-offs, key decisions from grilling)\n```\n\n- **type**: `feat` / `fix` / `refactor` / `chore` / `docs` / `test`\n- **subject**: imperative mood, \u2264 72 characters, lowercase after the colon\n- **body**: include the important decisions / trade-offs from grilling sessions.\n Omit if there were no meaningful decisions to capture.\n\n### Step 3 \u2014 Write SQUASH_MSG.md and hand off\n\nWrite the commit message (plain text, no markdown wrapper) to `SQUASH_MSG.md` in\nthe repo root, then leave it uncommitted \u2014 the harness handles the squash commit\non the next cycle once it sees `SQUASH_MSG.md`.\n\n**Do not run `git reset --soft` or `git commit` yourself** \u2014 the harness handles\nthe squash commit.\n<% if (it.context.squashDiff && it.context.squashDiff.trim()) { %>\n<%= it.context.squashBase !== undefined ? "\\nSquash base: " + it.context.squashBase + "\\n" : "" %>\n<%~ include("@diff", { heading: "Full-process diff (`git diff " + (it.context.squashBase !== undefined ? it.context.squashBase : "<squashBase>") + " HEAD`)", diff: it.context.squashDiff, fenceFor: it.fenceFor }) %>\n<% } %>\n\n<%~ include(it.tail) %>\n';
|
|
367968
368485
|
|
|
367969
368486
|
// src/prompts/escalate.md
|
|
367970
|
-
var escalate_default = "
|
|
368487
|
+
var escalate_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\nThe agent was not able to fix all errors on its own. The last error report is\nstored in `ERRORS.md` for a human to investigate.\n\nNext steps for the human developer:\n\n1. Investigate and fix errors reported in `ERRORS.md`\n2. Delete `ERRORS.md`\n3. Continue the process when you are ready\n\n<%~ include(it.tail) %>\n';
|
|
367971
368488
|
|
|
367972
368489
|
// src/prompts/idle.md
|
|
367973
|
-
var idle_default = "
|
|
367974
|
-
|
|
367975
|
-
// src/prompts/partials/auto-advance.md
|
|
367976
|
-
var auto_advance_default = "## Auto-advance\n\nContinue immediately after completing the steps above \u2014 re-run the harness. Do\nnot wait for user input. If an unrecoverable error occurs that requires human\ndecision, stop and report the problem instead of re-running.\n";
|
|
367977
|
-
|
|
367978
|
-
// src/prompts/partials/neutral.md
|
|
367979
|
-
var neutral_default = "Complete the steps above, then end your turn \u2014 the harness decides what happens\nnext.\n";
|
|
367980
|
-
|
|
367981
|
-
// src/prompts/partials/stop.md
|
|
367982
|
-
var stop_default = "\u26D4 **STOP \u2014 do not re-run the harness.** This is a human gate. Only the user may\nresume this step. Re-running now with no changes will loop or advance without\nhuman input.\n";
|
|
368490
|
+
var idle_default = '<%~ include("@header") %>\n\n<%~ include("@context", { context: it.context, fenceFor: it.fenceFor }) %>\nReport that the repository is idle \u2014 nothing to do.\n\n<%~ include(it.tail) %>\n';
|
|
367983
368491
|
|
|
367984
368492
|
// src/Prompt.ts
|
|
367985
368493
|
var EDGE_ONLY_STATES = /* @__PURE__ */ new Set([
|
|
@@ -368001,100 +368509,43 @@ var MODEL_STATE = {
|
|
|
368001
368509
|
clean: "clean",
|
|
368002
368510
|
squashing: "clean"
|
|
368003
368511
|
};
|
|
368004
|
-
var SECTIONS = {
|
|
368005
|
-
grilled: decompose_default,
|
|
368006
|
-
planning: decompose_default,
|
|
368007
|
-
building: building_default,
|
|
368008
|
-
fixing: fixing_default,
|
|
368009
|
-
"agentic-review": agentic_review_default,
|
|
368010
|
-
clean: clean_default,
|
|
368011
|
-
squashing: squashing_default,
|
|
368012
|
-
escalate: escalate_default,
|
|
368013
|
-
idle: idle_default
|
|
368014
|
-
};
|
|
368015
|
-
var [GRILL_BASE = "", GRILL_AFTER_ITERATE = ""] = grilling_default.split("<!-- gtd:iterate -->");
|
|
368016
|
-
var [GRILL_ITERATE_TAIL = "", GRILL_STOP_TAIL = ""] = GRILL_AFTER_ITERATE.split("<!-- gtd:stop -->");
|
|
368017
368512
|
var builtinResolveModel = (state) => builtinTierDefault[stateTier[state]];
|
|
368018
368513
|
var fenceFor = (content) => {
|
|
368019
368514
|
let longest = 0;
|
|
368020
368515
|
for (const match19 of content.matchAll(/`+/g)) longest = Math.max(longest, match19[0].length);
|
|
368021
368516
|
return "`".repeat(Math.max(3, longest + 1));
|
|
368022
368517
|
};
|
|
368023
|
-
var
|
|
368024
|
-
|
|
368025
|
-
|
|
368026
|
-
|
|
368027
|
-
|
|
368028
|
-
|
|
368029
|
-
|
|
368030
|
-
|
|
368031
|
-
|
|
368032
|
-
|
|
368033
|
-
|
|
368034
|
-
|
|
368035
|
-
|
|
368036
|
-
|
|
368037
|
-
|
|
368038
|
-
|
|
368039
|
-
|
|
368040
|
-
|
|
368041
|
-
|
|
368042
|
-
|
|
368043
|
-
|
|
368044
|
-
|
|
368045
|
-
|
|
368046
|
-
|
|
368047
|
-
|
|
368048
|
-
|
|
368049
|
-
|
|
368050
|
-
|
|
368051
|
-
|
|
368052
|
-
|
|
368053
|
-
|
|
368054
|
-
}
|
|
368055
|
-
if (context10.diff !== "") {
|
|
368056
|
-
lines3.push(
|
|
368057
|
-
...renderDiff2("Working-tree diff (`git diff HEAD`, untracked included)", context10.diff)
|
|
368058
|
-
);
|
|
368059
|
-
}
|
|
368060
|
-
return lines3.join("\n");
|
|
368061
|
-
};
|
|
368062
|
-
var renderGrilling = (context10, resolveModel) => {
|
|
368063
|
-
const tail = context10.grillingCase === "stop" ? GRILL_STOP_TAIL : GRILL_ITERATE_TAIL;
|
|
368064
|
-
return `${GRILL_BASE}${tail}`.replaceAll("{{MODEL}}", resolveModel("grilling"));
|
|
368065
|
-
};
|
|
368066
|
-
var renderStateSection = (promptState, context10, resolveModel) => {
|
|
368067
|
-
if (promptState === "grilling") {
|
|
368068
|
-
return [renderGrilling(context10, resolveModel), ""];
|
|
368069
|
-
}
|
|
368070
|
-
const modelState = MODEL_STATE[promptState];
|
|
368071
|
-
const raw = SECTIONS[promptState];
|
|
368072
|
-
const section = modelState !== void 0 ? raw.replaceAll("{{MODEL}}", resolveModel(modelState)) : raw;
|
|
368073
|
-
const parts2 = [section, ""];
|
|
368074
|
-
const pkg = context10.packages[0];
|
|
368075
|
-
if (promptState === "building" && pkg !== void 0) {
|
|
368076
|
-
parts2.push(renderPackage(pkg), "");
|
|
368077
|
-
}
|
|
368078
|
-
if (promptState === "fixing" && context10.feedbackContent.trim() !== "") {
|
|
368079
|
-
parts2.push(...renderFeedback(context10.feedbackContent), "");
|
|
368080
|
-
}
|
|
368081
|
-
if (promptState === "agentic-review" && pkg !== void 0) {
|
|
368082
|
-
parts2.push(renderPackage(pkg), "");
|
|
368083
|
-
if (context10.refDiff !== void 0 && context10.refDiff.trim() !== "") {
|
|
368084
|
-
parts2.push(...renderDiff2("Package diff", context10.refDiff));
|
|
368085
|
-
}
|
|
368086
|
-
}
|
|
368087
|
-
if (promptState === "clean" && context10.refDiff !== void 0 && context10.refDiff.trim() !== "") {
|
|
368088
|
-
if (context10.reviewBase !== void 0) parts2.push(`Review base: ${context10.reviewBase}`, "");
|
|
368089
|
-
const diffLabel = context10.reviewBase !== void 0 ? `Changes to review (\`git diff ${context10.reviewBase} HEAD\`)` : "Changes to review (`git diff <base> HEAD`)";
|
|
368090
|
-
parts2.push(...renderDiff2(diffLabel, context10.refDiff));
|
|
368091
|
-
}
|
|
368092
|
-
if (promptState === "squashing" && context10.squashDiff !== void 0 && context10.squashDiff.trim() !== "") {
|
|
368093
|
-
if (context10.squashBase !== void 0) parts2.push(`Squash base: ${context10.squashBase}`, "");
|
|
368094
|
-
const diffLabel = context10.squashBase !== void 0 ? `Full-process diff (\`git diff ${context10.squashBase} HEAD\`)` : "Full-process diff (`git diff <squashBase> HEAD`)";
|
|
368095
|
-
parts2.push(...renderDiff2(diffLabel, context10.squashDiff));
|
|
368096
|
-
}
|
|
368097
|
-
return parts2;
|
|
368518
|
+
var eta = new Eta();
|
|
368519
|
+
eta.loadTemplate("@header", header_default);
|
|
368520
|
+
eta.loadTemplate("@context", context_default);
|
|
368521
|
+
eta.loadTemplate("@diff", diff_default);
|
|
368522
|
+
eta.loadTemplate("@feedback", feedback_default);
|
|
368523
|
+
eta.loadTemplate("@package", package_default);
|
|
368524
|
+
eta.loadTemplate("@auto-advance", auto_advance_default);
|
|
368525
|
+
eta.loadTemplate("@neutral", neutral_default);
|
|
368526
|
+
eta.loadTemplate("@stop", stop_default);
|
|
368527
|
+
eta.loadTemplate("@grilling-iterate", grilling_iterate_default);
|
|
368528
|
+
eta.loadTemplate("@grilling-stop", grilling_stop_default);
|
|
368529
|
+
eta.loadTemplate("@decompose", decompose_default);
|
|
368530
|
+
eta.loadTemplate("@building", building_default);
|
|
368531
|
+
eta.loadTemplate("@fixing", fixing_default);
|
|
368532
|
+
eta.loadTemplate("@agentic-review", agentic_review_default);
|
|
368533
|
+
eta.loadTemplate("@clean", clean_default);
|
|
368534
|
+
eta.loadTemplate("@squashing", squashing_default);
|
|
368535
|
+
eta.loadTemplate("@escalate", escalate_default);
|
|
368536
|
+
eta.loadTemplate("@idle", idle_default);
|
|
368537
|
+
eta.readFile = null;
|
|
368538
|
+
eta.resolvePath = null;
|
|
368539
|
+
var STATE_TEMPLATE = {
|
|
368540
|
+
grilled: "@decompose",
|
|
368541
|
+
planning: "@decompose",
|
|
368542
|
+
building: "@building",
|
|
368543
|
+
fixing: "@fixing",
|
|
368544
|
+
"agentic-review": "@agentic-review",
|
|
368545
|
+
clean: "@clean",
|
|
368546
|
+
squashing: "@squashing",
|
|
368547
|
+
escalate: "@escalate",
|
|
368548
|
+
idle: "@idle"
|
|
368098
368549
|
};
|
|
368099
368550
|
var buildPrompt = (result, resolveModel = builtinResolveModel, output = "plain") => {
|
|
368100
368551
|
const { state, context: context10 } = result;
|
|
@@ -368102,32 +368553,39 @@ var buildPrompt = (result, resolveModel = builtinResolveModel, output = "plain")
|
|
|
368102
368553
|
throw new Error(`State "${state}" is performed by the edge and must never reach buildPrompt`);
|
|
368103
368554
|
}
|
|
368104
368555
|
const promptState = state;
|
|
368105
|
-
const
|
|
368106
|
-
const
|
|
368107
|
-
|
|
368108
|
-
|
|
368109
|
-
|
|
368110
|
-
|
|
368556
|
+
const modelState = MODEL_STATE[promptState];
|
|
368557
|
+
const model = modelState !== void 0 ? resolveModel(modelState) : "";
|
|
368558
|
+
const tail = output === "json" ? "@neutral" : result.autoAdvance ? "@auto-advance" : "@stop";
|
|
368559
|
+
let templateName;
|
|
368560
|
+
if (promptState === "grilling") {
|
|
368561
|
+
templateName = context10.grillingCase === "stop" ? "@grilling-stop" : "@grilling-iterate";
|
|
368562
|
+
} else {
|
|
368563
|
+
templateName = STATE_TEMPLATE[promptState];
|
|
368564
|
+
}
|
|
368565
|
+
const raw = eta.renderString(`<%~ include(it.tmpl, it) %>`, {
|
|
368566
|
+
tmpl: templateName,
|
|
368567
|
+
context: context10,
|
|
368568
|
+
model,
|
|
368111
368569
|
tail,
|
|
368112
|
-
|
|
368113
|
-
|
|
368114
|
-
return
|
|
368570
|
+
fenceFor
|
|
368571
|
+
});
|
|
368572
|
+
return raw.replace(/\n{3,}/g, "\n\n").trimEnd() + "\n";
|
|
368115
368573
|
};
|
|
368116
368574
|
|
|
368117
368575
|
// src/Format.ts
|
|
368118
|
-
import { extname as
|
|
368576
|
+
import { extname as extname3 } from "path";
|
|
368119
368577
|
|
|
368120
368578
|
// node_modules/prettier/index.mjs
|
|
368121
368579
|
import { createRequire as __prettierCreateRequire } from "module";
|
|
368122
368580
|
import { fileURLToPath as __prettierFileUrlToPath } from "url";
|
|
368123
368581
|
import { dirname as __prettierDirname } from "path";
|
|
368124
368582
|
import path10 from "path";
|
|
368125
|
-
import * as
|
|
368583
|
+
import * as path2 from "path";
|
|
368126
368584
|
import * as url2 from "url";
|
|
368127
368585
|
import path5 from "path";
|
|
368128
368586
|
import * as path4 from "path";
|
|
368129
|
-
import * as
|
|
368130
|
-
import * as
|
|
368587
|
+
import * as fs8 from "fs/promises";
|
|
368588
|
+
import * as path22 from "path";
|
|
368131
368589
|
import process2 from "process";
|
|
368132
368590
|
import * as path3 from "path";
|
|
368133
368591
|
import process3 from "process";
|
|
@@ -368671,7 +369129,7 @@ function cleanDoc(doc) {
|
|
|
368671
369129
|
return mapDoc(doc, (currentDoc) => cleanDocFn(currentDoc));
|
|
368672
369130
|
}
|
|
368673
369131
|
function replaceEndOfLine(doc, replacement = literalline) {
|
|
368674
|
-
return mapDoc(doc, (currentDoc) => typeof currentDoc === "string" ?
|
|
369132
|
+
return mapDoc(doc, (currentDoc) => typeof currentDoc === "string" ? join9(replacement, currentDoc.split("\n")) : currentDoc);
|
|
368675
369133
|
}
|
|
368676
369134
|
function canBreakFn(doc) {
|
|
368677
369135
|
if (doc.type === DOC_TYPE_LINE) {
|
|
@@ -368813,7 +369271,7 @@ function indentIfBreak(contents, options8) {
|
|
|
368813
369271
|
negate: options8.negate
|
|
368814
369272
|
};
|
|
368815
369273
|
}
|
|
368816
|
-
function
|
|
369274
|
+
function join9(separator, docs) {
|
|
368817
369275
|
assertDoc(separator);
|
|
368818
369276
|
assertDocArray(docs);
|
|
368819
369277
|
const parts2 = [];
|
|
@@ -369525,7 +369983,7 @@ function printDocToString(doc, options8) {
|
|
|
369525
369983
|
}
|
|
369526
369984
|
}
|
|
369527
369985
|
var builders = {
|
|
369528
|
-
join:
|
|
369986
|
+
join: join9,
|
|
369529
369987
|
line,
|
|
369530
369988
|
softline,
|
|
369531
369989
|
hardline,
|
|
@@ -370421,7 +370879,7 @@ var require_compile = __commonJS2({
|
|
|
370421
370879
|
"use strict";
|
|
370422
370880
|
var fill2 = require_fill_range();
|
|
370423
370881
|
var utils2 = require_utils2();
|
|
370424
|
-
var
|
|
370882
|
+
var compile2 = (ast, options8 = {}) => {
|
|
370425
370883
|
const walk = (node, parent = {}) => {
|
|
370426
370884
|
const invalidBlock = utils2.isInvalidBrace(parent);
|
|
370427
370885
|
const invalidNode = node.invalid === true && options8.escapeInvalid === true;
|
|
@@ -370463,7 +370921,7 @@ var require_compile = __commonJS2({
|
|
|
370463
370921
|
};
|
|
370464
370922
|
return walk(ast);
|
|
370465
370923
|
};
|
|
370466
|
-
module.exports =
|
|
370924
|
+
module.exports = compile2;
|
|
370467
370925
|
}
|
|
370468
370926
|
});
|
|
370469
370927
|
var require_expand = __commonJS2({
|
|
@@ -370897,7 +371355,7 @@ var require_braces = __commonJS2({
|
|
|
370897
371355
|
"node_modules/braces/index.js"(exports, module) {
|
|
370898
371356
|
"use strict";
|
|
370899
371357
|
var stringify2 = require_stringify2();
|
|
370900
|
-
var
|
|
371358
|
+
var compile2 = require_compile();
|
|
370901
371359
|
var expand2 = require_expand();
|
|
370902
371360
|
var parse7 = require_parse2();
|
|
370903
371361
|
var braces = (input, options8 = {}) => {
|
|
@@ -370930,7 +371388,7 @@ var require_braces = __commonJS2({
|
|
|
370930
371388
|
if (typeof input === "string") {
|
|
370931
371389
|
input = braces.parse(input, options8);
|
|
370932
371390
|
}
|
|
370933
|
-
return
|
|
371391
|
+
return compile2(input, options8);
|
|
370934
371392
|
};
|
|
370935
371393
|
braces.expand = (input, options8 = {}) => {
|
|
370936
371394
|
if (typeof input === "string") {
|
|
@@ -372757,21 +373215,21 @@ var require_pattern = __commonJS2({
|
|
|
372757
373215
|
exports.removeDuplicateSlashes = removeDuplicateSlashes;
|
|
372758
373216
|
function partitionAbsoluteAndRelative(patterns) {
|
|
372759
373217
|
const absolute = [];
|
|
372760
|
-
const
|
|
373218
|
+
const relative22 = [];
|
|
372761
373219
|
for (const pattern2 of patterns) {
|
|
372762
|
-
if (
|
|
373220
|
+
if (isAbsolute2(pattern2)) {
|
|
372763
373221
|
absolute.push(pattern2);
|
|
372764
373222
|
} else {
|
|
372765
|
-
|
|
373223
|
+
relative22.push(pattern2);
|
|
372766
373224
|
}
|
|
372767
373225
|
}
|
|
372768
|
-
return [absolute,
|
|
373226
|
+
return [absolute, relative22];
|
|
372769
373227
|
}
|
|
372770
373228
|
exports.partitionAbsoluteAndRelative = partitionAbsoluteAndRelative;
|
|
372771
|
-
function
|
|
373229
|
+
function isAbsolute2(pattern2) {
|
|
372772
373230
|
return path15.isAbsolute(pattern2);
|
|
372773
373231
|
}
|
|
372774
|
-
exports.isAbsolute =
|
|
373232
|
+
exports.isAbsolute = isAbsolute2;
|
|
372775
373233
|
}
|
|
372776
373234
|
});
|
|
372777
373235
|
var require_merge22 = __commonJS2({
|
|
@@ -379677,7 +380135,7 @@ var isUrlInstance = (value3) => value3 instanceof URL;
|
|
|
379677
380135
|
var isUrlString = (value3) => typeof value3 === "string" && value3.startsWith(URL_STRING_PREFIX);
|
|
379678
380136
|
var isUrl = (urlOrPath) => isUrlInstance(urlOrPath) || isUrlString(urlOrPath);
|
|
379679
380137
|
var toPath = (urlOrPath) => isUrl(urlOrPath) ? url2.fileURLToPath(urlOrPath) : urlOrPath;
|
|
379680
|
-
var toAbsolutePath = (urlOrPath) => urlOrPath ?
|
|
380138
|
+
var toAbsolutePath = (urlOrPath) => urlOrPath ? path2.resolve(isUrl(urlOrPath) ? url2.fileURLToPath(urlOrPath) : urlOrPath) : urlOrPath;
|
|
379681
380139
|
function partition22(array22, predicate) {
|
|
379682
380140
|
const result = [[], []];
|
|
379683
380141
|
for (const value3 of array22) {
|
|
@@ -379693,7 +380151,7 @@ async function findInDirectory(nameOrNames, { typeCheck, cwd, allowSymlinks = tr
|
|
|
379693
380151
|
const directory = toAbsolutePath(cwd) ?? process2.cwd();
|
|
379694
380152
|
const names = Array.isArray(nameOrNames) ? nameOrNames : [nameOrNames];
|
|
379695
380153
|
for (const name of names) {
|
|
379696
|
-
const fileOrDirectory =
|
|
380154
|
+
const fileOrDirectory = path22.join(directory, name);
|
|
379697
380155
|
const stats = await safeStat(fileOrDirectory, allowSymlinks);
|
|
379698
380156
|
if (await typeCheck(stats) && (!filter22 || await filter22({ name, path: fileOrDirectory, stats }))) {
|
|
379699
380157
|
return fileOrDirectory;
|
|
@@ -379702,7 +380160,7 @@ async function findInDirectory(nameOrNames, { typeCheck, cwd, allowSymlinks = tr
|
|
|
379702
380160
|
}
|
|
379703
380161
|
async function safeStat(path15, allowSymlinks = true) {
|
|
379704
380162
|
try {
|
|
379705
|
-
return await (allowSymlinks ?
|
|
380163
|
+
return await (allowSymlinks ? fs8.stat : fs8.lstat)(path15);
|
|
379706
380164
|
} catch {
|
|
379707
380165
|
}
|
|
379708
380166
|
}
|
|
@@ -379904,7 +380362,7 @@ var column;
|
|
|
379904
380362
|
var token;
|
|
379905
380363
|
var key;
|
|
379906
380364
|
var root;
|
|
379907
|
-
var parse22 = function
|
|
380365
|
+
var parse22 = function parse32(text, reviver) {
|
|
379908
380366
|
source = String(text);
|
|
379909
380367
|
parseState = "start";
|
|
379910
380368
|
stack = [];
|
|
@@ -381796,7 +382254,7 @@ function parse4(toml, { maxDepth = 1e3, integersAsBigInt } = {}) {
|
|
|
381796
382254
|
}
|
|
381797
382255
|
return res;
|
|
381798
382256
|
}
|
|
381799
|
-
async function
|
|
382257
|
+
async function readFile4(file) {
|
|
381800
382258
|
if (isUrlString(file)) {
|
|
381801
382259
|
file = new URL(file);
|
|
381802
382260
|
}
|
|
@@ -381809,7 +382267,7 @@ async function readFile3(file) {
|
|
|
381809
382267
|
throw new Error(`Unable to read '${file}': ${error.message}`);
|
|
381810
382268
|
}
|
|
381811
382269
|
}
|
|
381812
|
-
var read_file_default =
|
|
382270
|
+
var read_file_default = readFile4;
|
|
381813
382271
|
async function readJson(file) {
|
|
381814
382272
|
const content = await read_file_default(file);
|
|
381815
382273
|
try {
|
|
@@ -382400,7 +382858,7 @@ function getDataProtocolModuleFormat(parsed) {
|
|
|
382400
382858
|
) || [null, null, null];
|
|
382401
382859
|
return mimeToFormat(mime);
|
|
382402
382860
|
}
|
|
382403
|
-
function
|
|
382861
|
+
function extname2(url3) {
|
|
382404
382862
|
const pathname = url3.pathname;
|
|
382405
382863
|
let index = pathname.length;
|
|
382406
382864
|
while (index--) {
|
|
@@ -382415,7 +382873,7 @@ function extname(url3) {
|
|
|
382415
382873
|
return "";
|
|
382416
382874
|
}
|
|
382417
382875
|
function getFileProtocolModuleFormat(url3, _context, ignoreErrors) {
|
|
382418
|
-
const value3 =
|
|
382876
|
+
const value3 = extname2(url3);
|
|
382419
382877
|
if (value3 === ".js") {
|
|
382420
382878
|
const packageType = getPackageType(url3);
|
|
382421
382879
|
if (packageType !== "none") {
|
|
@@ -387779,21 +388237,21 @@ var formatString = (content) => Effect_exports.tryPromise({
|
|
|
387779
388237
|
catch: (e7) => new Error(e7 instanceof Error ? e7.message : String(e7))
|
|
387780
388238
|
});
|
|
387781
388239
|
var formatFile = (path15) => Effect_exports.gen(function* () {
|
|
387782
|
-
const ext =
|
|
388240
|
+
const ext = extname3(path15).toLowerCase();
|
|
387783
388241
|
if (!MARKDOWN_EXTENSIONS.has(ext)) {
|
|
387784
388242
|
return yield* Effect_exports.fail(
|
|
387785
388243
|
new Error(`gtd format: ${path15} is not a markdown file (expected .md or .markdown)`)
|
|
387786
388244
|
);
|
|
387787
388245
|
}
|
|
387788
|
-
const
|
|
387789
|
-
const exists4 = yield*
|
|
388246
|
+
const fs9 = yield* FileSystem_exports.FileSystem;
|
|
388247
|
+
const exists4 = yield* fs9.exists(path15);
|
|
387790
388248
|
if (!exists4) {
|
|
387791
388249
|
return yield* Effect_exports.fail(new Error(`gtd: skipped formatting ${path15}: not found`));
|
|
387792
388250
|
}
|
|
387793
|
-
const content = yield*
|
|
388251
|
+
const content = yield* fs9.readFileString(path15, "utf8");
|
|
387794
388252
|
const formatted = yield* formatString(content);
|
|
387795
388253
|
if (formatted !== content) {
|
|
387796
|
-
yield*
|
|
388254
|
+
yield* fs9.writeFileString(path15, formatted);
|
|
387797
388255
|
}
|
|
387798
388256
|
}).pipe(Effect_exports.mapError((e7) => e7 instanceof Error ? e7 : new Error(String(e7))));
|
|
387799
388257
|
|
|
@@ -387889,22 +388347,22 @@ var parsePorcelainPaths = (porcelain) => porcelain.split("\n").map((line3) => li
|
|
|
387889
388347
|
var isNumberedDir = (name) => /^\d+-/.test(name);
|
|
387890
388348
|
var isTaskFile = (name) => name.endsWith(".md");
|
|
387891
388349
|
var stripCode = (content) => content.replace(/^(`{3,}|~{3,})[^\n]*\n[\s\S]*?(?:\n\1[^\n]*|$(?![\s\S]))/gm, "").replace(/`[^`\n]+`/g, "");
|
|
387892
|
-
var getPackages = (
|
|
387893
|
-
const resolve5 = (p4) =>
|
|
387894
|
-
const gtdExists = yield*
|
|
388350
|
+
var getPackages = (fs9, root2) => Effect_exports.gen(function* () {
|
|
388351
|
+
const resolve5 = (p4) => join11(root2, p4);
|
|
388352
|
+
const gtdExists = yield* fs9.exists(resolve5(GTD_DIR));
|
|
387895
388353
|
if (!gtdExists) return [];
|
|
387896
|
-
const entries2 = yield*
|
|
388354
|
+
const entries2 = yield* fs9.readDirectory(resolve5(GTD_DIR));
|
|
387897
388355
|
const packageDirs = entries2.filter(isNumberedDir).sort();
|
|
387898
388356
|
const packages = [];
|
|
387899
388357
|
for (const dir of packageDirs) {
|
|
387900
388358
|
const packagePath = `${GTD_DIR}/${dir}`;
|
|
387901
|
-
const stat4 = yield*
|
|
388359
|
+
const stat4 = yield* fs9.stat(resolve5(packagePath));
|
|
387902
388360
|
if (stat4.type !== "Directory") continue;
|
|
387903
|
-
const files = yield*
|
|
388361
|
+
const files = yield* fs9.readDirectory(resolve5(packagePath));
|
|
387904
388362
|
const tasks = files.filter(isTaskFile).sort();
|
|
387905
388363
|
const taskContents = [];
|
|
387906
388364
|
for (const taskFile of tasks) {
|
|
387907
|
-
const content = yield*
|
|
388365
|
+
const content = yield* fs9.readFileString(resolve5(`${packagePath}/${taskFile}`));
|
|
387908
388366
|
taskContents.push({ name: taskFile, content });
|
|
387909
388367
|
}
|
|
387910
388368
|
packages.push({ name: dir, tasks, taskContents });
|
|
@@ -387992,10 +388450,10 @@ var gatherEvents = () => (
|
|
|
387992
388450
|
// fallow-ignore-next-line complexity
|
|
387993
388451
|
Effect_exports.gen(function* () {
|
|
387994
388452
|
const git = yield* GitService;
|
|
387995
|
-
const
|
|
388453
|
+
const fs9 = yield* FileSystem_exports.FileSystem;
|
|
387996
388454
|
const config2 = yield* ConfigService;
|
|
387997
388455
|
const { root: root2 } = yield* Cwd;
|
|
387998
|
-
const resolve5 = (p4) =>
|
|
388456
|
+
const resolve5 = (p4) => join11(root2, p4);
|
|
387999
388457
|
const defaultBranch = yield* git.resolveDefaultBranch();
|
|
388000
388458
|
const headHash = yield* git.resolveRef("HEAD").pipe(Effect_exports.catchAll(() => Effect_exports.succeed("")));
|
|
388001
388459
|
const mergeBase = Option_exports.isSome(defaultBranch) ? yield* git.mergeBase(defaultBranch.value, "HEAD") : Option_exports.none();
|
|
@@ -388021,19 +388479,19 @@ var gatherEvents = () => (
|
|
|
388021
388479
|
const lastCommitSubject = hasCommits ? yield* git.lastCommitSubject() : "";
|
|
388022
388480
|
const gtdModified = entries2.some((e7) => isGtdPath(e7.path));
|
|
388023
388481
|
const codeDirty = entries2.some((e7) => !isSteeringFile(e7.path) && !isGtdPath(e7.path));
|
|
388024
|
-
const todoExists = yield*
|
|
388025
|
-
const gtdDirExists = yield*
|
|
388026
|
-
const reviewPresent = yield*
|
|
388027
|
-
const feedbackPresent = yield*
|
|
388028
|
-
const errorsPresent = yield*
|
|
388029
|
-
const todoContent = todoExists ? yield*
|
|
388482
|
+
const todoExists = yield* fs9.exists(resolve5(TODO_FILE));
|
|
388483
|
+
const gtdDirExists = yield* fs9.exists(resolve5(GTD_DIR));
|
|
388484
|
+
const reviewPresent = yield* fs9.exists(resolve5(REVIEW_FILE));
|
|
388485
|
+
const feedbackPresent = yield* fs9.exists(resolve5(FEEDBACK_FILE));
|
|
388486
|
+
const errorsPresent = yield* fs9.exists(resolve5(ERRORS_FILE));
|
|
388487
|
+
const todoContent = todoExists ? yield* fs9.readFileString(resolve5(TODO_FILE)) : "";
|
|
388030
388488
|
const todoMarkerPresent = todoExists && stripCode(todoContent).includes(UNANSWERED_MARKER);
|
|
388031
388489
|
const isUncommitted = (path15) => {
|
|
388032
388490
|
const entry = entries2.find((e7) => e7.path === path15);
|
|
388033
388491
|
return entry !== void 0 && isUncommittedStatus(entry.status);
|
|
388034
388492
|
};
|
|
388035
388493
|
const feedbackCommitted = feedbackPresent && !isUncommitted(FEEDBACK_FILE);
|
|
388036
|
-
const feedbackContent = feedbackPresent ? yield*
|
|
388494
|
+
const feedbackContent = feedbackPresent ? yield* fs9.readFileString(resolve5(FEEDBACK_FILE)) : "";
|
|
388037
388495
|
const feedbackEmpty = feedbackPresent && !/\S/.test(feedbackContent);
|
|
388038
388496
|
const reviewTrackedAtHead = reviewPresent && !isUncommitted(REVIEW_FILE);
|
|
388039
388497
|
const reviewCommitted = reviewTrackedAtHead && workingTreeClean;
|
|
@@ -388042,7 +388500,7 @@ var gatherEvents = () => (
|
|
|
388042
388500
|
const pendingErrorsDeletion = entries2.some(
|
|
388043
388501
|
(e7) => e7.path === ERRORS_FILE && e7.status.includes("D")
|
|
388044
388502
|
);
|
|
388045
|
-
const packages = yield* getPackages(
|
|
388503
|
+
const packages = yield* getPackages(fs9, root2);
|
|
388046
388504
|
const diff8 = hasCommits && entries2.length > 0 ? yield* git.diffHead() : "";
|
|
388047
388505
|
const onlyReviewDirty = entries2.length > 0 && entries2.every((e7) => e7.path === REVIEW_FILE);
|
|
388048
388506
|
const reviewCheckboxOnly = onlyReviewDirty && isCheckboxOnlyDiff(
|
|
@@ -388141,8 +388599,8 @@ var gatherEvents = () => (
|
|
|
388141
388599
|
}
|
|
388142
388600
|
}
|
|
388143
388601
|
}
|
|
388144
|
-
const squashMsgPresent = yield*
|
|
388145
|
-
const squashMsgContent = squashMsgPresent ? yield*
|
|
388602
|
+
const squashMsgPresent = yield* fs9.exists(resolve5(SQUASH_MSG_FILE));
|
|
388603
|
+
const squashMsgContent = squashMsgPresent ? yield* fs9.readFileString(resolve5(SQUASH_MSG_FILE)) : "";
|
|
388146
388604
|
const payload = {
|
|
388147
388605
|
todoExists,
|
|
388148
388606
|
todoCommitted,
|
|
@@ -388196,9 +388654,9 @@ var perform = (action) => (
|
|
|
388196
388654
|
// fallow-ignore-next-line complexity
|
|
388197
388655
|
Effect_exports.gen(function* () {
|
|
388198
388656
|
const git = yield* GitService;
|
|
388199
|
-
const
|
|
388657
|
+
const fs9 = yield* FileSystem_exports.FileSystem;
|
|
388200
388658
|
const { root: root2 } = yield* Cwd;
|
|
388201
|
-
const resolve5 = (p4) =>
|
|
388659
|
+
const resolve5 = (p4) => join11(root2, p4);
|
|
388202
388660
|
switch (action.kind) {
|
|
388203
388661
|
// Transport: mixed-reset the hand-made `gtd: transport` HEAD, keeping the
|
|
388204
388662
|
// work in the tree, then re-derive. (No producer command — consume only.)
|
|
@@ -388211,7 +388669,7 @@ var perform = (action) => (
|
|
|
388211
388669
|
// clean baseline (inverse staged), and seed TODO.md from that diff.
|
|
388212
388670
|
case "seedNewFeature": {
|
|
388213
388671
|
const captured = yield* captureAndRevert(git, NEW_TASK_SUBJECT, Effect_exports.void);
|
|
388214
|
-
yield*
|
|
388672
|
+
yield* fs9.writeFileString(resolve5(TODO_FILE), seedTodo(captured));
|
|
388215
388673
|
return;
|
|
388216
388674
|
}
|
|
388217
388675
|
// Accept Review: capture the human's pending changeset durably as
|
|
@@ -388222,8 +388680,8 @@ var perform = (action) => (
|
|
|
388222
388680
|
// any partial revert/seed state with a hard reset first.
|
|
388223
388681
|
case "seedAcceptReview": {
|
|
388224
388682
|
const captured = yield* captureAndRevert(git, REVIEW_FEEDBACK_SUBJECT, git.resetHard());
|
|
388225
|
-
yield*
|
|
388226
|
-
yield*
|
|
388683
|
+
yield* fs9.remove(resolve5(REVIEW_FILE)).pipe(Effect_exports.catchAll(() => Effect_exports.void));
|
|
388684
|
+
yield* fs9.writeFileString(resolve5(TODO_FILE), seedTodo(captured));
|
|
388227
388685
|
return;
|
|
388228
388686
|
}
|
|
388229
388687
|
// Grilling capture: the plan is already committed and the user sketched
|
|
@@ -388239,13 +388697,13 @@ var perform = (action) => (
|
|
|
388239
388697
|
const pendingCodeFiles = entries2.filter(
|
|
388240
388698
|
(e7) => isUncommittedStatus(e7.status) && !isSteeringFile(e7.path) && !isGtdPath(e7.path)
|
|
388241
388699
|
);
|
|
388242
|
-
const todoNow = yield*
|
|
388700
|
+
const todoNow = yield* fs9.readFileString(resolve5(TODO_FILE));
|
|
388243
388701
|
const captured = yield* git.diffHead(WORKFLOW_FILE_EXCLUDES);
|
|
388244
388702
|
yield* git.resetHard();
|
|
388245
388703
|
for (const entry of pendingCodeFiles) {
|
|
388246
|
-
yield*
|
|
388704
|
+
yield* fs9.remove(resolve5(entry.path), { recursive: true }).pipe(Effect_exports.catchAll(() => Effect_exports.void));
|
|
388247
388705
|
}
|
|
388248
|
-
yield*
|
|
388706
|
+
yield* fs9.writeFileString(resolve5(TODO_FILE), appendCapturedInput(todoNow, captured));
|
|
388249
388707
|
yield* git.commitAllWithPrefix(GRILLING_SUBJECT);
|
|
388250
388708
|
return;
|
|
388251
388709
|
}
|
|
@@ -388268,7 +388726,7 @@ var perform = (action) => (
|
|
|
388268
388726
|
}
|
|
388269
388727
|
const target = action.capReached ? ERRORS_FILE : FEEDBACK_FILE;
|
|
388270
388728
|
const body = /\S/.test(result.output) ? result.output : EMPTY_FAILURE_SENTINEL;
|
|
388271
|
-
yield*
|
|
388729
|
+
yield* fs9.writeFileString(resolve5(target), body);
|
|
388272
388730
|
yield* git.commitAllWithPrefix(ERRORS_SUBJECT);
|
|
388273
388731
|
return;
|
|
388274
388732
|
}
|
|
@@ -388279,10 +388737,10 @@ var perform = (action) => (
|
|
|
388279
388737
|
// of returning to Testing (STATES.md § Fixing).
|
|
388280
388738
|
case "commitPending": {
|
|
388281
388739
|
if (action.removeFeedback === true) {
|
|
388282
|
-
yield*
|
|
388740
|
+
yield* fs9.remove(resolve5(FEEDBACK_FILE)).pipe(Effect_exports.catchAll(() => Effect_exports.void));
|
|
388283
388741
|
}
|
|
388284
388742
|
if (action.removeTodo === true) {
|
|
388285
|
-
yield*
|
|
388743
|
+
yield* fs9.remove(resolve5(TODO_FILE)).pipe(Effect_exports.catchAll(() => Effect_exports.void));
|
|
388286
388744
|
}
|
|
388287
388745
|
if (action.removeTodo !== true) {
|
|
388288
388746
|
yield* formatFile(resolve5(TODO_FILE)).pipe(Effect_exports.catchAll(() => Effect_exports.void));
|
|
@@ -388294,8 +388752,8 @@ var perform = (action) => (
|
|
|
388294
388752
|
// the first (finished) package dir (+ the now-empty `.gtd/`), commit
|
|
388295
388753
|
// `gtd: package done`. Tolerates an absent FEEDBACK.md (force-approve).
|
|
388296
388754
|
case "closePackage": {
|
|
388297
|
-
yield*
|
|
388298
|
-
const packages = yield* getPackages(
|
|
388755
|
+
yield* fs9.remove(resolve5(FEEDBACK_FILE)).pipe(Effect_exports.catchAll(() => Effect_exports.void));
|
|
388756
|
+
const packages = yield* getPackages(fs9, root2);
|
|
388299
388757
|
const first2 = packages[0];
|
|
388300
388758
|
if (first2 !== void 0) {
|
|
388301
388759
|
yield* git.removePackageDir(`${GTD_DIR}/${first2.name}`);
|
|
@@ -388311,14 +388769,14 @@ var perform = (action) => (
|
|
|
388311
388769
|
}
|
|
388312
388770
|
// Done: rm REVIEW.md, commit `gtd: done`.
|
|
388313
388771
|
case "done": {
|
|
388314
|
-
yield*
|
|
388772
|
+
yield* fs9.remove(resolve5(REVIEW_FILE)).pipe(Effect_exports.catchAll(() => Effect_exports.void));
|
|
388315
388773
|
yield* git.commitAllWithPrefix(DONE_SUBJECT);
|
|
388316
388774
|
return;
|
|
388317
388775
|
}
|
|
388318
388776
|
// Squash: rm SQUASH_MSG.md, soft-reset to squashBase, commit everything
|
|
388319
388777
|
// under the provided commit message.
|
|
388320
388778
|
case "squashCommit": {
|
|
388321
|
-
yield*
|
|
388779
|
+
yield* fs9.remove(resolve5(SQUASH_MSG_FILE)).pipe(Effect_exports.catchAll(() => Effect_exports.void));
|
|
388322
388780
|
yield* git.softResetTo(action.squashBase);
|
|
388323
388781
|
yield* git.commitAllWithPrefix(action.commitMessage);
|
|
388324
388782
|
return;
|
|
@@ -388659,10 +389117,10 @@ function makeProgram(opts = {}) {
|
|
|
388659
389117
|
}
|
|
388660
389118
|
const config2 = yield* ConfigService;
|
|
388661
389119
|
const git = yield* GitService;
|
|
388662
|
-
const
|
|
389120
|
+
const fs9 = yield* FileSystem_exports.FileSystem;
|
|
388663
389121
|
const topLevel = yield* git.topLevel();
|
|
388664
|
-
const topReal = yield*
|
|
388665
|
-
const cwdReal = yield*
|
|
389122
|
+
const topReal = yield* fs9.realPath(topLevel);
|
|
389123
|
+
const cwdReal = yield* fs9.realPath(process.cwd());
|
|
388666
389124
|
if (topReal !== cwdReal) {
|
|
388667
389125
|
return yield* Effect_exports.fail(
|
|
388668
389126
|
new Error(
|