snow-ai 0.8.11 → 0.8.12
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/bundle/cli.mjs +1042 -822
- package/bundle/package.json +1 -1
- package/package.json +1 -1
package/bundle/cli.mjs
CHANGED
|
@@ -54714,14 +54714,14 @@ var require_tls_helpers = __commonJS({
|
|
|
54714
54714
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
54715
54715
|
exports2.CIPHER_SUITES = void 0;
|
|
54716
54716
|
exports2.getDefaultRootsData = getDefaultRootsData;
|
|
54717
|
-
var
|
|
54717
|
+
var fs62 = __require("fs");
|
|
54718
54718
|
exports2.CIPHER_SUITES = process.env.GRPC_SSL_CIPHER_SUITES;
|
|
54719
54719
|
var DEFAULT_ROOTS_FILE_PATH = process.env.GRPC_DEFAULT_SSL_ROOTS_FILE_PATH;
|
|
54720
54720
|
var defaultRootsData = null;
|
|
54721
54721
|
function getDefaultRootsData() {
|
|
54722
54722
|
if (DEFAULT_ROOTS_FILE_PATH) {
|
|
54723
54723
|
if (defaultRootsData === null) {
|
|
54724
|
-
defaultRootsData =
|
|
54724
|
+
defaultRootsData = fs62.readFileSync(DEFAULT_ROOTS_FILE_PATH);
|
|
54725
54725
|
}
|
|
54726
54726
|
return defaultRootsData;
|
|
54727
54727
|
}
|
|
@@ -61251,17 +61251,17 @@ var require_codegen = __commonJS({
|
|
|
61251
61251
|
var require_fs = __commonJS({
|
|
61252
61252
|
"node_modules/@protobufjs/fetch/util/fs.js"(exports2, module2) {
|
|
61253
61253
|
"use strict";
|
|
61254
|
-
var
|
|
61254
|
+
var fs62 = null;
|
|
61255
61255
|
try {
|
|
61256
|
-
|
|
61256
|
+
fs62 = __require(
|
|
61257
61257
|
/* webpackIgnore: true */
|
|
61258
61258
|
"fs"
|
|
61259
61259
|
);
|
|
61260
|
-
if (!
|
|
61261
|
-
|
|
61260
|
+
if (!fs62 || !fs62.readFile || !fs62.readFileSync)
|
|
61261
|
+
fs62 = null;
|
|
61262
61262
|
} catch (e) {
|
|
61263
61263
|
}
|
|
61264
|
-
module2.exports =
|
|
61264
|
+
module2.exports = fs62;
|
|
61265
61265
|
}
|
|
61266
61266
|
});
|
|
61267
61267
|
|
|
@@ -61271,7 +61271,7 @@ var require_fetch = __commonJS({
|
|
|
61271
61271
|
"use strict";
|
|
61272
61272
|
module2.exports = fetch2;
|
|
61273
61273
|
var asPromise = require_aspromise();
|
|
61274
|
-
var
|
|
61274
|
+
var fs62 = require_fs();
|
|
61275
61275
|
function fetch2(filename, options3, callback) {
|
|
61276
61276
|
if (typeof options3 === "function") {
|
|
61277
61277
|
callback = options3;
|
|
@@ -61280,8 +61280,8 @@ var require_fetch = __commonJS({
|
|
|
61280
61280
|
options3 = {};
|
|
61281
61281
|
if (!callback)
|
|
61282
61282
|
return asPromise(fetch2, this, filename, options3);
|
|
61283
|
-
if (!options3.xhr &&
|
|
61284
|
-
return
|
|
61283
|
+
if (!options3.xhr && fs62 && fs62.readFile)
|
|
61284
|
+
return fs62.readFile(filename, function fetchReadFileCallback(err, contents) {
|
|
61285
61285
|
return err && typeof XMLHttpRequest !== "undefined" ? fetch2.xhr(filename, options3, callback) : err ? callback(err) : callback(null, options3.binary ? contents : contents.toString("utf8"));
|
|
61286
61286
|
});
|
|
61287
61287
|
return fetch2.xhr(filename, options3, callback);
|
|
@@ -61384,17 +61384,17 @@ var require_patterns = __commonJS({
|
|
|
61384
61384
|
var require_fs2 = __commonJS({
|
|
61385
61385
|
"node_modules/protobufjs/src/util/fs.js"(exports2, module2) {
|
|
61386
61386
|
"use strict";
|
|
61387
|
-
var
|
|
61387
|
+
var fs62 = null;
|
|
61388
61388
|
try {
|
|
61389
|
-
|
|
61389
|
+
fs62 = __require(
|
|
61390
61390
|
/* webpackIgnore: true */
|
|
61391
61391
|
"fs"
|
|
61392
61392
|
);
|
|
61393
|
-
if (!
|
|
61394
|
-
|
|
61393
|
+
if (!fs62 || !fs62.readFile || !fs62.readFileSync)
|
|
61394
|
+
fs62 = null;
|
|
61395
61395
|
} catch (e) {
|
|
61396
61396
|
}
|
|
61397
|
-
module2.exports =
|
|
61397
|
+
module2.exports = fs62;
|
|
61398
61398
|
}
|
|
61399
61399
|
});
|
|
61400
61400
|
|
|
@@ -67685,7 +67685,7 @@ var require_util2 = __commonJS({
|
|
|
67685
67685
|
"use strict";
|
|
67686
67686
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
67687
67687
|
exports2.addCommonProtos = exports2.loadProtosWithOptionsSync = exports2.loadProtosWithOptions = void 0;
|
|
67688
|
-
var
|
|
67688
|
+
var fs62 = __require("fs");
|
|
67689
67689
|
var path68 = __require("path");
|
|
67690
67690
|
var Protobuf = require_protobufjs();
|
|
67691
67691
|
function addIncludePathResolver(root2, includePaths) {
|
|
@@ -67697,7 +67697,7 @@ var require_util2 = __commonJS({
|
|
|
67697
67697
|
for (const directory of includePaths) {
|
|
67698
67698
|
const fullPath = path68.join(directory, target);
|
|
67699
67699
|
try {
|
|
67700
|
-
|
|
67700
|
+
fs62.accessSync(fullPath, fs62.constants.R_OK);
|
|
67701
67701
|
return fullPath;
|
|
67702
67702
|
} catch (err) {
|
|
67703
67703
|
continue;
|
|
@@ -76561,7 +76561,7 @@ var require_certificate_provider = __commonJS({
|
|
|
76561
76561
|
"use strict";
|
|
76562
76562
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
76563
76563
|
exports2.FileWatcherCertificateProvider = void 0;
|
|
76564
|
-
var
|
|
76564
|
+
var fs62 = __require("fs");
|
|
76565
76565
|
var logging = require_logging();
|
|
76566
76566
|
var constants_1 = require_constants4();
|
|
76567
76567
|
var util_1 = __require("util");
|
|
@@ -76569,7 +76569,7 @@ var require_certificate_provider = __commonJS({
|
|
|
76569
76569
|
function trace3(text2) {
|
|
76570
76570
|
logging.trace(constants_1.LogVerbosity.DEBUG, TRACER_NAME2, text2);
|
|
76571
76571
|
}
|
|
76572
|
-
var readFilePromise = (0, util_1.promisify)(
|
|
76572
|
+
var readFilePromise = (0, util_1.promisify)(fs62.readFile);
|
|
76573
76573
|
var FileWatcherCertificateProvider = class {
|
|
76574
76574
|
constructor(config3) {
|
|
76575
76575
|
this.config = config3;
|
|
@@ -82942,7 +82942,7 @@ var require_otlp_grpc_env_configuration = __commonJS({
|
|
|
82942
82942
|
var core_1 = require_src4();
|
|
82943
82943
|
var grpc_exporter_transport_1 = require_grpc_exporter_transport();
|
|
82944
82944
|
var node_http_1 = (init_index_node_http(), __toCommonJS(index_node_http_exports));
|
|
82945
|
-
var
|
|
82945
|
+
var fs62 = __require("fs");
|
|
82946
82946
|
var path68 = __require("path");
|
|
82947
82947
|
var api_1 = (init_esm(), __toCommonJS(esm_exports));
|
|
82948
82948
|
function fallbackIfNullishOrBlank(signalSpecific, nonSignalSpecific) {
|
|
@@ -82996,7 +82996,7 @@ var require_otlp_grpc_env_configuration = __commonJS({
|
|
|
82996
82996
|
const filePath = fallbackIfNullishOrBlank(signalSpecificPath, nonSignalSpecificPath);
|
|
82997
82997
|
if (filePath != null) {
|
|
82998
82998
|
try {
|
|
82999
|
-
return
|
|
82999
|
+
return fs62.readFileSync(path68.resolve(process.cwd(), filePath));
|
|
83000
83000
|
} catch {
|
|
83001
83001
|
api_1.diag.warn(warningMessage);
|
|
83002
83002
|
return void 0;
|
|
@@ -97200,7 +97200,7 @@ var require_utils10 = __commonJS({
|
|
|
97200
97200
|
var exporter_metrics_otlp_http_1 = require_src12();
|
|
97201
97201
|
var exporter_metrics_otlp_proto_1 = require_src28();
|
|
97202
97202
|
var sdk_logs_1 = require_src17();
|
|
97203
|
-
var
|
|
97203
|
+
var fs62 = __require("fs");
|
|
97204
97204
|
var RESOURCE_DETECTOR_ENVIRONMENT = "env";
|
|
97205
97205
|
var RESOURCE_DETECTOR_HOST = "host";
|
|
97206
97206
|
var RESOURCE_DETECTOR_OS = "os";
|
|
@@ -97630,21 +97630,21 @@ var require_utils10 = __commonJS({
|
|
|
97630
97630
|
const httpsAgentOptions = {};
|
|
97631
97631
|
if (tls.ca_file) {
|
|
97632
97632
|
try {
|
|
97633
|
-
httpsAgentOptions.ca =
|
|
97633
|
+
httpsAgentOptions.ca = fs62.readFileSync(tls.ca_file);
|
|
97634
97634
|
} catch (e) {
|
|
97635
97635
|
api_1.diag.warn(`Failed to read TLS CA file at ${tls.ca_file}: ${e}`);
|
|
97636
97636
|
}
|
|
97637
97637
|
}
|
|
97638
97638
|
if (tls.cert_file) {
|
|
97639
97639
|
try {
|
|
97640
|
-
httpsAgentOptions.cert =
|
|
97640
|
+
httpsAgentOptions.cert = fs62.readFileSync(tls.cert_file);
|
|
97641
97641
|
} catch (e) {
|
|
97642
97642
|
api_1.diag.warn(`Failed to read TLS cert file at ${tls.cert_file}: ${e}`);
|
|
97643
97643
|
}
|
|
97644
97644
|
}
|
|
97645
97645
|
if (tls.key_file) {
|
|
97646
97646
|
try {
|
|
97647
|
-
httpsAgentOptions.key =
|
|
97647
|
+
httpsAgentOptions.key = fs62.readFileSync(tls.key_file);
|
|
97648
97648
|
} catch (e) {
|
|
97649
97649
|
api_1.diag.warn(`Failed to read TLS key file at ${tls.key_file}: ${e}`);
|
|
97650
97650
|
}
|
|
@@ -105768,14 +105768,14 @@ var require_parser = __commonJS({
|
|
|
105768
105768
|
case "scalar":
|
|
105769
105769
|
case "single-quoted-scalar":
|
|
105770
105770
|
case "double-quoted-scalar": {
|
|
105771
|
-
const
|
|
105771
|
+
const fs62 = this.flowScalar(this.type);
|
|
105772
105772
|
if (atNextItem || it.value) {
|
|
105773
|
-
map4.items.push({ start, key:
|
|
105773
|
+
map4.items.push({ start, key: fs62, sep: [] });
|
|
105774
105774
|
this.onKeyLine = true;
|
|
105775
105775
|
} else if (it.sep) {
|
|
105776
|
-
this.stack.push(
|
|
105776
|
+
this.stack.push(fs62);
|
|
105777
105777
|
} else {
|
|
105778
|
-
Object.assign(it, { key:
|
|
105778
|
+
Object.assign(it, { key: fs62, sep: [] });
|
|
105779
105779
|
this.onKeyLine = true;
|
|
105780
105780
|
}
|
|
105781
105781
|
return;
|
|
@@ -105904,13 +105904,13 @@ var require_parser = __commonJS({
|
|
|
105904
105904
|
case "scalar":
|
|
105905
105905
|
case "single-quoted-scalar":
|
|
105906
105906
|
case "double-quoted-scalar": {
|
|
105907
|
-
const
|
|
105907
|
+
const fs62 = this.flowScalar(this.type);
|
|
105908
105908
|
if (!it || it.value)
|
|
105909
|
-
fc.items.push({ start: [], key:
|
|
105909
|
+
fc.items.push({ start: [], key: fs62, sep: [] });
|
|
105910
105910
|
else if (it.sep)
|
|
105911
|
-
this.stack.push(
|
|
105911
|
+
this.stack.push(fs62);
|
|
105912
105912
|
else
|
|
105913
|
-
Object.assign(it, { key:
|
|
105913
|
+
Object.assign(it, { key: fs62, sep: [] });
|
|
105914
105914
|
return;
|
|
105915
105915
|
}
|
|
105916
105916
|
case "flow-map-end":
|
|
@@ -114613,7 +114613,7 @@ var require_FileConfigFactory = __commonJS({
|
|
|
114613
114613
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
114614
114614
|
exports2.parseConfigFile = exports2.FileConfigFactory = void 0;
|
|
114615
114615
|
var core_1 = require_src4();
|
|
114616
|
-
var
|
|
114616
|
+
var fs62 = __require("fs");
|
|
114617
114617
|
var yaml2 = require_dist();
|
|
114618
114618
|
var utils_1 = require_utils11();
|
|
114619
114619
|
var validateConfig = require_validator();
|
|
@@ -114630,7 +114630,7 @@ var require_FileConfigFactory = __commonJS({
|
|
|
114630
114630
|
function parseConfigFile() {
|
|
114631
114631
|
const supportedFileVersionPattern = /^1\.0$/;
|
|
114632
114632
|
const configFile = (0, core_1.getStringFromEnv)("OTEL_CONFIG_FILE") || "";
|
|
114633
|
-
const file2 =
|
|
114633
|
+
const file2 = fs62.readFileSync(configFile, "utf8");
|
|
114634
114634
|
const rawParsed = yaml2.parse(file2);
|
|
114635
114635
|
const processed = substituteEnvVars(rawParsed);
|
|
114636
114636
|
const fileFormat = processed == null ? void 0 : processed.file_format;
|
|
@@ -128363,12 +128363,12 @@ var require_dist2 = __commonJS({
|
|
|
128363
128363
|
throw new Error(`Unknown format "${name}"`);
|
|
128364
128364
|
return f;
|
|
128365
128365
|
};
|
|
128366
|
-
function addFormats(ajv, list3,
|
|
128366
|
+
function addFormats(ajv, list3, fs62, exportName) {
|
|
128367
128367
|
var _a20;
|
|
128368
128368
|
var _b14;
|
|
128369
128369
|
(_a20 = (_b14 = ajv.opts.code).formats) !== null && _a20 !== void 0 ? _a20 : _b14.formats = (0, codegen_1._)`require("ajv-formats/dist/formats").${exportName}`;
|
|
128370
128370
|
for (const f of list3)
|
|
128371
|
-
ajv.addFormat(f,
|
|
128371
|
+
ajv.addFormat(f, fs62[f]);
|
|
128372
128372
|
}
|
|
128373
128373
|
module2.exports = exports2 = formatsPlugin;
|
|
128374
128374
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -128764,7 +128764,7 @@ var require_windows = __commonJS({
|
|
|
128764
128764
|
"node_modules/isexe/windows.js"(exports2, module2) {
|
|
128765
128765
|
module2.exports = isexe;
|
|
128766
128766
|
isexe.sync = sync;
|
|
128767
|
-
var
|
|
128767
|
+
var fs62 = __require("fs");
|
|
128768
128768
|
function checkPathExt(path68, options3) {
|
|
128769
128769
|
var pathext = options3.pathExt !== void 0 ? options3.pathExt : process.env.PATHEXT;
|
|
128770
128770
|
if (!pathext) {
|
|
@@ -128789,12 +128789,12 @@ var require_windows = __commonJS({
|
|
|
128789
128789
|
return checkPathExt(path68, options3);
|
|
128790
128790
|
}
|
|
128791
128791
|
function isexe(path68, options3, cb2) {
|
|
128792
|
-
|
|
128792
|
+
fs62.stat(path68, function(er, stat4) {
|
|
128793
128793
|
cb2(er, er ? false : checkStat(stat4, path68, options3));
|
|
128794
128794
|
});
|
|
128795
128795
|
}
|
|
128796
128796
|
function sync(path68, options3) {
|
|
128797
|
-
return checkStat(
|
|
128797
|
+
return checkStat(fs62.statSync(path68), path68, options3);
|
|
128798
128798
|
}
|
|
128799
128799
|
}
|
|
128800
128800
|
});
|
|
@@ -128804,14 +128804,14 @@ var require_mode = __commonJS({
|
|
|
128804
128804
|
"node_modules/isexe/mode.js"(exports2, module2) {
|
|
128805
128805
|
module2.exports = isexe;
|
|
128806
128806
|
isexe.sync = sync;
|
|
128807
|
-
var
|
|
128807
|
+
var fs62 = __require("fs");
|
|
128808
128808
|
function isexe(path68, options3, cb2) {
|
|
128809
|
-
|
|
128809
|
+
fs62.stat(path68, function(er, stat4) {
|
|
128810
128810
|
cb2(er, er ? false : checkStat(stat4, options3));
|
|
128811
128811
|
});
|
|
128812
128812
|
}
|
|
128813
128813
|
function sync(path68, options3) {
|
|
128814
|
-
return checkStat(
|
|
128814
|
+
return checkStat(fs62.statSync(path68), options3);
|
|
128815
128815
|
}
|
|
128816
128816
|
function checkStat(stat4, options3) {
|
|
128817
128817
|
return stat4.isFile() && checkMode(stat4, options3);
|
|
@@ -128835,7 +128835,7 @@ var require_mode = __commonJS({
|
|
|
128835
128835
|
// node_modules/isexe/index.js
|
|
128836
128836
|
var require_isexe = __commonJS({
|
|
128837
128837
|
"node_modules/isexe/index.js"(exports2, module2) {
|
|
128838
|
-
var
|
|
128838
|
+
var fs62 = __require("fs");
|
|
128839
128839
|
var core;
|
|
128840
128840
|
if (process.platform === "win32" || global.TESTING_WINDOWS) {
|
|
128841
128841
|
core = require_windows();
|
|
@@ -129099,16 +129099,16 @@ var require_shebang_command = __commonJS({
|
|
|
129099
129099
|
var require_readShebang = __commonJS({
|
|
129100
129100
|
"node_modules/cross-spawn/lib/util/readShebang.js"(exports2, module2) {
|
|
129101
129101
|
"use strict";
|
|
129102
|
-
var
|
|
129102
|
+
var fs62 = __require("fs");
|
|
129103
129103
|
var shebangCommand = require_shebang_command();
|
|
129104
129104
|
function readShebang(command) {
|
|
129105
129105
|
const size2 = 150;
|
|
129106
129106
|
const buffer = Buffer.alloc(size2);
|
|
129107
129107
|
let fd;
|
|
129108
129108
|
try {
|
|
129109
|
-
fd =
|
|
129110
|
-
|
|
129111
|
-
|
|
129109
|
+
fd = fs62.openSync(command, "r");
|
|
129110
|
+
fs62.readSync(fd, buffer, 0, size2, 0);
|
|
129111
|
+
fs62.closeSync(fd);
|
|
129112
129112
|
} catch (e) {
|
|
129113
129113
|
}
|
|
129114
129114
|
return shebangCommand(buffer.toString());
|
|
@@ -161848,54 +161848,54 @@ var require_polyfills = __commonJS({
|
|
|
161848
161848
|
}
|
|
161849
161849
|
var chdir;
|
|
161850
161850
|
module2.exports = patch;
|
|
161851
|
-
function patch(
|
|
161851
|
+
function patch(fs62) {
|
|
161852
161852
|
if (constants.hasOwnProperty("O_SYMLINK") && process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)) {
|
|
161853
|
-
patchLchmod(
|
|
161854
|
-
}
|
|
161855
|
-
if (!
|
|
161856
|
-
patchLutimes(
|
|
161857
|
-
}
|
|
161858
|
-
|
|
161859
|
-
|
|
161860
|
-
|
|
161861
|
-
|
|
161862
|
-
|
|
161863
|
-
|
|
161864
|
-
|
|
161865
|
-
|
|
161866
|
-
|
|
161867
|
-
|
|
161868
|
-
|
|
161869
|
-
|
|
161870
|
-
|
|
161871
|
-
|
|
161872
|
-
|
|
161873
|
-
|
|
161874
|
-
|
|
161875
|
-
|
|
161876
|
-
if (
|
|
161877
|
-
|
|
161853
|
+
patchLchmod(fs62);
|
|
161854
|
+
}
|
|
161855
|
+
if (!fs62.lutimes) {
|
|
161856
|
+
patchLutimes(fs62);
|
|
161857
|
+
}
|
|
161858
|
+
fs62.chown = chownFix(fs62.chown);
|
|
161859
|
+
fs62.fchown = chownFix(fs62.fchown);
|
|
161860
|
+
fs62.lchown = chownFix(fs62.lchown);
|
|
161861
|
+
fs62.chmod = chmodFix(fs62.chmod);
|
|
161862
|
+
fs62.fchmod = chmodFix(fs62.fchmod);
|
|
161863
|
+
fs62.lchmod = chmodFix(fs62.lchmod);
|
|
161864
|
+
fs62.chownSync = chownFixSync(fs62.chownSync);
|
|
161865
|
+
fs62.fchownSync = chownFixSync(fs62.fchownSync);
|
|
161866
|
+
fs62.lchownSync = chownFixSync(fs62.lchownSync);
|
|
161867
|
+
fs62.chmodSync = chmodFixSync(fs62.chmodSync);
|
|
161868
|
+
fs62.fchmodSync = chmodFixSync(fs62.fchmodSync);
|
|
161869
|
+
fs62.lchmodSync = chmodFixSync(fs62.lchmodSync);
|
|
161870
|
+
fs62.stat = statFix(fs62.stat);
|
|
161871
|
+
fs62.fstat = statFix(fs62.fstat);
|
|
161872
|
+
fs62.lstat = statFix(fs62.lstat);
|
|
161873
|
+
fs62.statSync = statFixSync(fs62.statSync);
|
|
161874
|
+
fs62.fstatSync = statFixSync(fs62.fstatSync);
|
|
161875
|
+
fs62.lstatSync = statFixSync(fs62.lstatSync);
|
|
161876
|
+
if (fs62.chmod && !fs62.lchmod) {
|
|
161877
|
+
fs62.lchmod = function(path68, mode, cb2) {
|
|
161878
161878
|
if (cb2) process.nextTick(cb2);
|
|
161879
161879
|
};
|
|
161880
|
-
|
|
161880
|
+
fs62.lchmodSync = function() {
|
|
161881
161881
|
};
|
|
161882
161882
|
}
|
|
161883
|
-
if (
|
|
161884
|
-
|
|
161883
|
+
if (fs62.chown && !fs62.lchown) {
|
|
161884
|
+
fs62.lchown = function(path68, uid, gid, cb2) {
|
|
161885
161885
|
if (cb2) process.nextTick(cb2);
|
|
161886
161886
|
};
|
|
161887
|
-
|
|
161887
|
+
fs62.lchownSync = function() {
|
|
161888
161888
|
};
|
|
161889
161889
|
}
|
|
161890
161890
|
if (platform6 === "win32") {
|
|
161891
|
-
|
|
161891
|
+
fs62.rename = typeof fs62.rename !== "function" ? fs62.rename : (function(fs$rename) {
|
|
161892
161892
|
function rename2(from2, to, cb2) {
|
|
161893
161893
|
var start = Date.now();
|
|
161894
161894
|
var backoff = 0;
|
|
161895
161895
|
fs$rename(from2, to, function CB(er) {
|
|
161896
161896
|
if (er && (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY") && Date.now() - start < 6e4) {
|
|
161897
161897
|
setTimeout(function() {
|
|
161898
|
-
|
|
161898
|
+
fs62.stat(to, function(stater, st) {
|
|
161899
161899
|
if (stater && stater.code === "ENOENT")
|
|
161900
161900
|
fs$rename(from2, to, CB);
|
|
161901
161901
|
else
|
|
@@ -161911,9 +161911,9 @@ var require_polyfills = __commonJS({
|
|
|
161911
161911
|
}
|
|
161912
161912
|
if (Object.setPrototypeOf) Object.setPrototypeOf(rename2, fs$rename);
|
|
161913
161913
|
return rename2;
|
|
161914
|
-
})(
|
|
161914
|
+
})(fs62.rename);
|
|
161915
161915
|
}
|
|
161916
|
-
|
|
161916
|
+
fs62.read = typeof fs62.read !== "function" ? fs62.read : (function(fs$read) {
|
|
161917
161917
|
function read2(fd, buffer, offset, length, position, callback_) {
|
|
161918
161918
|
var callback;
|
|
161919
161919
|
if (callback_ && typeof callback_ === "function") {
|
|
@@ -161921,22 +161921,22 @@ var require_polyfills = __commonJS({
|
|
|
161921
161921
|
callback = function(er, _3, __) {
|
|
161922
161922
|
if (er && er.code === "EAGAIN" && eagCounter < 10) {
|
|
161923
161923
|
eagCounter++;
|
|
161924
|
-
return fs$read.call(
|
|
161924
|
+
return fs$read.call(fs62, fd, buffer, offset, length, position, callback);
|
|
161925
161925
|
}
|
|
161926
161926
|
callback_.apply(this, arguments);
|
|
161927
161927
|
};
|
|
161928
161928
|
}
|
|
161929
|
-
return fs$read.call(
|
|
161929
|
+
return fs$read.call(fs62, fd, buffer, offset, length, position, callback);
|
|
161930
161930
|
}
|
|
161931
161931
|
if (Object.setPrototypeOf) Object.setPrototypeOf(read2, fs$read);
|
|
161932
161932
|
return read2;
|
|
161933
|
-
})(
|
|
161934
|
-
|
|
161933
|
+
})(fs62.read);
|
|
161934
|
+
fs62.readSync = typeof fs62.readSync !== "function" ? fs62.readSync : /* @__PURE__ */ (function(fs$readSync) {
|
|
161935
161935
|
return function(fd, buffer, offset, length, position) {
|
|
161936
161936
|
var eagCounter = 0;
|
|
161937
161937
|
while (true) {
|
|
161938
161938
|
try {
|
|
161939
|
-
return fs$readSync.call(
|
|
161939
|
+
return fs$readSync.call(fs62, fd, buffer, offset, length, position);
|
|
161940
161940
|
} catch (er) {
|
|
161941
161941
|
if (er.code === "EAGAIN" && eagCounter < 10) {
|
|
161942
161942
|
eagCounter++;
|
|
@@ -161946,10 +161946,10 @@ var require_polyfills = __commonJS({
|
|
|
161946
161946
|
}
|
|
161947
161947
|
}
|
|
161948
161948
|
};
|
|
161949
|
-
})(
|
|
161950
|
-
function patchLchmod(
|
|
161951
|
-
|
|
161952
|
-
|
|
161949
|
+
})(fs62.readSync);
|
|
161950
|
+
function patchLchmod(fs63) {
|
|
161951
|
+
fs63.lchmod = function(path68, mode, callback) {
|
|
161952
|
+
fs63.open(
|
|
161953
161953
|
path68,
|
|
161954
161954
|
constants.O_WRONLY | constants.O_SYMLINK,
|
|
161955
161955
|
mode,
|
|
@@ -161958,80 +161958,80 @@ var require_polyfills = __commonJS({
|
|
|
161958
161958
|
if (callback) callback(err);
|
|
161959
161959
|
return;
|
|
161960
161960
|
}
|
|
161961
|
-
|
|
161962
|
-
|
|
161961
|
+
fs63.fchmod(fd, mode, function(err2) {
|
|
161962
|
+
fs63.close(fd, function(err22) {
|
|
161963
161963
|
if (callback) callback(err2 || err22);
|
|
161964
161964
|
});
|
|
161965
161965
|
});
|
|
161966
161966
|
}
|
|
161967
161967
|
);
|
|
161968
161968
|
};
|
|
161969
|
-
|
|
161970
|
-
var fd =
|
|
161969
|
+
fs63.lchmodSync = function(path68, mode) {
|
|
161970
|
+
var fd = fs63.openSync(path68, constants.O_WRONLY | constants.O_SYMLINK, mode);
|
|
161971
161971
|
var threw = true;
|
|
161972
161972
|
var ret2;
|
|
161973
161973
|
try {
|
|
161974
|
-
ret2 =
|
|
161974
|
+
ret2 = fs63.fchmodSync(fd, mode);
|
|
161975
161975
|
threw = false;
|
|
161976
161976
|
} finally {
|
|
161977
161977
|
if (threw) {
|
|
161978
161978
|
try {
|
|
161979
|
-
|
|
161979
|
+
fs63.closeSync(fd);
|
|
161980
161980
|
} catch (er) {
|
|
161981
161981
|
}
|
|
161982
161982
|
} else {
|
|
161983
|
-
|
|
161983
|
+
fs63.closeSync(fd);
|
|
161984
161984
|
}
|
|
161985
161985
|
}
|
|
161986
161986
|
return ret2;
|
|
161987
161987
|
};
|
|
161988
161988
|
}
|
|
161989
|
-
function patchLutimes(
|
|
161990
|
-
if (constants.hasOwnProperty("O_SYMLINK") &&
|
|
161991
|
-
|
|
161992
|
-
|
|
161989
|
+
function patchLutimes(fs63) {
|
|
161990
|
+
if (constants.hasOwnProperty("O_SYMLINK") && fs63.futimes) {
|
|
161991
|
+
fs63.lutimes = function(path68, at, mt, cb2) {
|
|
161992
|
+
fs63.open(path68, constants.O_SYMLINK, function(er, fd) {
|
|
161993
161993
|
if (er) {
|
|
161994
161994
|
if (cb2) cb2(er);
|
|
161995
161995
|
return;
|
|
161996
161996
|
}
|
|
161997
|
-
|
|
161998
|
-
|
|
161997
|
+
fs63.futimes(fd, at, mt, function(er2) {
|
|
161998
|
+
fs63.close(fd, function(er22) {
|
|
161999
161999
|
if (cb2) cb2(er2 || er22);
|
|
162000
162000
|
});
|
|
162001
162001
|
});
|
|
162002
162002
|
});
|
|
162003
162003
|
};
|
|
162004
|
-
|
|
162005
|
-
var fd =
|
|
162004
|
+
fs63.lutimesSync = function(path68, at, mt) {
|
|
162005
|
+
var fd = fs63.openSync(path68, constants.O_SYMLINK);
|
|
162006
162006
|
var ret2;
|
|
162007
162007
|
var threw = true;
|
|
162008
162008
|
try {
|
|
162009
|
-
ret2 =
|
|
162009
|
+
ret2 = fs63.futimesSync(fd, at, mt);
|
|
162010
162010
|
threw = false;
|
|
162011
162011
|
} finally {
|
|
162012
162012
|
if (threw) {
|
|
162013
162013
|
try {
|
|
162014
|
-
|
|
162014
|
+
fs63.closeSync(fd);
|
|
162015
162015
|
} catch (er) {
|
|
162016
162016
|
}
|
|
162017
162017
|
} else {
|
|
162018
|
-
|
|
162018
|
+
fs63.closeSync(fd);
|
|
162019
162019
|
}
|
|
162020
162020
|
}
|
|
162021
162021
|
return ret2;
|
|
162022
162022
|
};
|
|
162023
|
-
} else if (
|
|
162024
|
-
|
|
162023
|
+
} else if (fs63.futimes) {
|
|
162024
|
+
fs63.lutimes = function(_a20, _b14, _c6, cb2) {
|
|
162025
162025
|
if (cb2) process.nextTick(cb2);
|
|
162026
162026
|
};
|
|
162027
|
-
|
|
162027
|
+
fs63.lutimesSync = function() {
|
|
162028
162028
|
};
|
|
162029
162029
|
}
|
|
162030
162030
|
}
|
|
162031
162031
|
function chmodFix(orig) {
|
|
162032
162032
|
if (!orig) return orig;
|
|
162033
162033
|
return function(target, mode, cb2) {
|
|
162034
|
-
return orig.call(
|
|
162034
|
+
return orig.call(fs62, target, mode, function(er) {
|
|
162035
162035
|
if (chownErOk(er)) er = null;
|
|
162036
162036
|
if (cb2) cb2.apply(this, arguments);
|
|
162037
162037
|
});
|
|
@@ -162041,7 +162041,7 @@ var require_polyfills = __commonJS({
|
|
|
162041
162041
|
if (!orig) return orig;
|
|
162042
162042
|
return function(target, mode) {
|
|
162043
162043
|
try {
|
|
162044
|
-
return orig.call(
|
|
162044
|
+
return orig.call(fs62, target, mode);
|
|
162045
162045
|
} catch (er) {
|
|
162046
162046
|
if (!chownErOk(er)) throw er;
|
|
162047
162047
|
}
|
|
@@ -162050,7 +162050,7 @@ var require_polyfills = __commonJS({
|
|
|
162050
162050
|
function chownFix(orig) {
|
|
162051
162051
|
if (!orig) return orig;
|
|
162052
162052
|
return function(target, uid, gid, cb2) {
|
|
162053
|
-
return orig.call(
|
|
162053
|
+
return orig.call(fs62, target, uid, gid, function(er) {
|
|
162054
162054
|
if (chownErOk(er)) er = null;
|
|
162055
162055
|
if (cb2) cb2.apply(this, arguments);
|
|
162056
162056
|
});
|
|
@@ -162060,7 +162060,7 @@ var require_polyfills = __commonJS({
|
|
|
162060
162060
|
if (!orig) return orig;
|
|
162061
162061
|
return function(target, uid, gid) {
|
|
162062
162062
|
try {
|
|
162063
|
-
return orig.call(
|
|
162063
|
+
return orig.call(fs62, target, uid, gid);
|
|
162064
162064
|
} catch (er) {
|
|
162065
162065
|
if (!chownErOk(er)) throw er;
|
|
162066
162066
|
}
|
|
@@ -162080,13 +162080,13 @@ var require_polyfills = __commonJS({
|
|
|
162080
162080
|
}
|
|
162081
162081
|
if (cb2) cb2.apply(this, arguments);
|
|
162082
162082
|
}
|
|
162083
|
-
return options3 ? orig.call(
|
|
162083
|
+
return options3 ? orig.call(fs62, target, options3, callback) : orig.call(fs62, target, callback);
|
|
162084
162084
|
};
|
|
162085
162085
|
}
|
|
162086
162086
|
function statFixSync(orig) {
|
|
162087
162087
|
if (!orig) return orig;
|
|
162088
162088
|
return function(target, options3) {
|
|
162089
|
-
var stats = options3 ? orig.call(
|
|
162089
|
+
var stats = options3 ? orig.call(fs62, target, options3) : orig.call(fs62, target);
|
|
162090
162090
|
if (stats) {
|
|
162091
162091
|
if (stats.uid < 0) stats.uid += 4294967296;
|
|
162092
162092
|
if (stats.gid < 0) stats.gid += 4294967296;
|
|
@@ -162115,7 +162115,7 @@ var require_legacy_streams = __commonJS({
|
|
|
162115
162115
|
"node_modules/graceful-fs/legacy-streams.js"(exports2, module2) {
|
|
162116
162116
|
var Stream3 = __require("stream").Stream;
|
|
162117
162117
|
module2.exports = legacy;
|
|
162118
|
-
function legacy(
|
|
162118
|
+
function legacy(fs62) {
|
|
162119
162119
|
return {
|
|
162120
162120
|
ReadStream,
|
|
162121
162121
|
WriteStream
|
|
@@ -162158,7 +162158,7 @@ var require_legacy_streams = __commonJS({
|
|
|
162158
162158
|
});
|
|
162159
162159
|
return;
|
|
162160
162160
|
}
|
|
162161
|
-
|
|
162161
|
+
fs62.open(this.path, this.flags, this.mode, function(err, fd) {
|
|
162162
162162
|
if (err) {
|
|
162163
162163
|
self2.emit("error", err);
|
|
162164
162164
|
self2.readable = false;
|
|
@@ -162197,7 +162197,7 @@ var require_legacy_streams = __commonJS({
|
|
|
162197
162197
|
this.busy = false;
|
|
162198
162198
|
this._queue = [];
|
|
162199
162199
|
if (this.fd === null) {
|
|
162200
|
-
this._open =
|
|
162200
|
+
this._open = fs62.open;
|
|
162201
162201
|
this._queue.push([this._open, this.path, this.flags, this.mode, void 0]);
|
|
162202
162202
|
this.flush();
|
|
162203
162203
|
}
|
|
@@ -162232,7 +162232,7 @@ var require_clone = __commonJS({
|
|
|
162232
162232
|
// node_modules/graceful-fs/graceful-fs.js
|
|
162233
162233
|
var require_graceful_fs = __commonJS({
|
|
162234
162234
|
"node_modules/graceful-fs/graceful-fs.js"(exports2, module2) {
|
|
162235
|
-
var
|
|
162235
|
+
var fs62 = __require("fs");
|
|
162236
162236
|
var polyfills = require_polyfills();
|
|
162237
162237
|
var legacy = require_legacy_streams();
|
|
162238
162238
|
var clone3 = require_clone();
|
|
@@ -162264,12 +162264,12 @@ var require_graceful_fs = __commonJS({
|
|
|
162264
162264
|
m = "GFS4: " + m.split(/\n/).join("\nGFS4: ");
|
|
162265
162265
|
console.error(m);
|
|
162266
162266
|
};
|
|
162267
|
-
if (!
|
|
162267
|
+
if (!fs62[gracefulQueue]) {
|
|
162268
162268
|
queue = global[gracefulQueue] || [];
|
|
162269
|
-
publishQueue(
|
|
162270
|
-
|
|
162269
|
+
publishQueue(fs62, queue);
|
|
162270
|
+
fs62.close = (function(fs$close) {
|
|
162271
162271
|
function close2(fd, cb2) {
|
|
162272
|
-
return fs$close.call(
|
|
162272
|
+
return fs$close.call(fs62, fd, function(err) {
|
|
162273
162273
|
if (!err) {
|
|
162274
162274
|
resetQueue();
|
|
162275
162275
|
}
|
|
@@ -162281,40 +162281,40 @@ var require_graceful_fs = __commonJS({
|
|
|
162281
162281
|
value: fs$close
|
|
162282
162282
|
});
|
|
162283
162283
|
return close2;
|
|
162284
|
-
})(
|
|
162285
|
-
|
|
162284
|
+
})(fs62.close);
|
|
162285
|
+
fs62.closeSync = (function(fs$closeSync) {
|
|
162286
162286
|
function closeSync(fd) {
|
|
162287
|
-
fs$closeSync.apply(
|
|
162287
|
+
fs$closeSync.apply(fs62, arguments);
|
|
162288
162288
|
resetQueue();
|
|
162289
162289
|
}
|
|
162290
162290
|
Object.defineProperty(closeSync, previousSymbol, {
|
|
162291
162291
|
value: fs$closeSync
|
|
162292
162292
|
});
|
|
162293
162293
|
return closeSync;
|
|
162294
|
-
})(
|
|
162294
|
+
})(fs62.closeSync);
|
|
162295
162295
|
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || "")) {
|
|
162296
162296
|
process.on("exit", function() {
|
|
162297
|
-
debug6(
|
|
162298
|
-
__require("assert").equal(
|
|
162297
|
+
debug6(fs62[gracefulQueue]);
|
|
162298
|
+
__require("assert").equal(fs62[gracefulQueue].length, 0);
|
|
162299
162299
|
});
|
|
162300
162300
|
}
|
|
162301
162301
|
}
|
|
162302
162302
|
var queue;
|
|
162303
162303
|
if (!global[gracefulQueue]) {
|
|
162304
|
-
publishQueue(global,
|
|
162305
|
-
}
|
|
162306
|
-
module2.exports = patch(clone3(
|
|
162307
|
-
if (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !
|
|
162308
|
-
module2.exports = patch(
|
|
162309
|
-
|
|
162310
|
-
}
|
|
162311
|
-
function patch(
|
|
162312
|
-
polyfills(
|
|
162313
|
-
|
|
162314
|
-
|
|
162315
|
-
|
|
162316
|
-
var fs$readFile =
|
|
162317
|
-
|
|
162304
|
+
publishQueue(global, fs62[gracefulQueue]);
|
|
162305
|
+
}
|
|
162306
|
+
module2.exports = patch(clone3(fs62));
|
|
162307
|
+
if (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !fs62.__patched) {
|
|
162308
|
+
module2.exports = patch(fs62);
|
|
162309
|
+
fs62.__patched = true;
|
|
162310
|
+
}
|
|
162311
|
+
function patch(fs63) {
|
|
162312
|
+
polyfills(fs63);
|
|
162313
|
+
fs63.gracefulify = patch;
|
|
162314
|
+
fs63.createReadStream = createReadStream4;
|
|
162315
|
+
fs63.createWriteStream = createWriteStream2;
|
|
162316
|
+
var fs$readFile = fs63.readFile;
|
|
162317
|
+
fs63.readFile = readFile6;
|
|
162318
162318
|
function readFile6(path68, options3, cb2) {
|
|
162319
162319
|
if (typeof options3 === "function")
|
|
162320
162320
|
cb2 = options3, options3 = null;
|
|
@@ -162330,8 +162330,8 @@ var require_graceful_fs = __commonJS({
|
|
|
162330
162330
|
});
|
|
162331
162331
|
}
|
|
162332
162332
|
}
|
|
162333
|
-
var fs$writeFile =
|
|
162334
|
-
|
|
162333
|
+
var fs$writeFile = fs63.writeFile;
|
|
162334
|
+
fs63.writeFile = writeFile6;
|
|
162335
162335
|
function writeFile6(path68, data, options3, cb2) {
|
|
162336
162336
|
if (typeof options3 === "function")
|
|
162337
162337
|
cb2 = options3, options3 = null;
|
|
@@ -162347,9 +162347,9 @@ var require_graceful_fs = __commonJS({
|
|
|
162347
162347
|
});
|
|
162348
162348
|
}
|
|
162349
162349
|
}
|
|
162350
|
-
var fs$appendFile =
|
|
162350
|
+
var fs$appendFile = fs63.appendFile;
|
|
162351
162351
|
if (fs$appendFile)
|
|
162352
|
-
|
|
162352
|
+
fs63.appendFile = appendFile;
|
|
162353
162353
|
function appendFile(path68, data, options3, cb2) {
|
|
162354
162354
|
if (typeof options3 === "function")
|
|
162355
162355
|
cb2 = options3, options3 = null;
|
|
@@ -162365,9 +162365,9 @@ var require_graceful_fs = __commonJS({
|
|
|
162365
162365
|
});
|
|
162366
162366
|
}
|
|
162367
162367
|
}
|
|
162368
|
-
var fs$copyFile =
|
|
162368
|
+
var fs$copyFile = fs63.copyFile;
|
|
162369
162369
|
if (fs$copyFile)
|
|
162370
|
-
|
|
162370
|
+
fs63.copyFile = copyFile;
|
|
162371
162371
|
function copyFile(src, dest, flags, cb2) {
|
|
162372
162372
|
if (typeof flags === "function") {
|
|
162373
162373
|
cb2 = flags;
|
|
@@ -162385,8 +162385,8 @@ var require_graceful_fs = __commonJS({
|
|
|
162385
162385
|
});
|
|
162386
162386
|
}
|
|
162387
162387
|
}
|
|
162388
|
-
var fs$readdir =
|
|
162389
|
-
|
|
162388
|
+
var fs$readdir = fs63.readdir;
|
|
162389
|
+
fs63.readdir = readdir6;
|
|
162390
162390
|
var noReaddirOptionVersions = /^v[0-5]\./;
|
|
162391
162391
|
function readdir6(path68, options3, cb2) {
|
|
162392
162392
|
if (typeof options3 === "function")
|
|
@@ -162427,21 +162427,21 @@ var require_graceful_fs = __commonJS({
|
|
|
162427
162427
|
}
|
|
162428
162428
|
}
|
|
162429
162429
|
if (process.version.substr(0, 4) === "v0.8") {
|
|
162430
|
-
var legStreams = legacy(
|
|
162430
|
+
var legStreams = legacy(fs63);
|
|
162431
162431
|
ReadStream = legStreams.ReadStream;
|
|
162432
162432
|
WriteStream = legStreams.WriteStream;
|
|
162433
162433
|
}
|
|
162434
|
-
var fs$ReadStream =
|
|
162434
|
+
var fs$ReadStream = fs63.ReadStream;
|
|
162435
162435
|
if (fs$ReadStream) {
|
|
162436
162436
|
ReadStream.prototype = Object.create(fs$ReadStream.prototype);
|
|
162437
162437
|
ReadStream.prototype.open = ReadStream$open;
|
|
162438
162438
|
}
|
|
162439
|
-
var fs$WriteStream =
|
|
162439
|
+
var fs$WriteStream = fs63.WriteStream;
|
|
162440
162440
|
if (fs$WriteStream) {
|
|
162441
162441
|
WriteStream.prototype = Object.create(fs$WriteStream.prototype);
|
|
162442
162442
|
WriteStream.prototype.open = WriteStream$open;
|
|
162443
162443
|
}
|
|
162444
|
-
Object.defineProperty(
|
|
162444
|
+
Object.defineProperty(fs63, "ReadStream", {
|
|
162445
162445
|
get: function() {
|
|
162446
162446
|
return ReadStream;
|
|
162447
162447
|
},
|
|
@@ -162451,7 +162451,7 @@ var require_graceful_fs = __commonJS({
|
|
|
162451
162451
|
enumerable: true,
|
|
162452
162452
|
configurable: true
|
|
162453
162453
|
});
|
|
162454
|
-
Object.defineProperty(
|
|
162454
|
+
Object.defineProperty(fs63, "WriteStream", {
|
|
162455
162455
|
get: function() {
|
|
162456
162456
|
return WriteStream;
|
|
162457
162457
|
},
|
|
@@ -162462,7 +162462,7 @@ var require_graceful_fs = __commonJS({
|
|
|
162462
162462
|
configurable: true
|
|
162463
162463
|
});
|
|
162464
162464
|
var FileReadStream = ReadStream;
|
|
162465
|
-
Object.defineProperty(
|
|
162465
|
+
Object.defineProperty(fs63, "FileReadStream", {
|
|
162466
162466
|
get: function() {
|
|
162467
162467
|
return FileReadStream;
|
|
162468
162468
|
},
|
|
@@ -162473,7 +162473,7 @@ var require_graceful_fs = __commonJS({
|
|
|
162473
162473
|
configurable: true
|
|
162474
162474
|
});
|
|
162475
162475
|
var FileWriteStream = WriteStream;
|
|
162476
|
-
Object.defineProperty(
|
|
162476
|
+
Object.defineProperty(fs63, "FileWriteStream", {
|
|
162477
162477
|
get: function() {
|
|
162478
162478
|
return FileWriteStream;
|
|
162479
162479
|
},
|
|
@@ -162522,13 +162522,13 @@ var require_graceful_fs = __commonJS({
|
|
|
162522
162522
|
});
|
|
162523
162523
|
}
|
|
162524
162524
|
function createReadStream4(path68, options3) {
|
|
162525
|
-
return new
|
|
162525
|
+
return new fs63.ReadStream(path68, options3);
|
|
162526
162526
|
}
|
|
162527
162527
|
function createWriteStream2(path68, options3) {
|
|
162528
|
-
return new
|
|
162528
|
+
return new fs63.WriteStream(path68, options3);
|
|
162529
162529
|
}
|
|
162530
|
-
var fs$open =
|
|
162531
|
-
|
|
162530
|
+
var fs$open = fs63.open;
|
|
162531
|
+
fs63.open = open3;
|
|
162532
162532
|
function open3(path68, flags, mode, cb2) {
|
|
162533
162533
|
if (typeof mode === "function")
|
|
162534
162534
|
cb2 = mode, mode = null;
|
|
@@ -162544,20 +162544,20 @@ var require_graceful_fs = __commonJS({
|
|
|
162544
162544
|
});
|
|
162545
162545
|
}
|
|
162546
162546
|
}
|
|
162547
|
-
return
|
|
162547
|
+
return fs63;
|
|
162548
162548
|
}
|
|
162549
162549
|
function enqueue(elem) {
|
|
162550
162550
|
debug6("ENQUEUE", elem[0].name, elem[1]);
|
|
162551
|
-
|
|
162551
|
+
fs62[gracefulQueue].push(elem);
|
|
162552
162552
|
retry2();
|
|
162553
162553
|
}
|
|
162554
162554
|
var retryTimer;
|
|
162555
162555
|
function resetQueue() {
|
|
162556
162556
|
var now = Date.now();
|
|
162557
|
-
for (var i = 0; i <
|
|
162558
|
-
if (
|
|
162559
|
-
|
|
162560
|
-
|
|
162557
|
+
for (var i = 0; i < fs62[gracefulQueue].length; ++i) {
|
|
162558
|
+
if (fs62[gracefulQueue][i].length > 2) {
|
|
162559
|
+
fs62[gracefulQueue][i][3] = now;
|
|
162560
|
+
fs62[gracefulQueue][i][4] = now;
|
|
162561
162561
|
}
|
|
162562
162562
|
}
|
|
162563
162563
|
retry2();
|
|
@@ -162565,9 +162565,9 @@ var require_graceful_fs = __commonJS({
|
|
|
162565
162565
|
function retry2() {
|
|
162566
162566
|
clearTimeout(retryTimer);
|
|
162567
162567
|
retryTimer = void 0;
|
|
162568
|
-
if (
|
|
162568
|
+
if (fs62[gracefulQueue].length === 0)
|
|
162569
162569
|
return;
|
|
162570
|
-
var elem =
|
|
162570
|
+
var elem = fs62[gracefulQueue].shift();
|
|
162571
162571
|
var fn = elem[0];
|
|
162572
162572
|
var args2 = elem[1];
|
|
162573
162573
|
var err = elem[2];
|
|
@@ -162589,7 +162589,7 @@ var require_graceful_fs = __commonJS({
|
|
|
162589
162589
|
debug6("RETRY", fn.name, args2);
|
|
162590
162590
|
fn.apply(null, args2.concat([startTime]));
|
|
162591
162591
|
} else {
|
|
162592
|
-
|
|
162592
|
+
fs62[gracefulQueue].push(elem);
|
|
162593
162593
|
}
|
|
162594
162594
|
}
|
|
162595
162595
|
if (retryTimer === void 0) {
|
|
@@ -162604,7 +162604,7 @@ var require_fs3 = __commonJS({
|
|
|
162604
162604
|
"node_modules/fs-extra/lib/fs/index.js"(exports2) {
|
|
162605
162605
|
"use strict";
|
|
162606
162606
|
var u = require_universalify().fromCallback;
|
|
162607
|
-
var
|
|
162607
|
+
var fs62 = require_graceful_fs();
|
|
162608
162608
|
var api = [
|
|
162609
162609
|
"access",
|
|
162610
162610
|
"appendFile",
|
|
@@ -162639,31 +162639,31 @@ var require_fs3 = __commonJS({
|
|
|
162639
162639
|
"utimes",
|
|
162640
162640
|
"writeFile"
|
|
162641
162641
|
].filter((key) => {
|
|
162642
|
-
return typeof
|
|
162642
|
+
return typeof fs62[key] === "function";
|
|
162643
162643
|
});
|
|
162644
|
-
Object.keys(
|
|
162644
|
+
Object.keys(fs62).forEach((key) => {
|
|
162645
162645
|
if (key === "promises") {
|
|
162646
162646
|
return;
|
|
162647
162647
|
}
|
|
162648
|
-
exports2[key] =
|
|
162648
|
+
exports2[key] = fs62[key];
|
|
162649
162649
|
});
|
|
162650
162650
|
api.forEach((method) => {
|
|
162651
|
-
exports2[method] = u(
|
|
162651
|
+
exports2[method] = u(fs62[method]);
|
|
162652
162652
|
});
|
|
162653
162653
|
exports2.exists = function(filename, callback) {
|
|
162654
162654
|
if (typeof callback === "function") {
|
|
162655
|
-
return
|
|
162655
|
+
return fs62.exists(filename, callback);
|
|
162656
162656
|
}
|
|
162657
162657
|
return new Promise((resolve15) => {
|
|
162658
|
-
return
|
|
162658
|
+
return fs62.exists(filename, resolve15);
|
|
162659
162659
|
});
|
|
162660
162660
|
};
|
|
162661
162661
|
exports2.read = function(fd, buffer, offset, length, position, callback) {
|
|
162662
162662
|
if (typeof callback === "function") {
|
|
162663
|
-
return
|
|
162663
|
+
return fs62.read(fd, buffer, offset, length, position, callback);
|
|
162664
162664
|
}
|
|
162665
162665
|
return new Promise((resolve15, reject2) => {
|
|
162666
|
-
|
|
162666
|
+
fs62.read(fd, buffer, offset, length, position, (err, bytesRead, buffer2) => {
|
|
162667
162667
|
if (err) return reject2(err);
|
|
162668
162668
|
resolve15({ bytesRead, buffer: buffer2 });
|
|
162669
162669
|
});
|
|
@@ -162671,17 +162671,17 @@ var require_fs3 = __commonJS({
|
|
|
162671
162671
|
};
|
|
162672
162672
|
exports2.write = function(fd, buffer, ...args2) {
|
|
162673
162673
|
if (typeof args2[args2.length - 1] === "function") {
|
|
162674
|
-
return
|
|
162674
|
+
return fs62.write(fd, buffer, ...args2);
|
|
162675
162675
|
}
|
|
162676
162676
|
return new Promise((resolve15, reject2) => {
|
|
162677
|
-
|
|
162677
|
+
fs62.write(fd, buffer, ...args2, (err, bytesWritten, buffer2) => {
|
|
162678
162678
|
if (err) return reject2(err);
|
|
162679
162679
|
resolve15({ bytesWritten, buffer: buffer2 });
|
|
162680
162680
|
});
|
|
162681
162681
|
});
|
|
162682
162682
|
};
|
|
162683
|
-
if (typeof
|
|
162684
|
-
exports2.realpath.native = u(
|
|
162683
|
+
if (typeof fs62.realpath.native === "function") {
|
|
162684
|
+
exports2.realpath.native = u(fs62.realpath.native);
|
|
162685
162685
|
}
|
|
162686
162686
|
}
|
|
162687
162687
|
});
|
|
@@ -162713,7 +162713,7 @@ var require_win32 = __commonJS({
|
|
|
162713
162713
|
var require_mkdirs = __commonJS({
|
|
162714
162714
|
"node_modules/fs-extra/lib/mkdirs/mkdirs.js"(exports2, module2) {
|
|
162715
162715
|
"use strict";
|
|
162716
|
-
var
|
|
162716
|
+
var fs62 = require_graceful_fs();
|
|
162717
162717
|
var path68 = __require("path");
|
|
162718
162718
|
var invalidWin32Path = require_win32().invalidWin32Path;
|
|
162719
162719
|
var o777 = parseInt("0777", 8);
|
|
@@ -162730,7 +162730,7 @@ var require_mkdirs = __commonJS({
|
|
|
162730
162730
|
return callback(errInval);
|
|
162731
162731
|
}
|
|
162732
162732
|
let mode = opts.mode;
|
|
162733
|
-
const xfs = opts.fs ||
|
|
162733
|
+
const xfs = opts.fs || fs62;
|
|
162734
162734
|
if (mode === void 0) {
|
|
162735
162735
|
mode = o777 & ~process.umask();
|
|
162736
162736
|
}
|
|
@@ -162771,7 +162771,7 @@ var require_mkdirs = __commonJS({
|
|
|
162771
162771
|
var require_mkdirs_sync = __commonJS({
|
|
162772
162772
|
"node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js"(exports2, module2) {
|
|
162773
162773
|
"use strict";
|
|
162774
|
-
var
|
|
162774
|
+
var fs62 = require_graceful_fs();
|
|
162775
162775
|
var path68 = __require("path");
|
|
162776
162776
|
var invalidWin32Path = require_win32().invalidWin32Path;
|
|
162777
162777
|
var o777 = parseInt("0777", 8);
|
|
@@ -162780,7 +162780,7 @@ var require_mkdirs_sync = __commonJS({
|
|
|
162780
162780
|
opts = { mode: opts };
|
|
162781
162781
|
}
|
|
162782
162782
|
let mode = opts.mode;
|
|
162783
|
-
const xfs = opts.fs ||
|
|
162783
|
+
const xfs = opts.fs || fs62;
|
|
162784
162784
|
if (process.platform === "win32" && invalidWin32Path(p)) {
|
|
162785
162785
|
const errInval = new Error(p + " contains invalid WIN32 path characters.");
|
|
162786
162786
|
errInval.code = "EINVAL";
|
|
@@ -162838,32 +162838,32 @@ var require_mkdirs2 = __commonJS({
|
|
|
162838
162838
|
var require_utimes = __commonJS({
|
|
162839
162839
|
"node_modules/fs-extra/lib/util/utimes.js"(exports2, module2) {
|
|
162840
162840
|
"use strict";
|
|
162841
|
-
var
|
|
162841
|
+
var fs62 = require_graceful_fs();
|
|
162842
162842
|
var os30 = __require("os");
|
|
162843
162843
|
var path68 = __require("path");
|
|
162844
162844
|
function hasMillisResSync() {
|
|
162845
162845
|
let tmpfile = path68.join("millis-test-sync" + Date.now().toString() + Math.random().toString().slice(2));
|
|
162846
162846
|
tmpfile = path68.join(os30.tmpdir(), tmpfile);
|
|
162847
162847
|
const d = /* @__PURE__ */ new Date(1435410243862);
|
|
162848
|
-
|
|
162849
|
-
const fd =
|
|
162850
|
-
|
|
162851
|
-
|
|
162852
|
-
return
|
|
162848
|
+
fs62.writeFileSync(tmpfile, "https://github.com/jprichardson/node-fs-extra/pull/141");
|
|
162849
|
+
const fd = fs62.openSync(tmpfile, "r+");
|
|
162850
|
+
fs62.futimesSync(fd, d, d);
|
|
162851
|
+
fs62.closeSync(fd);
|
|
162852
|
+
return fs62.statSync(tmpfile).mtime > 1435410243e3;
|
|
162853
162853
|
}
|
|
162854
162854
|
function hasMillisRes(callback) {
|
|
162855
162855
|
let tmpfile = path68.join("millis-test" + Date.now().toString() + Math.random().toString().slice(2));
|
|
162856
162856
|
tmpfile = path68.join(os30.tmpdir(), tmpfile);
|
|
162857
162857
|
const d = /* @__PURE__ */ new Date(1435410243862);
|
|
162858
|
-
|
|
162858
|
+
fs62.writeFile(tmpfile, "https://github.com/jprichardson/node-fs-extra/pull/141", (err) => {
|
|
162859
162859
|
if (err) return callback(err);
|
|
162860
|
-
|
|
162860
|
+
fs62.open(tmpfile, "r+", (err2, fd) => {
|
|
162861
162861
|
if (err2) return callback(err2);
|
|
162862
|
-
|
|
162862
|
+
fs62.futimes(fd, d, d, (err3) => {
|
|
162863
162863
|
if (err3) return callback(err3);
|
|
162864
|
-
|
|
162864
|
+
fs62.close(fd, (err4) => {
|
|
162865
162865
|
if (err4) return callback(err4);
|
|
162866
|
-
|
|
162866
|
+
fs62.stat(tmpfile, (err5, stats) => {
|
|
162867
162867
|
if (err5) return callback(err5);
|
|
162868
162868
|
callback(null, stats.mtime > 1435410243e3);
|
|
162869
162869
|
});
|
|
@@ -162882,19 +162882,19 @@ var require_utimes = __commonJS({
|
|
|
162882
162882
|
}
|
|
162883
162883
|
}
|
|
162884
162884
|
function utimesMillis(path69, atime, mtime, callback) {
|
|
162885
|
-
|
|
162885
|
+
fs62.open(path69, "r+", (err, fd) => {
|
|
162886
162886
|
if (err) return callback(err);
|
|
162887
|
-
|
|
162888
|
-
|
|
162887
|
+
fs62.futimes(fd, atime, mtime, (futimesErr) => {
|
|
162888
|
+
fs62.close(fd, (closeErr) => {
|
|
162889
162889
|
if (callback) callback(futimesErr || closeErr);
|
|
162890
162890
|
});
|
|
162891
162891
|
});
|
|
162892
162892
|
});
|
|
162893
162893
|
}
|
|
162894
162894
|
function utimesMillisSync(path69, atime, mtime) {
|
|
162895
|
-
const fd =
|
|
162896
|
-
|
|
162897
|
-
return
|
|
162895
|
+
const fd = fs62.openSync(path69, "r+");
|
|
162896
|
+
fs62.futimesSync(fd, atime, mtime);
|
|
162897
|
+
return fs62.closeSync(fd);
|
|
162898
162898
|
}
|
|
162899
162899
|
module2.exports = {
|
|
162900
162900
|
hasMillisRes,
|
|
@@ -162910,7 +162910,7 @@ var require_utimes = __commonJS({
|
|
|
162910
162910
|
var require_stat = __commonJS({
|
|
162911
162911
|
"node_modules/fs-extra/lib/util/stat.js"(exports2, module2) {
|
|
162912
162912
|
"use strict";
|
|
162913
|
-
var
|
|
162913
|
+
var fs62 = require_graceful_fs();
|
|
162914
162914
|
var path68 = __require("path");
|
|
162915
162915
|
var NODE_VERSION_MAJOR_WITH_BIGINT = 10;
|
|
162916
162916
|
var NODE_VERSION_MINOR_WITH_BIGINT = 5;
|
|
@@ -162935,9 +162935,9 @@ var require_stat = __commonJS({
|
|
|
162935
162935
|
}
|
|
162936
162936
|
function getStats(src, dest, cb2) {
|
|
162937
162937
|
if (nodeSupportsBigInt()) {
|
|
162938
|
-
|
|
162938
|
+
fs62.stat(src, { bigint: true }, (err, srcStat) => {
|
|
162939
162939
|
if (err) return cb2(err);
|
|
162940
|
-
|
|
162940
|
+
fs62.stat(dest, { bigint: true }, (err2, destStat) => {
|
|
162941
162941
|
if (err2) {
|
|
162942
162942
|
if (err2.code === "ENOENT") return cb2(null, { srcStat, destStat: null });
|
|
162943
162943
|
return cb2(err2);
|
|
@@ -162946,9 +162946,9 @@ var require_stat = __commonJS({
|
|
|
162946
162946
|
});
|
|
162947
162947
|
});
|
|
162948
162948
|
} else {
|
|
162949
|
-
|
|
162949
|
+
fs62.stat(src, (err, srcStat) => {
|
|
162950
162950
|
if (err) return cb2(err);
|
|
162951
|
-
|
|
162951
|
+
fs62.stat(dest, (err2, destStat) => {
|
|
162952
162952
|
if (err2) {
|
|
162953
162953
|
if (err2.code === "ENOENT") return cb2(null, { srcStat, destStat: null });
|
|
162954
162954
|
return cb2(err2);
|
|
@@ -162961,15 +162961,15 @@ var require_stat = __commonJS({
|
|
|
162961
162961
|
function getStatsSync(src, dest) {
|
|
162962
162962
|
let srcStat, destStat;
|
|
162963
162963
|
if (nodeSupportsBigInt()) {
|
|
162964
|
-
srcStat =
|
|
162964
|
+
srcStat = fs62.statSync(src, { bigint: true });
|
|
162965
162965
|
} else {
|
|
162966
|
-
srcStat =
|
|
162966
|
+
srcStat = fs62.statSync(src);
|
|
162967
162967
|
}
|
|
162968
162968
|
try {
|
|
162969
162969
|
if (nodeSupportsBigInt()) {
|
|
162970
|
-
destStat =
|
|
162970
|
+
destStat = fs62.statSync(dest, { bigint: true });
|
|
162971
162971
|
} else {
|
|
162972
|
-
destStat =
|
|
162972
|
+
destStat = fs62.statSync(dest);
|
|
162973
162973
|
}
|
|
162974
162974
|
} catch (err) {
|
|
162975
162975
|
if (err.code === "ENOENT") return { srcStat, destStat: null };
|
|
@@ -163005,7 +163005,7 @@ var require_stat = __commonJS({
|
|
|
163005
163005
|
const destParent = path68.resolve(path68.dirname(dest));
|
|
163006
163006
|
if (destParent === srcParent || destParent === path68.parse(destParent).root) return cb2();
|
|
163007
163007
|
if (nodeSupportsBigInt()) {
|
|
163008
|
-
|
|
163008
|
+
fs62.stat(destParent, { bigint: true }, (err, destStat) => {
|
|
163009
163009
|
if (err) {
|
|
163010
163010
|
if (err.code === "ENOENT") return cb2();
|
|
163011
163011
|
return cb2(err);
|
|
@@ -163016,7 +163016,7 @@ var require_stat = __commonJS({
|
|
|
163016
163016
|
return checkParentPaths(src, srcStat, destParent, funcName, cb2);
|
|
163017
163017
|
});
|
|
163018
163018
|
} else {
|
|
163019
|
-
|
|
163019
|
+
fs62.stat(destParent, (err, destStat) => {
|
|
163020
163020
|
if (err) {
|
|
163021
163021
|
if (err.code === "ENOENT") return cb2();
|
|
163022
163022
|
return cb2(err);
|
|
@@ -163035,9 +163035,9 @@ var require_stat = __commonJS({
|
|
|
163035
163035
|
let destStat;
|
|
163036
163036
|
try {
|
|
163037
163037
|
if (nodeSupportsBigInt()) {
|
|
163038
|
-
destStat =
|
|
163038
|
+
destStat = fs62.statSync(destParent, { bigint: true });
|
|
163039
163039
|
} else {
|
|
163040
|
-
destStat =
|
|
163040
|
+
destStat = fs62.statSync(destParent);
|
|
163041
163041
|
}
|
|
163042
163042
|
} catch (err) {
|
|
163043
163043
|
if (err.code === "ENOENT") return;
|
|
@@ -163087,7 +163087,7 @@ var require_buffer = __commonJS({
|
|
|
163087
163087
|
var require_copy_sync = __commonJS({
|
|
163088
163088
|
"node_modules/fs-extra/lib/copy-sync/copy-sync.js"(exports2, module2) {
|
|
163089
163089
|
"use strict";
|
|
163090
|
-
var
|
|
163090
|
+
var fs62 = require_graceful_fs();
|
|
163091
163091
|
var path68 = __require("path");
|
|
163092
163092
|
var mkdirpSync = require_mkdirs2().mkdirsSync;
|
|
163093
163093
|
var utimesSync = require_utimes().utimesMillisSync;
|
|
@@ -163111,7 +163111,7 @@ var require_copy_sync = __commonJS({
|
|
|
163111
163111
|
function handleFilterAndCopy(destStat, src, dest, opts) {
|
|
163112
163112
|
if (opts.filter && !opts.filter(src, dest)) return;
|
|
163113
163113
|
const destParent = path68.dirname(dest);
|
|
163114
|
-
if (!
|
|
163114
|
+
if (!fs62.existsSync(destParent)) mkdirpSync(destParent);
|
|
163115
163115
|
return startCopy(destStat, src, dest, opts);
|
|
163116
163116
|
}
|
|
163117
163117
|
function startCopy(destStat, src, dest, opts) {
|
|
@@ -163119,7 +163119,7 @@ var require_copy_sync = __commonJS({
|
|
|
163119
163119
|
return getStats(destStat, src, dest, opts);
|
|
163120
163120
|
}
|
|
163121
163121
|
function getStats(destStat, src, dest, opts) {
|
|
163122
|
-
const statSync3 = opts.dereference ?
|
|
163122
|
+
const statSync3 = opts.dereference ? fs62.statSync : fs62.lstatSync;
|
|
163123
163123
|
const srcStat = statSync3(src);
|
|
163124
163124
|
if (srcStat.isDirectory()) return onDir(srcStat, destStat, src, dest, opts);
|
|
163125
163125
|
else if (srcStat.isFile() || srcStat.isCharacterDevice() || srcStat.isBlockDevice()) return onFile(srcStat, destStat, src, dest, opts);
|
|
@@ -163131,16 +163131,16 @@ var require_copy_sync = __commonJS({
|
|
|
163131
163131
|
}
|
|
163132
163132
|
function mayCopyFile(srcStat, src, dest, opts) {
|
|
163133
163133
|
if (opts.overwrite) {
|
|
163134
|
-
|
|
163134
|
+
fs62.unlinkSync(dest);
|
|
163135
163135
|
return copyFile(srcStat, src, dest, opts);
|
|
163136
163136
|
} else if (opts.errorOnExist) {
|
|
163137
163137
|
throw new Error(`'${dest}' already exists`);
|
|
163138
163138
|
}
|
|
163139
163139
|
}
|
|
163140
163140
|
function copyFile(srcStat, src, dest, opts) {
|
|
163141
|
-
if (typeof
|
|
163142
|
-
|
|
163143
|
-
|
|
163141
|
+
if (typeof fs62.copyFileSync === "function") {
|
|
163142
|
+
fs62.copyFileSync(src, dest);
|
|
163143
|
+
fs62.chmodSync(dest, srcStat.mode);
|
|
163144
163144
|
if (opts.preserveTimestamps) {
|
|
163145
163145
|
return utimesSync(dest, srcStat.atime, srcStat.mtime);
|
|
163146
163146
|
}
|
|
@@ -163151,17 +163151,17 @@ var require_copy_sync = __commonJS({
|
|
|
163151
163151
|
function copyFileFallback(srcStat, src, dest, opts) {
|
|
163152
163152
|
const BUF_LENGTH = 64 * 1024;
|
|
163153
163153
|
const _buff = require_buffer()(BUF_LENGTH);
|
|
163154
|
-
const fdr =
|
|
163155
|
-
const fdw =
|
|
163154
|
+
const fdr = fs62.openSync(src, "r");
|
|
163155
|
+
const fdw = fs62.openSync(dest, "w", srcStat.mode);
|
|
163156
163156
|
let pos = 0;
|
|
163157
163157
|
while (pos < srcStat.size) {
|
|
163158
|
-
const bytesRead =
|
|
163159
|
-
|
|
163158
|
+
const bytesRead = fs62.readSync(fdr, _buff, 0, BUF_LENGTH, pos);
|
|
163159
|
+
fs62.writeSync(fdw, _buff, 0, bytesRead);
|
|
163160
163160
|
pos += bytesRead;
|
|
163161
163161
|
}
|
|
163162
|
-
if (opts.preserveTimestamps)
|
|
163163
|
-
|
|
163164
|
-
|
|
163162
|
+
if (opts.preserveTimestamps) fs62.futimesSync(fdw, srcStat.atime, srcStat.mtime);
|
|
163163
|
+
fs62.closeSync(fdr);
|
|
163164
|
+
fs62.closeSync(fdw);
|
|
163165
163165
|
}
|
|
163166
163166
|
function onDir(srcStat, destStat, src, dest, opts) {
|
|
163167
163167
|
if (!destStat) return mkDirAndCopy(srcStat, src, dest, opts);
|
|
@@ -163171,12 +163171,12 @@ var require_copy_sync = __commonJS({
|
|
|
163171
163171
|
return copyDir2(src, dest, opts);
|
|
163172
163172
|
}
|
|
163173
163173
|
function mkDirAndCopy(srcStat, src, dest, opts) {
|
|
163174
|
-
|
|
163174
|
+
fs62.mkdirSync(dest);
|
|
163175
163175
|
copyDir2(src, dest, opts);
|
|
163176
|
-
return
|
|
163176
|
+
return fs62.chmodSync(dest, srcStat.mode);
|
|
163177
163177
|
}
|
|
163178
163178
|
function copyDir2(src, dest, opts) {
|
|
163179
|
-
|
|
163179
|
+
fs62.readdirSync(src).forEach((item) => copyDirItem(item, src, dest, opts));
|
|
163180
163180
|
}
|
|
163181
163181
|
function copyDirItem(item, src, dest, opts) {
|
|
163182
163182
|
const srcItem = path68.join(src, item);
|
|
@@ -163185,18 +163185,18 @@ var require_copy_sync = __commonJS({
|
|
|
163185
163185
|
return startCopy(destStat, srcItem, destItem, opts);
|
|
163186
163186
|
}
|
|
163187
163187
|
function onLink(destStat, src, dest, opts) {
|
|
163188
|
-
let resolvedSrc =
|
|
163188
|
+
let resolvedSrc = fs62.readlinkSync(src);
|
|
163189
163189
|
if (opts.dereference) {
|
|
163190
163190
|
resolvedSrc = path68.resolve(process.cwd(), resolvedSrc);
|
|
163191
163191
|
}
|
|
163192
163192
|
if (!destStat) {
|
|
163193
|
-
return
|
|
163193
|
+
return fs62.symlinkSync(resolvedSrc, dest);
|
|
163194
163194
|
} else {
|
|
163195
163195
|
let resolvedDest;
|
|
163196
163196
|
try {
|
|
163197
|
-
resolvedDest =
|
|
163197
|
+
resolvedDest = fs62.readlinkSync(dest);
|
|
163198
163198
|
} catch (err) {
|
|
163199
|
-
if (err.code === "EINVAL" || err.code === "UNKNOWN") return
|
|
163199
|
+
if (err.code === "EINVAL" || err.code === "UNKNOWN") return fs62.symlinkSync(resolvedSrc, dest);
|
|
163200
163200
|
throw err;
|
|
163201
163201
|
}
|
|
163202
163202
|
if (opts.dereference) {
|
|
@@ -163205,15 +163205,15 @@ var require_copy_sync = __commonJS({
|
|
|
163205
163205
|
if (stat4.isSrcSubdir(resolvedSrc, resolvedDest)) {
|
|
163206
163206
|
throw new Error(`Cannot copy '${resolvedSrc}' to a subdirectory of itself, '${resolvedDest}'.`);
|
|
163207
163207
|
}
|
|
163208
|
-
if (
|
|
163208
|
+
if (fs62.statSync(dest).isDirectory() && stat4.isSrcSubdir(resolvedDest, resolvedSrc)) {
|
|
163209
163209
|
throw new Error(`Cannot overwrite '${resolvedDest}' with '${resolvedSrc}'.`);
|
|
163210
163210
|
}
|
|
163211
163211
|
return copyLink(resolvedSrc, dest);
|
|
163212
163212
|
}
|
|
163213
163213
|
}
|
|
163214
163214
|
function copyLink(resolvedSrc, dest) {
|
|
163215
|
-
|
|
163216
|
-
return
|
|
163215
|
+
fs62.unlinkSync(dest);
|
|
163216
|
+
return fs62.symlinkSync(resolvedSrc, dest);
|
|
163217
163217
|
}
|
|
163218
163218
|
module2.exports = copySync;
|
|
163219
163219
|
}
|
|
@@ -163234,13 +163234,13 @@ var require_path_exists = __commonJS({
|
|
|
163234
163234
|
"node_modules/fs-extra/lib/path-exists/index.js"(exports2, module2) {
|
|
163235
163235
|
"use strict";
|
|
163236
163236
|
var u = require_universalify().fromPromise;
|
|
163237
|
-
var
|
|
163237
|
+
var fs62 = require_fs3();
|
|
163238
163238
|
function pathExists3(path68) {
|
|
163239
|
-
return
|
|
163239
|
+
return fs62.access(path68).then(() => true).catch(() => false);
|
|
163240
163240
|
}
|
|
163241
163241
|
module2.exports = {
|
|
163242
163242
|
pathExists: u(pathExists3),
|
|
163243
|
-
pathExistsSync:
|
|
163243
|
+
pathExistsSync: fs62.existsSync
|
|
163244
163244
|
};
|
|
163245
163245
|
}
|
|
163246
163246
|
});
|
|
@@ -163249,7 +163249,7 @@ var require_path_exists = __commonJS({
|
|
|
163249
163249
|
var require_copy = __commonJS({
|
|
163250
163250
|
"node_modules/fs-extra/lib/copy/copy.js"(exports2, module2) {
|
|
163251
163251
|
"use strict";
|
|
163252
|
-
var
|
|
163252
|
+
var fs62 = require_graceful_fs();
|
|
163253
163253
|
var path68 = __require("path");
|
|
163254
163254
|
var mkdirp = require_mkdirs2().mkdirs;
|
|
163255
163255
|
var pathExists3 = require_path_exists().pathExists;
|
|
@@ -163304,7 +163304,7 @@ var require_copy = __commonJS({
|
|
|
163304
163304
|
return getStats(destStat, src, dest, opts, cb2);
|
|
163305
163305
|
}
|
|
163306
163306
|
function getStats(destStat, src, dest, opts, cb2) {
|
|
163307
|
-
const stat5 = opts.dereference ?
|
|
163307
|
+
const stat5 = opts.dereference ? fs62.stat : fs62.lstat;
|
|
163308
163308
|
stat5(src, (err, srcStat) => {
|
|
163309
163309
|
if (err) return cb2(err);
|
|
163310
163310
|
if (srcStat.isDirectory()) return onDir(srcStat, destStat, src, dest, opts, cb2);
|
|
@@ -163318,7 +163318,7 @@ var require_copy = __commonJS({
|
|
|
163318
163318
|
}
|
|
163319
163319
|
function mayCopyFile(srcStat, src, dest, opts, cb2) {
|
|
163320
163320
|
if (opts.overwrite) {
|
|
163321
|
-
|
|
163321
|
+
fs62.unlink(dest, (err) => {
|
|
163322
163322
|
if (err) return cb2(err);
|
|
163323
163323
|
return copyFile(srcStat, src, dest, opts, cb2);
|
|
163324
163324
|
});
|
|
@@ -163327,8 +163327,8 @@ var require_copy = __commonJS({
|
|
|
163327
163327
|
} else return cb2();
|
|
163328
163328
|
}
|
|
163329
163329
|
function copyFile(srcStat, src, dest, opts, cb2) {
|
|
163330
|
-
if (typeof
|
|
163331
|
-
return
|
|
163330
|
+
if (typeof fs62.copyFile === "function") {
|
|
163331
|
+
return fs62.copyFile(src, dest, (err) => {
|
|
163332
163332
|
if (err) return cb2(err);
|
|
163333
163333
|
return setDestModeAndTimestamps(srcStat, dest, opts, cb2);
|
|
163334
163334
|
});
|
|
@@ -163336,14 +163336,14 @@ var require_copy = __commonJS({
|
|
|
163336
163336
|
return copyFileFallback(srcStat, src, dest, opts, cb2);
|
|
163337
163337
|
}
|
|
163338
163338
|
function copyFileFallback(srcStat, src, dest, opts, cb2) {
|
|
163339
|
-
const rs =
|
|
163339
|
+
const rs = fs62.createReadStream(src);
|
|
163340
163340
|
rs.on("error", (err) => cb2(err)).once("open", () => {
|
|
163341
|
-
const ws =
|
|
163341
|
+
const ws = fs62.createWriteStream(dest, { mode: srcStat.mode });
|
|
163342
163342
|
ws.on("error", (err) => cb2(err)).on("open", () => rs.pipe(ws)).once("close", () => setDestModeAndTimestamps(srcStat, dest, opts, cb2));
|
|
163343
163343
|
});
|
|
163344
163344
|
}
|
|
163345
163345
|
function setDestModeAndTimestamps(srcStat, dest, opts, cb2) {
|
|
163346
|
-
|
|
163346
|
+
fs62.chmod(dest, srcStat.mode, (err) => {
|
|
163347
163347
|
if (err) return cb2(err);
|
|
163348
163348
|
if (opts.preserveTimestamps) {
|
|
163349
163349
|
return utimes(dest, srcStat.atime, srcStat.mtime, cb2);
|
|
@@ -163359,16 +163359,16 @@ var require_copy = __commonJS({
|
|
|
163359
163359
|
return copyDir2(src, dest, opts, cb2);
|
|
163360
163360
|
}
|
|
163361
163361
|
function mkDirAndCopy(srcStat, src, dest, opts, cb2) {
|
|
163362
|
-
|
|
163362
|
+
fs62.mkdir(dest, (err) => {
|
|
163363
163363
|
if (err) return cb2(err);
|
|
163364
163364
|
copyDir2(src, dest, opts, (err2) => {
|
|
163365
163365
|
if (err2) return cb2(err2);
|
|
163366
|
-
return
|
|
163366
|
+
return fs62.chmod(dest, srcStat.mode, cb2);
|
|
163367
163367
|
});
|
|
163368
163368
|
});
|
|
163369
163369
|
}
|
|
163370
163370
|
function copyDir2(src, dest, opts, cb2) {
|
|
163371
|
-
|
|
163371
|
+
fs62.readdir(src, (err, items) => {
|
|
163372
163372
|
if (err) return cb2(err);
|
|
163373
163373
|
return copyDirItems(items, src, dest, opts, cb2);
|
|
163374
163374
|
});
|
|
@@ -163391,17 +163391,17 @@ var require_copy = __commonJS({
|
|
|
163391
163391
|
});
|
|
163392
163392
|
}
|
|
163393
163393
|
function onLink(destStat, src, dest, opts, cb2) {
|
|
163394
|
-
|
|
163394
|
+
fs62.readlink(src, (err, resolvedSrc) => {
|
|
163395
163395
|
if (err) return cb2(err);
|
|
163396
163396
|
if (opts.dereference) {
|
|
163397
163397
|
resolvedSrc = path68.resolve(process.cwd(), resolvedSrc);
|
|
163398
163398
|
}
|
|
163399
163399
|
if (!destStat) {
|
|
163400
|
-
return
|
|
163400
|
+
return fs62.symlink(resolvedSrc, dest, cb2);
|
|
163401
163401
|
} else {
|
|
163402
|
-
|
|
163402
|
+
fs62.readlink(dest, (err2, resolvedDest) => {
|
|
163403
163403
|
if (err2) {
|
|
163404
|
-
if (err2.code === "EINVAL" || err2.code === "UNKNOWN") return
|
|
163404
|
+
if (err2.code === "EINVAL" || err2.code === "UNKNOWN") return fs62.symlink(resolvedSrc, dest, cb2);
|
|
163405
163405
|
return cb2(err2);
|
|
163406
163406
|
}
|
|
163407
163407
|
if (opts.dereference) {
|
|
@@ -163419,9 +163419,9 @@ var require_copy = __commonJS({
|
|
|
163419
163419
|
});
|
|
163420
163420
|
}
|
|
163421
163421
|
function copyLink(resolvedSrc, dest, cb2) {
|
|
163422
|
-
|
|
163422
|
+
fs62.unlink(dest, (err) => {
|
|
163423
163423
|
if (err) return cb2(err);
|
|
163424
|
-
return
|
|
163424
|
+
return fs62.symlink(resolvedSrc, dest, cb2);
|
|
163425
163425
|
});
|
|
163426
163426
|
}
|
|
163427
163427
|
module2.exports = copy;
|
|
@@ -163443,7 +163443,7 @@ var require_copy2 = __commonJS({
|
|
|
163443
163443
|
var require_rimraf = __commonJS({
|
|
163444
163444
|
"node_modules/fs-extra/lib/remove/rimraf.js"(exports2, module2) {
|
|
163445
163445
|
"use strict";
|
|
163446
|
-
var
|
|
163446
|
+
var fs62 = require_graceful_fs();
|
|
163447
163447
|
var path68 = __require("path");
|
|
163448
163448
|
var assert7 = __require("assert");
|
|
163449
163449
|
var isWindows4 = process.platform === "win32";
|
|
@@ -163457,9 +163457,9 @@ var require_rimraf = __commonJS({
|
|
|
163457
163457
|
"readdir"
|
|
163458
163458
|
];
|
|
163459
163459
|
methods.forEach((m) => {
|
|
163460
|
-
options3[m] = options3[m] ||
|
|
163460
|
+
options3[m] = options3[m] || fs62[m];
|
|
163461
163461
|
m = m + "Sync";
|
|
163462
|
-
options3[m] = options3[m] ||
|
|
163462
|
+
options3[m] = options3[m] || fs62[m];
|
|
163463
163463
|
});
|
|
163464
163464
|
options3.maxBusyTries = options3.maxBusyTries || 3;
|
|
163465
163465
|
}
|
|
@@ -163704,14 +163704,14 @@ var require_empty = __commonJS({
|
|
|
163704
163704
|
"node_modules/fs-extra/lib/empty/index.js"(exports2, module2) {
|
|
163705
163705
|
"use strict";
|
|
163706
163706
|
var u = require_universalify().fromCallback;
|
|
163707
|
-
var
|
|
163707
|
+
var fs62 = require_graceful_fs();
|
|
163708
163708
|
var path68 = __require("path");
|
|
163709
163709
|
var mkdir6 = require_mkdirs2();
|
|
163710
163710
|
var remove = require_remove();
|
|
163711
163711
|
var emptyDir = u(function emptyDir2(dir, callback) {
|
|
163712
163712
|
callback = callback || function() {
|
|
163713
163713
|
};
|
|
163714
|
-
|
|
163714
|
+
fs62.readdir(dir, (err, items) => {
|
|
163715
163715
|
if (err) return mkdir6.mkdirs(dir, callback);
|
|
163716
163716
|
items = items.map((item) => path68.join(dir, item));
|
|
163717
163717
|
deleteItem();
|
|
@@ -163728,7 +163728,7 @@ var require_empty = __commonJS({
|
|
|
163728
163728
|
function emptyDirSync(dir) {
|
|
163729
163729
|
let items;
|
|
163730
163730
|
try {
|
|
163731
|
-
items =
|
|
163731
|
+
items = fs62.readdirSync(dir);
|
|
163732
163732
|
} catch (err) {
|
|
163733
163733
|
return mkdir6.mkdirsSync(dir);
|
|
163734
163734
|
}
|
|
@@ -163752,17 +163752,17 @@ var require_file = __commonJS({
|
|
|
163752
163752
|
"use strict";
|
|
163753
163753
|
var u = require_universalify().fromCallback;
|
|
163754
163754
|
var path68 = __require("path");
|
|
163755
|
-
var
|
|
163755
|
+
var fs62 = require_graceful_fs();
|
|
163756
163756
|
var mkdir6 = require_mkdirs2();
|
|
163757
163757
|
var pathExists3 = require_path_exists().pathExists;
|
|
163758
163758
|
function createFile(file2, callback) {
|
|
163759
163759
|
function makeFile() {
|
|
163760
|
-
|
|
163760
|
+
fs62.writeFile(file2, "", (err) => {
|
|
163761
163761
|
if (err) return callback(err);
|
|
163762
163762
|
callback();
|
|
163763
163763
|
});
|
|
163764
163764
|
}
|
|
163765
|
-
|
|
163765
|
+
fs62.stat(file2, (err, stats) => {
|
|
163766
163766
|
if (!err && stats.isFile()) return callback();
|
|
163767
163767
|
const dir = path68.dirname(file2);
|
|
163768
163768
|
pathExists3(dir, (err2, dirExists) => {
|
|
@@ -163778,15 +163778,15 @@ var require_file = __commonJS({
|
|
|
163778
163778
|
function createFileSync(file2) {
|
|
163779
163779
|
let stats;
|
|
163780
163780
|
try {
|
|
163781
|
-
stats =
|
|
163781
|
+
stats = fs62.statSync(file2);
|
|
163782
163782
|
} catch (e) {
|
|
163783
163783
|
}
|
|
163784
163784
|
if (stats && stats.isFile()) return;
|
|
163785
163785
|
const dir = path68.dirname(file2);
|
|
163786
|
-
if (!
|
|
163786
|
+
if (!fs62.existsSync(dir)) {
|
|
163787
163787
|
mkdir6.mkdirsSync(dir);
|
|
163788
163788
|
}
|
|
163789
|
-
|
|
163789
|
+
fs62.writeFileSync(file2, "");
|
|
163790
163790
|
}
|
|
163791
163791
|
module2.exports = {
|
|
163792
163792
|
createFile: u(createFile),
|
|
@@ -163801,12 +163801,12 @@ var require_link = __commonJS({
|
|
|
163801
163801
|
"use strict";
|
|
163802
163802
|
var u = require_universalify().fromCallback;
|
|
163803
163803
|
var path68 = __require("path");
|
|
163804
|
-
var
|
|
163804
|
+
var fs62 = require_graceful_fs();
|
|
163805
163805
|
var mkdir6 = require_mkdirs2();
|
|
163806
163806
|
var pathExists3 = require_path_exists().pathExists;
|
|
163807
163807
|
function createLink(srcpath, dstpath, callback) {
|
|
163808
163808
|
function makeLink(srcpath2, dstpath2) {
|
|
163809
|
-
|
|
163809
|
+
fs62.link(srcpath2, dstpath2, (err) => {
|
|
163810
163810
|
if (err) return callback(err);
|
|
163811
163811
|
callback(null);
|
|
163812
163812
|
});
|
|
@@ -163814,7 +163814,7 @@ var require_link = __commonJS({
|
|
|
163814
163814
|
pathExists3(dstpath, (err, destinationExists) => {
|
|
163815
163815
|
if (err) return callback(err);
|
|
163816
163816
|
if (destinationExists) return callback(null);
|
|
163817
|
-
|
|
163817
|
+
fs62.lstat(srcpath, (err2) => {
|
|
163818
163818
|
if (err2) {
|
|
163819
163819
|
err2.message = err2.message.replace("lstat", "ensureLink");
|
|
163820
163820
|
return callback(err2);
|
|
@@ -163832,19 +163832,19 @@ var require_link = __commonJS({
|
|
|
163832
163832
|
});
|
|
163833
163833
|
}
|
|
163834
163834
|
function createLinkSync(srcpath, dstpath) {
|
|
163835
|
-
const destinationExists =
|
|
163835
|
+
const destinationExists = fs62.existsSync(dstpath);
|
|
163836
163836
|
if (destinationExists) return void 0;
|
|
163837
163837
|
try {
|
|
163838
|
-
|
|
163838
|
+
fs62.lstatSync(srcpath);
|
|
163839
163839
|
} catch (err) {
|
|
163840
163840
|
err.message = err.message.replace("lstat", "ensureLink");
|
|
163841
163841
|
throw err;
|
|
163842
163842
|
}
|
|
163843
163843
|
const dir = path68.dirname(dstpath);
|
|
163844
|
-
const dirExists =
|
|
163845
|
-
if (dirExists) return
|
|
163844
|
+
const dirExists = fs62.existsSync(dir);
|
|
163845
|
+
if (dirExists) return fs62.linkSync(srcpath, dstpath);
|
|
163846
163846
|
mkdir6.mkdirsSync(dir);
|
|
163847
|
-
return
|
|
163847
|
+
return fs62.linkSync(srcpath, dstpath);
|
|
163848
163848
|
}
|
|
163849
163849
|
module2.exports = {
|
|
163850
163850
|
createLink: u(createLink),
|
|
@@ -163858,11 +163858,11 @@ var require_symlink_paths = __commonJS({
|
|
|
163858
163858
|
"node_modules/fs-extra/lib/ensure/symlink-paths.js"(exports2, module2) {
|
|
163859
163859
|
"use strict";
|
|
163860
163860
|
var path68 = __require("path");
|
|
163861
|
-
var
|
|
163861
|
+
var fs62 = require_graceful_fs();
|
|
163862
163862
|
var pathExists3 = require_path_exists().pathExists;
|
|
163863
163863
|
function symlinkPaths(srcpath, dstpath, callback) {
|
|
163864
163864
|
if (path68.isAbsolute(srcpath)) {
|
|
163865
|
-
return
|
|
163865
|
+
return fs62.lstat(srcpath, (err) => {
|
|
163866
163866
|
if (err) {
|
|
163867
163867
|
err.message = err.message.replace("lstat", "ensureSymlink");
|
|
163868
163868
|
return callback(err);
|
|
@@ -163883,7 +163883,7 @@ var require_symlink_paths = __commonJS({
|
|
|
163883
163883
|
"toDst": srcpath
|
|
163884
163884
|
});
|
|
163885
163885
|
} else {
|
|
163886
|
-
return
|
|
163886
|
+
return fs62.lstat(srcpath, (err2) => {
|
|
163887
163887
|
if (err2) {
|
|
163888
163888
|
err2.message = err2.message.replace("lstat", "ensureSymlink");
|
|
163889
163889
|
return callback(err2);
|
|
@@ -163900,7 +163900,7 @@ var require_symlink_paths = __commonJS({
|
|
|
163900
163900
|
function symlinkPathsSync(srcpath, dstpath) {
|
|
163901
163901
|
let exists;
|
|
163902
163902
|
if (path68.isAbsolute(srcpath)) {
|
|
163903
|
-
exists =
|
|
163903
|
+
exists = fs62.existsSync(srcpath);
|
|
163904
163904
|
if (!exists) throw new Error("absolute srcpath does not exist");
|
|
163905
163905
|
return {
|
|
163906
163906
|
"toCwd": srcpath,
|
|
@@ -163909,14 +163909,14 @@ var require_symlink_paths = __commonJS({
|
|
|
163909
163909
|
} else {
|
|
163910
163910
|
const dstdir = path68.dirname(dstpath);
|
|
163911
163911
|
const relativeToDst = path68.join(dstdir, srcpath);
|
|
163912
|
-
exists =
|
|
163912
|
+
exists = fs62.existsSync(relativeToDst);
|
|
163913
163913
|
if (exists) {
|
|
163914
163914
|
return {
|
|
163915
163915
|
"toCwd": relativeToDst,
|
|
163916
163916
|
"toDst": srcpath
|
|
163917
163917
|
};
|
|
163918
163918
|
} else {
|
|
163919
|
-
exists =
|
|
163919
|
+
exists = fs62.existsSync(srcpath);
|
|
163920
163920
|
if (!exists) throw new Error("relative srcpath does not exist");
|
|
163921
163921
|
return {
|
|
163922
163922
|
"toCwd": srcpath,
|
|
@@ -163936,12 +163936,12 @@ var require_symlink_paths = __commonJS({
|
|
|
163936
163936
|
var require_symlink_type = __commonJS({
|
|
163937
163937
|
"node_modules/fs-extra/lib/ensure/symlink-type.js"(exports2, module2) {
|
|
163938
163938
|
"use strict";
|
|
163939
|
-
var
|
|
163939
|
+
var fs62 = require_graceful_fs();
|
|
163940
163940
|
function symlinkType(srcpath, type, callback) {
|
|
163941
163941
|
callback = typeof type === "function" ? type : callback;
|
|
163942
163942
|
type = typeof type === "function" ? false : type;
|
|
163943
163943
|
if (type) return callback(null, type);
|
|
163944
|
-
|
|
163944
|
+
fs62.lstat(srcpath, (err, stats) => {
|
|
163945
163945
|
if (err) return callback(null, "file");
|
|
163946
163946
|
type = stats && stats.isDirectory() ? "dir" : "file";
|
|
163947
163947
|
callback(null, type);
|
|
@@ -163951,7 +163951,7 @@ var require_symlink_type = __commonJS({
|
|
|
163951
163951
|
let stats;
|
|
163952
163952
|
if (type) return type;
|
|
163953
163953
|
try {
|
|
163954
|
-
stats =
|
|
163954
|
+
stats = fs62.lstatSync(srcpath);
|
|
163955
163955
|
} catch (e) {
|
|
163956
163956
|
return "file";
|
|
163957
163957
|
}
|
|
@@ -163970,7 +163970,7 @@ var require_symlink = __commonJS({
|
|
|
163970
163970
|
"use strict";
|
|
163971
163971
|
var u = require_universalify().fromCallback;
|
|
163972
163972
|
var path68 = __require("path");
|
|
163973
|
-
var
|
|
163973
|
+
var fs62 = require_graceful_fs();
|
|
163974
163974
|
var _mkdirs = require_mkdirs2();
|
|
163975
163975
|
var mkdirs = _mkdirs.mkdirs;
|
|
163976
163976
|
var mkdirsSync = _mkdirs.mkdirsSync;
|
|
@@ -163995,10 +163995,10 @@ var require_symlink = __commonJS({
|
|
|
163995
163995
|
const dir = path68.dirname(dstpath);
|
|
163996
163996
|
pathExists3(dir, (err4, dirExists) => {
|
|
163997
163997
|
if (err4) return callback(err4);
|
|
163998
|
-
if (dirExists) return
|
|
163998
|
+
if (dirExists) return fs62.symlink(srcpath, dstpath, type2, callback);
|
|
163999
163999
|
mkdirs(dir, (err5) => {
|
|
164000
164000
|
if (err5) return callback(err5);
|
|
164001
|
-
|
|
164001
|
+
fs62.symlink(srcpath, dstpath, type2, callback);
|
|
164002
164002
|
});
|
|
164003
164003
|
});
|
|
164004
164004
|
});
|
|
@@ -164006,16 +164006,16 @@ var require_symlink = __commonJS({
|
|
|
164006
164006
|
});
|
|
164007
164007
|
}
|
|
164008
164008
|
function createSymlinkSync(srcpath, dstpath, type) {
|
|
164009
|
-
const destinationExists =
|
|
164009
|
+
const destinationExists = fs62.existsSync(dstpath);
|
|
164010
164010
|
if (destinationExists) return void 0;
|
|
164011
164011
|
const relative11 = symlinkPathsSync(srcpath, dstpath);
|
|
164012
164012
|
srcpath = relative11.toDst;
|
|
164013
164013
|
type = symlinkTypeSync(relative11.toCwd, type);
|
|
164014
164014
|
const dir = path68.dirname(dstpath);
|
|
164015
|
-
const exists =
|
|
164016
|
-
if (exists) return
|
|
164015
|
+
const exists = fs62.existsSync(dir);
|
|
164016
|
+
if (exists) return fs62.symlinkSync(srcpath, dstpath, type);
|
|
164017
164017
|
mkdirsSync(dir);
|
|
164018
|
-
return
|
|
164018
|
+
return fs62.symlinkSync(srcpath, dstpath, type);
|
|
164019
164019
|
}
|
|
164020
164020
|
module2.exports = {
|
|
164021
164021
|
createSymlink: u(createSymlink),
|
|
@@ -164069,12 +164069,12 @@ var require_jsonfile = __commonJS({
|
|
|
164069
164069
|
options3 = { encoding: options3 };
|
|
164070
164070
|
}
|
|
164071
164071
|
options3 = options3 || {};
|
|
164072
|
-
var
|
|
164072
|
+
var fs62 = options3.fs || _fs;
|
|
164073
164073
|
var shouldThrow = true;
|
|
164074
164074
|
if ("throws" in options3) {
|
|
164075
164075
|
shouldThrow = options3.throws;
|
|
164076
164076
|
}
|
|
164077
|
-
|
|
164077
|
+
fs62.readFile(file2, options3, function(err, data) {
|
|
164078
164078
|
if (err) return callback(err);
|
|
164079
164079
|
data = stripBom(data);
|
|
164080
164080
|
var obj2;
|
|
@@ -164096,13 +164096,13 @@ var require_jsonfile = __commonJS({
|
|
|
164096
164096
|
if (typeof options3 === "string") {
|
|
164097
164097
|
options3 = { encoding: options3 };
|
|
164098
164098
|
}
|
|
164099
|
-
var
|
|
164099
|
+
var fs62 = options3.fs || _fs;
|
|
164100
164100
|
var shouldThrow = true;
|
|
164101
164101
|
if ("throws" in options3) {
|
|
164102
164102
|
shouldThrow = options3.throws;
|
|
164103
164103
|
}
|
|
164104
164104
|
try {
|
|
164105
|
-
var content =
|
|
164105
|
+
var content = fs62.readFileSync(file2, options3);
|
|
164106
164106
|
content = stripBom(content);
|
|
164107
164107
|
return JSON.parse(content, options3.reviver);
|
|
164108
164108
|
} catch (err) {
|
|
@@ -164134,7 +164134,7 @@ var require_jsonfile = __commonJS({
|
|
|
164134
164134
|
options3 = {};
|
|
164135
164135
|
}
|
|
164136
164136
|
options3 = options3 || {};
|
|
164137
|
-
var
|
|
164137
|
+
var fs62 = options3.fs || _fs;
|
|
164138
164138
|
var str2 = "";
|
|
164139
164139
|
try {
|
|
164140
164140
|
str2 = stringify2(obj2, options3);
|
|
@@ -164142,13 +164142,13 @@ var require_jsonfile = __commonJS({
|
|
|
164142
164142
|
if (callback) callback(err, null);
|
|
164143
164143
|
return;
|
|
164144
164144
|
}
|
|
164145
|
-
|
|
164145
|
+
fs62.writeFile(file2, str2, options3, callback);
|
|
164146
164146
|
}
|
|
164147
164147
|
function writeFileSync26(file2, obj2, options3) {
|
|
164148
164148
|
options3 = options3 || {};
|
|
164149
|
-
var
|
|
164149
|
+
var fs62 = options3.fs || _fs;
|
|
164150
164150
|
var str2 = stringify2(obj2, options3);
|
|
164151
|
-
return
|
|
164151
|
+
return fs62.writeFileSync(file2, str2, options3);
|
|
164152
164152
|
}
|
|
164153
164153
|
function stripBom(content) {
|
|
164154
164154
|
if (Buffer.isBuffer(content)) content = content.toString("utf8");
|
|
@@ -164212,13 +164212,13 @@ var require_output_json = __commonJS({
|
|
|
164212
164212
|
var require_output_json_sync = __commonJS({
|
|
164213
164213
|
"node_modules/fs-extra/lib/json/output-json-sync.js"(exports2, module2) {
|
|
164214
164214
|
"use strict";
|
|
164215
|
-
var
|
|
164215
|
+
var fs62 = require_graceful_fs();
|
|
164216
164216
|
var path68 = __require("path");
|
|
164217
164217
|
var mkdir6 = require_mkdirs2();
|
|
164218
164218
|
var jsonFile = require_jsonfile2();
|
|
164219
164219
|
function outputJsonSync(file2, data, options3) {
|
|
164220
164220
|
const dir = path68.dirname(file2);
|
|
164221
|
-
if (!
|
|
164221
|
+
if (!fs62.existsSync(dir)) {
|
|
164222
164222
|
mkdir6.mkdirsSync(dir);
|
|
164223
164223
|
}
|
|
164224
164224
|
jsonFile.writeJsonSync(file2, data, options3);
|
|
@@ -164249,7 +164249,7 @@ var require_json4 = __commonJS({
|
|
|
164249
164249
|
var require_move_sync = __commonJS({
|
|
164250
164250
|
"node_modules/fs-extra/lib/move-sync/move-sync.js"(exports2, module2) {
|
|
164251
164251
|
"use strict";
|
|
164252
|
-
var
|
|
164252
|
+
var fs62 = require_graceful_fs();
|
|
164253
164253
|
var path68 = __require("path");
|
|
164254
164254
|
var copySync = require_copy_sync2().copySync;
|
|
164255
164255
|
var removeSync = require_remove().removeSync;
|
|
@@ -164268,12 +164268,12 @@ var require_move_sync = __commonJS({
|
|
|
164268
164268
|
removeSync(dest);
|
|
164269
164269
|
return rename2(src, dest, overwrite);
|
|
164270
164270
|
}
|
|
164271
|
-
if (
|
|
164271
|
+
if (fs62.existsSync(dest)) throw new Error("dest already exists.");
|
|
164272
164272
|
return rename2(src, dest, overwrite);
|
|
164273
164273
|
}
|
|
164274
164274
|
function rename2(src, dest, overwrite) {
|
|
164275
164275
|
try {
|
|
164276
|
-
|
|
164276
|
+
fs62.renameSync(src, dest);
|
|
164277
164277
|
} catch (err) {
|
|
164278
164278
|
if (err.code !== "EXDEV") throw err;
|
|
164279
164279
|
return moveAcrossDevice(src, dest, overwrite);
|
|
@@ -164305,7 +164305,7 @@ var require_move_sync2 = __commonJS({
|
|
|
164305
164305
|
var require_move = __commonJS({
|
|
164306
164306
|
"node_modules/fs-extra/lib/move/move.js"(exports2, module2) {
|
|
164307
164307
|
"use strict";
|
|
164308
|
-
var
|
|
164308
|
+
var fs62 = require_graceful_fs();
|
|
164309
164309
|
var path68 = __require("path");
|
|
164310
164310
|
var copy = require_copy2().copy;
|
|
164311
164311
|
var remove = require_remove().remove;
|
|
@@ -164344,7 +164344,7 @@ var require_move = __commonJS({
|
|
|
164344
164344
|
});
|
|
164345
164345
|
}
|
|
164346
164346
|
function rename2(src, dest, overwrite, cb2) {
|
|
164347
|
-
|
|
164347
|
+
fs62.rename(src, dest, (err) => {
|
|
164348
164348
|
if (!err) return cb2();
|
|
164349
164349
|
if (err.code !== "EXDEV") return cb2(err);
|
|
164350
164350
|
return moveAcrossDevice(src, dest, overwrite, cb2);
|
|
@@ -164380,7 +164380,7 @@ var require_output = __commonJS({
|
|
|
164380
164380
|
"node_modules/fs-extra/lib/output/index.js"(exports2, module2) {
|
|
164381
164381
|
"use strict";
|
|
164382
164382
|
var u = require_universalify().fromCallback;
|
|
164383
|
-
var
|
|
164383
|
+
var fs62 = require_graceful_fs();
|
|
164384
164384
|
var path68 = __require("path");
|
|
164385
164385
|
var mkdir6 = require_mkdirs2();
|
|
164386
164386
|
var pathExists3 = require_path_exists().pathExists;
|
|
@@ -164392,20 +164392,20 @@ var require_output = __commonJS({
|
|
|
164392
164392
|
const dir = path68.dirname(file2);
|
|
164393
164393
|
pathExists3(dir, (err, itDoes) => {
|
|
164394
164394
|
if (err) return callback(err);
|
|
164395
|
-
if (itDoes) return
|
|
164395
|
+
if (itDoes) return fs62.writeFile(file2, data, encoding, callback);
|
|
164396
164396
|
mkdir6.mkdirs(dir, (err2) => {
|
|
164397
164397
|
if (err2) return callback(err2);
|
|
164398
|
-
|
|
164398
|
+
fs62.writeFile(file2, data, encoding, callback);
|
|
164399
164399
|
});
|
|
164400
164400
|
});
|
|
164401
164401
|
}
|
|
164402
164402
|
function outputFileSync(file2, ...args2) {
|
|
164403
164403
|
const dir = path68.dirname(file2);
|
|
164404
|
-
if (
|
|
164405
|
-
return
|
|
164404
|
+
if (fs62.existsSync(dir)) {
|
|
164405
|
+
return fs62.writeFileSync(file2, ...args2);
|
|
164406
164406
|
}
|
|
164407
164407
|
mkdir6.mkdirsSync(dir);
|
|
164408
|
-
|
|
164408
|
+
fs62.writeFileSync(file2, ...args2);
|
|
164409
164409
|
}
|
|
164410
164410
|
module2.exports = {
|
|
164411
164411
|
outputFile: u(outputFile),
|
|
@@ -164435,11 +164435,11 @@ var require_lib4 = __commonJS({
|
|
|
164435
164435
|
require_path_exists(),
|
|
164436
164436
|
require_remove()
|
|
164437
164437
|
);
|
|
164438
|
-
var
|
|
164439
|
-
if (Object.getOwnPropertyDescriptor(
|
|
164438
|
+
var fs62 = __require("fs");
|
|
164439
|
+
if (Object.getOwnPropertyDescriptor(fs62, "promises")) {
|
|
164440
164440
|
Object.defineProperty(module2.exports, "promises", {
|
|
164441
164441
|
get() {
|
|
164442
|
-
return
|
|
164442
|
+
return fs62.promises;
|
|
164443
164443
|
}
|
|
164444
164444
|
});
|
|
164445
164445
|
}
|
|
@@ -168067,7 +168067,7 @@ var require_third_party = __commonJS({
|
|
|
168067
168067
|
"use strict";
|
|
168068
168068
|
var path68 = __require("path");
|
|
168069
168069
|
var Module = __require("module");
|
|
168070
|
-
var
|
|
168070
|
+
var fs62 = __require("fs");
|
|
168071
168071
|
var resolveFrom = (fromDir, moduleId, silent) => {
|
|
168072
168072
|
if (typeof fromDir !== "string") {
|
|
168073
168073
|
throw new TypeError(`Expected \`fromDir\` to be of type \`string\`, got \`${typeof fromDir}\``);
|
|
@@ -168076,7 +168076,7 @@ var require_third_party = __commonJS({
|
|
|
168076
168076
|
throw new TypeError(`Expected \`moduleId\` to be of type \`string\`, got \`${typeof moduleId}\``);
|
|
168077
168077
|
}
|
|
168078
168078
|
try {
|
|
168079
|
-
fromDir =
|
|
168079
|
+
fromDir = fs62.realpathSync(fromDir);
|
|
168080
168080
|
} catch (err) {
|
|
168081
168081
|
if (err.code === "ENOENT") {
|
|
168082
168082
|
fromDir = path68.resolve(fromDir);
|
|
@@ -176367,13 +176367,13 @@ ${error42.message}`;
|
|
|
176367
176367
|
var {
|
|
176368
176368
|
promisify: promisify6
|
|
176369
176369
|
} = __require("util");
|
|
176370
|
-
var
|
|
176370
|
+
var fs62 = __require("fs");
|
|
176371
176371
|
async function isType(fsStatType, statsMethodName, filePath) {
|
|
176372
176372
|
if (typeof filePath !== "string") {
|
|
176373
176373
|
throw new TypeError(`Expected a string, got ${typeof filePath}`);
|
|
176374
176374
|
}
|
|
176375
176375
|
try {
|
|
176376
|
-
const stats = await promisify6(
|
|
176376
|
+
const stats = await promisify6(fs62[fsStatType])(filePath);
|
|
176377
176377
|
return stats[statsMethodName]();
|
|
176378
176378
|
} catch (error42) {
|
|
176379
176379
|
if (error42.code === "ENOENT") {
|
|
@@ -176387,7 +176387,7 @@ ${error42.message}`;
|
|
|
176387
176387
|
throw new TypeError(`Expected a string, got ${typeof filePath}`);
|
|
176388
176388
|
}
|
|
176389
176389
|
try {
|
|
176390
|
-
return
|
|
176390
|
+
return fs62[fsStatType](filePath)[statsMethodName]();
|
|
176391
176391
|
} catch (error42) {
|
|
176392
176392
|
if (error42.code === "ENOENT") {
|
|
176393
176393
|
return false;
|
|
@@ -176704,9 +176704,9 @@ ${error42.message}`;
|
|
|
176704
176704
|
"node_modules/find-parent-dir/index.js"(exports22, module22) {
|
|
176705
176705
|
"use strict";
|
|
176706
176706
|
var path68 = __require("path");
|
|
176707
|
-
var
|
|
176708
|
-
var exists =
|
|
176709
|
-
var existsSync48 =
|
|
176707
|
+
var fs62 = __require("fs");
|
|
176708
|
+
var exists = fs62.exists || path68.exists;
|
|
176709
|
+
var existsSync48 = fs62.existsSync || path68.existsSync;
|
|
176710
176710
|
function splitPath(path210) {
|
|
176711
176711
|
var parts = path210.split(/(\/|\\)/);
|
|
176712
176712
|
if (!parts.length)
|
|
@@ -177094,7 +177094,7 @@ var require_parser_babel = __commonJS({
|
|
|
177094
177094
|
return !!p && p.enumerable;
|
|
177095
177095
|
} : ii;
|
|
177096
177096
|
});
|
|
177097
|
-
var
|
|
177097
|
+
var fs62 = E((Ed, li) => {
|
|
177098
177098
|
li.exports = function(l2, h) {
|
|
177099
177099
|
return { enumerable: !(l2 & 1), configurable: !(l2 & 2), writable: !(l2 & 4), value: h };
|
|
177100
177100
|
};
|
|
@@ -177319,7 +177319,7 @@ var require_parser_babel = __commonJS({
|
|
|
177319
177319
|
});
|
|
177320
177320
|
});
|
|
177321
177321
|
var Os = E((Aa) => {
|
|
177322
|
-
var Hu = ye(), zu = wt(), Vu = oi(), Ku =
|
|
177322
|
+
var Hu = ye(), zu = wt(), Vu = oi(), Ku = fs62(), Wu = It(), Gu = Ds(), Ju = ve(), Xu = Ls(), Pa = Object.getOwnPropertyDescriptor;
|
|
177323
177323
|
Aa.f = Hu ? Pa : function(h, p) {
|
|
177324
177324
|
if (h = Wu(h), p = Gu(p), Xu) try {
|
|
177325
177325
|
return Pa(h, p);
|
|
@@ -177360,7 +177360,7 @@ var require_parser_babel = __commonJS({
|
|
|
177360
177360
|
};
|
|
177361
177361
|
});
|
|
177362
177362
|
var js = E((nm, Sa) => {
|
|
177363
|
-
var oc = ye(), lc = et(), hc =
|
|
177363
|
+
var oc = ye(), lc = et(), hc = fs62();
|
|
177364
177364
|
Sa.exports = oc ? function(l2, h, p) {
|
|
177365
177365
|
return lc.f(l2, h, hc(1, p));
|
|
177366
177366
|
} : function(l2, h, p) {
|
|
@@ -185887,7 +185887,7 @@ var require_parser_flow = __commonJS({
|
|
|
185887
185887
|
Lt(), (function(j0) {
|
|
185888
185888
|
"use strict";
|
|
185889
185889
|
var ur = "member_property_expression", hr3 = 8483, le = 12538, Ve = "children", Le = "predicate_expression", Fn = "??", gn = "Identifier", et = 64311, at = 192, Zt = 11710, Ut = 122654, kn = 110947, Qt = 67591, rf = "!", hn = "directive", Mn = 163, ut = "block", On = 126553, ru = 12735, E7 = 68096, Ct = "params", Ss = 93071, In = 122, Jc = 72767, Ai = 181, vi = "for_statement", Rt = 128, S7 = "start", ov = 43867, xU = "_method", R_ = 70414, cv = ">", ef = "catch_body", j_ = 120121, aU = "the end of an expression statement (`;`)", G_ = 124907, oU = 1027, v4 = 126558, nf = "jsx_fragment", M_ = 42527, B_ = "decorators", q_ = 82943, U_ = 71039, H_ = 110882, X_ = 67514, cU = 8472, sU = "update", Y_ = 12783, V_ = 12438, z_ = 12352, K_ = 8511, W_ = 42961, F2 = "method", l4 = 120713, tf = 8191, uf = "function_param", J_ = 67871, g7 = "throw", $_ = 11507, ff = "class_extends", Z_ = 43470, xf = "object_key_literal", Q_ = 71903, ry = 65437, af = "jsx_child", ey = 43311, b4 = 119995, ny = 67637, p4 = 68116, ty = 66204, uy = 65470, vU = "<<=", iy = "e", fy = 67391, m4 = 11631, _4 = 69956, sv = "tparams", xy = 66735, ay = 64217, oy = 43697, lU = "Invalid binary/octal ", cy = -43, sy = 43255, y4 = "do", vy = 43301, of2 = "binding_pattern", ly = 120487, cf = "jsx_attribute_value_literal", d4 = "package", sf = "interface_declaration", by = 72750, py = 119892, bU = "tail", pU = -53, vf = 111, mU = 180, my = 119807, _y = 71959, _U = 8206, yy = 65613, $c = "type", dy = 55215, hy = -42, lf = "export_default_declaration_decl", h4 = 72970, yU = "filtered_out", ky = 70416, dU = 229, bf = "function_this_param", hU = "module", k4 = "try", wy = 70143, Ey = 125183, Sy = 70412, h0 = "@])", pf = "binary", kU = "infinity", w4 = "private", gy = 65500, E4 = "has_unknown_members", mf = "pattern_array_rest_element", wU = "Property", gs = "implements", Fy = 12548, EU = 211, _f = "if_alternate_statement", Ty = 124903, Oy = 43395, vv = "src/parser/type_parser.ml", Iy = 66915, S4 = 126552, Ay = 120712, g4 = 126555, Ny = 120596, o7 = "raw", F7 = 112, yf = "class_declaration", df = "statement", Cy = 126624, Py = 71235, hf = "meta_property", Dy = 44002, Ly = 8467, kf = "class_property_value", Ry = 8318, wf = "optional_call", jy = 43761, Zc = "kind", Ef = "class_identifier", Gy = 69955, My = 66378, By = 120512, qy = 68220, Ht = 110, Uy = 123583, T2 = "declare", Sf = "typeof_member_identifier", gf = "catch_clause", Hy = 11742, Xy = 70831, F4 = 8468, Ff = "for_in_assignment_pattern", SU = -32, Tf = "object_", Yy = 43262, Vy = "mixins", Of = "type_param", gU = "visit_trailing_comment", zy = 71839, O2 = "boolean", If = "call", FU = "expected *", Ky = 43010, Wy = 241, Au = "expression", I2 = "column", Jy = 43595, $y = 43258, Zy = 191456, Af = "member_type_identifier", A2 = 117, Qy = 43754, T4 = 126544, TU = "Assert_failure", rd = 66517, ed = 42964, Nf = "enum_number_member", OU = "a string", nd = 65855, td = 119993, ud = "opaque", IU = 870530776, id = 67711, fd = 66994, Cf = "enum_symbol_body", AU = 185, NU = 219, O4 = "filter", xd = 43615, I4 = 126560, ad = 19903, t1 = "get", od = 64316, CU = `Fatal error: exception %s
|
|
185890
|
-
`, A4 = "exported", PU = ">=", Wu = "return", N4 = "members", C4 = 256, cd = 66962, sd = 64279, vd = 67829, DU = "Enum `", LU = "&&=", Pf = "object_property", ld = 67589, Df = "pattern_object_property", Lf = "template_literal_element", bd = 69551, Ni = 127343600, P4 = 70452, Rf = "class_element", pd = "ENOENT", md = 71131, RU = 200, _d4 = 120137, yd = 94098, D4 = 72349, jU = 1328, jf = "function_identifier", dd = 126543, Gf = "jsx_attribute_name", hd = 43487, kr = "@[<2>{ ", GU = "ENOTEMPTY", kd = 65908, wd = 72191, L4 = 120513, Ed = 92909, MU = "bound", Sd = 162, BU = 172, R4 = 120070, Mf = "enum_number_body", Bf = "update_expression", qf = "spread_element", Uf = "for_in_left_declaration", j4 = 64319, N2 = "%d", gd = 12703, G4 = 11687, qU = "@,))@]", Fd = 42239, Hf = "type_cast", Td = 42508, Xf = "class_implements_interface", Od = 67640, Id = 605857695, UU = "Cygwin", HU = "buffer.ml", Ad = 124908, XU = "handler", Nd = 66207, Cd = 66963, M4 = 11558, YU = "-=", Pn = 113, Pd = 113775, VU = "collect_comments", B4 = 126540, lv = "set", Yf = "assignment_pattern", Nu = "right", Vf = "object_key_identifier", q4 = 120133, Dd = "Invalid number ", Ld = 42963, U4 = 12539, Rd = 68023, jd = 43798, ni = 100, zf = "pattern_literal", Kf = "generic_type", zU = "*", Gd = 42783, Md = 42890, Bd = 230, H4 = "else", qd = 70851, Ud = 69289, KU = "the start of a statement", X4 = "properties", Hd = 43696, Xd = 110959, Wf = "declare_function", Y4 = 120597, Jf = "object_indexer_property_type", Yd = 70492, Vd = 2048, C2 = "arguments", Xr = "comments", zd = 43042, Qc = 107, Kd = 110575, WU = 161, Wd = 67431, V4 = "line", P2 = "declaration", eu = "static", $f = "pattern_identifier", Jd = 69958, JU = "the", $d = "Unix.Unix_error", Zd = 43814, rs = "annot", Qd = 65786, rh = 66303, eh = 64967, nh = 64255, th = 8584, z4 = 120655, $U = "Stack_overflow", uh = 43700, Zf = "syntax_opt", ZU = "/static/", Qf = "comprehension", ih = 253, QU = "Not_found", rH = "+=", eH = 235, fh = 68680, xh = 66954, ah = 64324, oh = 72966, nH = 174, tH = -1053382366, ch = "rest", rx = "pattern_array_element", ex = "jsx_attribute_value_expression", K4 = 65595, nx = "pattern_array_e", uH = 243, sh = 43711, vh = "rmdir", W4 = "symbol", lh = 69926, J4 = "*dummy method*", bh = 43741, T7 = "typeParameters", D2 = "const", iH = 1026, fH = 149, ph = 12341, mh = 72847, _h = 66993, xH = 202, Ci = "false", Xt = 106, yh = 120076, dh = 186, Pi = 128, hh = 125124, kh = "Fatal error: exception ", $4 = 67593, wh = 69297, Eh = 44031, aH = 234, Sh = 92927, gh = 68095, Ju = 8231, tx = "object_key_computed", ux = "labeled_statement", ix = "function_param_pattern", Z4 = 126590, Fh = 65481, Th = 43442, oH = "collect_comments_opt", fx = "variable_declarator", bv = "_", Oh = "compare: functional value", Ih = 67967, pv = "computed", xx = "object_property_type", mt = "id", Ah = 126562, u1 = 114, cH = "comment_bounds", Nh = 70853, Ch = 69247, ax = "class_private_field", Ph = 42237, Dh = 72329, sH = "Invalid_argument", Lh = 113770, Q4 = 94031, Rh = 120092, ox = "declare_class", jh = 67839, Gh = 72250, vH = "%ni", Mh = 92879, lH = "prototype", Fs = "`.", cx = 8287, r8 = 65344, Bh = "&", O7 = "debugger", sx = "type_identifier_reference", bH = "Internal Error: Found private field in object props", vx = "sequence", lx = "call_type_args", pH = 238, qh = 12348, mH = "++", Uh = 68863, Hh = 72001, Xh = 70084, Yh = "label", mv = -45, bx = "jsx_opening_attribute", Vh = 43583, e8 = "%F", zh2 = 43784, Kh = 113791, px = "call_arguments", n8 = 126503, Wh = 43743, $u = "0", Jh = 119967, t8 = 126538, mx = "new_", _v = 449540197, $h = 64109, Zh = 68466, Qh = 177983, wt = 248, _x = "program", Xe = "@,]@]", rk = 68031, yx = "function_type", dx = "type_", u8 = 8484, ek = 67382, nk = 42537, tk = 226, uk = 66559, ik = 42993, fk = 64274, i8 = 71236, xk = 120069, ak = 72105, ok = 126570, ck = "object", sk = 42959, I7 = "break", hx = "for_of_statement", vk = 43695, f8 = 126551, lk = 66955, x8 = 126520, bk = 66499, L2 = 1024, pk = 67455, mk = 43018, _H = 198, a8 = 126522, kx = "function_declaration", _k = 73064, wx = "await", yk = 92728, dk = 70418, hk = 68119, Ex = "function_rest_param", kk = 42653, o8 = 11703, li = "left", c8 = 70449, wk = 184, Sx = "declare_type_alias", gx = 16777215, s8 = 70302, yH = "/=", dH = "|=", Ek = 55242, Sk = 126583, gk = 124927, Fk = 124895, Tk = 72959, Ok = 65497, hH = "Invalid legacy octal ", es = "typeof", Ik = "explicit_type", Fx = "statement_list", Ak = 65495, Tx = "class_method", v8 = 8526, l8 = 244, Nk = 67861, b8 = 119994, p8 = "enum", kH = 2147483647, Ck = 69762, wH = 208, R2 = "in", Pk = 11702, m8 = 67638, EH = ", characters ", Dk = 70753, yv = "super", Lk = 92783, Rk = 8304, _8 = 126504, Ox = "import_specifier", jk = 68324, Gk = 101589, Mk = 67646, Ix = "expression_or_spread", Bk = 74879, qk = 43792, y8 = 43260, Uk = 93052, SH = "{", Hk = 65574, Xk = 125258, dv = 224, Ax = "jsx_element_name_member_expression", j2 = "instanceof", Yk = 69599, Vk = 43560, Nx = "function_expression", d8 = 223, zk = 72242, Kk = 11498, Wk = 126467, Jk = 73112, gH = 140, h8 = 70107, $k = 13311, Cx = "jsx_children", k8 = 126548, Zk = 63743, w8 = 43471, Px = "jsx_expression", Qk = 69864, rw = 71998, ew = 72e3, E8 = 126591, S8 = 12592, Dx = "type_params", nw = 126578, g8 = 126537, wr = "{ ", tw = 123627, Lx = "jsx_spread_attribute", Pe = "@,", uw = 70161, iw = 187, F8 = 126500, Rx = "label_identifier", fw = 42606, jx = "number_literal_type", T8 = 42999, xw = 64310, FH = -594953737, aw = 122623, O8 = "hasUnknownMembers", Gx = "array", TH = "^=", Mx = "enum_string_member", ow = 65536, cw = 65615, ns = "void", sw = 65135, Z0 = ")", OH = 138, vw = 70002, G2 = "let", lw = 70271, bw = "nan", W = "@[%s =@ ", pw = 194559, mw = 110579, Bx = "binding_type_identifier", _w = 42735, IH = 57343, Zu = "/", qx = "for_in_statement_lhs", yw = 43503, dw = 8516, hw = 66938, kw = "ENOTDIR", AH = "TypeParameterInstantiation", ww = 69749, Ew = 65381, Sw = 83526, hv = "number", gw = 12447, NH = 154, I8 = 70286, Fw = 72160, Tw = 43493, CH = 206, Ux = "enum_member_identifier", A8 = 70280, M2 = "function", N8 = 70162, Ow = 255, Iw = 67702, Aw = 66771, Nw = 70312, PH = "|", Cw = 93759, DH = "End_of_file", Pw = 43709, i1 = "new", LH = "Failure", B2 = "local", Dw = 101631, C8 = 8489, P8 = "with", Hx = "enum_declaration", Lw = 218, Rw = 70457, D8 = 8488, Xx = "member", L8 = 64325, jw = 247, Gw = 70448, Mw = 69967, R8 = 126535, Bw = 71934, Yx = "import_named_specifier", qw = 65312, Uw = 126619, Vx = "type_annotation", RH = 56320, Hw = 131071, Xw = 120770, Yw = 67002, zx = "with_", Kx = "statement_fork_point", jH = "finalizer", Vw = 12320, GH = "elements", Wx = "literal", zw = 68607, Kw = 8507, j8 = "each", MH = "Sys_error", Ww = 123535, Jw = 130, Jx = "bigint_literal_type", $w = 64829, G8 = 11727, Zw = 120538, $x = "member_private_name", Zx = "type_alias", BH = "Printexc.handle_uncaught_exception", M8 = 126556, Qx = "tagged_template", ra = "pattern_object_property_literal_key", Qw = 43881, B8 = 72192, rE = 67826, eE = 124910, nE = 66511, ts = "int_of_string", tE = 43249, nr = "None", qH = "FunctionTypeParam", ti = "name", uE = 70285, c7 = 103, iE = 120744, ea = 12288, na = "intersection_type", fE = 11679, q8 = 11559, UH = "callee", xE = 71295, aE = 70018, oE = 11567, cE = 42954, HH = "*-/", Qu = "predicate", ta = "expression_statement", XH = "regexp", sE = 65479, YH = 132, vE = 11389, Bu = "optional", VH = -602162310, z = "@]", lE = 120003, bE = 72249, zH = "Unexpected ", pE = 73008, U8 = "finally", ua = "toplevel_statement_list", KH = "end", mE = 178207, WH = "&=", _E = 70301, JH = "%Li", yE = 72161, dE = 69746, hE = 70460, kE = 12799, H8 = 65535, wE = "loc", EE = 69375, SE = 43518, $H = 205, gE = 65487, ia = "while_", FE = 183983, fa = "typeof_expression", TE = -673950933, OE = 42559, ZH = "||", IE = 124926, AE = 55291, xa = "jsx_element_name_identifier", aa = 8239, X8 = "mixed", QH = 136, NE = -253313196, CE = 11734, Y8 = 67827, PE = 68287, DE = 119976, rX = "**", J = " =", V8 = 888960333, LE = 124902, oa = "tuple_type", eX = 227, RE = 70726, jE = 73111, z8 = 126602, GE = 126529, ca = "object_property_value_type", C0 = "%a", nX = ", ", tX = "<=", ME = 69423, uX = 199, K8 = 11695, BE = 12294, W8 = 11711, qE = 67583, iX = 710, J8 = 126584, UE = 68295, HE = 72703, XE = "prefix", fX = -80, $8 = 69415, YE = 11492, q2 = "class", Z8 = 65575, A7 = "continue", VE = 65663, xX = 2047, Q8 = 68120, zE = 71086, KE = 19967, Di = 782176664, WE = 120779, r3 = 8486, bi = " ", aX = "||=", oX = "Undefined_recursive_module", JE = 66863, cX = "RestElement", e3 = 126634, $E = 66377, ZE = 74751, sa = "jsx_element_name_namespaced", QE = 43334, rS = 66815, N7 = "typeAnnotation", eS = 120126, va = "array_element", n3 = 64285, sX = 189, vX = "**=", Yr = "()", nS = 8543, la = "declare_module", ba = "export_batch_specifier", lX = "%i", bX = ">>>=", tS = 68029, pX = "importKind", C7 = "extends", uS = 64296, t3 = 43259, iS = 71679, fS = 64913, xS = 119969, aS = 94175, oS = 72440, u3 = 65141, pa = "function_", cS = 43071, sS = 42888, vS = 69807, ou = "variance", us = 123, ma = "import_default_specifier", mX = ">>>", lS = 43764, pi = "pattern", bS = 71947, pS = 70655, kv = "consequent", _X = 4096, mS = 183, _S = 68447, yS = 65473, is = 255, dS = 73648, _a20 = "call_type_arg", ya = 8238, hS = 68899, kS = 93026, Ye = "@[<2>[", wS = 110588, da = "comment", yX = 191, ha = "switch_case", dX = 175, ES = 71942, ka = "do_while", wv = "constructor", SS2 = 43587, gS = 43586, wu = "yield", FS = 67462, hX = "fd ", TS = -61, OS = "target", i3 = 72272, U2 = "var", kX = "impltype", f3 = 70108, H2 = "0o", IS = 119972, AS = 92991, x3 = 70441, a3 = 8450, NS = 120074, CS = 66717, wa = "interface_type", o3 = 43880, An = "%B", PS = 111355, Ev = 5760, DS = 11630, c3 = 126499, LS = "of", wX = ">>", EX = "Popping lex mode from empty stack", s3 = 120629, fs61 = 108, RS = 43002, SX = "%=", v3 = 126539, jS = 126502, Ea = "template_literal", GS = "src/parser/statement_parser.ml", MS = ": Not a directory", gX = "b", BS = 67461, qS = 11519, FX = "src/parser/flow_lexer.ml", TX = "Out_of_memory", US = 120570, Sa = 12287, HS = 126534, XS = "index out of bounds", YS = 73029, l3 = "_bigarr02", b3 = 126571, OX = "))", ga = "for_statement_init", IX = "supertype", Fa = "class_property", p3 = "}", f1 = "this", Ta = "declare_module_exports", AX = "@", Oa = "union_type", Li = 65535, Ia = "variance_opt", VS = 94032, NX = 222, zS = 42124, Aa = "this_expression", Na = "jsx_element", CX = "typeArguments", KS = 65019, WS = 125251, JS = 64111, $S = 8471, Ca = "typeof_qualified_identifier", ZS = 70497, PX = "EnumDefaultedMember", Pa = 8202, QS = 66927, P7 = "switch", rg = 69634, Da = "unary_expression", eg = 71215, DX = 126, ng = 67679, tg = 65597, LX = 207, ug = 120686, m3 = 72163, ig = 67001, fg = 42962, xg = 64262, X2 = 124, La = 65279, ag = 126495, RX = 169, og = 71944, jX = -10, _3 = "alternate", cg = 92975, sg = 65489, Y2 = 252, vg = 67807, lg = 43187, bg = 68850, y3 = "export", pg = 66383, GX = "===", Ra = ".", ja = "type_args", MX = 147, mg = 92159, BX = 240, Ga = "jsx_element_name", _g = 72283, yg = 171, x1 = 116, dg = 110587, d3 = 70279, hg = 75075, kg = 65338, Ma = "function_params", wg = 126627, qX = 213, h3 = 73065, Eg = 71352, k3 = 119970, Sg = 70005, gg = 12295, w3 = 120771, Fg = 71494, Tg = 11557, Og = 42191, UX = "flags", Ig = 68437, Ag = 70730, Ba = "optional_indexed_access", qa = "pattern_object_p", Ng = 42785, Ua = "nullable_type", Bn = "value", Cg = 12343, Pg = 68415, Dg = 11694, HX = 221, Lg = 11726, Ha = "syntax", Rg = 119964, XX = "&&", jg = 68497, Gg = 73097, xs = "null", E3 = 126523, Mg = 120084, Bg = 126601, qg = 8454, Ug = "expressions", Hg = 72144, V2 = '"', Zr = "(@[", YX = 1022, VX = 231, Xg = 170, S3 = 12448, Yg = 68786, g3 = "<", zX = 931, KX = "(", WX = 196, JX = 2048, F3 = "an identifier", T3 = 69959, Vg = 68799, $X = "leadingComments", zg = 72969, Kg = 182, Wg = 100351, Xa = "enum_defaulted_member", Jg = 69839, $g = 94026, Zg = 209, ZX = ">>=", Qg = 131, O3 = 12336, s7 = "empty", QX = 331416730, rY = 204, rF = 70479, eF = 69487, nF = 101640, tF = 43123, eY = "([^/]+)", I3 = 8319, nY = 165, Ya = "object_type_property_setter", tY = 909, uF = 15, iF = 12591, br2 = 125, fF = 92735, uY = "cases", xF = 183969, a1 = "bigint", iY = "Division_by_zero", aF = 67071, oF = 12329, A3 = 120004, cF = 69414, N3 = "if", sF = 126519, vF = "immediately within another function.", lF = 55238, bF = 126498, fY = "qualification", pF = 66256, Er = "@ }@]", z2 = 118, C3 = 11565, P3 = 120122, Va = "pattern_object_rest_property", mF = 74862, D3 = "'", _F = -26065557, yF = 124911, Sv = 119, D7 = 104, za = "assignment", dF = 8457, K2 = "from", hF = 64321, kF = 113817, wF = 65629, EF = 42655, Ri = 102, SF = 43137, gF = 11502, o0 = ";@ ", L7 = 101, Ka = "pattern_array_element_pattern", Wn = "body", Wa = "jsx_member_expression", FF = 65547, Ja = "jsx_attribute_value", $a = "jsx_namespaced_name", L3 = 72967, TF = 126550, gv = 254, OF = 43807, IF = 43738, R3 = 126589, j3 = 8455, G3 = 126628, AF = 11670, xY = "*=", M3 = 120134, Za = "conditional", aY = " : flags Open_text and Open_binary are not compatible", B3 = 119965, NF = 69890, CF = 72817, PF = 164, DF = 43822, q3 = 69744, oY = "\\\\", LF = 43638, RF = 93047, jF = "AssignmentPattern", U3 = 64322, GF = 123190, cY = 188, Qa = "object_spread_property_type", MF = 70783, BF = 113663, sY = 160, H3 = 42622, X3 = 43823, ji = "init", Fv = 109, qF = 66503, Y3 = "proto", UF = 74649, ro = "optional_member", HF = 40981, XF = 120654, v = "@ ", eo = "enum_boolean_body", no = "export_named_specifier", to = "declare_interface", YF = 70451, uo = "pattern_object_property_computed_key", V3 = -97, z3 = 120539, K3 = 64317, VF = 12543, io = "export_named_declaration_specifier", zF = 43359, W3 = 126530, J3 = 72713, KF = 113800, vY = 195, WF = 72367, JF = 72103, $F = 70278, fo = "if_consequent_statement", W2 = -85, $3 = 126496, xo = "try_catch", ao = "computed_key", oo = "class_", ZF = 173823, co = "pattern_object_property_identifier_key", lY = "f", so = "arrow_function", Z3 = 8485, QF = 126546, vo = "enum_boolean_member", rT = 94177, J2 = "delete", eT = 232, bY = "blocks", lo = "pattern_array_rest_element_pattern", nT = 78894, Q3 = 66512, tT = 94111, Tv = "string", Ts = "test", uT = 69572, iT = 66463, fT = 66335, xT = 72348, aT = 73061, o1 = ":", bo = "enum_body", oT = 110590, po = "function_this_param_type", cT = 215, sT = 77823, pY = "minus", mY = 201, vT = 119980, mo = "private_name", _o = "object_key", yo = "function_param_type", _Y = "<<", lT = 11718, c1 = "as", yY = "delegate", Gi = "true", bT = 67413, r6 = 70854, pT = 73439, mT = 43776, _T = 71723, yT = 11505, dT = 214, hT = 120628, kT = 43513, ho = "jsx_attribute_name_namespaced", e6 = 120127, n6 = "Map.bal", t6 = "any", dY = "@[", hY = "camlinternalMod.ml", u6 = 126559, qu = "import", i6 = 70404, ko = "jsx_spread_child", wT = 233, ET = 67897, ST = 119974, Uu = 8233, gT = 68405, f6 = 239, kY = "attributes", wY = 173, wo = "object_internal_slot_property_type", FT = 71351, TT = 242, OT = 67643, x6 = "shorthand", Eo = "for_in_statement", IT = 126463, AT = 71338, NT = 69445, CT = 65370, PT = 73055, DT = 167, LT = 64911, So = "pattern_object_property_pattern", EY = 212, SY = 197, a6 = 126579, RT = 64286, jT = "explicitType", GT = 67669, MT = 43866, gY = "Sys_blocked_io", o6 = "catch", BT = 123197, qT = 64466, UT = 65140, HT = 73030, XT = 69404, c6 = "protected", FY = 8204, YT = 67504, VT = 193, $2 = 246, zT = 43713, s6 = 120571, go = "array_type", TY = "%u", Fo = "export_default_declaration", To = "class_expression", OY = "quasi", Yt = "%S", KT = 8525, v6 = 126515, WT = 120485, l6 = 43519, b6 = 120745, p6 = 94178, JT = 126588, zn = 127, $T = 66855, IY = "@{", AY = "visit_leading_comment", ZT = 67742, NY = " : flags Open_rdonly and Open_wronly are not compatible", QT = 120144, m6 = "returnType", s1 = -744106340, v1 = 240, Oo = "-", _6 = 8469, Os = "async", y6 = 126521, rO = 72095, d6 = 216, CY = " : file already exists", eO = 178205, nO = 8449, h6 = 94179, tO = 42774, k6 = "case", uO = 66965, iO = 66431, PY = 190, Io = "declare_export_declaration", Z2 = "targs", Ao = "type_identifier", fO = 64284, xO = 43013, w6 = 43815, No = "function_body_any", aO = 66966, E6 = 120687, oO = 66939, cO = 66978, DY = 168, S6 = "public", sO = 68115, vO = 43712, g6 = 65598, F6 = 126547, lO = 110591, Co = "indexed_access", LY = 12520, r7 = "interface", RY = `(Program not linked with -g, cannot print stack backtrace)
|
|
185890
|
+
`, A4 = "exported", PU = ">=", Wu = "return", N4 = "members", C4 = 256, cd = 66962, sd = 64279, vd = 67829, DU = "Enum `", LU = "&&=", Pf = "object_property", ld = 67589, Df = "pattern_object_property", Lf = "template_literal_element", bd = 69551, Ni = 127343600, P4 = 70452, Rf = "class_element", pd = "ENOENT", md = 71131, RU = 200, _d4 = 120137, yd = 94098, D4 = 72349, jU = 1328, jf = "function_identifier", dd = 126543, Gf = "jsx_attribute_name", hd = 43487, kr = "@[<2>{ ", GU = "ENOTEMPTY", kd = 65908, wd = 72191, L4 = 120513, Ed = 92909, MU = "bound", Sd = 162, BU = 172, R4 = 120070, Mf = "enum_number_body", Bf = "update_expression", qf = "spread_element", Uf = "for_in_left_declaration", j4 = 64319, N2 = "%d", gd = 12703, G4 = 11687, qU = "@,))@]", Fd = 42239, Hf = "type_cast", Td = 42508, Xf = "class_implements_interface", Od = 67640, Id = 605857695, UU = "Cygwin", HU = "buffer.ml", Ad = 124908, XU = "handler", Nd = 66207, Cd = 66963, M4 = 11558, YU = "-=", Pn = 113, Pd = 113775, VU = "collect_comments", B4 = 126540, lv = "set", Yf = "assignment_pattern", Nu = "right", Vf = "object_key_identifier", q4 = 120133, Dd = "Invalid number ", Ld = 42963, U4 = 12539, Rd = 68023, jd = 43798, ni = 100, zf = "pattern_literal", Kf = "generic_type", zU = "*", Gd = 42783, Md = 42890, Bd = 230, H4 = "else", qd = 70851, Ud = 69289, KU = "the start of a statement", X4 = "properties", Hd = 43696, Xd = 110959, Wf = "declare_function", Y4 = 120597, Jf = "object_indexer_property_type", Yd = 70492, Vd = 2048, C2 = "arguments", Xr = "comments", zd = 43042, Qc = 107, Kd = 110575, WU = 161, Wd = 67431, V4 = "line", P2 = "declaration", eu = "static", $f = "pattern_identifier", Jd = 69958, JU = "the", $d = "Unix.Unix_error", Zd = 43814, rs = "annot", Qd = 65786, rh = 66303, eh = 64967, nh = 64255, th = 8584, z4 = 120655, $U = "Stack_overflow", uh = 43700, Zf = "syntax_opt", ZU = "/static/", Qf = "comprehension", ih = 253, QU = "Not_found", rH = "+=", eH = 235, fh = 68680, xh = 66954, ah = 64324, oh = 72966, nH = 174, tH = -1053382366, ch = "rest", rx = "pattern_array_element", ex = "jsx_attribute_value_expression", K4 = 65595, nx = "pattern_array_e", uH = 243, sh = 43711, vh = "rmdir", W4 = "symbol", lh = 69926, J4 = "*dummy method*", bh = 43741, T7 = "typeParameters", D2 = "const", iH = 1026, fH = 149, ph = 12341, mh = 72847, _h = 66993, xH = 202, Ci = "false", Xt = 106, yh = 120076, dh = 186, Pi = 128, hh = 125124, kh = "Fatal error: exception ", $4 = 67593, wh = 69297, Eh = 44031, aH = 234, Sh = 92927, gh = 68095, Ju = 8231, tx = "object_key_computed", ux = "labeled_statement", ix = "function_param_pattern", Z4 = 126590, Fh = 65481, Th = 43442, oH = "collect_comments_opt", fx = "variable_declarator", bv = "_", Oh = "compare: functional value", Ih = 67967, pv = "computed", xx = "object_property_type", mt = "id", Ah = 126562, u1 = 114, cH = "comment_bounds", Nh = 70853, Ch = 69247, ax = "class_private_field", Ph = 42237, Dh = 72329, sH = "Invalid_argument", Lh = 113770, Q4 = 94031, Rh = 120092, ox = "declare_class", jh = 67839, Gh = 72250, vH = "%ni", Mh = 92879, lH = "prototype", Fs = "`.", cx = 8287, r8 = 65344, Bh = "&", O7 = "debugger", sx = "type_identifier_reference", bH = "Internal Error: Found private field in object props", vx = "sequence", lx = "call_type_args", pH = 238, qh = 12348, mH = "++", Uh = 68863, Hh = 72001, Xh = 70084, Yh = "label", mv = -45, bx = "jsx_opening_attribute", Vh = 43583, e8 = "%F", zh2 = 43784, Kh = 113791, px = "call_arguments", n8 = 126503, Wh = 43743, $u = "0", Jh = 119967, t8 = 126538, mx = "new_", _v = 449540197, $h = 64109, Zh = 68466, Qh = 177983, wt = 248, _x = "program", Xe = "@,]@]", rk = 68031, yx = "function_type", dx = "type_", u8 = 8484, ek = 67382, nk = 42537, tk = 226, uk = 66559, ik = 42993, fk = 64274, i8 = 71236, xk = 120069, ak = 72105, ok = 126570, ck = "object", sk = 42959, I7 = "break", hx = "for_of_statement", vk = 43695, f8 = 126551, lk = 66955, x8 = 126520, bk = 66499, L2 = 1024, pk = 67455, mk = 43018, _H = 198, a8 = 126522, kx = "function_declaration", _k = 73064, wx = "await", yk = 92728, dk = 70418, hk = 68119, Ex = "function_rest_param", kk = 42653, o8 = 11703, li = "left", c8 = 70449, wk = 184, Sx = "declare_type_alias", gx = 16777215, s8 = 70302, yH = "/=", dH = "|=", Ek = 55242, Sk = 126583, gk = 124927, Fk = 124895, Tk = 72959, Ok = 65497, hH = "Invalid legacy octal ", es = "typeof", Ik = "explicit_type", Fx = "statement_list", Ak = 65495, Tx = "class_method", v8 = 8526, l8 = 244, Nk = 67861, b8 = 119994, p8 = "enum", kH = 2147483647, Ck = 69762, wH = 208, R2 = "in", Pk = 11702, m8 = 67638, EH = ", characters ", Dk = 70753, yv = "super", Lk = 92783, Rk = 8304, _8 = 126504, Ox = "import_specifier", jk = 68324, Gk = 101589, Mk = 67646, Ix = "expression_or_spread", Bk = 74879, qk = 43792, y8 = 43260, Uk = 93052, SH = "{", Hk = 65574, Xk = 125258, dv = 224, Ax = "jsx_element_name_member_expression", j2 = "instanceof", Yk = 69599, Vk = 43560, Nx = "function_expression", d8 = 223, zk = 72242, Kk = 11498, Wk = 126467, Jk = 73112, gH = 140, h8 = 70107, $k = 13311, Cx = "jsx_children", k8 = 126548, Zk = 63743, w8 = 43471, Px = "jsx_expression", Qk = 69864, rw = 71998, ew = 72e3, E8 = 126591, S8 = 12592, Dx = "type_params", nw = 126578, g8 = 126537, wr = "{ ", tw = 123627, Lx = "jsx_spread_attribute", Pe = "@,", uw = 70161, iw = 187, F8 = 126500, Rx = "label_identifier", fw = 42606, jx = "number_literal_type", T8 = 42999, xw = 64310, FH = -594953737, aw = 122623, O8 = "hasUnknownMembers", Gx = "array", TH = "^=", Mx = "enum_string_member", ow = 65536, cw = 65615, ns = "void", sw = 65135, Z0 = ")", OH = 138, vw = 70002, G2 = "let", lw = 70271, bw = "nan", W = "@[%s =@ ", pw = 194559, mw = 110579, Bx = "binding_type_identifier", _w = 42735, IH = 57343, Zu = "/", qx = "for_in_statement_lhs", yw = 43503, dw = 8516, hw = 66938, kw = "ENOTDIR", AH = "TypeParameterInstantiation", ww = 69749, Ew = 65381, Sw = 83526, hv = "number", gw = 12447, NH = 154, I8 = 70286, Fw = 72160, Tw = 43493, CH = 206, Ux = "enum_member_identifier", A8 = 70280, M2 = "function", N8 = 70162, Ow = 255, Iw = 67702, Aw = 66771, Nw = 70312, PH = "|", Cw = 93759, DH = "End_of_file", Pw = 43709, i1 = "new", LH = "Failure", B2 = "local", Dw = 101631, C8 = 8489, P8 = "with", Hx = "enum_declaration", Lw = 218, Rw = 70457, D8 = 8488, Xx = "member", L8 = 64325, jw = 247, Gw = 70448, Mw = 69967, R8 = 126535, Bw = 71934, Yx = "import_named_specifier", qw = 65312, Uw = 126619, Vx = "type_annotation", RH = 56320, Hw = 131071, Xw = 120770, Yw = 67002, zx = "with_", Kx = "statement_fork_point", jH = "finalizer", Vw = 12320, GH = "elements", Wx = "literal", zw = 68607, Kw = 8507, j8 = "each", MH = "Sys_error", Ww = 123535, Jw = 130, Jx = "bigint_literal_type", $w = 64829, G8 = 11727, Zw = 120538, $x = "member_private_name", Zx = "type_alias", BH = "Printexc.handle_uncaught_exception", M8 = 126556, Qx = "tagged_template", ra = "pattern_object_property_literal_key", Qw = 43881, B8 = 72192, rE = 67826, eE = 124910, nE = 66511, ts = "int_of_string", tE = 43249, nr = "None", qH = "FunctionTypeParam", ti = "name", uE = 70285, c7 = 103, iE = 120744, ea = 12288, na = "intersection_type", fE = 11679, q8 = 11559, UH = "callee", xE = 71295, aE = 70018, oE = 11567, cE = 42954, HH = "*-/", Qu = "predicate", ta = "expression_statement", XH = "regexp", sE = 65479, YH = 132, vE = 11389, Bu = "optional", VH = -602162310, z = "@]", lE = 120003, bE = 72249, zH = "Unexpected ", pE = 73008, U8 = "finally", ua = "toplevel_statement_list", KH = "end", mE = 178207, WH = "&=", _E = 70301, JH = "%Li", yE = 72161, dE = 69746, hE = 70460, kE = 12799, H8 = 65535, wE = "loc", EE = 69375, SE = 43518, $H = 205, gE = 65487, ia = "while_", FE = 183983, fa = "typeof_expression", TE = -673950933, OE = 42559, ZH = "||", IE = 124926, AE = 55291, xa = "jsx_element_name_identifier", aa = 8239, X8 = "mixed", QH = 136, NE = -253313196, CE = 11734, Y8 = 67827, PE = 68287, DE = 119976, rX = "**", J = " =", V8 = 888960333, LE = 124902, oa = "tuple_type", eX = 227, RE = 70726, jE = 73111, z8 = 126602, GE = 126529, ca = "object_property_value_type", C0 = "%a", nX = ", ", tX = "<=", ME = 69423, uX = 199, K8 = 11695, BE = 12294, W8 = 11711, qE = 67583, iX = 710, J8 = 126584, UE = 68295, HE = 72703, XE = "prefix", fX = -80, $8 = 69415, YE = 11492, q2 = "class", Z8 = 65575, A7 = "continue", VE = 65663, xX = 2047, Q8 = 68120, zE = 71086, KE = 19967, Di = 782176664, WE = 120779, r3 = 8486, bi = " ", aX = "||=", oX = "Undefined_recursive_module", JE = 66863, cX = "RestElement", e3 = 126634, $E = 66377, ZE = 74751, sa = "jsx_element_name_namespaced", QE = 43334, rS = 66815, N7 = "typeAnnotation", eS = 120126, va = "array_element", n3 = 64285, sX = 189, vX = "**=", Yr = "()", nS = 8543, la = "declare_module", ba = "export_batch_specifier", lX = "%i", bX = ">>>=", tS = 68029, pX = "importKind", C7 = "extends", uS = 64296, t3 = 43259, iS = 71679, fS = 64913, xS = 119969, aS = 94175, oS = 72440, u3 = 65141, pa = "function_", cS = 43071, sS = 42888, vS = 69807, ou = "variance", us = 123, ma = "import_default_specifier", mX = ">>>", lS = 43764, pi = "pattern", bS = 71947, pS = 70655, kv = "consequent", _X = 4096, mS = 183, _S = 68447, yS = 65473, is = 255, dS = 73648, _a20 = "call_type_arg", ya = 8238, hS = 68899, kS = 93026, Ye = "@[<2>[", wS = 110588, da = "comment", yX = 191, ha = "switch_case", dX = 175, ES = 71942, ka = "do_while", wv = "constructor", SS2 = 43587, gS = 43586, wu = "yield", FS = 67462, hX = "fd ", TS = -61, OS = "target", i3 = 72272, U2 = "var", kX = "impltype", f3 = 70108, H2 = "0o", IS = 119972, AS = 92991, x3 = 70441, a3 = 8450, NS = 120074, CS = 66717, wa = "interface_type", o3 = 43880, An = "%B", PS = 111355, Ev = 5760, DS = 11630, c3 = 126499, LS = "of", wX = ">>", EX = "Popping lex mode from empty stack", s3 = 120629, fs62 = 108, RS = 43002, SX = "%=", v3 = 126539, jS = 126502, Ea = "template_literal", GS = "src/parser/statement_parser.ml", MS = ": Not a directory", gX = "b", BS = 67461, qS = 11519, FX = "src/parser/flow_lexer.ml", TX = "Out_of_memory", US = 120570, Sa = 12287, HS = 126534, XS = "index out of bounds", YS = 73029, l3 = "_bigarr02", b3 = 126571, OX = "))", ga = "for_statement_init", IX = "supertype", Fa = "class_property", p3 = "}", f1 = "this", Ta = "declare_module_exports", AX = "@", Oa = "union_type", Li = 65535, Ia = "variance_opt", VS = 94032, NX = 222, zS = 42124, Aa = "this_expression", Na = "jsx_element", CX = "typeArguments", KS = 65019, WS = 125251, JS = 64111, $S = 8471, Ca = "typeof_qualified_identifier", ZS = 70497, PX = "EnumDefaultedMember", Pa = 8202, QS = 66927, P7 = "switch", rg = 69634, Da = "unary_expression", eg = 71215, DX = 126, ng = 67679, tg = 65597, LX = 207, ug = 120686, m3 = 72163, ig = 67001, fg = 42962, xg = 64262, X2 = 124, La = 65279, ag = 126495, RX = 169, og = 71944, jX = -10, _3 = "alternate", cg = 92975, sg = 65489, Y2 = 252, vg = 67807, lg = 43187, bg = 68850, y3 = "export", pg = 66383, GX = "===", Ra = ".", ja = "type_args", MX = 147, mg = 92159, BX = 240, Ga = "jsx_element_name", _g = 72283, yg = 171, x1 = 116, dg = 110587, d3 = 70279, hg = 75075, kg = 65338, Ma = "function_params", wg = 126627, qX = 213, h3 = 73065, Eg = 71352, k3 = 119970, Sg = 70005, gg = 12295, w3 = 120771, Fg = 71494, Tg = 11557, Og = 42191, UX = "flags", Ig = 68437, Ag = 70730, Ba = "optional_indexed_access", qa = "pattern_object_p", Ng = 42785, Ua = "nullable_type", Bn = "value", Cg = 12343, Pg = 68415, Dg = 11694, HX = 221, Lg = 11726, Ha = "syntax", Rg = 119964, XX = "&&", jg = 68497, Gg = 73097, xs = "null", E3 = 126523, Mg = 120084, Bg = 126601, qg = 8454, Ug = "expressions", Hg = 72144, V2 = '"', Zr = "(@[", YX = 1022, VX = 231, Xg = 170, S3 = 12448, Yg = 68786, g3 = "<", zX = 931, KX = "(", WX = 196, JX = 2048, F3 = "an identifier", T3 = 69959, Vg = 68799, $X = "leadingComments", zg = 72969, Kg = 182, Wg = 100351, Xa = "enum_defaulted_member", Jg = 69839, $g = 94026, Zg = 209, ZX = ">>=", Qg = 131, O3 = 12336, s7 = "empty", QX = 331416730, rY = 204, rF = 70479, eF = 69487, nF = 101640, tF = 43123, eY = "([^/]+)", I3 = 8319, nY = 165, Ya = "object_type_property_setter", tY = 909, uF = 15, iF = 12591, br2 = 125, fF = 92735, uY = "cases", xF = 183969, a1 = "bigint", iY = "Division_by_zero", aF = 67071, oF = 12329, A3 = 120004, cF = 69414, N3 = "if", sF = 126519, vF = "immediately within another function.", lF = 55238, bF = 126498, fY = "qualification", pF = 66256, Er = "@ }@]", z2 = 118, C3 = 11565, P3 = 120122, Va = "pattern_object_rest_property", mF = 74862, D3 = "'", _F = -26065557, yF = 124911, Sv = 119, D7 = 104, za = "assignment", dF = 8457, K2 = "from", hF = 64321, kF = 113817, wF = 65629, EF = 42655, Ri = 102, SF = 43137, gF = 11502, o0 = ";@ ", L7 = 101, Ka = "pattern_array_element_pattern", Wn = "body", Wa = "jsx_member_expression", FF = 65547, Ja = "jsx_attribute_value", $a = "jsx_namespaced_name", L3 = 72967, TF = 126550, gv = 254, OF = 43807, IF = 43738, R3 = 126589, j3 = 8455, G3 = 126628, AF = 11670, xY = "*=", M3 = 120134, Za = "conditional", aY = " : flags Open_text and Open_binary are not compatible", B3 = 119965, NF = 69890, CF = 72817, PF = 164, DF = 43822, q3 = 69744, oY = "\\\\", LF = 43638, RF = 93047, jF = "AssignmentPattern", U3 = 64322, GF = 123190, cY = 188, Qa = "object_spread_property_type", MF = 70783, BF = 113663, sY = 160, H3 = 42622, X3 = 43823, ji = "init", Fv = 109, qF = 66503, Y3 = "proto", UF = 74649, ro = "optional_member", HF = 40981, XF = 120654, v = "@ ", eo = "enum_boolean_body", no = "export_named_specifier", to = "declare_interface", YF = 70451, uo = "pattern_object_property_computed_key", V3 = -97, z3 = 120539, K3 = 64317, VF = 12543, io = "export_named_declaration_specifier", zF = 43359, W3 = 126530, J3 = 72713, KF = 113800, vY = 195, WF = 72367, JF = 72103, $F = 70278, fo = "if_consequent_statement", W2 = -85, $3 = 126496, xo = "try_catch", ao = "computed_key", oo = "class_", ZF = 173823, co = "pattern_object_property_identifier_key", lY = "f", so = "arrow_function", Z3 = 8485, QF = 126546, vo = "enum_boolean_member", rT = 94177, J2 = "delete", eT = 232, bY = "blocks", lo = "pattern_array_rest_element_pattern", nT = 78894, Q3 = 66512, tT = 94111, Tv = "string", Ts = "test", uT = 69572, iT = 66463, fT = 66335, xT = 72348, aT = 73061, o1 = ":", bo = "enum_body", oT = 110590, po = "function_this_param_type", cT = 215, sT = 77823, pY = "minus", mY = 201, vT = 119980, mo = "private_name", _o = "object_key", yo = "function_param_type", _Y = "<<", lT = 11718, c1 = "as", yY = "delegate", Gi = "true", bT = 67413, r6 = 70854, pT = 73439, mT = 43776, _T = 71723, yT = 11505, dT = 214, hT = 120628, kT = 43513, ho = "jsx_attribute_name_namespaced", e6 = 120127, n6 = "Map.bal", t6 = "any", dY = "@[", hY = "camlinternalMod.ml", u6 = 126559, qu = "import", i6 = 70404, ko = "jsx_spread_child", wT = 233, ET = 67897, ST = 119974, Uu = 8233, gT = 68405, f6 = 239, kY = "attributes", wY = 173, wo = "object_internal_slot_property_type", FT = 71351, TT = 242, OT = 67643, x6 = "shorthand", Eo = "for_in_statement", IT = 126463, AT = 71338, NT = 69445, CT = 65370, PT = 73055, DT = 167, LT = 64911, So = "pattern_object_property_pattern", EY = 212, SY = 197, a6 = 126579, RT = 64286, jT = "explicitType", GT = 67669, MT = 43866, gY = "Sys_blocked_io", o6 = "catch", BT = 123197, qT = 64466, UT = 65140, HT = 73030, XT = 69404, c6 = "protected", FY = 8204, YT = 67504, VT = 193, $2 = 246, zT = 43713, s6 = 120571, go = "array_type", TY = "%u", Fo = "export_default_declaration", To = "class_expression", OY = "quasi", Yt = "%S", KT = 8525, v6 = 126515, WT = 120485, l6 = 43519, b6 = 120745, p6 = 94178, JT = 126588, zn = 127, $T = 66855, IY = "@{", AY = "visit_leading_comment", ZT = 67742, NY = " : flags Open_rdonly and Open_wronly are not compatible", QT = 120144, m6 = "returnType", s1 = -744106340, v1 = 240, Oo = "-", _6 = 8469, Os = "async", y6 = 126521, rO = 72095, d6 = 216, CY = " : file already exists", eO = 178205, nO = 8449, h6 = 94179, tO = 42774, k6 = "case", uO = 66965, iO = 66431, PY = 190, Io = "declare_export_declaration", Z2 = "targs", Ao = "type_identifier", fO = 64284, xO = 43013, w6 = 43815, No = "function_body_any", aO = 66966, E6 = 120687, oO = 66939, cO = 66978, DY = 168, S6 = "public", sO = 68115, vO = 43712, g6 = 65598, F6 = 126547, lO = 110591, Co = "indexed_access", LY = 12520, r7 = "interface", RY = `(Program not linked with -g, cannot print stack backtrace)
|
|
185891
185891
|
`, l1 = -46, Po = "string_literal_type", Do = "import_namespace_specifier", bO = 120132, T6 = 11735, pO = 67505, O6 = 119893, I6 = "bool", Q2 = 1e3, mi = "default", mO = 236, C = "", _O = "exportKind", jY = "trailingComments", A6 = "^", yO = 71983, dO = 8348, hO = 66977, kO = 65594, Lo = "logical", Ro = "jsx_member_expression_identifier", N6 = 210, GY = "cooked", jo = "for_of_left_declaration", Ov = 63, wO = 72202, v7 = "argument", EO = 12442, SO = 43645, C6 = 120085, gO = 42539, P6 = 126468, MY = 166, BY = "Match_failure", FO = 68191, Eu = "src/parser/flow_ast.ml", D6 = 11647, Go = "declare_variable", as = "+", TO = 71127, L6 = 120145, Mo = "declare_export_declaration_decl", R6 = 64318, qY = 179, Bo = "class_implements", UY = "!=", HY = "inexact", XY2 = "%li", YY = 237, rl = "a", j6 = 73062, OO = 178, qo = 65278, Uo = "function_rest_param_type", IO = 77711, AO = 70066, NO = 43714, VY = -696510241, G6 = 70480, CO = 69748, PO = 113788, DO = 94207, zY = `\r
|
|
185892
185892
|
`, Ho = "class_body", LO = 126651, RO = 68735, jO = 43273, M6 = 119996, B6 = 67644, KY = 224, Xo = "catch_clause_pattern", Yo = "boolean_literal_type", q6 = 126554, U6 = 126557, GO = 113807, H6 = 126536, WY = "%", Iv = "property", MO = 71956, JY = "#", BO = 123213, el = "meta", Vo = "for_of_assignment_pattern", zo = "if_statement", qO = 66421, UO = 8505, HO = 225, nl = 250, XO = 100343, X6 = "Literal", YO = 42887, Av = 115, $Y = ";", VO = 1255, zO = "=", KO = 126566, WO = 93823, Ko = "opaque_type", ZY = "!==", Wo = "jsx_attribute", Jo = "type_annotation_hint", Mi = 32768, JO = 73727, QY = "range", rV = 245, $O = "jsError", Y6 = 70006, ZO = 43492, V6 = "@]}", tr = "(Some ", QO = 8477, eV = 129, rI = 71487, z6 = 126564, nV = `
|
|
185893
185893
|
`, eI = 126514, nI = 70080, $o = "generic_identifier_type", tI = 66811, Zo = "typeof_identifier", tV = "~", uI = 65007, Qo = "pattern_object_rest_property_pattern", iI = 194, uV = 1039100673, fI = 66461, xI = 70319, K6 = 11719, aI = 72271, zt = -48, rc = "enum_string_body", oI = 70461, ec = "export_named_declaration", cI = 110930, sI = 92862, iV = "??=", vI = 70440, W6 = "while", cu = "camlinternalFormat.ml", lI = 43782, fV = 203, bI = 173791, pI = 11263, mI = 1114111, _I = 42969, J6 = 70750, nc = "jsx_identifier", yI = 70105, dI = 43014, hI = 11564, tc = "typeof_type", xV = "EEXIST", kI = 64847, wI = 71167, EI = 42511, SI = 72712, gI = 92995, FI = 43704, tl = 121, uc = "object_call_property_type", TI = 64433, ul = "operator", $6 = 68296, ic = "class_decorator", fc = 120, xc = "for_of_statement_lhs", OI = 11623, II = 67004, AI = 71999, NI = 70708, CI = 512, PI = 110927, DI = 71423, aV = 32752, LI = 93951, RI = 12292, ac = "object_type", Z6 = "types", jI = 110580, oV = 177, GI = 126633, MI = 12686, oc = 8286, cV = 144, BI = 73647, sV = 228, Q6 = 70855, b1 = "0x", qI = 70366, UI = `
|
|
@@ -200828,7 +200828,7 @@ var require_parser_flow = __commonJS({
|
|
|
200828
200828
|
return e[2] ? de(e[1]) : n;
|
|
200829
200829
|
}
|
|
200830
200830
|
var $D = jp(A6r, function(t) {
|
|
200831
|
-
var n = DN(t, I6r), e = n[1], i = n[2], x = n[3], c = n[4], s = n[5], p = n[6], y = n[7], T11 = n[8], E = n[9], h = n[10], w = n[11], G = n[12], A = n[13], S11 = n[14], M = n[15], K = n[16], V = n[17], f0 = n[18], m0 = n[19], k0 = n[20], g0 = n[21], e0 = n[22], x0 = n[23], l2 = n[24], c0 = n[25], t0 = n[26], a0 = n[27], w0 = n[28], _0 = n[29], E0 = n[30], X0 = n[31], b = n[32], G0 = n[33], X = n[34], s0 = n[35], dr = n[36], Ar = n[37], ar = n[38], W0 = n[39], Lr = n[40], Tr = n[41], Hr = n[42], Or = n[43], xr = n[44], Rr = n[45], Wr = n[46], Jr = n[47], or = n[49], _r = n[50], Ir = n[51], fe = n[52], v0 = n[53], P = n[54], L = n[55], Q = n[56], i0 = n[57], l0 = n[58], S0 = n[59], T0 = n[60], rr = n[61], R0 = n[62], B = n[63], Z = n[65], p0 = n[66], b0 = n[67], O0 = n[68], q0 = n[69], er = n[70], yr = n[71], vr = n[72], $0 = n[73], Sr = n[74], Mr = n[75], Br = n[76], qr = n[77], jr = n[78], $r = n[79], ne = n[80], Qr = n[81], pe = n[82], oe = n[83], me = n[84], ae = n[85], ce = n[86], ge = n[87], H0 = n[88], Fr = n[89], _11 = n[90], k = n[91], I = n[92], U = n[93], Y = n[94], y0 = n[95], D0 = n[96], I0 = n[97], D11 = n[98], u0 = n[99], Y0 = n[ni], J0 = n[L7], fr = n[Ri], Q0 = n[c7], F0 = n[D7], gr = n[R7], mr = n[Xt], Cr = n[Qc], sr = n[
|
|
200831
|
+
var n = DN(t, I6r), e = n[1], i = n[2], x = n[3], c = n[4], s = n[5], p = n[6], y = n[7], T11 = n[8], E = n[9], h = n[10], w = n[11], G = n[12], A = n[13], S11 = n[14], M = n[15], K = n[16], V = n[17], f0 = n[18], m0 = n[19], k0 = n[20], g0 = n[21], e0 = n[22], x0 = n[23], l2 = n[24], c0 = n[25], t0 = n[26], a0 = n[27], w0 = n[28], _0 = n[29], E0 = n[30], X0 = n[31], b = n[32], G0 = n[33], X = n[34], s0 = n[35], dr = n[36], Ar = n[37], ar = n[38], W0 = n[39], Lr = n[40], Tr = n[41], Hr = n[42], Or = n[43], xr = n[44], Rr = n[45], Wr = n[46], Jr = n[47], or = n[49], _r = n[50], Ir = n[51], fe = n[52], v0 = n[53], P = n[54], L = n[55], Q = n[56], i0 = n[57], l0 = n[58], S0 = n[59], T0 = n[60], rr = n[61], R0 = n[62], B = n[63], Z = n[65], p0 = n[66], b0 = n[67], O0 = n[68], q0 = n[69], er = n[70], yr = n[71], vr = n[72], $0 = n[73], Sr = n[74], Mr = n[75], Br = n[76], qr = n[77], jr = n[78], $r = n[79], ne = n[80], Qr = n[81], pe = n[82], oe = n[83], me = n[84], ae = n[85], ce = n[86], ge = n[87], H0 = n[88], Fr = n[89], _11 = n[90], k = n[91], I = n[92], U = n[93], Y = n[94], y0 = n[95], D0 = n[96], I0 = n[97], D11 = n[98], u0 = n[99], Y0 = n[ni], J0 = n[L7], fr = n[Ri], Q0 = n[c7], F0 = n[D7], gr = n[R7], mr = n[Xt], Cr = n[Qc], sr = n[fs62], Pr = n[Fv], K0 = n[Ht], Ur = n[vf], d0 = n[F7], Kr = n[Pn], re2 = n[u1], xe = n[Av], je = n[x1], ve = n[A2], Ie = n[z2], Me = n[Sv], Be = n[fc], fn = n[tl], Ke = n[In], Ae = n[us], xn = n[X2], Qe = n[br2], yn = n[DX], on = n[zn], Ce = n[Rt], We = n[eV], rn = n[Jw], bn = n[Qg], Cn = n[YH], Hn = n[133], Sn = n[134], vt = n[135], At = n[QH], gt = n[137], Jt = n[OH], Bt = n[139], Ft = n[gH], Nt = n[141], du = n[142], Ku = n[143], lt = n[cV], xu = n[145], Mu = n[146], z7 = n[MX], Yi = n[148], a7 = n[fH], Yc = n[150], K7 = n[151], qt = n[152], bt = n[153], U0 = n[NH], L0 = n[155], Re = n[156], He = n[157], he = n[158], _e2 = n[159], Zn = n[sY], dn = n[WU], it = n[Sd], ft = n[Mn], Rn = n[PF], nt = n[nY], ht = n[MY], tn = n[DT], cn = n[DY], tt = n[RX], Tt = n[Xg], Fi = n[yg], hs = n[BU], Iu = n[wY], Vs = n[nH], Vi = n[dX], zs = n[kV], Ks = n[oV], en2 = n[OO], ci = n[qY], Ws = n[mU], c2 = n[Ai], B9 = n[Kg], q9 = n[mS], U9 = n[wk], Js = n[AU], s2 = n[dh], H9 = n[iw], X9 = n[cY], Y9 = n[sX], X1 = n[PY], si = n[yX], ob = n[at], cb2 = n[VT], sb = n[iI], V9 = n[vY], z9 = n[WX], K9 = n[SY], vb = n[_H], W9 = n[uX], J9 = n[RU], $9 = n[mY], Z9 = n[xH], lb = n[fV], Q9 = n[rY], Y1 = n[$H], v2 = n[CH], bb = n[LX], pb = n[wH], mb = n[Zg], Tn = n[N6], jn = n[EU], V1 = n[EY], _b14 = n[qX], yb = n[dT], r_ = n[cT], Vc = n[d6], e_ = n[sp], l22 = n[Lw], db = n[NU], zc = n[aA], n_ = n[HX], $s = n[NX], hb = n[d8], z1 = n[dv], t_ = n[HO], ks = n[tk], u_ = n[eX], K1 = n[sV], i_ = n[dU], b2 = n[Bd], f_ = n[VX], Zs = n[eT], kb = n[wT], Qs = n[aH], x_ = n[eH], zi = n[mO], Kc = n[YY], r1 = n[pH], a_ = n[f6], p2 = n[v1], m2 = n[Wy], _22 = n[TT], o_ = n[uH], e1 = n[l8], c_ = n[rV], y2 = n[$2], XL = n[48], W1 = n[64];
|
|
200832
200832
|
function YL(o, F, m) {
|
|
200833
200833
|
var O = m[2], H = m[1], $7 = ze(u(o[1][1 + en2], o), H), r0 = a(o[1][1 + s0], o, O);
|
|
200834
200834
|
return O === r0 && H === $7 ? m : [0, $7, r0, m[3], m[4]];
|
|
@@ -203947,7 +203947,7 @@ var require_parser_flow = __commonJS({
|
|
|
203947
203947
|
}
|
|
203948
203948
|
break;
|
|
203949
203949
|
default:
|
|
203950
|
-
if (typeof n == "number" &&
|
|
203950
|
+
if (typeof n == "number" && fs62 <= n) return 0;
|
|
203951
203951
|
}
|
|
203952
203952
|
else switch (e) {
|
|
203953
203953
|
case 0:
|
|
@@ -204699,7 +204699,7 @@ var require_parser_flow = __commonJS({
|
|
|
204699
204699
|
case 19:
|
|
204700
204700
|
return 95;
|
|
204701
204701
|
case 20:
|
|
204702
|
-
return
|
|
204702
|
+
return fs62;
|
|
204703
204703
|
case 21:
|
|
204704
204704
|
return Fv;
|
|
204705
204705
|
case 22:
|
|
@@ -204910,7 +204910,7 @@ var require_parser_flow = __commonJS({
|
|
|
204910
204910
|
if (typeof n == "number" && Qc === n) return 1;
|
|
204911
204911
|
break;
|
|
204912
204912
|
case 108:
|
|
204913
|
-
if (typeof n == "number" &&
|
|
204913
|
+
if (typeof n == "number" && fs62 === n) return 1;
|
|
204914
204914
|
break;
|
|
204915
204915
|
case 109:
|
|
204916
204916
|
if (typeof n == "number" && Fv === n) return 1;
|
|
@@ -206213,7 +206213,7 @@ var require_parser_flow = __commonJS({
|
|
|
206213
206213
|
return D7 < t ? R7 < t ? -1 : 0 : -1;
|
|
206214
206214
|
}
|
|
206215
206215
|
function _9(t) {
|
|
206216
|
-
return Qc < t ?
|
|
206216
|
+
return Qc < t ? fs62 < t ? -1 : 0 : -1;
|
|
206217
206217
|
}
|
|
206218
206218
|
function jr0(t) {
|
|
206219
206219
|
return 99 < t ? ni < t ? -1 : 0 : -1;
|
|
@@ -207840,7 +207840,7 @@ var require_parser_flow = __commonJS({
|
|
|
207840
207840
|
case 83:
|
|
207841
207841
|
return [0, t, Qc];
|
|
207842
207842
|
case 84:
|
|
207843
|
-
return [0, t,
|
|
207843
|
+
return [0, t, fs62];
|
|
207844
207844
|
case 85:
|
|
207845
207845
|
return [0, t, 89];
|
|
207846
207846
|
case 86:
|
|
@@ -215190,7 +215190,7 @@ var require_parser_flow = __commonJS({
|
|
|
215190
215190
|
var _0 = N0(a0);
|
|
215191
215191
|
if (typeof _0 == "number") {
|
|
215192
215192
|
var E0 = _0 - 5 | 0, X0 = 0;
|
|
215193
|
-
if (7 < E0 >>> 0 ?
|
|
215193
|
+
if (7 < E0 >>> 0 ? fs62 === E0 && (X0 = 1) : 5 < (E0 - 1 | 0) >>> 0 && (X0 = 1), X0) {
|
|
215194
215194
|
var b = _0 === 12 ? 1 : 0;
|
|
215195
215195
|
if (b) var G0 = pr(a0), X = cr(0, function(ar) {
|
|
215196
215196
|
return V0(ar, 12), a(se[18], ar, 41);
|
|
@@ -217000,7 +217000,7 @@ var require_parser_flow = __commonJS({
|
|
|
217000
217000
|
else var O0 = 0, q0 = 0;
|
|
217001
217001
|
var er = ir(Vn[4], O0, q0, p0), yr = N0(p0) === 86 ? er : eb(p0, er), vr = yr[2], $0 = vr[1], Sr = 0;
|
|
217002
217002
|
if ($0 && Jr === 0) {
|
|
217003
|
-
ue(p0, [0, $0[1][1],
|
|
217003
|
+
ue(p0, [0, $0[1][1], fs62]);
|
|
217004
217004
|
var Mr = [0, yr[1], [0, 0, vr[2], vr[3], vr[4]]];
|
|
217005
217005
|
Sr = 1;
|
|
217006
217006
|
}
|
|
@@ -218346,7 +218346,7 @@ var require_parser_flow = __commonJS({
|
|
|
218346
218346
|
return a(Ze(Pr, FH, Qc), Pr, K0);
|
|
218347
218347
|
}, D11 = [0, a(J0, D0[1], fr)], u0 = y0, Y0 = 0;
|
|
218348
218348
|
else var Q0 = 0, D11 = Q0, F0 = 0, u0 = a(J0, y0, function(Pr, K0) {
|
|
218349
|
-
return a(Ze(Pr, _v,
|
|
218349
|
+
return a(Ze(Pr, _v, fs62), Pr, K0);
|
|
218350
218350
|
}), Y0 = F0;
|
|
218351
218351
|
}
|
|
218352
218352
|
var gr = [0, u0[1], u0];
|
|
@@ -223665,7 +223665,7 @@ Verbose Debug Information: ` + (typeof _t == "string" ? _t : _t())), N(He, ft ||
|
|
|
223665
223665
|
} }, __debugEmitFlags: { get() {
|
|
223666
223666
|
return _r(xi(this));
|
|
223667
223667
|
} }, __debugGetText: { value(Kt) {
|
|
223668
|
-
if (
|
|
223668
|
+
if (fs62(this)) return "";
|
|
223669
223669
|
let zt = He.get(this);
|
|
223670
223670
|
if (zt === void 0) {
|
|
223671
223671
|
let xe = fl(this), Le = xe && Si(xe);
|
|
@@ -226773,7 +226773,7 @@ ${fe.join(`
|
|
|
226773
226773
|
return Y.fail(`Literal kind '${e.kind}' not accounted for.`);
|
|
226774
226774
|
}
|
|
226775
226775
|
function VD(e, t) {
|
|
226776
|
-
return
|
|
226776
|
+
return fs62(e) || !e.parent || t & 4 && e.isUnterminated ? false : zs(e) && e.numericLiteralFlags & 512 ? !!(t & 8) : !Uv(e);
|
|
226777
226777
|
}
|
|
226778
226778
|
function HD(e) {
|
|
226779
226779
|
return Ji(e) ? '"' + Of(e) + '"' : "" + e;
|
|
@@ -228612,7 +228612,7 @@ ${fe.join(`
|
|
|
228612
228612
|
let t = e.kind;
|
|
228613
228613
|
return t === 173 || t === 215 || t === 259 || t === 216 || t === 171 || t === 174 || t === 175 || t === 264 || t === 308;
|
|
228614
228614
|
}
|
|
228615
|
-
function
|
|
228615
|
+
function fs62(e) {
|
|
228616
228616
|
return hs(e.pos) || hs(e.end);
|
|
228617
228617
|
}
|
|
228618
228618
|
function gN(e) {
|
|
@@ -232492,7 +232492,7 @@ ${fe.join(`
|
|
|
232492
232492
|
return n.expression !== o ? r(Fh(o, n.original), n) : n;
|
|
232493
232493
|
}
|
|
232494
232494
|
function qh(n) {
|
|
232495
|
-
if (
|
|
232495
|
+
if (fs62(n) && !pl2(n) && !n.original && !n.emitNode && !n.id) {
|
|
232496
232496
|
if (oc(n)) return n.elements;
|
|
232497
232497
|
if (ur(n) && I8(n.operatorToken)) return [n.left, n.right];
|
|
232498
232498
|
}
|
|
@@ -232629,7 +232629,7 @@ ${fe.join(`
|
|
|
232629
232629
|
}
|
|
232630
232630
|
}
|
|
232631
232631
|
function qe(n) {
|
|
232632
|
-
return qo(n) &&
|
|
232632
|
+
return qo(n) && fs62(n) && fs62(getSourceMapRange(n)) && fs62(getCommentRange(n)) && !Ke(getSyntheticLeadingComments(n)) && !Ke(getSyntheticTrailingComments(n));
|
|
232633
232633
|
}
|
|
232634
232634
|
function We(n, o) {
|
|
232635
232635
|
let l6 = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 15;
|
|
@@ -232689,7 +232689,7 @@ ${fe.join(`
|
|
|
232689
232689
|
return kr(n, o, l6);
|
|
232690
232690
|
}
|
|
232691
232691
|
function qa(n, o, l6, p) {
|
|
232692
|
-
let k = ta(n,
|
|
232692
|
+
let k = ta(n, fs62(o) ? o : cp(o));
|
|
232693
232693
|
Rt(k, o);
|
|
232694
232694
|
let V = 0;
|
|
232695
232695
|
return p || (V |= 96), l6 || (V |= 3072), V && setEmitFlags(k, V), k;
|
|
@@ -234261,7 +234261,7 @@ ${fe.join(`
|
|
|
234261
234261
|
}
|
|
234262
234262
|
}
|
|
234263
234263
|
function FJ(e) {
|
|
234264
|
-
return qo(e) &&
|
|
234264
|
+
return qo(e) && fs62(e) && !e.emitNode;
|
|
234265
234265
|
}
|
|
234266
234266
|
function su(e, t) {
|
|
234267
234267
|
if (FJ(e)) su(e.expression, t);
|
|
@@ -239985,7 +239985,7 @@ ${fe.join(`
|
|
|
239985
239985
|
nn(), l7(), KF(), u7(), XF(), YF(), QF(), ZF(), eB(), tB(), rB(), nB(), iB(), aB(), yB(), vB(), bB(), TB(), SB(), xB(), EB(), wB(), CB(), AB(), PB(), DB(), p7(), f7(), kB(), IB(), NB(), OB(), MB(), LB(), RB(), jB(), JB();
|
|
239986
239986
|
} }), FB = () => {
|
|
239987
239987
|
}, L7 = {};
|
|
239988
|
-
y(L7, { ANONYMOUS: () => ANONYMOUS, AccessFlags: () => Cg, AssertionLevel: () => $1, AssignmentDeclarationKind: () => Mg, AssignmentKind: () => Sv, Associativity: () => Ev, BreakpointResolver: () => ts_BreakpointResolver_exports, BuilderFileEmit: () => BuilderFileEmit, BuilderProgramKind: () => BuilderProgramKind, BuilderState: () => BuilderState, BundleFileSectionKind: () => ty, CallHierarchy: () => ts_CallHierarchy_exports, CharacterCodes: () => $g, CheckFlags: () => Tg, CheckMode: () => CheckMode, ClassificationType: () => ClassificationType, ClassificationTypeNames: () => ClassificationTypeNames, CommentDirectiveType: () => ig, Comparison: () => d, CompletionInfoFlags: () => CompletionInfoFlags, CompletionTriggerKind: () => CompletionTriggerKind, Completions: () => ts_Completions_exports, ConfigFileProgramReloadLevel: () => ConfigFileProgramReloadLevel, ContextFlags: () => pg, CoreServicesShimHostAdapter: () => CoreServicesShimHostAdapter, Debug: () => Y, DiagnosticCategory: () => qp, Diagnostics: () => ve, DocumentHighlights: () => DocumentHighlights, ElementFlags: () => wg, EmitFlags: () => Wp, EmitHint: () => Qg, EmitOnly: () => og, EndOfLineState: () => EndOfLineState, EnumKind: () => bg, ExitStatus: () => cg, ExportKind: () => ExportKind, Extension: () => Kg, ExternalEmitHelpers: () => Yg, FileIncludeKind: () => ag, FilePreprocessingDiagnosticsKind: () => sg, FileSystemEntryKind: () => FileSystemEntryKind, FileWatcherEventKind: () => FileWatcherEventKind, FindAllReferences: () => ts_FindAllReferences_exports, FlattenLevel: () => FlattenLevel, FlowFlags: () => il, ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences, FunctionFlags: () => xv, GeneratedIdentifierFlags: () => rg, GetLiteralTextFlags: () => vv, GoToDefinition: () => ts_GoToDefinition_exports, HighlightSpanKind: () => HighlightSpanKind, ImportKind: () => ImportKind, ImportsNotUsedAsValues: () => Ug, IndentStyle: () => IndentStyle, IndexKind: () => Dg, InferenceFlags: () => Ng, InferencePriority: () => Ig, InlayHintKind: () => InlayHintKind, InlayHints: () => ts_InlayHints_exports, InternalEmitFlags: () => Xg, InternalSymbolName: () => Sg, InvalidatedProjectKind: () => InvalidatedProjectKind, JsDoc: () => ts_JsDoc_exports, JsTyping: () => ts_JsTyping_exports, JsxEmit: () => qg, JsxFlags: () => tg, JsxReferenceKind: () => Ag, LanguageServiceMode: () => LanguageServiceMode, LanguageServiceShimHostAdapter: () => LanguageServiceShimHostAdapter, LanguageVariant: () => Hg, LexicalEnvironmentFlags: () => ey, ListFormat: () => ry, LogLevel: () => Y1, MemberOverrideStatus: () => lg, ModifierFlags: () => Mp, ModuleDetectionKind: () => Rg, ModuleInstanceState: () => ModuleInstanceState, ModuleKind: () => Bg, ModuleResolutionKind: () => Lg, ModuleSpecifierEnding: () => jv, NavigateTo: () => ts_NavigateTo_exports, NavigationBar: () => ts_NavigationBar_exports, NewLineKind: () => zg, NodeBuilderFlags: () => fg, NodeCheckFlags: () => xg, NodeFactoryFlags: () => Fv, NodeFlags: () => Op, NodeResolutionFeatures: () => NodeResolutionFeatures, ObjectFlags: () => Fp, OperationCanceledException: () => Rp, OperatorPrecedence: () => wv, OrganizeImports: () => ts_OrganizeImports_exports, OrganizeImportsMode: () => OrganizeImportsMode, OuterExpressionKinds: () => Zg, OutliningElementsCollector: () => ts_OutliningElementsCollector_exports, OutliningSpanKind: () => OutliningSpanKind, OutputFileType: () => OutputFileType, PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference, PackageJsonDependencyGroup: () => PackageJsonDependencyGroup, PatternMatchKind: () => PatternMatchKind, PollingInterval: () => PollingInterval, PollingWatchKind: () => Fg, PragmaKindFlags: () => ny, PrivateIdentifierKind: () => PrivateIdentifierKind, ProcessLevel: () => ProcessLevel, QuotePreference: () => QuotePreference, RelationComparisonResult: () => Lp, Rename: () => ts_Rename_exports, ScriptElementKind: () => ScriptElementKind, ScriptElementKindModifier: () => ScriptElementKindModifier, ScriptKind: () => Wg, ScriptSnapshot: () => ScriptSnapshot, ScriptTarget: () => Vg, SemanticClassificationFormat: () => SemanticClassificationFormat, SemanticMeaning: () => SemanticMeaning, SemicolonPreference: () => SemicolonPreference, SignatureCheckMode: () => SignatureCheckMode, SignatureFlags: () => Bp, SignatureHelp: () => ts_SignatureHelp_exports, SignatureKind: () => Pg, SmartSelectionRange: () => ts_SmartSelectionRange_exports, SnippetKind: () => zp, SortKind: () => H1, StructureIsReused: () => _g, SymbolAccessibility: () => hg, SymbolDisplay: () => ts_SymbolDisplay_exports, SymbolDisplayPartKind: () => SymbolDisplayPartKind, SymbolFlags: () => jp, SymbolFormatFlags: () => mg, SyntaxKind: () => Np, SyntheticSymbolKind: () => gg, Ternary: () => Og, ThrottledCancellationToken: () => O7, TokenClass: () => TokenClass, TokenFlags: () => ng, TransformFlags: () => Up, TypeFacts: () => TypeFacts, TypeFlags: () => Jp, TypeFormatFlags: () => dg, TypeMapKind: () => kg, TypePredicateKind: () => yg, TypeReferenceSerializationKind: () => vg, TypeScriptServicesFactory: () => TypeScriptServicesFactory, UnionReduction: () => ug, UpToDateStatusType: () => UpToDateStatusType, VarianceFlags: () => Eg, Version: () => Version, VersionRange: () => VersionRange, WatchDirectoryFlags: () => Gg, WatchDirectoryKind: () => Jg, WatchFileKind: () => jg, WatchLogLevel: () => WatchLogLevel, WatchType: () => WatchType, accessPrivateIdentifier: () => accessPrivateIdentifier, addEmitFlags: () => addEmitFlags, addEmitHelper: () => addEmitHelper, addEmitHelpers: () => addEmitHelpers, addInternalEmitFlags: () => addInternalEmitFlags, addNodeFactoryPatcher: () => jL, addObjectAllocatorPatcher: () => sM, addRange: () => jr, addRelatedInfo: () => Rl, addSyntheticLeadingComment: () => addSyntheticLeadingComment, addSyntheticTrailingComment: () => addSyntheticTrailingComment, addToSeen: () => GO, advancedAsyncSuperHelper: () => advancedAsyncSuperHelper, affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations, affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations, allKeysStartWithDot: () => allKeysStartWithDot, altDirectorySeparator: () => py, and: () => E5, append: () => tr, appendIfUnique: () => g_, arrayFrom: () => Za, arrayIsEqualTo: () => Hc, arrayIsHomogeneous: () => fL, arrayIsSorted: () => Wc, arrayOf: () => yo, arrayReverseIterator: () => y_, arrayToMap: () => Zc, arrayToMultiMap: () => bo, arrayToNumericMap: () => Os, arraysEqual: () => ke, assertType: () => C5, assign: () => vo, assignHelper: () => assignHelper, asyncDelegator: () => asyncDelegator, asyncGeneratorHelper: () => asyncGeneratorHelper, asyncSuperHelper: () => asyncSuperHelper, asyncValues: () => asyncValues, attachFileToDiagnostics: () => qs, awaitHelper: () => awaitHelper, awaiterHelper: () => awaiterHelper, base64decode: () => mO, base64encode: () => dO, binarySearch: () => Ya, binarySearchKey: () => b_, bindSourceFile: () => bindSourceFile, breakIntoCharacterSpans: () => breakIntoCharacterSpans, breakIntoWordSpans: () => breakIntoWordSpans, buildLinkParts: () => buildLinkParts, buildOpts: () => buildOpts, buildOverload: () => buildOverload, bundlerModuleNameResolver: () => bundlerModuleNameResolver, canBeConvertedToAsync: () => canBeConvertedToAsync, canHaveDecorators: () => ME, canHaveExportModifier: () => AL, canHaveFlowNode: () => jI, canHaveIllegalDecorators: () => rJ, canHaveIllegalModifiers: () => nJ, canHaveIllegalType: () => tJ, canHaveIllegalTypeParameters: () => IE, canHaveJSDoc: () => Af, canHaveLocals: () => zP, canHaveModifiers: () => fc, canHaveSymbol: () => UP, canJsonReportNoInputFiles: () => canJsonReportNoInputFiles, canProduceDiagnostics: () => canProduceDiagnostics, canUsePropertyAccess: () => PL, canWatchDirectoryOrFile: () => canWatchDirectoryOrFile, cartesianProduct: () => P5, cast: () => ti, chainBundle: () => chainBundle, chainDiagnosticMessages: () => lM, changeAnyExtension: () => RT, changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache, changeExtension: () => KM, changesAffectModuleResolution: () => cD, changesAffectingProgramStructure: () => lD, childIsDecorated: () => h0, classElementOrClassElementParameterIsDecorated: () => sI, classOrConstructorParameterIsDecorated: () => aI, classPrivateFieldGetHelper: () => classPrivateFieldGetHelper, classPrivateFieldInHelper: () => classPrivateFieldInHelper, classPrivateFieldSetHelper: () => classPrivateFieldSetHelper, classicNameResolver: () => classicNameResolver, classifier: () => ts_classifier_exports, cleanExtendedConfigCache: () => cleanExtendedConfigCache, clear: () => nt, clearMap: () => qO, clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher, climbPastPropertyAccess: () => climbPastPropertyAccess, climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess, clone: () => E_, cloneCompilerOptions: () => cloneCompilerOptions, closeFileWatcher: () => MO, closeFileWatcherOf: () => closeFileWatcherOf, codefix: () => ts_codefix_exports, collapseTextChangeRangesAcrossMultipleVersions: () => CA, collectExternalModuleInfo: () => collectExternalModuleInfo, combine: () => $c, combinePaths: () => tn, commentPragmas: () => Vp, commonOptionsWithBuild: () => commonOptionsWithBuild, commonPackageFolders: () => Pv, compact: () => Gc, compareBooleans: () => j1, compareDataObjects: () => px, compareDiagnostics: () => av, compareDiagnosticsSkipRelatedInformation: () => qf, compareEmitHelpers: () => compareEmitHelpers, compareNumberOfDirectorySeparators: () => $M, comparePaths: () => tA, comparePathsCaseInsensitive: () => eA, comparePathsCaseSensitive: () => Z5, comparePatternKeys: () => comparePatternKeys, compareProperties: () => R1, compareStringsCaseInsensitive: () => C_, compareStringsCaseInsensitiveEslintCompatible: () => O1, compareStringsCaseSensitive: () => ri, compareStringsCaseSensitiveUI: () => L1, compareTextSpans: () => I1, compareValues: () => Vr, compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption, compilerOptionsAffectDeclarationPath: () => DM, compilerOptionsAffectEmit: () => PM, compilerOptionsAffectSemanticDiagnostics: () => AM, compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics, compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules, compose: () => k1, computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames, computeLineAndCharacterOfPosition: () => my, computeLineOfPosition: () => k_, computeLineStarts: () => Kp, computePositionOfLineAndCharacter: () => dy, computeSignature: () => computeSignature, computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics, computeSuggestionDiagnostics: () => computeSuggestionDiagnostics, concatenate: () => Ft, concatenateDiagnosticMessageChains: () => uM, consumesNodeCoreModules: () => consumesNodeCoreModules, contains: () => pe, containsIgnoredPath: () => Hx, containsObjectRestOrSpread: () => A2, containsParseError: () => Ky, containsPath: () => jT, convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry, convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson, convertJsonOption: () => convertJsonOption, convertToBase64: () => ix, convertToObject: () => convertToObject, convertToObjectWorker: () => convertToObjectWorker, convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths, convertToRelativePath: () => nA, convertToTSConfig: () => convertToTSConfig, convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson, copyComments: () => copyComments, copyEntries: () => dD, copyLeadingComments: () => copyLeadingComments, copyProperties: () => H, copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments, copyTrailingComments: () => copyTrailingComments, couldStartTrivia: () => pA, countWhere: () => Xe, createAbstractBuilder: () => createAbstractBuilder, createAccessorPropertyBackingField: () => LJ, createAccessorPropertyGetRedirector: () => RJ, createAccessorPropertySetRedirector: () => jJ, createBaseNodeFactory: () => S8, createBinaryExpressionTrampoline: () => PJ, createBindingHelper: () => createBindingHelper, createBuildInfo: () => createBuildInfo, createBuilderProgram: () => createBuilderProgram, createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo, createBuilderStatusReporter: () => createBuilderStatusReporter, createCacheWithRedirects: () => createCacheWithRedirects, createCacheableExportInfoMap: () => createCacheableExportInfoMap, createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost, createClassifier: () => createClassifier, createCommentDirectivesMap: () => JD, createCompilerDiagnostic: () => Ol, createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType, createCompilerDiagnosticFromMessageChain: () => cM, createCompilerHost: () => createCompilerHost, createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost, createCompilerHostWorker: () => createCompilerHostWorker, createDetachedDiagnostic: () => Ro, createDiagnosticCollection: () => TN, createDiagnosticForFileFromMessageChain: () => mk, createDiagnosticForNode: () => uk, createDiagnosticForNodeArray: () => pk, createDiagnosticForNodeArrayFromMessageChain: () => dk, createDiagnosticForNodeFromMessageChain: () => fk, createDiagnosticForNodeInSourceFile: () => P3, createDiagnosticForRange: () => gk, createDiagnosticMessageChainFromDiagnostic: () => hk, createDiagnosticReporter: () => createDiagnosticReporter, createDocumentPositionMapper: () => createDocumentPositionMapper, createDocumentRegistry: () => createDocumentRegistry, createDocumentRegistryInternal: () => createDocumentRegistryInternal, createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram, createEmitHelperFactory: () => createEmitHelperFactory, createEmptyExports: () => Dj, createExpressionForJsxElement: () => Ij, createExpressionForJsxFragment: () => Nj, createExpressionForObjectLiteralElementLike: () => Fj, createExpressionForPropertyName: () => vE, createExpressionFromEntityName: () => yE, createExternalHelpersImportDeclarationIfNeeded: () => $j, createFileDiagnostic: () => iv, createFileDiagnosticFromMessageChain: () => r0, createForOfBindingStatement: () => Oj, createGetCanonicalFileName: () => wp, createGetSourceFile: () => createGetSourceFile, createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode, createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName, createGetSymbolWalker: () => createGetSymbolWalker, createIncrementalCompilerHost: () => createIncrementalCompilerHost, createIncrementalProgram: () => createIncrementalProgram, createInputFiles: () => VL, createInputFilesWithFilePaths: () => C8, createInputFilesWithFileTexts: () => A8, createJsxFactoryExpression: () => gE, createLanguageService: () => lB, createLanguageServiceSourceFile: () => N2, createMemberAccessForPropertyName: () => hd, createModeAwareCache: () => createModeAwareCache, createModeAwareCacheKey: () => createModeAwareCacheKey, createModuleResolutionCache: () => createModuleResolutionCache, createModuleResolutionLoader: () => createModuleResolutionLoader, createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost, createMultiMap: () => Be, createNodeConverters: () => x8, createNodeFactory: () => Zf, createOptionNameMap: () => createOptionNameMap, createOverload: () => createOverload, createPackageJsonImportFilter: () => createPackageJsonImportFilter, createPackageJsonInfo: () => createPackageJsonInfo, createParenthesizerRules: () => createParenthesizerRules, createPatternMatcher: () => createPatternMatcher, createPrependNodes: () => createPrependNodes, createPrinter: () => createPrinter, createPrinterWithDefaults: () => createPrinterWithDefaults, createPrinterWithRemoveComments: () => createPrinterWithRemoveComments, createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape, createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon, createProgram: () => createProgram, createProgramHost: () => createProgramHost, createPropertyNameNodeForIdentifierOrLiteral: () => EL, createQueue: () => Fr, createRange: () => Jf, createRedirectedBuilderProgram: () => createRedirectedBuilderProgram, createResolutionCache: () => createResolutionCache, createRuntimeTypeSerializer: () => createRuntimeTypeSerializer, createScanner: () => Po, createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram, createSet: () => Cr, createSolutionBuilder: () => createSolutionBuilder, createSolutionBuilderHost: () => createSolutionBuilderHost, createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch, createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost, createSortedArray: () => zc, createSourceFile: () => YE, createSourceMapGenerator: () => createSourceMapGenerator, createSourceMapSource: () => HL, createSuperAccessVariableStatement: () => createSuperAccessVariableStatement, createSymbolTable: () => oD, createSymlinkCache: () => MM, createSystemWatchFunctions: () => createSystemWatchFunctions, createTextChange: () => createTextChange, createTextChangeFromStartLength: () => createTextChangeFromStartLength, createTextChangeRange: () => Zp, createTextRangeFromNode: () => createTextRangeFromNode, createTextRangeFromSpan: () => createTextRangeFromSpan, createTextSpan: () => L_, createTextSpanFromBounds: () => ha, createTextSpanFromNode: () => createTextSpanFromNode, createTextSpanFromRange: () => createTextSpanFromRange, createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent, createTextWriter: () => DN, createTokenRange: () => bO, createTypeChecker: () => createTypeChecker, createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader, createUnderscoreEscapedMultiMap: () => Ht, createUnparsedSourceFile: () => UL, createWatchCompilerHost: () => createWatchCompilerHost2, createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile, createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions, createWatchFactory: () => createWatchFactory, createWatchHost: () => createWatchHost, createWatchProgram: () => createWatchProgram, createWatchStatusReporter: () => createWatchStatusReporter, createWriteFileMeasuringIO: () => createWriteFileMeasuringIO, declarationNameToString: () => A3, decodeMappings: () => decodeMappings, decodedTextSpanIntersectsWith: () => Sy, decorateHelper: () => decorateHelper, deduplicate: () => ji, defaultIncludeSpec: () => defaultIncludeSpec, defaultInitCompilerOptions: () => defaultInitCompilerOptions, defaultMaximumTruncationLength: () => r8, detectSortCaseSensitivity: () => Vc, diagnosticCategoryName: () => z5, diagnosticToString: () => diagnosticToString, directoryProbablyExists: () => sx, directorySeparator: () => zn, displayPart: () => displayPart, displayPartsToString: () => cB, disposeEmitNodes: () => disposeEmitNodes, documentSpansEqual: () => documentSpansEqual, dumpTracingLegend: () => dumpTracingLegend, elementAt: () => wT, elideNodes: () => IJ, emitComments: () => U4, emitDetachedComments: () => GN, emitFiles: () => emitFiles, emitFilesAndReportErrors: () => emitFilesAndReportErrors, emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus, emitModuleKindIsNonNodeESM: () => mM, emitNewLineBeforeLeadingCommentOfPosition: () => HN, emitNewLineBeforeLeadingComments: () => B4, emitNewLineBeforeLeadingCommentsOfPosition: () => q4, emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics, emitUsingBuildInfo: () => emitUsingBuildInfo, emptyArray: () => Bt, emptyFileSystemEntries: () => T8, emptyMap: () => V1, emptyOptions: () => emptyOptions, emptySet: () => ET, endsWith: () => es, ensurePathIsNonModuleName: () => _y, ensureScriptKind: () => Nx, ensureTrailingDirectorySeparator: () => wo, entityNameToString: () => ls, enumerateInsertsAndDeletes: () => A5, equalOwnProperties: () => S_, equateStringsCaseInsensitive: () => Ms, equateStringsCaseSensitive: () => To, equateValues: () => fa, esDecorateHelper: () => esDecorateHelper, escapeJsxAttributeString: () => A4, escapeLeadingUnderscores: () => vi, escapeNonAsciiString: () => Of, escapeSnippetText: () => xL, escapeString: () => Nf, every: () => me, expandPreOrPostfixIncrementOrDecrementExpression: () => Bj, explainFiles: () => explainFiles, explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat, exportAssignmentIsAlias: () => I0, exportStarHelper: () => exportStarHelper, expressionResultIsUnused: () => gL, extend: () => S2, extendsHelper: () => extendsHelper, extensionFromPath: () => QM, extensionIsTS: () => qx, externalHelpersModuleNameText: () => Kf, factory: () => si, fileExtensionIs: () => ns, fileExtensionIsOneOf: () => da, fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics, filter: () => ee, filterMutate: () => je, filterSemanticDiagnostics: () => filterSemanticDiagnostics, find: () => Ae, findAncestor: () => zi, findBestPatternMatch: () => TT, findChildOfKind: () => findChildOfKind, findComputedPropertyNameCacheAssignment: () => JJ, findConfigFile: () => findConfigFile, findContainingList: () => findContainingList, findDiagnosticForNode: () => findDiagnosticForNode, findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken, findIndex: () => he, findLast: () => te, findLastIndex: () => Pe, findListItemInfo: () => findListItemInfo, findMap: () => R, findModifier: () => findModifier, findNextToken: () => findNextToken, findPackageJson: () => findPackageJson, findPackageJsons: () => findPackageJsons, findPrecedingMatchingToken: () => findPrecedingMatchingToken, findPrecedingToken: () => findPrecedingToken, findSuperStatementIndex: () => findSuperStatementIndex, findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition, findUseStrictPrologue: () => TE, first: () => fo, firstDefined: () => q, firstDefinedIterator: () => W, firstIterator: () => v_, firstOrOnly: () => firstOrOnly, firstOrUndefined: () => pa, firstOrUndefinedIterator: () => Xc, fixupCompilerOptions: () => fixupCompilerOptions, flatMap: () => ne, flatMapIterator: () => Fe, flatMapToMutable: () => ge, flatten: () => ct, flattenCommaList: () => BJ, flattenDestructuringAssignment: () => flattenDestructuringAssignment, flattenDestructuringBinding: () => flattenDestructuringBinding, flattenDiagnosticMessageText: () => flattenDiagnosticMessageText, forEach: () => c, forEachAncestor: () => uD, forEachAncestorDirectory: () => FT, forEachChild: () => xr, forEachChildRecursively: () => D22, forEachEmittedFile: () => forEachEmittedFile, forEachEnclosingBlockScopeContainer: () => ok, forEachEntry: () => pD, forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom, forEachImportClauseDeclaration: () => NI, forEachKey: () => fD, forEachLeadingCommentRange: () => fA, forEachNameInAccessChainWalkingLeft: () => QO, forEachResolvedProjectReference: () => forEachResolvedProjectReference, forEachReturnStatement: () => Pk, forEachRight: () => M, forEachTrailingCommentRange: () => dA, forEachUnique: () => forEachUnique, forEachYieldExpression: () => Dk, forSomeAncestorDirectory: () => WO, formatColorAndReset: () => formatColorAndReset, formatDiagnostic: () => formatDiagnostic, formatDiagnostics: () => formatDiagnostics, formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext, formatGeneratedName: () => bd, formatGeneratedNamePart: () => C2, formatLocation: () => formatLocation, formatMessage: () => _M, formatStringFromArgs: () => X_, formatting: () => ts_formatting_exports, fullTripleSlashAMDReferencePathRegEx: () => Tv, fullTripleSlashReferencePathRegEx: () => bv, generateDjb2Hash: () => generateDjb2Hash, generateTSConfig: () => generateTSConfig, generatorHelper: () => generatorHelper, getAdjustedReferenceLocation: () => getAdjustedReferenceLocation, getAdjustedRenameLocation: () => getAdjustedRenameLocation, getAliasDeclarationFromName: () => u4, getAllAccessorDeclarations: () => W0, getAllDecoratorsOfClass: () => getAllDecoratorsOfClass, getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement, getAllJSDocTags: () => MS, getAllJSDocTagsOfKind: () => UA, getAllKeys: () => T_, getAllProjectOutputs: () => getAllProjectOutputs, getAllSuperTypeNodes: () => h4, getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers, getAllowJSCompilerOption: () => Ax, getAllowSyntheticDefaultImports: () => TM, getAncestor: () => eN, getAnyExtensionFromPath: () => Gp, getAreDeclarationMapsEnabled: () => bM, getAssignedExpandoInitializer: () => bI, getAssignedName: () => yS, getAssignmentDeclarationKind: () => ps, getAssignmentDeclarationPropertyAccessKind: () => K3, getAssignmentTargetKind: () => o4, getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames, getBaseFileName: () => sl, getBinaryOperatorPrecedence: () => Dl, getBuildInfo: () => getBuildInfo, getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap, getBuildInfoText: () => getBuildInfoText, getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder, getBuilderCreationParameters: () => getBuilderCreationParameters, getBuilderFileEmit: () => getBuilderFileEmit, getCheckFlags: () => ux, getClassExtendsHeritageElement: () => d4, getClassLikeDeclarationOfSymbol: () => dx, getCombinedLocalAndExportSymbolFlags: () => jO, getCombinedModifierFlags: () => ef, getCombinedNodeFlags: () => tf, getCombinedNodeFlagsAlwaysIncludeJSDoc: () => PA, getCommentRange: () => getCommentRange, getCommonSourceDirectory: () => getCommonSourceDirectory, getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig, getCompilerOptionValue: () => uv, getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue, getConditions: () => getConditions, getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics, getConstantValue: () => getConstantValue, getContainerNode: () => getContainerNode, getContainingClass: () => Vk, getContainingClassStaticBlock: () => Hk, getContainingFunction: () => zk, getContainingFunctionDeclaration: () => Wk, getContainingFunctionOrClassStaticBlock: () => Gk, getContainingNodeArray: () => yL, getContainingObjectLiteralElement: () => S7, getContextualTypeFromParent: () => getContextualTypeFromParent, getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode, getCurrentTime: () => getCurrentTime, getDeclarationDiagnostics: () => getDeclarationDiagnostics, getDeclarationEmitExtensionForPath: () => O4, getDeclarationEmitOutputFilePath: () => ON, getDeclarationEmitOutputFilePathWorker: () => N4, getDeclarationFromName: () => XI, getDeclarationModifierFlagsFromSymbol: () => LO, getDeclarationOfKind: () => aD, getDeclarationsOfKind: () => sD, getDeclaredExpandoInitializer: () => yI, getDecorators: () => kA, getDefaultCompilerOptions: () => y7, getDefaultExportInfoWorker: () => getDefaultExportInfoWorker, getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings, getDefaultLibFileName: () => aS, getDefaultLibFilePath: () => gB, getDefaultLikeExportInfo: () => getDefaultLikeExportInfo, getDiagnosticText: () => getDiagnosticText, getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan, getDirectoryPath: () => ma, getDocumentPositionMapper: () => getDocumentPositionMapper, getESModuleInterop: () => ov, getEditsForFileRename: () => getEditsForFileRename, getEffectiveBaseTypeNode: () => f4, getEffectiveConstraintOfTypeParameter: () => HA, getEffectiveContainerForJSDocTemplateTag: () => FI, getEffectiveImplementsTypeNodes: () => m4, getEffectiveInitializer: () => V3, getEffectiveJSDocHost: () => A0, getEffectiveModifierFlags: () => Rf, getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => K4, getEffectiveModifierFlagsNoCache: () => Y4, getEffectiveReturnTypeNode: () => zN, getEffectiveSetAccessorTypeAnnotationNode: () => VN, getEffectiveTypeAnnotationNode: () => V0, getEffectiveTypeParameterDeclarations: () => VA, getEffectiveTypeRoots: () => getEffectiveTypeRoots, getElementOrPropertyAccessArgumentExpressionOrName: () => Cf, getElementOrPropertyAccessName: () => Fs, getElementsOfBindingOrAssignmentPattern: () => kE, getEmitDeclarations: () => cv, getEmitFlags: () => xi, getEmitHelpers: () => getEmitHelpers, getEmitModuleDetectionKind: () => wx, getEmitModuleKind: () => Ei, getEmitModuleResolutionKind: () => Ml, getEmitScriptTarget: () => Uf, getEnclosingBlockScopeContainer: () => Zy, getEncodedSemanticClassifications: () => getEncodedSemanticClassifications, getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications, getEndLinePosition: () => d3, getEntityNameFromTypeNode: () => nI, getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo, getErrorCountForSummary: () => getErrorCountForSummary, getErrorSpanForNode: () => i0, getErrorSummaryText: () => getErrorSummaryText, getEscapedTextOfIdentifierOrLiteral: () => b4, getExpandoInitializer: () => U_, getExportAssignmentExpression: () => p4, getExportInfoMap: () => getExportInfoMap, getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper, getExpressionAssociativity: () => yN, getExpressionPrecedence: () => vN, getExternalHelpersModuleName: () => EE, getExternalModuleImportEqualsDeclarationExpression: () => _I, getExternalModuleName: () => E0, getExternalModuleNameFromDeclaration: () => IN, getExternalModuleNameFromPath: () => F0, getExternalModuleNameLiteral: () => Xj, getExternalModuleRequireArgument: () => cI, getFallbackOptions: () => getFallbackOptions, getFileEmitOutput: () => getFileEmitOutput, getFileMatcherPatterns: () => Ix, getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs, getFileWatcherEventKind: () => getFileWatcherEventKind, getFilesInErrorForSummary: () => getFilesInErrorForSummary, getFirstConstructorWithBody: () => R4, getFirstIdentifier: () => iO, getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition, getFirstProjectOutput: () => getFirstProjectOutput, getFixableErrorSpanExpression: () => getFixableErrorSpanExpression, getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting, getFullWidth: () => hf, getFunctionFlags: () => sN, getHeritageClause: () => Pf, getHostSignatureFromJSDoc: () => C0, getIdentifierAutoGenerate: () => getIdentifierAutoGenerate, getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference, getIdentifierTypeArguments: () => getIdentifierTypeArguments, getImmediatelyInvokedFunctionExpression: () => Qk, getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile, getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker, getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper, getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper, getIndentSize: () => Oo, getIndentString: () => j0, getInitializedVariables: () => NO, getInitializerOfBinaryExpression: () => X3, getInitializerOfBindingOrAssignmentElement: () => AE, getInterfaceBaseTypeNodes: () => g4, getInternalEmitFlags: () => zD, getInvokedExpression: () => iI, getIsolatedModules: () => zf, getJSDocAugmentsTag: () => ES, getJSDocClassTag: () => NA, getJSDocCommentRanges: () => I3, getJSDocCommentsAndTags: () => r4, getJSDocDeprecatedTag: () => jA, getJSDocDeprecatedTagNoCache: () => IS, getJSDocEnumTag: () => JA, getJSDocHost: () => s4, getJSDocImplementsTags: () => wS, getJSDocOverrideTagNoCache: () => kS, getJSDocParameterTags: () => of2, getJSDocParameterTagsNoCache: () => bS, getJSDocPrivateTag: () => MA, getJSDocPrivateTagNoCache: () => AS, getJSDocProtectedTag: () => LA, getJSDocProtectedTagNoCache: () => PS, getJSDocPublicTag: () => OA, getJSDocPublicTagNoCache: () => CS, getJSDocReadonlyTag: () => RA, getJSDocReadonlyTagNoCache: () => DS, getJSDocReturnTag: () => NS, getJSDocReturnType: () => OS, getJSDocRoot: () => P0, getJSDocSatisfiesExpressionType: () => NL, getJSDocSatisfiesTag: () => wy, getJSDocTags: () => hl, getJSDocTagsNoCache: () => qA, getJSDocTemplateTag: () => BA, getJSDocThisTag: () => FA, getJSDocType: () => cf, getJSDocTypeAliasName: () => w2, getJSDocTypeAssertionType: () => Wj, getJSDocTypeParameterDeclarations: () => F4, getJSDocTypeParameterTags: () => SS2, getJSDocTypeParameterTagsNoCache: () => xS, getJSDocTypeTag: () => _f, getJSXImplicitImportBase: () => IM, getJSXRuntimeImport: () => NM, getJSXTransformEnabled: () => kM, getKeyForCompilerOptions: () => getKeyForCompilerOptions, getLanguageVariant: () => sv, getLastChild: () => mx, getLeadingCommentRanges: () => Ao, getLeadingCommentRangesOfNode: () => Ck, getLeftmostAccessExpression: () => rv, getLeftmostExpression: () => ZO, getLineAndCharacterOfPosition: () => Ls, getLineInfo: () => getLineInfo, getLineOfLocalPosition: () => FN, getLineOfLocalPositionFromLineMap: () => ds, getLineStartPositionForPosition: () => getLineStartPositionForPosition, getLineStarts: () => ss, getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => DO, getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => PO, getLinesBetweenPositions: () => I_, getLinesBetweenRangeEndAndRangeStart: () => wO, getLinesBetweenRangeEndPositions: () => CO, getLiteralText: () => WD, getLocalNameForExternalImport: () => Kj, getLocalSymbolForExportDefault: () => cO, getLocaleSpecificMessage: () => Y_, getLocaleTimeString: () => getLocaleTimeString, getMappedContextSpan: () => getMappedContextSpan, getMappedDocumentSpan: () => getMappedDocumentSpan, getMappedLocation: () => getMappedLocation, getMatchedFileSpec: () => getMatchedFileSpec, getMatchedIncludeSpec: () => getMatchedIncludeSpec, getMeaningFromDeclaration: () => getMeaningFromDeclaration, getMeaningFromLocation: () => getMeaningFromLocation, getMembersOfDeclaration: () => Ik, getModeForFileReference: () => getModeForFileReference, getModeForResolutionAtIndex: () => getModeForResolutionAtIndex, getModeForUsageLocation: () => getModeForUsageLocation, getModifiedTime: () => getModifiedTime, getModifiers: () => sf, getModuleInstanceState: () => getModuleInstanceState, getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt, getModuleSpecifierEndingPreference: () => VM, getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost, getNameForExportedSymbol: () => getNameForExportedSymbol, getNameFromIndexInfo: () => _k, getNameFromPropertyName: () => getNameFromPropertyName, getNameOfAccessExpression: () => KO, getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue, getNameOfDeclaration: () => ml, getNameOfExpando: () => xI, getNameOfJSDocTypedef: () => gS, getNameOrArgument: () => $3, getNameTable: () => uB, getNamesForExportedSymbol: () => getNamesForExportedSymbol, getNamespaceDeclarationNode: () => Q3, getNewLineCharacter: () => ox, getNewLineKind: () => getNewLineKind, getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost, getNewTargetContainer: () => Xk, getNextJSDocCommentLocation: () => a4, getNodeForGeneratedName: () => NJ, getNodeId: () => getNodeId, getNodeKind: () => getNodeKind, getNodeModifiers: () => getNodeModifiers, getNodeModulePathParts: () => wL, getNonAssignedNameOfDeclaration: () => Ey, getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment, getNonAugmentationDeclaration: () => E3, getNonDecoratorTokenPosOfNode: () => FD, getNormalizedAbsolutePath: () => as, getNormalizedAbsolutePathWithoutRoot: () => Q5, getNormalizedPathComponents: () => $p, getObjectFlags: () => Bf, getOperator: () => R0, getOperatorAssociativity: () => x4, getOperatorPrecedence: () => E4, getOptionFromName: () => getOptionFromName, getOptionsNameMap: () => getOptionsNameMap, getOrCreateEmitNode: () => getOrCreateEmitNode, getOrCreateExternalHelpersModuleNameIfNeeded: () => wE, getOrUpdate: () => la, getOriginalNode: () => ul, getOriginalNodeId: () => getOriginalNodeId, getOriginalSourceFile: () => gN, getOutputDeclarationFileName: () => getOutputDeclarationFileName, getOutputExtension: () => getOutputExtension, getOutputFileNames: () => getOutputFileNames, getOutputPathsFor: () => getOutputPathsFor, getOutputPathsForBundle: () => getOutputPathsForBundle, getOwnEmitOutputFilePath: () => NN, getOwnKeys: () => ho, getOwnValues: () => go, getPackageJsonInfo: () => getPackageJsonInfo, getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths, getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile, getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName, getPackageScopeForPath: () => getPackageScopeForPath, getParameterSymbolFromJSDoc: () => JI, getParameterTypeNode: () => CL, getParentNodeInSpan: () => getParentNodeInSpan, getParseTreeNode: () => fl, getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile, getPathComponents: () => qi, getPathComponentsRelativeTo: () => ly, getPathFromPathComponents: () => xo, getPathUpdater: () => getPathUpdater, getPathsBasePath: () => LN, getPatternFromSpec: () => BM, getPendingEmitKind: () => getPendingEmitKind, getPositionOfLineAndCharacter: () => lA, getPossibleGenericSignatures: () => getPossibleGenericSignatures, getPossibleOriginalInputExtensionForExtension: () => MN, getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo, getPreEmitDiagnostics: () => getPreEmitDiagnostics, getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition, getPrivateIdentifier: () => getPrivateIdentifier, getProperties: () => getProperties, getProperty: () => Qc, getPropertyArrayElementValue: () => qk, getPropertyAssignment: () => f0, getPropertyAssignmentAliasLikeExpression: () => ZI, getPropertyNameForPropertyNameNode: () => Df, getPropertyNameForUniqueESSymbol: () => _N, getPropertyNameOfBindingOrAssignmentElement: () => eJ, getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement, getPropertySymbolsFromContextualType: () => x7, getQuoteFromPreference: () => getQuoteFromPreference, getQuotePreference: () => getQuotePreference, getRangesWhere: () => Et, getRefactorContextSpan: () => getRefactorContextSpan, getReferencedFileLocation: () => getReferencedFileLocation, getRegexFromPattern: () => Vf, getRegularExpressionForWildcard: () => Wf, getRegularExpressionsForWildcards: () => pv, getRelativePathFromDirectory: () => JT, getRelativePathFromFile: () => iA, getRelativePathToDirectoryOrUrl: () => uy, getRenameLocation: () => getRenameLocation, getReplacementSpanForContextToken: () => getReplacementSpanForContextToken, getResolutionDiagnostic: () => getResolutionDiagnostic, getResolutionModeOverrideForClause: () => getResolutionModeOverrideForClause, getResolveJsonModule: () => Cx, getResolvePackageJsonExports: () => SM, getResolvePackageJsonImports: () => xM, getResolvedExternalModuleName: () => k4, getResolvedModule: () => hD, getResolvedTypeReferenceDirective: () => vD, getRestIndicatorOfBindingOrAssignmentElement: () => Zj, getRestParameterElementType: () => kk, getRightMostAssignedExpression: () => b0, getRootDeclaration: () => If, getRootLength: () => Bi, getScriptKind: () => getScriptKind, getScriptKindFromFileName: () => Ox, getScriptTargetFeatures: () => getScriptTargetFeatures, getSelectedEffectiveModifierFlags: () => G4, getSelectedSyntacticModifierFlags: () => $4, getSemanticClassifications: () => getSemanticClassifications, getSemanticJsxChildren: () => bN, getSetAccessorTypeAnnotationNode: () => BN, getSetAccessorValueParameter: () => z0, getSetExternalModuleIndicator: () => Ex, getShebang: () => GT, getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => w0, getSingleVariableOfVariableStatement: () => Al, getSnapshotText: () => getSnapshotText, getSnippetElement: () => getSnippetElement, getSourceFileOfModule: () => AD, getSourceFileOfNode: () => Si, getSourceFilePathInNewDir: () => M4, getSourceFilePathInNewDirWorker: () => U0, getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText, getSourceFilesToEmit: () => RN, getSourceMapRange: () => getSourceMapRange, getSourceMapper: () => getSourceMapper, getSourceTextOfNodeFromSourceFile: () => No, getSpanOfTokenAtPosition: () => n0, getSpellingSuggestion: () => Ep, getStartPositionOfLine: () => kD, getStartPositionOfRange: () => K_, getStartsOnNewLine: () => getStartsOnNewLine, getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock, getStrictOptionValue: () => lv, getStringComparer: () => rl, getSuperCallFromStatement: () => getSuperCallFromStatement, getSuperContainer: () => Yk, getSupportedCodeFixes: () => v7, getSupportedExtensions: () => Mx, getSupportedExtensionsWithJsonIfResolveJsonModule: () => Lx, getSwitchedType: () => getSwitchedType, getSymbolId: () => getSymbolId, getSymbolNameForPrivateIdentifier: () => cN, getSymbolTarget: () => getSymbolTarget, getSyntacticClassifications: () => getSyntacticClassifications, getSyntacticModifierFlags: () => X0, getSyntacticModifierFlagsNoCache: () => Y0, getSynthesizedDeepClone: () => getSynthesizedDeepClone, getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements, getSynthesizedDeepClones: () => getSynthesizedDeepClones, getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements, getSyntheticLeadingComments: () => getSyntheticLeadingComments, getSyntheticTrailingComments: () => getSyntheticTrailingComments, getTargetLabel: () => getTargetLabel, getTargetOfBindingOrAssignmentElement: () => Ko, getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState, getTextOfConstantValue: () => HD, getTextOfIdentifierOrLiteral: () => kf, getTextOfJSDocComment: () => zA, getTextOfNode: () => gf, getTextOfNodeFromSourceText: () => B_, getTextOfPropertyName: () => lk, getThisContainer: () => d0, getThisParameter: () => j4, getTokenAtPosition: () => getTokenAtPosition, getTokenPosOfNode: () => Io, getTokenSourceMapRange: () => getTokenSourceMapRange, getTouchingPropertyName: () => getTouchingPropertyName, getTouchingToken: () => getTouchingToken, getTrailingCommentRanges: () => HT, getTrailingSemicolonDeferringWriter: () => kN, getTransformFlagsSubtreeExclusions: () => w8, getTransformers: () => getTransformers, getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath, getTsConfigObjectLiteralExpression: () => M3, getTsConfigPropArray: () => L3, getTsConfigPropArrayElementValue: () => Uk, getTypeAnnotationNode: () => UN, getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList, getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport, getTypeNode: () => getTypeNode, getTypeNodeIfAccessible: () => getTypeNodeIfAccessible, getTypeParameterFromJsDoc: () => BI, getTypeParameterOwner: () => AA, getTypesPackageName: () => getTypesPackageName, getUILocale: () => M1, getUniqueName: () => getUniqueName, getUniqueSymbolId: () => getUniqueSymbolId, getUseDefineForClassFields: () => CM, getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage, getWatchFactory: () => getWatchFactory, group: () => el, groupBy: () => x_, guessIndentation: () => rD, handleNoEmitOptions: () => handleNoEmitOptions, hasAbstractModifier: () => W4, hasAccessorModifier: () => H4, hasAmbientModifier: () => V4, hasChangesInResolutions: () => wD, hasChildOfKind: () => hasChildOfKind, hasContextSensitiveParameters: () => vL, hasDecorators: () => Il, hasDocComment: () => hasDocComment, hasDynamicName: () => v4, hasEffectiveModifier: () => H0, hasEffectiveModifiers: () => XN, hasEffectiveReadonlyModifier: () => $0, hasExtension: () => OT, hasIndexSignature: () => hasIndexSignature, hasInitializer: () => l3, hasInvalidEscape: () => w4, hasJSDocNodes: () => ya, hasJSDocParameterTags: () => IA, hasJSFileExtension: () => dv, hasJsonModuleEmitEnabled: () => hM, hasOnlyExpressionInitializer: () => eD, hasOverrideModifier: () => QN, hasPossibleExternalModuleReference: () => sk, hasProperty: () => Jr, hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName, hasQuestionToken: () => OI, hasRecordedExternalHelpers: () => Gj, hasRestParameter: () => nD, hasScopeMarker: () => kP, hasStaticModifier: () => Lf, hasSyntacticModifier: () => rn, hasSyntacticModifiers: () => YN, hasTSFileExtension: () => mv, hasTabstop: () => Qx, hasTrailingDirectorySeparator: () => Hp, hasType: () => ZP, hasTypeArguments: () => qI, hasZeroOrOneAsteriskCharacter: () => OM, helperString: () => helperString, hostGetCanonicalFileName: () => D4, hostUsesCaseSensitiveFileNames: () => J0, idText: () => qr, identifierIsThisKeyword: () => J4, identifierToKeywordKind: () => dS, identity: () => rr, identitySourceMapConsumer: () => identitySourceMapConsumer, ignoreSourceNewlines: () => ignoreSourceNewlines, ignoredPaths: () => ignoredPaths, importDefaultHelper: () => importDefaultHelper, importFromModuleSpecifier: () => II, importNameElisionDisabled: () => gM, importStarHelper: () => importStarHelper, indexOfAnyCharCode: () => Je, indexOfNode: () => UD, indicesOf: () => Wr, inferredTypesContainingFile: () => inferredTypesContainingFile, insertImports: () => insertImports, insertLeadingStatement: () => Mj, insertSorted: () => Qn, insertStatementAfterCustomPrologue: () => RD, insertStatementAfterStandardPrologue: () => LD, insertStatementsAfterCustomPrologue: () => MD, insertStatementsAfterStandardPrologue: () => OD, intersperse: () => Ie, introducesArgumentsExoticObject: () => Lk, inverseJsxOptionMap: () => inverseJsxOptionMap, isAbstractConstructorSymbol: () => zO, isAbstractModifier: () => uR, isAccessExpression: () => Lo, isAccessibilityModifier: () => isAccessibilityModifier, isAccessor: () => pf, isAccessorModifier: () => fR, isAliasSymbolDeclaration: () => QI, isAliasableExpression: () => k0, isAmbientModule: () => yf, isAmbientPropertyDeclaration: () => rk, isAnonymousFunctionDefinition: () => H_, isAnyDirectorySeparator: () => ay, isAnyImportOrBareOrAccessedRequire: () => ik, isAnyImportOrReExport: () => bf, isAnyImportSyntax: () => Qy, isAnySupportedFileExtension: () => ZM, isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey, isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess, isArray: () => ir, isArrayBindingElement: () => gP, isArrayBindingOrAssignmentElement: () => ZS, isArrayBindingOrAssignmentPattern: () => QS, isArrayBindingPattern: () => yR, isArrayLiteralExpression: () => Yl, isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern, isArrayTypeNode: () => F8, isArrowFunction: () => sd, isAsExpression: () => CR, isAssertClause: () => $R, isAssertEntry: () => KR, isAssertionExpression: () => PP, isAssertionKey: () => oP, isAssertsKeyword: () => _R, isAssignmentDeclaration: () => v0, isAssignmentExpression: () => ms, isAssignmentOperator: () => G_, isAssignmentPattern: () => KS, isAssignmentTarget: () => UI, isAsteriskToken: () => nR, isAsyncFunction: () => oN, isAsyncModifier: () => Ul, isAutoAccessorPropertyDeclaration: () => $S, isAwaitExpression: () => SR, isAwaitKeyword: () => cR, isBigIntLiteral: () => Uv, isBinaryExpression: () => ur, isBinaryOperatorToken: () => AJ, isBindableObjectDefinePropertyCall: () => S0, isBindableStaticAccessExpression: () => W_, isBindableStaticElementAccessExpression: () => x0, isBindableStaticNameExpression: () => V_, isBindingElement: () => Xl, isBindingElementOfBareOrAccessedRequire: () => mI, isBindingName: () => uP, isBindingOrAssignmentElement: () => yP, isBindingOrAssignmentPattern: () => vP, isBindingPattern: () => df, isBlock: () => Ql, isBlockOrCatchScoped: () => $D, isBlockScope: () => w3, isBlockScopedContainerTopLevel: () => ZD, isBooleanLiteral: () => pP, isBreakOrContinueStatement: () => YA, isBreakStatement: () => JR, isBuildInfoFile: () => isBuildInfoFile, isBuilderProgram: () => isBuilderProgram2, isBundle: () => cj, isBundleFileTextLike: () => XO, isCallChain: () => Cy, isCallExpression: () => sc, isCallExpressionTarget: () => isCallExpressionTarget, isCallLikeExpression: () => SP, isCallOrNewExpression: () => xP, isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget, isCallSignatureDeclaration: () => Vv, isCallToHelper: () => isCallToHelper, isCaseBlock: () => VR, isCaseClause: () => sj, isCaseKeyword: () => dR, isCaseOrDefaultClause: () => QP, isCatchClause: () => oj, isCatchClauseVariableDeclaration: () => Gx, isCatchClauseVariableDeclarationOrBindingElement: () => T3, isCheckJsEnabledForFile: () => eL, isChildOfNodeWithKind: () => Ak, isCircularBuildOrder: () => isCircularBuildOrder, isClassDeclaration: () => _c6, isClassElement: () => Js, isClassExpression: () => _d4, isClassLike: () => bi, isClassMemberModifier: () => VS, isClassOrTypeElement: () => mP, isClassStaticBlockDeclaration: () => Hl, isCollapsedRange: () => vO, isColonToken: () => iR, isCommaExpression: () => gd, isCommaListExpression: () => oc, isCommaSequence: () => zj, isCommaToken: () => I8, isComment: () => isComment, isCommonJsExportPropertyAssignment: () => p0, isCommonJsExportedExpression: () => Ok, isCompoundAssignment: () => isCompoundAssignment, isComputedNonLiteralName: () => ck, isComputedPropertyName: () => Ws, isConciseBody: () => MP, isConditionalExpression: () => xR, isConditionalTypeNode: () => V8, isConstTypeReference: () => jS, isConstructSignatureDeclaration: () => R8, isConstructorDeclaration: () => nc, isConstructorTypeNode: () => Gv, isContextualKeyword: () => N0, isContinueStatement: () => jR, isCustomPrologue: () => Tf, isDebuggerStatement: () => WR, isDeclaration: () => ko, isDeclarationBindingElement: () => Fy, isDeclarationFileName: () => QE, isDeclarationName: () => c4, isDeclarationNameOfEnumOrNamespace: () => IO, isDeclarationReadonly: () => Sk, isDeclarationStatement: () => VP, isDeclarationWithTypeParameterChildren: () => C3, isDeclarationWithTypeParameters: () => nk, isDecorator: () => zl, isDecoratorTarget: () => isDecoratorTarget, isDefaultClause: () => oE, isDefaultImport: () => Z3, isDefaultModifier: () => oR, isDefaultedExpandoInitializer: () => SI, isDeleteExpression: () => bR, isDeleteTarget: () => $I, isDeprecatedDeclaration: () => isDeprecatedDeclaration, isDestructuringAssignment: () => nO, isDiagnosticWithLocation: () => isDiagnosticWithLocation, isDiskPathRoot: () => H5, isDoStatement: () => OR, isDotDotDotToken: () => rR, isDottedName: () => ev, isDynamicName: () => M0, isESSymbolIdentifier: () => pN, isEffectiveExternalModule: () => Yy, isEffectiveModuleDeclaration: () => S3, isEffectiveStrictModeSourceFile: () => tk, isElementAccessChain: () => RS, isElementAccessExpression: () => gs, isEmittedFileOfProgram: () => isEmittedFileOfProgram, isEmptyArrayLiteral: () => _O, isEmptyBindingElement: () => pS, isEmptyBindingPattern: () => uS, isEmptyObjectLiteral: () => oO, isEmptyStatement: () => IR, isEmptyStringLiteral: () => j3, isEndOfDeclarationMarker: () => ej, isEntityName: () => lP, isEntityNameExpression: () => Bs, isEnumConst: () => Tk, isEnumDeclaration: () => i2, isEnumMember: () => cE, isEqualityOperatorKind: () => isEqualityOperatorKind, isEqualsGreaterThanToken: () => sR, isExclamationToken: () => rd, isExcludedFile: () => isExcludedFile, isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport, isExportAssignment: () => Vo, isExportDeclaration: () => cc, isExportModifier: () => N8, isExportName: () => Uj, isExportNamespaceAsDefaultDeclaration: () => b3, isExportOrDefaultModifier: () => DJ, isExportSpecifier: () => aE, isExportsIdentifier: () => H3, isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias, isExpression: () => mf, isExpressionNode: () => g0, isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration, isExpressionOfOptionalChainRoot: () => $A, isExpressionStatement: () => Zl, isExpressionWithTypeArguments: () => e2, isExpressionWithTypeArgumentsInClassExtendsClause: () => Z0, isExternalModule: () => Qo, isExternalModuleAugmentation: () => Xy, isExternalModuleImportEqualsDeclaration: () => B3, isExternalModuleIndicator: () => NP, isExternalModuleNameRelative: () => gA, isExternalModuleReference: () => ud, isExternalModuleSymbol: () => isExternalModuleSymbol, isExternalOrCommonJsModule: () => bk, isFileLevelUniqueName: () => m3, isFileProbablyExternalModule: () => ou, isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter, isFixablePromiseHandler: () => isFixablePromiseHandler, isForInOrOfStatement: () => OP, isForInStatement: () => LR, isForInitializer: () => RP, isForOfStatement: () => RR, isForStatement: () => eE, isFunctionBlock: () => O3, isFunctionBody: () => LP, isFunctionDeclaration: () => Wo, isFunctionExpression: () => ad, isFunctionExpressionOrArrowFunction: () => SL, isFunctionLike: () => ga, isFunctionLikeDeclaration: () => HS, isFunctionLikeKind: () => My, isFunctionLikeOrClassStaticBlockDeclaration: () => uf, isFunctionOrConstructorTypeNode: () => hP, isFunctionOrModuleBlock: () => fP, isFunctionSymbol: () => DI, isFunctionTypeNode: () => $l, isFutureReservedKeyword: () => tN, isGeneratedIdentifier: () => cs, isGeneratedPrivateIdentifier: () => Ny, isGetAccessor: () => Tl, isGetAccessorDeclaration: () => Gl, isGetOrSetAccessorDeclaration: () => GA, isGlobalDeclaration: () => isGlobalDeclaration, isGlobalScopeAugmentation: () => vf, isGrammarError: () => ND, isHeritageClause: () => ru, isHoistedFunction: () => _0, isHoistedVariableStatement: () => c0, isIdentifier: () => yt, isIdentifierANonContextualKeyword: () => iN, isIdentifierName: () => YI, isIdentifierOrThisTypeNode: () => aJ, isIdentifierPart: () => Rs, isIdentifierStart: () => Wn, isIdentifierText: () => vy, isIdentifierTypePredicate: () => Fk, isIdentifierTypeReference: () => pL, isIfStatement: () => NR, isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching, isImplicitGlob: () => Dx, isImportCall: () => s0, isImportClause: () => HR, isImportDeclaration: () => o2, isImportEqualsDeclaration: () => s2, isImportKeyword: () => M8, isImportMeta: () => o0, isImportOrExportSpecifier: () => aP, isImportOrExportSpecifierName: () => isImportOrExportSpecifierName, isImportSpecifier: () => nE, isImportTypeAssertionContainer: () => GR, isImportTypeNode: () => Kl, isImportableFile: () => isImportableFile, isInComment: () => isInComment, isInExpressionContext: () => J3, isInJSDoc: () => q3, isInJSFile: () => Pr, isInJSXText: () => isInJSXText, isInJsonFile: () => pI, isInNonReferenceComment: () => isInNonReferenceComment, isInReferenceComment: () => isInReferenceComment, isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration, isInString: () => isInString, isInTemplateString: () => isInTemplateString, isInTopLevelContext: () => Kk, isIncrementalCompilation: () => wM, isIndexSignatureDeclaration: () => Hv, isIndexedAccessTypeNode: () => $8, isInferTypeNode: () => H8, isInfinityOrNaNString: () => bL, isInitializedProperty: () => isInitializedProperty, isInitializedVariable: () => lx, isInsideJsxElement: () => isInsideJsxElement, isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute, isInsideNodeModules: () => isInsideNodeModules, isInsideTemplateLiteral: () => isInsideTemplateLiteral, isInstantiatedModule: () => isInstantiatedModule, isInterfaceDeclaration: () => eu, isInternalDeclaration: () => isInternalDeclaration, isInternalModuleImportEqualsDeclaration: () => lI, isInternalName: () => qj, isIntersectionTypeNode: () => W8, isIntrinsicJsxName: () => P4, isIterationStatement: () => n3, isJSDoc: () => Ho, isJSDocAllType: () => dj, isJSDocAugmentsTag: () => md, isJSDocAuthorTag: () => bj, isJSDocCallbackTag: () => Tj, isJSDocClassTag: () => pE, isJSDocCommentContainingNode: () => c3, isJSDocConstructSignature: () => MI, isJSDocDeprecatedTag: () => v2, isJSDocEnumTag: () => dE, isJSDocFunctionType: () => dd, isJSDocImplementsTag: () => hE, isJSDocIndexSignature: () => dI, isJSDocLikeText: () => LE, isJSDocLink: () => uj, isJSDocLinkCode: () => pj, isJSDocLinkLike: () => Sl, isJSDocLinkPlain: () => fj, isJSDocMemberName: () => uc, isJSDocNameReference: () => fd, isJSDocNamepathType: () => vj, isJSDocNamespaceBody: () => FP, isJSDocNode: () => Uy, isJSDocNonNullableType: () => hj, isJSDocNullableType: () => uE, isJSDocOptionalParameter: () => Zx, isJSDocOptionalType: () => gj, isJSDocOverloadTag: () => y2, isJSDocOverrideTag: () => fE, isJSDocParameterTag: () => pc, isJSDocPrivateTag: () => m2, isJSDocPropertyLikeTag: () => Dy, isJSDocPropertyTag: () => wj, isJSDocProtectedTag: () => h2, isJSDocPublicTag: () => d2, isJSDocReadonlyTag: () => g2, isJSDocReturnTag: () => b2, isJSDocSatisfiesExpression: () => IL, isJSDocSatisfiesTag: () => T2, isJSDocSeeTag: () => Sj, isJSDocSignature: () => iu, isJSDocTag: () => zy, isJSDocTemplateTag: () => Go, isJSDocThisTag: () => mE, isJSDocThrowsTag: () => Cj, isJSDocTypeAlias: () => Cl, isJSDocTypeAssertion: () => xE, isJSDocTypeExpression: () => lE, isJSDocTypeLiteral: () => f2, isJSDocTypeTag: () => au, isJSDocTypedefTag: () => xj, isJSDocUnknownTag: () => Ej, isJSDocUnknownType: () => mj, isJSDocVariadicType: () => yj, isJSXTagName: () => xf, isJsonEqual: () => gv, isJsonSourceFile: () => a0, isJsxAttribute: () => nj, isJsxAttributeLike: () => XP, isJsxAttributes: () => p2, isJsxChild: () => o3, isJsxClosingElement: () => sE, isJsxClosingFragment: () => rj, isJsxElement: () => l2, isJsxExpression: () => aj, isJsxFragment: () => pd, isJsxOpeningElement: () => tu, isJsxOpeningFragment: () => u2, isJsxOpeningLikeElement: () => _32, isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName, isJsxSelfClosingElement: () => tj, isJsxSpreadAttribute: () => ij, isJsxTagNameExpression: () => KP, isJsxText: () => td, isJumpStatementTarget: () => isJumpStatementTarget, isKeyword: () => ba, isKnownSymbol: () => lN, isLabelName: () => isLabelName, isLabelOfLabeledStatement: () => isLabelOfLabeledStatement, isLabeledStatement: () => tE, isLateVisibilityPaintedStatement: () => ak, isLeftHandSideExpression: () => Do, isLeftHandSideOfAssignment: () => rO, isLet: () => xk, isLineBreak: () => un, isLiteralComputedPropertyDeclarationName: () => l4, isLiteralExpression: () => Iy, isLiteralExpressionOfObject: () => rP, isLiteralImportTypeNode: () => k3, isLiteralKind: () => ky, isLiteralLikeAccess: () => wf, isLiteralLikeElementAccess: () => wl, isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess, isLiteralTypeLikeExpression: () => cJ, isLiteralTypeLiteral: () => CP, isLiteralTypeNode: () => Yv, isLocalName: () => E2, isLogicalOperator: () => ZN, isLogicalOrCoalescingAssignmentExpression: () => eO, isLogicalOrCoalescingAssignmentOperator: () => jf, isLogicalOrCoalescingBinaryExpression: () => tO, isLogicalOrCoalescingBinaryOperator: () => Z4, isMappedTypeNode: () => K8, isMemberName: () => js, isMergeDeclarationMarker: () => ZR, isMetaProperty: () => t2, isMethodDeclaration: () => Vl, isMethodOrAccessor: () => Ly, isMethodSignature: () => L8, isMinusToken: () => Wv, isMissingDeclaration: () => YR, isModifier: () => Oy, isModifierKind: () => Wi, isModifierLike: () => ff, isModuleAugmentationExternal: () => x3, isModuleBlock: () => rE, isModuleBody: () => jP, isModuleDeclaration: () => Ea, isModuleExportsAccessExpression: () => T0, isModuleIdentifier: () => G3, isModuleName: () => _J, isModuleOrEnumDeclaration: () => qP, isModuleReference: () => $P, isModuleSpecifierLike: () => isModuleSpecifierLike, isModuleWithStringLiteralName: () => KD, isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration, isNameOfModuleDeclaration: () => isNameOfModuleDeclaration, isNamedClassElement: () => dP, isNamedDeclaration: () => af, isNamedEvaluation: () => fN, isNamedEvaluationSource: () => S4, isNamedExportBindings: () => QA, isNamedExports: () => iE, isNamedImportBindings: () => BP, isNamedImports: () => XR, isNamedImportsOrExports: () => YO, isNamedTupleMember: () => $v, isNamespaceBody: () => JP, isNamespaceExport: () => ld, isNamespaceExportDeclaration: () => a2, isNamespaceImport: () => _22, isNamespaceReexportDeclaration: () => oI, isNewExpression: () => X8, isNewExpressionTarget: () => isNewExpressionTarget, isNightly: () => PN, isNoSubstitutionTemplateLiteral: () => k8, isNode: () => eP, isNodeArray: () => _s, isNodeArrayMultiLine: () => AO, isNodeDescendantOf: () => KI, isNodeKind: () => gl, isNodeLikeSystem: () => M5, isNodeModulesDirectory: () => aA, isNodeWithPossibleHoistedDeclaration: () => zI, isNonContextualKeyword: () => y4, isNonExportDefaultModifier: () => kJ, isNonGlobalAmbientModule: () => XD, isNonGlobalDeclaration: () => isNonGlobalDeclaration, isNonNullAccess: () => kL, isNonNullChain: () => JS, isNonNullExpression: () => Uo, isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName, isNotEmittedOrPartiallyEmittedNode: () => DP, isNotEmittedStatement: () => c2, isNullishCoalesce: () => XA, isNumber: () => gi, isNumericLiteral: () => zs, isNumericLiteralName: () => $x, isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName, isObjectBindingOrAssignmentElement: () => YS, isObjectBindingOrAssignmentPattern: () => XS, isObjectBindingPattern: () => gR, isObjectLiteralElement: () => Wy, isObjectLiteralElementLike: () => jy, isObjectLiteralExpression: () => Hs, isObjectLiteralMethod: () => jk, isObjectLiteralOrClassExpressionMethodOrAccessor: () => Jk, isObjectTypeDeclaration: () => $O, isOctalDigit: () => hy, isOmittedExpression: () => cd, isOptionalChain: () => Ay, isOptionalChainRoot: () => Py, isOptionalDeclaration: () => DL, isOptionalJSDocPropertyLikeTag: () => Yx, isOptionalTypeNode: () => q8, isOuterExpression: () => yd, isOutermostOptionalChain: () => KA, isOverrideModifier: () => pR, isPackedArrayLiteral: () => hL, isParameter: () => Vs, isParameterDeclaration: () => mN, isParameterOrCatchClauseVariable: () => TL, isParameterPropertyDeclaration: () => lS, isParameterPropertyModifier: () => WS, isParenthesizedExpression: () => qo, isParenthesizedTypeNode: () => Kv, isParseTreeNode: () => pl2, isPartOfTypeNode: () => l0, isPartOfTypeQuery: () => F3, isPartiallyEmittedExpression: () => Z8, isPatternMatch: () => z1, isPinnedComment: () => v3, isPlainJsFile: () => PD, isPlusToken: () => zv, isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition, isPostfixUnaryExpression: () => Q8, isPrefixUnaryExpression: () => od, isPrivateIdentifier: () => vn, isPrivateIdentifierClassElementDeclaration: () => zS, isPrivateIdentifierPropertyAccessExpression: () => cP, isPrivateIdentifierSymbol: () => uN, isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo, isProgramUptoDate: () => isProgramUptoDate, isPrologueDirective: () => us, isPropertyAccessChain: () => LS, isPropertyAccessEntityNameExpression: () => rx, isPropertyAccessExpression: () => bn, isPropertyAccessOrQualifiedName: () => TP, isPropertyAccessOrQualifiedNameOrImportTypeNode: () => bP, isPropertyAssignment: () => lc, isPropertyDeclaration: () => Bo, isPropertyName: () => vl, isPropertyNameLiteral: () => L0, isPropertySignature: () => Wl, isProtoSetter: () => T4, isPrototypeAccess: () => Nl, isPrototypePropertyAssignment: () => CI, isPunctuation: () => isPunctuation, isPushOrUnshiftIdentifier: () => dN, isQualifiedName: () => rc, isQuestionDotToken: () => aR, isQuestionOrExclamationToken: () => iJ, isQuestionOrPlusOrMinusToken: () => oJ, isQuestionToken: () => ql, isRawSourceMap: () => isRawSourceMap, isReadonlyKeyword: () => O8, isReadonlyKeywordOrPlusOrMinusToken: () => sJ, isRecognizedTripleSlashComment: () => jD, isReferenceFileLocation: () => isReferenceFileLocation, isReferencedFile: () => isReferencedFile, isRegularExpressionLiteral: () => QL, isRequireCall: () => El, isRequireVariableStatement: () => W3, isRestParameter: () => u3, isRestTypeNode: () => U8, isReturnStatement: () => FR, isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler, isRightSideOfAccessExpression: () => nx, isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess, isRightSideOfQualifiedName: () => isRightSideOfQualifiedName, isRightSideOfQualifiedNameOrPropertyAccess: () => aO, isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => sO, isRootedDiskPath: () => A_, isSameEntityName: () => z_, isSatisfiesExpression: () => AR, isScopeMarker: () => i3, isSemicolonClassElement: () => kR, isSetAccessor: () => bl, isSetAccessorDeclaration: () => ic, isShebangTrivia: () => gy, isShorthandAmbientModuleSymbol: () => YD, isShorthandPropertyAssignment: () => nu, isSignedNumericLiteral: () => O0, isSimpleCopiableExpression: () => isSimpleCopiableExpression, isSimpleInlineableExpression: () => isSimpleInlineableExpression, isSingleOrDoubleQuote: () => hI, isSourceFile: () => wi, isSourceFileFromLibrary: () => isSourceFileFromLibrary, isSourceFileJS: () => y0, isSourceFileNotJS: () => uI, isSourceFileNotJson: () => fI, isSourceMapping: () => isSourceMapping, isSpecialPropertyDeclaration: () => AI, isSpreadAssignment: () => _E, isSpreadElement: () => Zv, isStatement: () => a3, isStatementButNotDeclaration: () => HP, isStatementOrBlock: () => s3, isStatementWithLocals: () => DD, isStatic: () => G0, isStaticModifier: () => lR, isString: () => Ji, isStringAKeyword: () => nN, isStringANonContextualKeyword: () => rN, isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection, isStringDoubleQuoted: () => gI, isStringLiteral: () => Gn, isStringLiteralLike: () => Ti, isStringLiteralOrJsxExpression: () => YP, isStringLiteralOrTemplate: () => isStringLiteralOrTemplate, isStringOrNumericLiteralLike: () => Ta, isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral, isStringTextContainingNode: () => _P, isSuperCall: () => Ek, isSuperKeyword: () => nd, isSuperOrSuperProperty: () => Zk, isSuperProperty: () => Sf, isSupportedSourceFileName: () => GM, isSwitchStatement: () => qR, isSyntaxList: () => Aj, isSyntheticExpression: () => PR, isSyntheticReference: () => QR, isTagName: () => isTagName, isTaggedTemplateExpression: () => Y8, isTaggedTemplateTag: () => isTaggedTemplateTag, isTemplateExpression: () => ER, isTemplateHead: () => ZL, isTemplateLiteral: () => EP, isTemplateLiteralKind: () => yl, isTemplateLiteralToken: () => nP, isTemplateLiteralTypeNode: () => hR, isTemplateLiteralTypeSpan: () => mR, isTemplateMiddle: () => eR, isTemplateMiddleOrTemplateTail: () => iP, isTemplateSpan: () => DR, isTemplateTail: () => tR, isTextWhiteSpaceLike: () => isTextWhiteSpaceLike, isThis: () => isThis, isThisContainerOrFunctionBlock: () => $k, isThisIdentifier: () => Mf, isThisInTypeQuery: () => qN, isThisInitializedDeclaration: () => tI, isThisInitializedObjectBindingExpression: () => rI, isThisProperty: () => eI, isThisTypeNode: () => Xv, isThisTypeParameter: () => Kx, isThisTypePredicate: () => Bk, isThrowStatement: () => UR, isToken: () => tP, isTokenKind: () => BS, isTraceEnabled: () => isTraceEnabled, isTransientSymbol: () => $y, isTrivia: () => aN, isTryStatement: () => zR, isTupleTypeNode: () => B8, isTypeAlias: () => LI, isTypeAliasDeclaration: () => n2, isTypeAssertionExpression: () => vR, isTypeDeclaration: () => Xx, isTypeElement: () => Ry, isTypeKeyword: () => isTypeKeyword, isTypeKeywordToken: () => isTypeKeywordToken, isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier, isTypeLiteralNode: () => id, isTypeNode: () => Jy, isTypeNodeKind: () => hx, isTypeOfExpression: () => TR, isTypeOnlyExportDeclaration: () => US, isTypeOnlyImportDeclaration: () => qS, isTypeOnlyImportOrExportDeclaration: () => sP, isTypeOperatorNode: () => G8, isTypeParameterDeclaration: () => Fo, isTypePredicateNode: () => j8, isTypeQueryNode: () => J8, isTypeReferenceNode: () => ac, isTypeReferenceType: () => tD, isUMDExportSymbol: () => VO, isUnaryExpression: () => t3, isUnaryExpressionWithWrite: () => wP, isUnicodeIdentifierStart: () => UT, isUnionTypeNode: () => z8, isUnparsedNode: () => ZA, isUnparsedPrepend: () => _j, isUnparsedSource: () => lj, isUnparsedTextLike: () => FS, isUrl: () => V5, isValidBigIntString: () => zx, isValidESSymbolDeclaration: () => Mk, isValidTypeOnlyAliasUseSite: () => _L, isValueSignatureDeclaration: () => WI, isVarConst: () => D3, isVariableDeclaration: () => Vi, isVariableDeclarationInVariableStatement: () => N3, isVariableDeclarationInitializedToBareOrAccessedRequire: () => Ef, isVariableDeclarationInitializedToRequire: () => U3, isVariableDeclarationList: () => r2, isVariableLike: () => u0, isVariableLikeOrAccessor: () => Nk, isVariableStatement: () => zo, isVoidExpression: () => Qv, isWatchSet: () => OO, isWhileStatement: () => MR, isWhiteSpaceLike: () => os30, isWhiteSpaceSingleLine: () => N_, isWithStatement: () => BR, isWriteAccess: () => FO, isWriteOnlyAccess: () => JO, isYieldExpression: () => wR, jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport, keywordPart: () => keywordPart, last: () => Zn, lastOrUndefined: () => Cn, length: () => I, libMap: () => libMap, libs: () => libs, lineBreakPart: () => lineBreakPart, linkNamePart: () => linkNamePart, linkPart: () => linkPart, linkTextPart: () => linkTextPart, listFiles: () => listFiles, loadModuleFromGlobalCache: () => loadModuleFromGlobalCache, loadWithModeAwareCache: () => loadWithModeAwareCache, makeIdentifierFromModuleName: () => GD, makeImport: () => makeImport, makeImportIfNecessary: () => makeImportIfNecessary, makeStringLiteral: () => makeStringLiteral, mangleScopedPackageName: () => mangleScopedPackageName, map: () => Ze, mapAllOrFail: () => Pt, mapDefined: () => qt, mapDefinedEntries: () => Ri, mapDefinedIterator: () => Zr, mapEntries: () => be, mapIterator: () => st, mapOneOrMany: () => mapOneOrMany, mapToDisplayParts: () => mapToDisplayParts, matchFiles: () => qM, matchPatternOrExact: () => tL, matchedText: () => S5, matchesExclude: () => matchesExclude, maybeBind: () => le, maybeSetLocalizedDiagnosticMessages: () => vx, memoize: () => tl, memoizeCached: () => D1, memoizeOne: () => An, memoizeWeak: () => P1, metadataHelper: () => metadataHelper, min: () => N1, minAndMax: () => nL, missingFileModifiedTime: () => missingFileModifiedTime, modifierToFlag: () => Q0, modifiersToFlags: () => Vn, moduleOptionDeclaration: () => moduleOptionDeclaration, moduleResolutionIsEqualTo: () => TD, moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter, moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations, moduleResolutionSupportsPackageJsonExportsAndImports: () => _v, moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules, moduleSpecifiers: () => ts_moduleSpecifiers_exports, moveEmitHelpers: () => moveEmitHelpers, moveRangeEnd: () => gO, moveRangePastDecorators: () => _x, moveRangePastModifiers: () => yO, moveRangePos: () => Ff, moveSyntheticComments: () => moveSyntheticComments, mutateMap: () => UO, mutateMapSkippingNewValues: () => fx, needsParentheses: () => needsParentheses, needsScopeMarker: () => IP, newCaseClauseTracker: () => newCaseClauseTracker, newPrivateEnvironment: () => newPrivateEnvironment, noEmitNotification: () => noEmitNotification, noEmitSubstitution: () => noEmitSubstitution, noTransformers: () => noTransformers, noTruncationMaximumTruncationLength: () => n8, nodeCanBeDecorated: () => R3, nodeHasName: () => hS, nodeIsDecorated: () => q_, nodeIsMissing: () => va, nodeIsPresent: () => xl, nodeIsSynthesized: () => fs61, nodeModuleNameResolver: () => nodeModuleNameResolver, nodeModulesPathPart: () => nodeModulesPathPart, nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver, nodeOrChildIsDecorated: () => m0, nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd, nodePosToString: () => ID, nodeSeenTracker: () => nodeSeenTracker, nodeStartsNewLexicalEnvironment: () => hN, nodeToDisplayParts: () => nodeToDisplayParts, noop: () => yn, noopFileWatcher: () => noopFileWatcher, noopPush: () => CT, normalizePath: () => Un, normalizeSlashes: () => Eo, not: () => w5, notImplemented: () => A1, notImplementedResolver: () => notImplementedResolver, nullNodeConverters: () => nullNodeConverters, nullParenthesizerRules: () => Jv, nullTransformationContext: () => nullTransformationContext, objectAllocator: () => lr, operatorPart: () => operatorPart, optionDeclarations: () => optionDeclarations, optionMapToObject: () => optionMapToObject, optionsAffectingProgramStructure: () => optionsAffectingProgramStructure, optionsForBuild: () => optionsForBuild, optionsForWatch: () => optionsForWatch, optionsHaveChanges: () => J_, optionsHaveModuleResolutionChanges: () => p3, or: () => W1, orderedRemoveItem: () => J, orderedRemoveItemAt: () => vT, outFile: () => B0, packageIdToPackageName: () => f3, packageIdToString: () => xD, padLeft: () => D5, padRight: () => k5, paramHelper: () => paramHelper, parameterIsThisKeyword: () => kl, parameterNamePart: () => parameterNamePart, parseBaseNodeFactory: () => I2, parseBigInt: () => oL, parseBuildCommand: () => parseBuildCommand, parseCommandLine: () => parseCommandLine, parseCommandLineWorker: () => parseCommandLineWorker, parseConfigFileTextToJson: () => parseConfigFileTextToJson, parseConfigFileWithSystem: () => parseConfigFileWithSystem, parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike, parseCustomTypeOption: () => parseCustomTypeOption, parseIsolatedEntityName: () => $J, parseIsolatedJSDocComment: () => XJ, parseJSDocTypeExpressionForTests: () => YJ, parseJsonConfigFileContent: () => parseJsonConfigFileContent, parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent, parseJsonText: () => KJ, parseListTypeOption: () => parseListTypeOption, parseNodeFactory: () => dc, parseNodeModuleFromPath: () => parseNodeModuleFromPath, parsePackageName: () => parsePackageName, parsePseudoBigInt: () => Hf, parseValidBigInt: () => Ux, patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory, pathContainsNodeModules: () => pathContainsNodeModules, pathIsAbsolute: () => sy, pathIsBareSpecifier: () => G5, pathIsRelative: () => So, patternText: () => T5, perfLogger: () => Dp, performIncrementalCompilation: () => performIncrementalCompilation, performance: () => ts_performance_exports, plainJSErrors: () => plainJSErrors, positionBelongsToNode: () => positionBelongsToNode, positionIsASICandidate: () => positionIsASICandidate, positionIsSynthesized: () => hs, positionsAreOnSameLine: () => $_, preProcessFile: () => preProcessFile, probablyUsesSemicolons: () => probablyUsesSemicolons, processCommentPragmas: () => ZE, processPragmasIntoFields: () => e7, processTaggedTemplateExpression: () => processTaggedTemplateExpression, programContainsEsModules: () => programContainsEsModules, programContainsModules: () => programContainsModules, projectReferenceIsEqualTo: () => bD, propKeyHelper: () => propKeyHelper, propertyNamePart: () => propertyNamePart, pseudoBigIntToString: () => yv, punctuationPart: () => punctuationPart, pushIfUnique: () => qn, quote: () => quote, quotePreferenceFromString: () => quotePreferenceFromString, rangeContainsPosition: () => rangeContainsPosition, rangeContainsPositionExclusive: () => rangeContainsPositionExclusive, rangeContainsRange: () => rangeContainsRange, rangeContainsRangeExclusive: () => rangeContainsRangeExclusive, rangeContainsStartEnd: () => rangeContainsStartEnd, rangeEndIsOnSameLineAsRangeStart: () => EO, rangeEndPositionsAreOnSameLine: () => xO, rangeEquals: () => Kc, rangeIsOnSingleLine: () => TO, rangeOfNode: () => iL, rangeOfTypeParameters: () => aL, rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd, rangeStartIsOnSameLineAsRangeEnd: () => cx, rangeStartPositionsAreOnSameLine: () => SO, readBuilderProgram: () => readBuilderProgram, readConfigFile: () => readConfigFile, readHelper: () => readHelper, readJson: () => hO, readJsonConfigFile: () => readJsonConfigFile, readJsonOrUndefined: () => ax, realizeDiagnostics: () => realizeDiagnostics, reduceEachLeadingCommentRange: () => zT, reduceEachTrailingCommentRange: () => WT, reduceLeft: () => Qa, reduceLeftIterator: () => K, reducePathComponents: () => is, refactor: () => ts_refactor_exports, regExpEscape: () => JM, relativeComplement: () => h_, removeAllComments: () => removeAllComments, removeEmitHelper: () => removeEmitHelper, removeExtension: () => Fx, removeFileExtension: () => Ll, removeIgnoredPath: () => removeIgnoredPath, removeMinAndVersionNumbers: () => q1, removeOptionality: () => removeOptionality, removePrefix: () => x5, removeSuffix: () => F1, removeTrailingDirectorySeparator: () => P_, repeatString: () => repeatString, replaceElement: () => ei, resolutionExtensionIsTSOrJson: () => YM, resolveConfigFileProjectName: () => resolveConfigFileProjectName, resolveJSModule: () => resolveJSModule, resolveModuleName: () => resolveModuleName, resolveModuleNameFromCache: () => resolveModuleNameFromCache, resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson, resolvePath: () => oy, resolveProjectReferencePath: () => resolveProjectReferencePath, resolveTripleslashReference: () => resolveTripleslashReference, resolveTypeReferenceDirective: () => resolveTypeReferenceDirective, resolvingEmptyArray: () => t8, restHelper: () => restHelper, returnFalse: () => w_, returnNoopFileWatcher: () => returnNoopFileWatcher, returnTrue: () => vp, returnUndefined: () => C1, returnsPromise: () => returnsPromise, runInitializersHelper: () => runInitializersHelper, sameFlatMap: () => at, sameMap: () => tt, sameMapping: () => sameMapping, scanShebangTrivia: () => yy, scanTokenAtPosition: () => yk, scanner: () => Zo, screenStartingMessageCodes: () => screenStartingMessageCodes, semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations, serializeCompilerOptions: () => serializeCompilerOptions, server: () => ts_server_exports, servicesVersion: () => E7, setCommentRange: () => setCommentRange, setConfigFileInOptions: () => setConfigFileInOptions, setConstantValue: () => setConstantValue, setEachParent: () => Q_, setEmitFlags: () => setEmitFlags, setFunctionNameHelper: () => setFunctionNameHelper, setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned, setIdentifierAutoGenerate: () => setIdentifierAutoGenerate, setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference, setIdentifierTypeArguments: () => setIdentifierTypeArguments, setInternalEmitFlags: () => setInternalEmitFlags, setLocalizedDiagnosticMessages: () => yx, setModuleDefaultHelper: () => setModuleDefaultHelper, setNodeFlags: () => dL, setObjectAllocator: () => gx, setOriginalNode: () => Dn, setParent: () => Sa, setParentRecursive: () => Vx, setPrivateIdentifier: () => setPrivateIdentifier, setResolvedModule: () => gD, setResolvedTypeReferenceDirective: () => yD, setSnippetElement: () => setSnippetElement, setSourceMapRange: () => setSourceMapRange, setStackTraceLimit: () => setStackTraceLimit, setStartsOnNewLine: () => setStartsOnNewLine, setSyntheticLeadingComments: () => setSyntheticLeadingComments, setSyntheticTrailingComments: () => setSyntheticTrailingComments, setSys: () => setSys, setSysLog: () => setSysLog, setTextRange: () => Rt, setTextRangeEnd: () => Wx, setTextRangePos: () => Gf, setTextRangePosEnd: () => Us, setTextRangePosWidth: () => $f, setTokenSourceMapRange: () => setTokenSourceMapRange, setTypeNode: () => setTypeNode, setUILocale: () => xp, setValueDeclaration: () => PI, shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension, shouldPreserveConstEnums: () => EM, shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules, showModuleSpecifier: () => HO, signatureHasLiteralTypes: () => signatureHasLiteralTypes, signatureHasRestParameter: () => signatureHasRestParameter, signatureToDisplayParts: () => signatureToDisplayParts, single: () => Yc, singleElementArray: () => Cp, singleIterator: () => Ka, singleOrMany: () => mo, singleOrUndefined: () => Xa, skipAlias: () => RO, skipAssertions: () => Hj, skipConstraint: () => skipConstraint, skipOuterExpressions: () => $o, skipParentheses: () => Pl, skipPartiallyEmittedExpressions: () => lf, skipTrivia: () => Ar, skipTypeChecking: () => sL, skipTypeParentheses: () => GI, skipWhile: () => N5, sliceAfter: () => rL, some: () => Ke, sort: () => Is, sortAndDeduplicate: () => uo, sortAndDeduplicateDiagnostics: () => yA, sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions, sourceFileMayBeEmitted: () => q0, sourceMapCommentRegExp: () => sourceMapCommentRegExp, sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart, spacePart: () => spacePart, spanMap: () => co, spreadArrayHelper: () => spreadArrayHelper, stableSort: () => Ns, startEndContainsRange: () => startEndContainsRange, startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd, startOnNewLine: () => vd, startTracing: () => startTracing, startsWith: () => Pn, startsWithDirectory: () => rA, startsWithUnderscore: () => startsWithUnderscore, startsWithUseStrict: () => SE, stringContains: () => Fi, stringContainsAt: () => stringContainsAt, stringToToken: () => _l, stripQuotes: () => CN, supportedDeclarationExtensions: () => Rv, supportedJSExtensions: () => Mv, supportedJSExtensionsFlat: () => Lv, supportedLocaleDirectories: () => Hy, supportedTSExtensions: () => Jo, supportedTSExtensionsFlat: () => Ov, supportedTSImplementationExtensions: () => b8, suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia, suppressLeadingTrivia: () => suppressLeadingTrivia, suppressTrailingTrivia: () => suppressTrailingTrivia, symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault, symbolName: () => rf, symbolNameNoDefault: () => symbolNameNoDefault, symbolPart: () => symbolPart, symbolToDisplayParts: () => symbolToDisplayParts, syntaxMayBeASICandidate: () => syntaxMayBeASICandidate, syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI, sys: () => iy, sysLog: () => sysLog, tagNamesAreEquivalent: () => Hi, takeWhile: () => I5, targetOptionDeclaration: () => targetOptionDeclaration, templateObjectHelper: () => templateObjectHelper, testFormatSettings: () => testFormatSettings, textChangeRangeIsUnchanged: () => cS, textChangeRangeNewSpan: () => R_, textChanges: () => ts_textChanges_exports, textOrKeywordPart: () => textOrKeywordPart, textPart: () => textPart, textRangeContainsPositionInclusive: () => bA, textSpanContainsPosition: () => vA, textSpanContainsTextSpan: () => TA, textSpanEnd: () => Ir, textSpanIntersection: () => _S, textSpanIntersectsWith: () => EA, textSpanIntersectsWithPosition: () => wA, textSpanIntersectsWithTextSpan: () => xA, textSpanIsEmpty: () => sS, textSpanOverlap: () => oS, textSpanOverlapsWith: () => SA, textSpansEqual: () => textSpansEqual, textToKeywordObj: () => cl, timestamp: () => ts, toArray: () => en2, toBuilderFileEmit: () => toBuilderFileEmit, toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit, toEditorSettings: () => lu, toFileNameLowerCase: () => Tp, toLowerCase: () => bp, toPath: () => Ui, toProgramEmitPending: () => toProgramEmitPending, tokenIsIdentifierOrKeyword: () => fr, tokenIsIdentifierOrKeywordOrGreaterThan: () => qT, tokenToString: () => Br, trace: () => trace, tracing: () => rs, tracingEnabled: () => tracingEnabled, transform: () => transform, transformClassFields: () => transformClassFields, transformDeclarations: () => transformDeclarations, transformECMAScriptModule: () => transformECMAScriptModule, transformES2015: () => transformES2015, transformES2016: () => transformES2016, transformES2017: () => transformES2017, transformES2018: () => transformES2018, transformES2019: () => transformES2019, transformES2020: () => transformES2020, transformES2021: () => transformES2021, transformES5: () => transformES5, transformESDecorators: () => transformESDecorators, transformESNext: () => transformESNext, transformGenerators: () => transformGenerators, transformJsx: () => transformJsx, transformLegacyDecorators: () => transformLegacyDecorators, transformModule: () => transformModule, transformNodeModule: () => transformNodeModule, transformNodes: () => transformNodes, transformSystemModule: () => transformSystemModule, transformTypeScript: () => transformTypeScript, transpile: () => transpile, transpileModule: () => transpileModule, transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions, trimString: () => Pp, trimStringEnd: () => X1, trimStringStart: () => nl, tryAddToSet: () => ua, tryAndIgnoreErrors: () => tryAndIgnoreErrors, tryCast: () => ln, tryDirectoryExists: () => tryDirectoryExists, tryExtractTSExtension: () => uO, tryFileExists: () => tryFileExists, tryGetClassExtendingExpressionWithTypeArguments: () => ex, tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => tx, tryGetDirectories: () => tryGetDirectories, tryGetExtensionFromPath: () => hv, tryGetImportFromModuleSpecifier: () => Y3, tryGetJSDocSatisfiesTypeNode: () => e8, tryGetModuleNameFromFile: () => CE, tryGetModuleSpecifierFromDeclaration: () => kI, tryGetNativePerformanceHooks: () => J5, tryGetPropertyAccessOrIdentifierToString: () => tv, tryGetPropertyNameOfBindingOrAssignmentElement: () => PE, tryGetSourceMappingURL: () => tryGetSourceMappingURL, tryGetTextOfPropertyName: () => e0, tryIOAndConsumeErrors: () => tryIOAndConsumeErrors, tryParsePattern: () => Bx, tryParsePatterns: () => XM, tryParseRawSourceMap: () => tryParseRawSourceMap, tryReadDirectory: () => tryReadDirectory, tryReadFile: () => tryReadFile, tryRemoveDirectoryPrefix: () => jM, tryRemoveExtension: () => Jx, tryRemovePrefix: () => ST, tryRemoveSuffix: () => B1, typeAcquisitionDeclarations: () => typeAcquisitionDeclarations, typeAliasNamePart: () => typeAliasNamePart, typeDirectiveIsEqualTo: () => ED, typeKeywords: () => typeKeywords, typeParameterNamePart: () => typeParameterNamePart, typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter, typeToDisplayParts: () => typeToDisplayParts, unchangedPollThresholds: () => unchangedPollThresholds, unchangedTextChangeRange: () => Vy, unescapeLeadingUnderscores: () => dl, unmangleScopedPackageName: () => unmangleScopedPackageName, unorderedRemoveItem: () => bT, unorderedRemoveItemAt: () => U1, unreachableCodeIsError: () => yM, unusedLabelIsError: () => vM, unwrapInnermostStatementOfLabel: () => Rk, updateErrorForNoInputFiles: () => updateErrorForNoInputFiles, updateLanguageServiceSourceFile: () => T7, updateMissingFilePathsWatch: () => updateMissingFilePathsWatch, updatePackageJsonWatch: () => updatePackageJsonWatch, updateResolutionField: () => updateResolutionField, updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher, updateSourceFile: () => k2, updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories, usesExtensionsOnImports: () => Rx, usingSingleLineStringWriter: () => mD, utf16EncodeAsString: () => by, validateLocaleAndSetLanguage: () => DA, valuesHelper: () => valuesHelper, version: () => C, versionMajorMinor: () => m, visitArray: () => visitArray, visitCommaListElements: () => visitCommaListElements, visitEachChild: () => visitEachChild, visitFunctionBody: () => visitFunctionBody, visitIterationBody: () => visitIterationBody, visitLexicalEnvironment: () => visitLexicalEnvironment, visitNode: () => visitNode, visitNodes: () => visitNodes2, visitParameterList: () => visitParameterList, walkUpBindingElementsAndPatterns: () => fS, walkUpLexicalEnvironments: () => walkUpLexicalEnvironments, walkUpOuterExpressions: () => Vj, walkUpParenthesizedExpressions: () => D0, walkUpParenthesizedTypes: () => VI, walkUpParenthesizedTypesAndGetParentAndChild: () => HI, whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp, writeCommentRange: () => $N, writeFile: () => jN, writeFileEnsuringDirectories: () => JN, zipToModeAwareCache: () => zipToModeAwareCache, zipWith: () => ce });
|
|
239988
|
+
y(L7, { ANONYMOUS: () => ANONYMOUS, AccessFlags: () => Cg, AssertionLevel: () => $1, AssignmentDeclarationKind: () => Mg, AssignmentKind: () => Sv, Associativity: () => Ev, BreakpointResolver: () => ts_BreakpointResolver_exports, BuilderFileEmit: () => BuilderFileEmit, BuilderProgramKind: () => BuilderProgramKind, BuilderState: () => BuilderState, BundleFileSectionKind: () => ty, CallHierarchy: () => ts_CallHierarchy_exports, CharacterCodes: () => $g, CheckFlags: () => Tg, CheckMode: () => CheckMode, ClassificationType: () => ClassificationType, ClassificationTypeNames: () => ClassificationTypeNames, CommentDirectiveType: () => ig, Comparison: () => d, CompletionInfoFlags: () => CompletionInfoFlags, CompletionTriggerKind: () => CompletionTriggerKind, Completions: () => ts_Completions_exports, ConfigFileProgramReloadLevel: () => ConfigFileProgramReloadLevel, ContextFlags: () => pg, CoreServicesShimHostAdapter: () => CoreServicesShimHostAdapter, Debug: () => Y, DiagnosticCategory: () => qp, Diagnostics: () => ve, DocumentHighlights: () => DocumentHighlights, ElementFlags: () => wg, EmitFlags: () => Wp, EmitHint: () => Qg, EmitOnly: () => og, EndOfLineState: () => EndOfLineState, EnumKind: () => bg, ExitStatus: () => cg, ExportKind: () => ExportKind, Extension: () => Kg, ExternalEmitHelpers: () => Yg, FileIncludeKind: () => ag, FilePreprocessingDiagnosticsKind: () => sg, FileSystemEntryKind: () => FileSystemEntryKind, FileWatcherEventKind: () => FileWatcherEventKind, FindAllReferences: () => ts_FindAllReferences_exports, FlattenLevel: () => FlattenLevel, FlowFlags: () => il, ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences, FunctionFlags: () => xv, GeneratedIdentifierFlags: () => rg, GetLiteralTextFlags: () => vv, GoToDefinition: () => ts_GoToDefinition_exports, HighlightSpanKind: () => HighlightSpanKind, ImportKind: () => ImportKind, ImportsNotUsedAsValues: () => Ug, IndentStyle: () => IndentStyle, IndexKind: () => Dg, InferenceFlags: () => Ng, InferencePriority: () => Ig, InlayHintKind: () => InlayHintKind, InlayHints: () => ts_InlayHints_exports, InternalEmitFlags: () => Xg, InternalSymbolName: () => Sg, InvalidatedProjectKind: () => InvalidatedProjectKind, JsDoc: () => ts_JsDoc_exports, JsTyping: () => ts_JsTyping_exports, JsxEmit: () => qg, JsxFlags: () => tg, JsxReferenceKind: () => Ag, LanguageServiceMode: () => LanguageServiceMode, LanguageServiceShimHostAdapter: () => LanguageServiceShimHostAdapter, LanguageVariant: () => Hg, LexicalEnvironmentFlags: () => ey, ListFormat: () => ry, LogLevel: () => Y1, MemberOverrideStatus: () => lg, ModifierFlags: () => Mp, ModuleDetectionKind: () => Rg, ModuleInstanceState: () => ModuleInstanceState, ModuleKind: () => Bg, ModuleResolutionKind: () => Lg, ModuleSpecifierEnding: () => jv, NavigateTo: () => ts_NavigateTo_exports, NavigationBar: () => ts_NavigationBar_exports, NewLineKind: () => zg, NodeBuilderFlags: () => fg, NodeCheckFlags: () => xg, NodeFactoryFlags: () => Fv, NodeFlags: () => Op, NodeResolutionFeatures: () => NodeResolutionFeatures, ObjectFlags: () => Fp, OperationCanceledException: () => Rp, OperatorPrecedence: () => wv, OrganizeImports: () => ts_OrganizeImports_exports, OrganizeImportsMode: () => OrganizeImportsMode, OuterExpressionKinds: () => Zg, OutliningElementsCollector: () => ts_OutliningElementsCollector_exports, OutliningSpanKind: () => OutliningSpanKind, OutputFileType: () => OutputFileType, PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference, PackageJsonDependencyGroup: () => PackageJsonDependencyGroup, PatternMatchKind: () => PatternMatchKind, PollingInterval: () => PollingInterval, PollingWatchKind: () => Fg, PragmaKindFlags: () => ny, PrivateIdentifierKind: () => PrivateIdentifierKind, ProcessLevel: () => ProcessLevel, QuotePreference: () => QuotePreference, RelationComparisonResult: () => Lp, Rename: () => ts_Rename_exports, ScriptElementKind: () => ScriptElementKind, ScriptElementKindModifier: () => ScriptElementKindModifier, ScriptKind: () => Wg, ScriptSnapshot: () => ScriptSnapshot, ScriptTarget: () => Vg, SemanticClassificationFormat: () => SemanticClassificationFormat, SemanticMeaning: () => SemanticMeaning, SemicolonPreference: () => SemicolonPreference, SignatureCheckMode: () => SignatureCheckMode, SignatureFlags: () => Bp, SignatureHelp: () => ts_SignatureHelp_exports, SignatureKind: () => Pg, SmartSelectionRange: () => ts_SmartSelectionRange_exports, SnippetKind: () => zp, SortKind: () => H1, StructureIsReused: () => _g, SymbolAccessibility: () => hg, SymbolDisplay: () => ts_SymbolDisplay_exports, SymbolDisplayPartKind: () => SymbolDisplayPartKind, SymbolFlags: () => jp, SymbolFormatFlags: () => mg, SyntaxKind: () => Np, SyntheticSymbolKind: () => gg, Ternary: () => Og, ThrottledCancellationToken: () => O7, TokenClass: () => TokenClass, TokenFlags: () => ng, TransformFlags: () => Up, TypeFacts: () => TypeFacts, TypeFlags: () => Jp, TypeFormatFlags: () => dg, TypeMapKind: () => kg, TypePredicateKind: () => yg, TypeReferenceSerializationKind: () => vg, TypeScriptServicesFactory: () => TypeScriptServicesFactory, UnionReduction: () => ug, UpToDateStatusType: () => UpToDateStatusType, VarianceFlags: () => Eg, Version: () => Version, VersionRange: () => VersionRange, WatchDirectoryFlags: () => Gg, WatchDirectoryKind: () => Jg, WatchFileKind: () => jg, WatchLogLevel: () => WatchLogLevel, WatchType: () => WatchType, accessPrivateIdentifier: () => accessPrivateIdentifier, addEmitFlags: () => addEmitFlags, addEmitHelper: () => addEmitHelper, addEmitHelpers: () => addEmitHelpers, addInternalEmitFlags: () => addInternalEmitFlags, addNodeFactoryPatcher: () => jL, addObjectAllocatorPatcher: () => sM, addRange: () => jr, addRelatedInfo: () => Rl, addSyntheticLeadingComment: () => addSyntheticLeadingComment, addSyntheticTrailingComment: () => addSyntheticTrailingComment, addToSeen: () => GO, advancedAsyncSuperHelper: () => advancedAsyncSuperHelper, affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations, affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations, allKeysStartWithDot: () => allKeysStartWithDot, altDirectorySeparator: () => py, and: () => E5, append: () => tr, appendIfUnique: () => g_, arrayFrom: () => Za, arrayIsEqualTo: () => Hc, arrayIsHomogeneous: () => fL, arrayIsSorted: () => Wc, arrayOf: () => yo, arrayReverseIterator: () => y_, arrayToMap: () => Zc, arrayToMultiMap: () => bo, arrayToNumericMap: () => Os, arraysEqual: () => ke, assertType: () => C5, assign: () => vo, assignHelper: () => assignHelper, asyncDelegator: () => asyncDelegator, asyncGeneratorHelper: () => asyncGeneratorHelper, asyncSuperHelper: () => asyncSuperHelper, asyncValues: () => asyncValues, attachFileToDiagnostics: () => qs, awaitHelper: () => awaitHelper, awaiterHelper: () => awaiterHelper, base64decode: () => mO, base64encode: () => dO, binarySearch: () => Ya, binarySearchKey: () => b_, bindSourceFile: () => bindSourceFile, breakIntoCharacterSpans: () => breakIntoCharacterSpans, breakIntoWordSpans: () => breakIntoWordSpans, buildLinkParts: () => buildLinkParts, buildOpts: () => buildOpts, buildOverload: () => buildOverload, bundlerModuleNameResolver: () => bundlerModuleNameResolver, canBeConvertedToAsync: () => canBeConvertedToAsync, canHaveDecorators: () => ME, canHaveExportModifier: () => AL, canHaveFlowNode: () => jI, canHaveIllegalDecorators: () => rJ, canHaveIllegalModifiers: () => nJ, canHaveIllegalType: () => tJ, canHaveIllegalTypeParameters: () => IE, canHaveJSDoc: () => Af, canHaveLocals: () => zP, canHaveModifiers: () => fc, canHaveSymbol: () => UP, canJsonReportNoInputFiles: () => canJsonReportNoInputFiles, canProduceDiagnostics: () => canProduceDiagnostics, canUsePropertyAccess: () => PL, canWatchDirectoryOrFile: () => canWatchDirectoryOrFile, cartesianProduct: () => P5, cast: () => ti, chainBundle: () => chainBundle, chainDiagnosticMessages: () => lM, changeAnyExtension: () => RT, changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache, changeExtension: () => KM, changesAffectModuleResolution: () => cD, changesAffectingProgramStructure: () => lD, childIsDecorated: () => h0, classElementOrClassElementParameterIsDecorated: () => sI, classOrConstructorParameterIsDecorated: () => aI, classPrivateFieldGetHelper: () => classPrivateFieldGetHelper, classPrivateFieldInHelper: () => classPrivateFieldInHelper, classPrivateFieldSetHelper: () => classPrivateFieldSetHelper, classicNameResolver: () => classicNameResolver, classifier: () => ts_classifier_exports, cleanExtendedConfigCache: () => cleanExtendedConfigCache, clear: () => nt, clearMap: () => qO, clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher, climbPastPropertyAccess: () => climbPastPropertyAccess, climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess, clone: () => E_, cloneCompilerOptions: () => cloneCompilerOptions, closeFileWatcher: () => MO, closeFileWatcherOf: () => closeFileWatcherOf, codefix: () => ts_codefix_exports, collapseTextChangeRangesAcrossMultipleVersions: () => CA, collectExternalModuleInfo: () => collectExternalModuleInfo, combine: () => $c, combinePaths: () => tn, commentPragmas: () => Vp, commonOptionsWithBuild: () => commonOptionsWithBuild, commonPackageFolders: () => Pv, compact: () => Gc, compareBooleans: () => j1, compareDataObjects: () => px, compareDiagnostics: () => av, compareDiagnosticsSkipRelatedInformation: () => qf, compareEmitHelpers: () => compareEmitHelpers, compareNumberOfDirectorySeparators: () => $M, comparePaths: () => tA, comparePathsCaseInsensitive: () => eA, comparePathsCaseSensitive: () => Z5, comparePatternKeys: () => comparePatternKeys, compareProperties: () => R1, compareStringsCaseInsensitive: () => C_, compareStringsCaseInsensitiveEslintCompatible: () => O1, compareStringsCaseSensitive: () => ri, compareStringsCaseSensitiveUI: () => L1, compareTextSpans: () => I1, compareValues: () => Vr, compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption, compilerOptionsAffectDeclarationPath: () => DM, compilerOptionsAffectEmit: () => PM, compilerOptionsAffectSemanticDiagnostics: () => AM, compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics, compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules, compose: () => k1, computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames, computeLineAndCharacterOfPosition: () => my, computeLineOfPosition: () => k_, computeLineStarts: () => Kp, computePositionOfLineAndCharacter: () => dy, computeSignature: () => computeSignature, computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics, computeSuggestionDiagnostics: () => computeSuggestionDiagnostics, concatenate: () => Ft, concatenateDiagnosticMessageChains: () => uM, consumesNodeCoreModules: () => consumesNodeCoreModules, contains: () => pe, containsIgnoredPath: () => Hx, containsObjectRestOrSpread: () => A2, containsParseError: () => Ky, containsPath: () => jT, convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry, convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson, convertJsonOption: () => convertJsonOption, convertToBase64: () => ix, convertToObject: () => convertToObject, convertToObjectWorker: () => convertToObjectWorker, convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths, convertToRelativePath: () => nA, convertToTSConfig: () => convertToTSConfig, convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson, copyComments: () => copyComments, copyEntries: () => dD, copyLeadingComments: () => copyLeadingComments, copyProperties: () => H, copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments, copyTrailingComments: () => copyTrailingComments, couldStartTrivia: () => pA, countWhere: () => Xe, createAbstractBuilder: () => createAbstractBuilder, createAccessorPropertyBackingField: () => LJ, createAccessorPropertyGetRedirector: () => RJ, createAccessorPropertySetRedirector: () => jJ, createBaseNodeFactory: () => S8, createBinaryExpressionTrampoline: () => PJ, createBindingHelper: () => createBindingHelper, createBuildInfo: () => createBuildInfo, createBuilderProgram: () => createBuilderProgram, createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo, createBuilderStatusReporter: () => createBuilderStatusReporter, createCacheWithRedirects: () => createCacheWithRedirects, createCacheableExportInfoMap: () => createCacheableExportInfoMap, createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost, createClassifier: () => createClassifier, createCommentDirectivesMap: () => JD, createCompilerDiagnostic: () => Ol, createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType, createCompilerDiagnosticFromMessageChain: () => cM, createCompilerHost: () => createCompilerHost, createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost, createCompilerHostWorker: () => createCompilerHostWorker, createDetachedDiagnostic: () => Ro, createDiagnosticCollection: () => TN, createDiagnosticForFileFromMessageChain: () => mk, createDiagnosticForNode: () => uk, createDiagnosticForNodeArray: () => pk, createDiagnosticForNodeArrayFromMessageChain: () => dk, createDiagnosticForNodeFromMessageChain: () => fk, createDiagnosticForNodeInSourceFile: () => P3, createDiagnosticForRange: () => gk, createDiagnosticMessageChainFromDiagnostic: () => hk, createDiagnosticReporter: () => createDiagnosticReporter, createDocumentPositionMapper: () => createDocumentPositionMapper, createDocumentRegistry: () => createDocumentRegistry, createDocumentRegistryInternal: () => createDocumentRegistryInternal, createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram, createEmitHelperFactory: () => createEmitHelperFactory, createEmptyExports: () => Dj, createExpressionForJsxElement: () => Ij, createExpressionForJsxFragment: () => Nj, createExpressionForObjectLiteralElementLike: () => Fj, createExpressionForPropertyName: () => vE, createExpressionFromEntityName: () => yE, createExternalHelpersImportDeclarationIfNeeded: () => $j, createFileDiagnostic: () => iv, createFileDiagnosticFromMessageChain: () => r0, createForOfBindingStatement: () => Oj, createGetCanonicalFileName: () => wp, createGetSourceFile: () => createGetSourceFile, createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode, createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName, createGetSymbolWalker: () => createGetSymbolWalker, createIncrementalCompilerHost: () => createIncrementalCompilerHost, createIncrementalProgram: () => createIncrementalProgram, createInputFiles: () => VL, createInputFilesWithFilePaths: () => C8, createInputFilesWithFileTexts: () => A8, createJsxFactoryExpression: () => gE, createLanguageService: () => lB, createLanguageServiceSourceFile: () => N2, createMemberAccessForPropertyName: () => hd, createModeAwareCache: () => createModeAwareCache, createModeAwareCacheKey: () => createModeAwareCacheKey, createModuleResolutionCache: () => createModuleResolutionCache, createModuleResolutionLoader: () => createModuleResolutionLoader, createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost, createMultiMap: () => Be, createNodeConverters: () => x8, createNodeFactory: () => Zf, createOptionNameMap: () => createOptionNameMap, createOverload: () => createOverload, createPackageJsonImportFilter: () => createPackageJsonImportFilter, createPackageJsonInfo: () => createPackageJsonInfo, createParenthesizerRules: () => createParenthesizerRules, createPatternMatcher: () => createPatternMatcher, createPrependNodes: () => createPrependNodes, createPrinter: () => createPrinter, createPrinterWithDefaults: () => createPrinterWithDefaults, createPrinterWithRemoveComments: () => createPrinterWithRemoveComments, createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape, createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon, createProgram: () => createProgram, createProgramHost: () => createProgramHost, createPropertyNameNodeForIdentifierOrLiteral: () => EL, createQueue: () => Fr, createRange: () => Jf, createRedirectedBuilderProgram: () => createRedirectedBuilderProgram, createResolutionCache: () => createResolutionCache, createRuntimeTypeSerializer: () => createRuntimeTypeSerializer, createScanner: () => Po, createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram, createSet: () => Cr, createSolutionBuilder: () => createSolutionBuilder, createSolutionBuilderHost: () => createSolutionBuilderHost, createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch, createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost, createSortedArray: () => zc, createSourceFile: () => YE, createSourceMapGenerator: () => createSourceMapGenerator, createSourceMapSource: () => HL, createSuperAccessVariableStatement: () => createSuperAccessVariableStatement, createSymbolTable: () => oD, createSymlinkCache: () => MM, createSystemWatchFunctions: () => createSystemWatchFunctions, createTextChange: () => createTextChange, createTextChangeFromStartLength: () => createTextChangeFromStartLength, createTextChangeRange: () => Zp, createTextRangeFromNode: () => createTextRangeFromNode, createTextRangeFromSpan: () => createTextRangeFromSpan, createTextSpan: () => L_, createTextSpanFromBounds: () => ha, createTextSpanFromNode: () => createTextSpanFromNode, createTextSpanFromRange: () => createTextSpanFromRange, createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent, createTextWriter: () => DN, createTokenRange: () => bO, createTypeChecker: () => createTypeChecker, createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader, createUnderscoreEscapedMultiMap: () => Ht, createUnparsedSourceFile: () => UL, createWatchCompilerHost: () => createWatchCompilerHost2, createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile, createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions, createWatchFactory: () => createWatchFactory, createWatchHost: () => createWatchHost, createWatchProgram: () => createWatchProgram, createWatchStatusReporter: () => createWatchStatusReporter, createWriteFileMeasuringIO: () => createWriteFileMeasuringIO, declarationNameToString: () => A3, decodeMappings: () => decodeMappings, decodedTextSpanIntersectsWith: () => Sy, decorateHelper: () => decorateHelper, deduplicate: () => ji, defaultIncludeSpec: () => defaultIncludeSpec, defaultInitCompilerOptions: () => defaultInitCompilerOptions, defaultMaximumTruncationLength: () => r8, detectSortCaseSensitivity: () => Vc, diagnosticCategoryName: () => z5, diagnosticToString: () => diagnosticToString, directoryProbablyExists: () => sx, directorySeparator: () => zn, displayPart: () => displayPart, displayPartsToString: () => cB, disposeEmitNodes: () => disposeEmitNodes, documentSpansEqual: () => documentSpansEqual, dumpTracingLegend: () => dumpTracingLegend, elementAt: () => wT, elideNodes: () => IJ, emitComments: () => U4, emitDetachedComments: () => GN, emitFiles: () => emitFiles, emitFilesAndReportErrors: () => emitFilesAndReportErrors, emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus, emitModuleKindIsNonNodeESM: () => mM, emitNewLineBeforeLeadingCommentOfPosition: () => HN, emitNewLineBeforeLeadingComments: () => B4, emitNewLineBeforeLeadingCommentsOfPosition: () => q4, emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics, emitUsingBuildInfo: () => emitUsingBuildInfo, emptyArray: () => Bt, emptyFileSystemEntries: () => T8, emptyMap: () => V1, emptyOptions: () => emptyOptions, emptySet: () => ET, endsWith: () => es, ensurePathIsNonModuleName: () => _y, ensureScriptKind: () => Nx, ensureTrailingDirectorySeparator: () => wo, entityNameToString: () => ls, enumerateInsertsAndDeletes: () => A5, equalOwnProperties: () => S_, equateStringsCaseInsensitive: () => Ms, equateStringsCaseSensitive: () => To, equateValues: () => fa, esDecorateHelper: () => esDecorateHelper, escapeJsxAttributeString: () => A4, escapeLeadingUnderscores: () => vi, escapeNonAsciiString: () => Of, escapeSnippetText: () => xL, escapeString: () => Nf, every: () => me, expandPreOrPostfixIncrementOrDecrementExpression: () => Bj, explainFiles: () => explainFiles, explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat, exportAssignmentIsAlias: () => I0, exportStarHelper: () => exportStarHelper, expressionResultIsUnused: () => gL, extend: () => S2, extendsHelper: () => extendsHelper, extensionFromPath: () => QM, extensionIsTS: () => qx, externalHelpersModuleNameText: () => Kf, factory: () => si, fileExtensionIs: () => ns, fileExtensionIsOneOf: () => da, fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics, filter: () => ee, filterMutate: () => je, filterSemanticDiagnostics: () => filterSemanticDiagnostics, find: () => Ae, findAncestor: () => zi, findBestPatternMatch: () => TT, findChildOfKind: () => findChildOfKind, findComputedPropertyNameCacheAssignment: () => JJ, findConfigFile: () => findConfigFile, findContainingList: () => findContainingList, findDiagnosticForNode: () => findDiagnosticForNode, findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken, findIndex: () => he, findLast: () => te, findLastIndex: () => Pe, findListItemInfo: () => findListItemInfo, findMap: () => R, findModifier: () => findModifier, findNextToken: () => findNextToken, findPackageJson: () => findPackageJson, findPackageJsons: () => findPackageJsons, findPrecedingMatchingToken: () => findPrecedingMatchingToken, findPrecedingToken: () => findPrecedingToken, findSuperStatementIndex: () => findSuperStatementIndex, findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition, findUseStrictPrologue: () => TE, first: () => fo, firstDefined: () => q, firstDefinedIterator: () => W, firstIterator: () => v_, firstOrOnly: () => firstOrOnly, firstOrUndefined: () => pa, firstOrUndefinedIterator: () => Xc, fixupCompilerOptions: () => fixupCompilerOptions, flatMap: () => ne, flatMapIterator: () => Fe, flatMapToMutable: () => ge, flatten: () => ct, flattenCommaList: () => BJ, flattenDestructuringAssignment: () => flattenDestructuringAssignment, flattenDestructuringBinding: () => flattenDestructuringBinding, flattenDiagnosticMessageText: () => flattenDiagnosticMessageText, forEach: () => c, forEachAncestor: () => uD, forEachAncestorDirectory: () => FT, forEachChild: () => xr, forEachChildRecursively: () => D22, forEachEmittedFile: () => forEachEmittedFile, forEachEnclosingBlockScopeContainer: () => ok, forEachEntry: () => pD, forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom, forEachImportClauseDeclaration: () => NI, forEachKey: () => fD, forEachLeadingCommentRange: () => fA, forEachNameInAccessChainWalkingLeft: () => QO, forEachResolvedProjectReference: () => forEachResolvedProjectReference, forEachReturnStatement: () => Pk, forEachRight: () => M, forEachTrailingCommentRange: () => dA, forEachUnique: () => forEachUnique, forEachYieldExpression: () => Dk, forSomeAncestorDirectory: () => WO, formatColorAndReset: () => formatColorAndReset, formatDiagnostic: () => formatDiagnostic, formatDiagnostics: () => formatDiagnostics, formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext, formatGeneratedName: () => bd, formatGeneratedNamePart: () => C2, formatLocation: () => formatLocation, formatMessage: () => _M, formatStringFromArgs: () => X_, formatting: () => ts_formatting_exports, fullTripleSlashAMDReferencePathRegEx: () => Tv, fullTripleSlashReferencePathRegEx: () => bv, generateDjb2Hash: () => generateDjb2Hash, generateTSConfig: () => generateTSConfig, generatorHelper: () => generatorHelper, getAdjustedReferenceLocation: () => getAdjustedReferenceLocation, getAdjustedRenameLocation: () => getAdjustedRenameLocation, getAliasDeclarationFromName: () => u4, getAllAccessorDeclarations: () => W0, getAllDecoratorsOfClass: () => getAllDecoratorsOfClass, getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement, getAllJSDocTags: () => MS, getAllJSDocTagsOfKind: () => UA, getAllKeys: () => T_, getAllProjectOutputs: () => getAllProjectOutputs, getAllSuperTypeNodes: () => h4, getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers, getAllowJSCompilerOption: () => Ax, getAllowSyntheticDefaultImports: () => TM, getAncestor: () => eN, getAnyExtensionFromPath: () => Gp, getAreDeclarationMapsEnabled: () => bM, getAssignedExpandoInitializer: () => bI, getAssignedName: () => yS, getAssignmentDeclarationKind: () => ps, getAssignmentDeclarationPropertyAccessKind: () => K3, getAssignmentTargetKind: () => o4, getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames, getBaseFileName: () => sl, getBinaryOperatorPrecedence: () => Dl, getBuildInfo: () => getBuildInfo, getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap, getBuildInfoText: () => getBuildInfoText, getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder, getBuilderCreationParameters: () => getBuilderCreationParameters, getBuilderFileEmit: () => getBuilderFileEmit, getCheckFlags: () => ux, getClassExtendsHeritageElement: () => d4, getClassLikeDeclarationOfSymbol: () => dx, getCombinedLocalAndExportSymbolFlags: () => jO, getCombinedModifierFlags: () => ef, getCombinedNodeFlags: () => tf, getCombinedNodeFlagsAlwaysIncludeJSDoc: () => PA, getCommentRange: () => getCommentRange, getCommonSourceDirectory: () => getCommonSourceDirectory, getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig, getCompilerOptionValue: () => uv, getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue, getConditions: () => getConditions, getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics, getConstantValue: () => getConstantValue, getContainerNode: () => getContainerNode, getContainingClass: () => Vk, getContainingClassStaticBlock: () => Hk, getContainingFunction: () => zk, getContainingFunctionDeclaration: () => Wk, getContainingFunctionOrClassStaticBlock: () => Gk, getContainingNodeArray: () => yL, getContainingObjectLiteralElement: () => S7, getContextualTypeFromParent: () => getContextualTypeFromParent, getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode, getCurrentTime: () => getCurrentTime, getDeclarationDiagnostics: () => getDeclarationDiagnostics, getDeclarationEmitExtensionForPath: () => O4, getDeclarationEmitOutputFilePath: () => ON, getDeclarationEmitOutputFilePathWorker: () => N4, getDeclarationFromName: () => XI, getDeclarationModifierFlagsFromSymbol: () => LO, getDeclarationOfKind: () => aD, getDeclarationsOfKind: () => sD, getDeclaredExpandoInitializer: () => yI, getDecorators: () => kA, getDefaultCompilerOptions: () => y7, getDefaultExportInfoWorker: () => getDefaultExportInfoWorker, getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings, getDefaultLibFileName: () => aS, getDefaultLibFilePath: () => gB, getDefaultLikeExportInfo: () => getDefaultLikeExportInfo, getDiagnosticText: () => getDiagnosticText, getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan, getDirectoryPath: () => ma, getDocumentPositionMapper: () => getDocumentPositionMapper, getESModuleInterop: () => ov, getEditsForFileRename: () => getEditsForFileRename, getEffectiveBaseTypeNode: () => f4, getEffectiveConstraintOfTypeParameter: () => HA, getEffectiveContainerForJSDocTemplateTag: () => FI, getEffectiveImplementsTypeNodes: () => m4, getEffectiveInitializer: () => V3, getEffectiveJSDocHost: () => A0, getEffectiveModifierFlags: () => Rf, getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => K4, getEffectiveModifierFlagsNoCache: () => Y4, getEffectiveReturnTypeNode: () => zN, getEffectiveSetAccessorTypeAnnotationNode: () => VN, getEffectiveTypeAnnotationNode: () => V0, getEffectiveTypeParameterDeclarations: () => VA, getEffectiveTypeRoots: () => getEffectiveTypeRoots, getElementOrPropertyAccessArgumentExpressionOrName: () => Cf, getElementOrPropertyAccessName: () => Fs, getElementsOfBindingOrAssignmentPattern: () => kE, getEmitDeclarations: () => cv, getEmitFlags: () => xi, getEmitHelpers: () => getEmitHelpers, getEmitModuleDetectionKind: () => wx, getEmitModuleKind: () => Ei, getEmitModuleResolutionKind: () => Ml, getEmitScriptTarget: () => Uf, getEnclosingBlockScopeContainer: () => Zy, getEncodedSemanticClassifications: () => getEncodedSemanticClassifications, getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications, getEndLinePosition: () => d3, getEntityNameFromTypeNode: () => nI, getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo, getErrorCountForSummary: () => getErrorCountForSummary, getErrorSpanForNode: () => i0, getErrorSummaryText: () => getErrorSummaryText, getEscapedTextOfIdentifierOrLiteral: () => b4, getExpandoInitializer: () => U_, getExportAssignmentExpression: () => p4, getExportInfoMap: () => getExportInfoMap, getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper, getExpressionAssociativity: () => yN, getExpressionPrecedence: () => vN, getExternalHelpersModuleName: () => EE, getExternalModuleImportEqualsDeclarationExpression: () => _I, getExternalModuleName: () => E0, getExternalModuleNameFromDeclaration: () => IN, getExternalModuleNameFromPath: () => F0, getExternalModuleNameLiteral: () => Xj, getExternalModuleRequireArgument: () => cI, getFallbackOptions: () => getFallbackOptions, getFileEmitOutput: () => getFileEmitOutput, getFileMatcherPatterns: () => Ix, getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs, getFileWatcherEventKind: () => getFileWatcherEventKind, getFilesInErrorForSummary: () => getFilesInErrorForSummary, getFirstConstructorWithBody: () => R4, getFirstIdentifier: () => iO, getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition, getFirstProjectOutput: () => getFirstProjectOutput, getFixableErrorSpanExpression: () => getFixableErrorSpanExpression, getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting, getFullWidth: () => hf, getFunctionFlags: () => sN, getHeritageClause: () => Pf, getHostSignatureFromJSDoc: () => C0, getIdentifierAutoGenerate: () => getIdentifierAutoGenerate, getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference, getIdentifierTypeArguments: () => getIdentifierTypeArguments, getImmediatelyInvokedFunctionExpression: () => Qk, getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile, getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker, getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper, getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper, getIndentSize: () => Oo, getIndentString: () => j0, getInitializedVariables: () => NO, getInitializerOfBinaryExpression: () => X3, getInitializerOfBindingOrAssignmentElement: () => AE, getInterfaceBaseTypeNodes: () => g4, getInternalEmitFlags: () => zD, getInvokedExpression: () => iI, getIsolatedModules: () => zf, getJSDocAugmentsTag: () => ES, getJSDocClassTag: () => NA, getJSDocCommentRanges: () => I3, getJSDocCommentsAndTags: () => r4, getJSDocDeprecatedTag: () => jA, getJSDocDeprecatedTagNoCache: () => IS, getJSDocEnumTag: () => JA, getJSDocHost: () => s4, getJSDocImplementsTags: () => wS, getJSDocOverrideTagNoCache: () => kS, getJSDocParameterTags: () => of2, getJSDocParameterTagsNoCache: () => bS, getJSDocPrivateTag: () => MA, getJSDocPrivateTagNoCache: () => AS, getJSDocProtectedTag: () => LA, getJSDocProtectedTagNoCache: () => PS, getJSDocPublicTag: () => OA, getJSDocPublicTagNoCache: () => CS, getJSDocReadonlyTag: () => RA, getJSDocReadonlyTagNoCache: () => DS, getJSDocReturnTag: () => NS, getJSDocReturnType: () => OS, getJSDocRoot: () => P0, getJSDocSatisfiesExpressionType: () => NL, getJSDocSatisfiesTag: () => wy, getJSDocTags: () => hl, getJSDocTagsNoCache: () => qA, getJSDocTemplateTag: () => BA, getJSDocThisTag: () => FA, getJSDocType: () => cf, getJSDocTypeAliasName: () => w2, getJSDocTypeAssertionType: () => Wj, getJSDocTypeParameterDeclarations: () => F4, getJSDocTypeParameterTags: () => SS2, getJSDocTypeParameterTagsNoCache: () => xS, getJSDocTypeTag: () => _f, getJSXImplicitImportBase: () => IM, getJSXRuntimeImport: () => NM, getJSXTransformEnabled: () => kM, getKeyForCompilerOptions: () => getKeyForCompilerOptions, getLanguageVariant: () => sv, getLastChild: () => mx, getLeadingCommentRanges: () => Ao, getLeadingCommentRangesOfNode: () => Ck, getLeftmostAccessExpression: () => rv, getLeftmostExpression: () => ZO, getLineAndCharacterOfPosition: () => Ls, getLineInfo: () => getLineInfo, getLineOfLocalPosition: () => FN, getLineOfLocalPositionFromLineMap: () => ds, getLineStartPositionForPosition: () => getLineStartPositionForPosition, getLineStarts: () => ss, getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => DO, getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => PO, getLinesBetweenPositions: () => I_, getLinesBetweenRangeEndAndRangeStart: () => wO, getLinesBetweenRangeEndPositions: () => CO, getLiteralText: () => WD, getLocalNameForExternalImport: () => Kj, getLocalSymbolForExportDefault: () => cO, getLocaleSpecificMessage: () => Y_, getLocaleTimeString: () => getLocaleTimeString, getMappedContextSpan: () => getMappedContextSpan, getMappedDocumentSpan: () => getMappedDocumentSpan, getMappedLocation: () => getMappedLocation, getMatchedFileSpec: () => getMatchedFileSpec, getMatchedIncludeSpec: () => getMatchedIncludeSpec, getMeaningFromDeclaration: () => getMeaningFromDeclaration, getMeaningFromLocation: () => getMeaningFromLocation, getMembersOfDeclaration: () => Ik, getModeForFileReference: () => getModeForFileReference, getModeForResolutionAtIndex: () => getModeForResolutionAtIndex, getModeForUsageLocation: () => getModeForUsageLocation, getModifiedTime: () => getModifiedTime, getModifiers: () => sf, getModuleInstanceState: () => getModuleInstanceState, getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt, getModuleSpecifierEndingPreference: () => VM, getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost, getNameForExportedSymbol: () => getNameForExportedSymbol, getNameFromIndexInfo: () => _k, getNameFromPropertyName: () => getNameFromPropertyName, getNameOfAccessExpression: () => KO, getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue, getNameOfDeclaration: () => ml, getNameOfExpando: () => xI, getNameOfJSDocTypedef: () => gS, getNameOrArgument: () => $3, getNameTable: () => uB, getNamesForExportedSymbol: () => getNamesForExportedSymbol, getNamespaceDeclarationNode: () => Q3, getNewLineCharacter: () => ox, getNewLineKind: () => getNewLineKind, getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost, getNewTargetContainer: () => Xk, getNextJSDocCommentLocation: () => a4, getNodeForGeneratedName: () => NJ, getNodeId: () => getNodeId, getNodeKind: () => getNodeKind, getNodeModifiers: () => getNodeModifiers, getNodeModulePathParts: () => wL, getNonAssignedNameOfDeclaration: () => Ey, getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment, getNonAugmentationDeclaration: () => E3, getNonDecoratorTokenPosOfNode: () => FD, getNormalizedAbsolutePath: () => as, getNormalizedAbsolutePathWithoutRoot: () => Q5, getNormalizedPathComponents: () => $p, getObjectFlags: () => Bf, getOperator: () => R0, getOperatorAssociativity: () => x4, getOperatorPrecedence: () => E4, getOptionFromName: () => getOptionFromName, getOptionsNameMap: () => getOptionsNameMap, getOrCreateEmitNode: () => getOrCreateEmitNode, getOrCreateExternalHelpersModuleNameIfNeeded: () => wE, getOrUpdate: () => la, getOriginalNode: () => ul, getOriginalNodeId: () => getOriginalNodeId, getOriginalSourceFile: () => gN, getOutputDeclarationFileName: () => getOutputDeclarationFileName, getOutputExtension: () => getOutputExtension, getOutputFileNames: () => getOutputFileNames, getOutputPathsFor: () => getOutputPathsFor, getOutputPathsForBundle: () => getOutputPathsForBundle, getOwnEmitOutputFilePath: () => NN, getOwnKeys: () => ho, getOwnValues: () => go, getPackageJsonInfo: () => getPackageJsonInfo, getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths, getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile, getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName, getPackageScopeForPath: () => getPackageScopeForPath, getParameterSymbolFromJSDoc: () => JI, getParameterTypeNode: () => CL, getParentNodeInSpan: () => getParentNodeInSpan, getParseTreeNode: () => fl, getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile, getPathComponents: () => qi, getPathComponentsRelativeTo: () => ly, getPathFromPathComponents: () => xo, getPathUpdater: () => getPathUpdater, getPathsBasePath: () => LN, getPatternFromSpec: () => BM, getPendingEmitKind: () => getPendingEmitKind, getPositionOfLineAndCharacter: () => lA, getPossibleGenericSignatures: () => getPossibleGenericSignatures, getPossibleOriginalInputExtensionForExtension: () => MN, getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo, getPreEmitDiagnostics: () => getPreEmitDiagnostics, getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition, getPrivateIdentifier: () => getPrivateIdentifier, getProperties: () => getProperties, getProperty: () => Qc, getPropertyArrayElementValue: () => qk, getPropertyAssignment: () => f0, getPropertyAssignmentAliasLikeExpression: () => ZI, getPropertyNameForPropertyNameNode: () => Df, getPropertyNameForUniqueESSymbol: () => _N, getPropertyNameOfBindingOrAssignmentElement: () => eJ, getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement, getPropertySymbolsFromContextualType: () => x7, getQuoteFromPreference: () => getQuoteFromPreference, getQuotePreference: () => getQuotePreference, getRangesWhere: () => Et, getRefactorContextSpan: () => getRefactorContextSpan, getReferencedFileLocation: () => getReferencedFileLocation, getRegexFromPattern: () => Vf, getRegularExpressionForWildcard: () => Wf, getRegularExpressionsForWildcards: () => pv, getRelativePathFromDirectory: () => JT, getRelativePathFromFile: () => iA, getRelativePathToDirectoryOrUrl: () => uy, getRenameLocation: () => getRenameLocation, getReplacementSpanForContextToken: () => getReplacementSpanForContextToken, getResolutionDiagnostic: () => getResolutionDiagnostic, getResolutionModeOverrideForClause: () => getResolutionModeOverrideForClause, getResolveJsonModule: () => Cx, getResolvePackageJsonExports: () => SM, getResolvePackageJsonImports: () => xM, getResolvedExternalModuleName: () => k4, getResolvedModule: () => hD, getResolvedTypeReferenceDirective: () => vD, getRestIndicatorOfBindingOrAssignmentElement: () => Zj, getRestParameterElementType: () => kk, getRightMostAssignedExpression: () => b0, getRootDeclaration: () => If, getRootLength: () => Bi, getScriptKind: () => getScriptKind, getScriptKindFromFileName: () => Ox, getScriptTargetFeatures: () => getScriptTargetFeatures, getSelectedEffectiveModifierFlags: () => G4, getSelectedSyntacticModifierFlags: () => $4, getSemanticClassifications: () => getSemanticClassifications, getSemanticJsxChildren: () => bN, getSetAccessorTypeAnnotationNode: () => BN, getSetAccessorValueParameter: () => z0, getSetExternalModuleIndicator: () => Ex, getShebang: () => GT, getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => w0, getSingleVariableOfVariableStatement: () => Al, getSnapshotText: () => getSnapshotText, getSnippetElement: () => getSnippetElement, getSourceFileOfModule: () => AD, getSourceFileOfNode: () => Si, getSourceFilePathInNewDir: () => M4, getSourceFilePathInNewDirWorker: () => U0, getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText, getSourceFilesToEmit: () => RN, getSourceMapRange: () => getSourceMapRange, getSourceMapper: () => getSourceMapper, getSourceTextOfNodeFromSourceFile: () => No, getSpanOfTokenAtPosition: () => n0, getSpellingSuggestion: () => Ep, getStartPositionOfLine: () => kD, getStartPositionOfRange: () => K_, getStartsOnNewLine: () => getStartsOnNewLine, getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock, getStrictOptionValue: () => lv, getStringComparer: () => rl, getSuperCallFromStatement: () => getSuperCallFromStatement, getSuperContainer: () => Yk, getSupportedCodeFixes: () => v7, getSupportedExtensions: () => Mx, getSupportedExtensionsWithJsonIfResolveJsonModule: () => Lx, getSwitchedType: () => getSwitchedType, getSymbolId: () => getSymbolId, getSymbolNameForPrivateIdentifier: () => cN, getSymbolTarget: () => getSymbolTarget, getSyntacticClassifications: () => getSyntacticClassifications, getSyntacticModifierFlags: () => X0, getSyntacticModifierFlagsNoCache: () => Y0, getSynthesizedDeepClone: () => getSynthesizedDeepClone, getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements, getSynthesizedDeepClones: () => getSynthesizedDeepClones, getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements, getSyntheticLeadingComments: () => getSyntheticLeadingComments, getSyntheticTrailingComments: () => getSyntheticTrailingComments, getTargetLabel: () => getTargetLabel, getTargetOfBindingOrAssignmentElement: () => Ko, getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState, getTextOfConstantValue: () => HD, getTextOfIdentifierOrLiteral: () => kf, getTextOfJSDocComment: () => zA, getTextOfNode: () => gf, getTextOfNodeFromSourceText: () => B_, getTextOfPropertyName: () => lk, getThisContainer: () => d0, getThisParameter: () => j4, getTokenAtPosition: () => getTokenAtPosition, getTokenPosOfNode: () => Io, getTokenSourceMapRange: () => getTokenSourceMapRange, getTouchingPropertyName: () => getTouchingPropertyName, getTouchingToken: () => getTouchingToken, getTrailingCommentRanges: () => HT, getTrailingSemicolonDeferringWriter: () => kN, getTransformFlagsSubtreeExclusions: () => w8, getTransformers: () => getTransformers, getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath, getTsConfigObjectLiteralExpression: () => M3, getTsConfigPropArray: () => L3, getTsConfigPropArrayElementValue: () => Uk, getTypeAnnotationNode: () => UN, getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList, getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport, getTypeNode: () => getTypeNode, getTypeNodeIfAccessible: () => getTypeNodeIfAccessible, getTypeParameterFromJsDoc: () => BI, getTypeParameterOwner: () => AA, getTypesPackageName: () => getTypesPackageName, getUILocale: () => M1, getUniqueName: () => getUniqueName, getUniqueSymbolId: () => getUniqueSymbolId, getUseDefineForClassFields: () => CM, getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage, getWatchFactory: () => getWatchFactory, group: () => el, groupBy: () => x_, guessIndentation: () => rD, handleNoEmitOptions: () => handleNoEmitOptions, hasAbstractModifier: () => W4, hasAccessorModifier: () => H4, hasAmbientModifier: () => V4, hasChangesInResolutions: () => wD, hasChildOfKind: () => hasChildOfKind, hasContextSensitiveParameters: () => vL, hasDecorators: () => Il, hasDocComment: () => hasDocComment, hasDynamicName: () => v4, hasEffectiveModifier: () => H0, hasEffectiveModifiers: () => XN, hasEffectiveReadonlyModifier: () => $0, hasExtension: () => OT, hasIndexSignature: () => hasIndexSignature, hasInitializer: () => l3, hasInvalidEscape: () => w4, hasJSDocNodes: () => ya, hasJSDocParameterTags: () => IA, hasJSFileExtension: () => dv, hasJsonModuleEmitEnabled: () => hM, hasOnlyExpressionInitializer: () => eD, hasOverrideModifier: () => QN, hasPossibleExternalModuleReference: () => sk, hasProperty: () => Jr, hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName, hasQuestionToken: () => OI, hasRecordedExternalHelpers: () => Gj, hasRestParameter: () => nD, hasScopeMarker: () => kP, hasStaticModifier: () => Lf, hasSyntacticModifier: () => rn, hasSyntacticModifiers: () => YN, hasTSFileExtension: () => mv, hasTabstop: () => Qx, hasTrailingDirectorySeparator: () => Hp, hasType: () => ZP, hasTypeArguments: () => qI, hasZeroOrOneAsteriskCharacter: () => OM, helperString: () => helperString, hostGetCanonicalFileName: () => D4, hostUsesCaseSensitiveFileNames: () => J0, idText: () => qr, identifierIsThisKeyword: () => J4, identifierToKeywordKind: () => dS, identity: () => rr, identitySourceMapConsumer: () => identitySourceMapConsumer, ignoreSourceNewlines: () => ignoreSourceNewlines, ignoredPaths: () => ignoredPaths, importDefaultHelper: () => importDefaultHelper, importFromModuleSpecifier: () => II, importNameElisionDisabled: () => gM, importStarHelper: () => importStarHelper, indexOfAnyCharCode: () => Je, indexOfNode: () => UD, indicesOf: () => Wr, inferredTypesContainingFile: () => inferredTypesContainingFile, insertImports: () => insertImports, insertLeadingStatement: () => Mj, insertSorted: () => Qn, insertStatementAfterCustomPrologue: () => RD, insertStatementAfterStandardPrologue: () => LD, insertStatementsAfterCustomPrologue: () => MD, insertStatementsAfterStandardPrologue: () => OD, intersperse: () => Ie, introducesArgumentsExoticObject: () => Lk, inverseJsxOptionMap: () => inverseJsxOptionMap, isAbstractConstructorSymbol: () => zO, isAbstractModifier: () => uR, isAccessExpression: () => Lo, isAccessibilityModifier: () => isAccessibilityModifier, isAccessor: () => pf, isAccessorModifier: () => fR, isAliasSymbolDeclaration: () => QI, isAliasableExpression: () => k0, isAmbientModule: () => yf, isAmbientPropertyDeclaration: () => rk, isAnonymousFunctionDefinition: () => H_, isAnyDirectorySeparator: () => ay, isAnyImportOrBareOrAccessedRequire: () => ik, isAnyImportOrReExport: () => bf, isAnyImportSyntax: () => Qy, isAnySupportedFileExtension: () => ZM, isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey, isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess, isArray: () => ir, isArrayBindingElement: () => gP, isArrayBindingOrAssignmentElement: () => ZS, isArrayBindingOrAssignmentPattern: () => QS, isArrayBindingPattern: () => yR, isArrayLiteralExpression: () => Yl, isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern, isArrayTypeNode: () => F8, isArrowFunction: () => sd, isAsExpression: () => CR, isAssertClause: () => $R, isAssertEntry: () => KR, isAssertionExpression: () => PP, isAssertionKey: () => oP, isAssertsKeyword: () => _R, isAssignmentDeclaration: () => v0, isAssignmentExpression: () => ms, isAssignmentOperator: () => G_, isAssignmentPattern: () => KS, isAssignmentTarget: () => UI, isAsteriskToken: () => nR, isAsyncFunction: () => oN, isAsyncModifier: () => Ul, isAutoAccessorPropertyDeclaration: () => $S, isAwaitExpression: () => SR, isAwaitKeyword: () => cR, isBigIntLiteral: () => Uv, isBinaryExpression: () => ur, isBinaryOperatorToken: () => AJ, isBindableObjectDefinePropertyCall: () => S0, isBindableStaticAccessExpression: () => W_, isBindableStaticElementAccessExpression: () => x0, isBindableStaticNameExpression: () => V_, isBindingElement: () => Xl, isBindingElementOfBareOrAccessedRequire: () => mI, isBindingName: () => uP, isBindingOrAssignmentElement: () => yP, isBindingOrAssignmentPattern: () => vP, isBindingPattern: () => df, isBlock: () => Ql, isBlockOrCatchScoped: () => $D, isBlockScope: () => w3, isBlockScopedContainerTopLevel: () => ZD, isBooleanLiteral: () => pP, isBreakOrContinueStatement: () => YA, isBreakStatement: () => JR, isBuildInfoFile: () => isBuildInfoFile, isBuilderProgram: () => isBuilderProgram2, isBundle: () => cj, isBundleFileTextLike: () => XO, isCallChain: () => Cy, isCallExpression: () => sc, isCallExpressionTarget: () => isCallExpressionTarget, isCallLikeExpression: () => SP, isCallOrNewExpression: () => xP, isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget, isCallSignatureDeclaration: () => Vv, isCallToHelper: () => isCallToHelper, isCaseBlock: () => VR, isCaseClause: () => sj, isCaseKeyword: () => dR, isCaseOrDefaultClause: () => QP, isCatchClause: () => oj, isCatchClauseVariableDeclaration: () => Gx, isCatchClauseVariableDeclarationOrBindingElement: () => T3, isCheckJsEnabledForFile: () => eL, isChildOfNodeWithKind: () => Ak, isCircularBuildOrder: () => isCircularBuildOrder, isClassDeclaration: () => _c6, isClassElement: () => Js, isClassExpression: () => _d4, isClassLike: () => bi, isClassMemberModifier: () => VS, isClassOrTypeElement: () => mP, isClassStaticBlockDeclaration: () => Hl, isCollapsedRange: () => vO, isColonToken: () => iR, isCommaExpression: () => gd, isCommaListExpression: () => oc, isCommaSequence: () => zj, isCommaToken: () => I8, isComment: () => isComment, isCommonJsExportPropertyAssignment: () => p0, isCommonJsExportedExpression: () => Ok, isCompoundAssignment: () => isCompoundAssignment, isComputedNonLiteralName: () => ck, isComputedPropertyName: () => Ws, isConciseBody: () => MP, isConditionalExpression: () => xR, isConditionalTypeNode: () => V8, isConstTypeReference: () => jS, isConstructSignatureDeclaration: () => R8, isConstructorDeclaration: () => nc, isConstructorTypeNode: () => Gv, isContextualKeyword: () => N0, isContinueStatement: () => jR, isCustomPrologue: () => Tf, isDebuggerStatement: () => WR, isDeclaration: () => ko, isDeclarationBindingElement: () => Fy, isDeclarationFileName: () => QE, isDeclarationName: () => c4, isDeclarationNameOfEnumOrNamespace: () => IO, isDeclarationReadonly: () => Sk, isDeclarationStatement: () => VP, isDeclarationWithTypeParameterChildren: () => C3, isDeclarationWithTypeParameters: () => nk, isDecorator: () => zl, isDecoratorTarget: () => isDecoratorTarget, isDefaultClause: () => oE, isDefaultImport: () => Z3, isDefaultModifier: () => oR, isDefaultedExpandoInitializer: () => SI, isDeleteExpression: () => bR, isDeleteTarget: () => $I, isDeprecatedDeclaration: () => isDeprecatedDeclaration, isDestructuringAssignment: () => nO, isDiagnosticWithLocation: () => isDiagnosticWithLocation, isDiskPathRoot: () => H5, isDoStatement: () => OR, isDotDotDotToken: () => rR, isDottedName: () => ev, isDynamicName: () => M0, isESSymbolIdentifier: () => pN, isEffectiveExternalModule: () => Yy, isEffectiveModuleDeclaration: () => S3, isEffectiveStrictModeSourceFile: () => tk, isElementAccessChain: () => RS, isElementAccessExpression: () => gs, isEmittedFileOfProgram: () => isEmittedFileOfProgram, isEmptyArrayLiteral: () => _O, isEmptyBindingElement: () => pS, isEmptyBindingPattern: () => uS, isEmptyObjectLiteral: () => oO, isEmptyStatement: () => IR, isEmptyStringLiteral: () => j3, isEndOfDeclarationMarker: () => ej, isEntityName: () => lP, isEntityNameExpression: () => Bs, isEnumConst: () => Tk, isEnumDeclaration: () => i2, isEnumMember: () => cE, isEqualityOperatorKind: () => isEqualityOperatorKind, isEqualsGreaterThanToken: () => sR, isExclamationToken: () => rd, isExcludedFile: () => isExcludedFile, isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport, isExportAssignment: () => Vo, isExportDeclaration: () => cc, isExportModifier: () => N8, isExportName: () => Uj, isExportNamespaceAsDefaultDeclaration: () => b3, isExportOrDefaultModifier: () => DJ, isExportSpecifier: () => aE, isExportsIdentifier: () => H3, isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias, isExpression: () => mf, isExpressionNode: () => g0, isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration, isExpressionOfOptionalChainRoot: () => $A, isExpressionStatement: () => Zl, isExpressionWithTypeArguments: () => e2, isExpressionWithTypeArgumentsInClassExtendsClause: () => Z0, isExternalModule: () => Qo, isExternalModuleAugmentation: () => Xy, isExternalModuleImportEqualsDeclaration: () => B3, isExternalModuleIndicator: () => NP, isExternalModuleNameRelative: () => gA, isExternalModuleReference: () => ud, isExternalModuleSymbol: () => isExternalModuleSymbol, isExternalOrCommonJsModule: () => bk, isFileLevelUniqueName: () => m3, isFileProbablyExternalModule: () => ou, isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter, isFixablePromiseHandler: () => isFixablePromiseHandler, isForInOrOfStatement: () => OP, isForInStatement: () => LR, isForInitializer: () => RP, isForOfStatement: () => RR, isForStatement: () => eE, isFunctionBlock: () => O3, isFunctionBody: () => LP, isFunctionDeclaration: () => Wo, isFunctionExpression: () => ad, isFunctionExpressionOrArrowFunction: () => SL, isFunctionLike: () => ga, isFunctionLikeDeclaration: () => HS, isFunctionLikeKind: () => My, isFunctionLikeOrClassStaticBlockDeclaration: () => uf, isFunctionOrConstructorTypeNode: () => hP, isFunctionOrModuleBlock: () => fP, isFunctionSymbol: () => DI, isFunctionTypeNode: () => $l, isFutureReservedKeyword: () => tN, isGeneratedIdentifier: () => cs, isGeneratedPrivateIdentifier: () => Ny, isGetAccessor: () => Tl, isGetAccessorDeclaration: () => Gl, isGetOrSetAccessorDeclaration: () => GA, isGlobalDeclaration: () => isGlobalDeclaration, isGlobalScopeAugmentation: () => vf, isGrammarError: () => ND, isHeritageClause: () => ru, isHoistedFunction: () => _0, isHoistedVariableStatement: () => c0, isIdentifier: () => yt, isIdentifierANonContextualKeyword: () => iN, isIdentifierName: () => YI, isIdentifierOrThisTypeNode: () => aJ, isIdentifierPart: () => Rs, isIdentifierStart: () => Wn, isIdentifierText: () => vy, isIdentifierTypePredicate: () => Fk, isIdentifierTypeReference: () => pL, isIfStatement: () => NR, isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching, isImplicitGlob: () => Dx, isImportCall: () => s0, isImportClause: () => HR, isImportDeclaration: () => o2, isImportEqualsDeclaration: () => s2, isImportKeyword: () => M8, isImportMeta: () => o0, isImportOrExportSpecifier: () => aP, isImportOrExportSpecifierName: () => isImportOrExportSpecifierName, isImportSpecifier: () => nE, isImportTypeAssertionContainer: () => GR, isImportTypeNode: () => Kl, isImportableFile: () => isImportableFile, isInComment: () => isInComment, isInExpressionContext: () => J3, isInJSDoc: () => q3, isInJSFile: () => Pr, isInJSXText: () => isInJSXText, isInJsonFile: () => pI, isInNonReferenceComment: () => isInNonReferenceComment, isInReferenceComment: () => isInReferenceComment, isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration, isInString: () => isInString, isInTemplateString: () => isInTemplateString, isInTopLevelContext: () => Kk, isIncrementalCompilation: () => wM, isIndexSignatureDeclaration: () => Hv, isIndexedAccessTypeNode: () => $8, isInferTypeNode: () => H8, isInfinityOrNaNString: () => bL, isInitializedProperty: () => isInitializedProperty, isInitializedVariable: () => lx, isInsideJsxElement: () => isInsideJsxElement, isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute, isInsideNodeModules: () => isInsideNodeModules, isInsideTemplateLiteral: () => isInsideTemplateLiteral, isInstantiatedModule: () => isInstantiatedModule, isInterfaceDeclaration: () => eu, isInternalDeclaration: () => isInternalDeclaration, isInternalModuleImportEqualsDeclaration: () => lI, isInternalName: () => qj, isIntersectionTypeNode: () => W8, isIntrinsicJsxName: () => P4, isIterationStatement: () => n3, isJSDoc: () => Ho, isJSDocAllType: () => dj, isJSDocAugmentsTag: () => md, isJSDocAuthorTag: () => bj, isJSDocCallbackTag: () => Tj, isJSDocClassTag: () => pE, isJSDocCommentContainingNode: () => c3, isJSDocConstructSignature: () => MI, isJSDocDeprecatedTag: () => v2, isJSDocEnumTag: () => dE, isJSDocFunctionType: () => dd, isJSDocImplementsTag: () => hE, isJSDocIndexSignature: () => dI, isJSDocLikeText: () => LE, isJSDocLink: () => uj, isJSDocLinkCode: () => pj, isJSDocLinkLike: () => Sl, isJSDocLinkPlain: () => fj, isJSDocMemberName: () => uc, isJSDocNameReference: () => fd, isJSDocNamepathType: () => vj, isJSDocNamespaceBody: () => FP, isJSDocNode: () => Uy, isJSDocNonNullableType: () => hj, isJSDocNullableType: () => uE, isJSDocOptionalParameter: () => Zx, isJSDocOptionalType: () => gj, isJSDocOverloadTag: () => y2, isJSDocOverrideTag: () => fE, isJSDocParameterTag: () => pc, isJSDocPrivateTag: () => m2, isJSDocPropertyLikeTag: () => Dy, isJSDocPropertyTag: () => wj, isJSDocProtectedTag: () => h2, isJSDocPublicTag: () => d2, isJSDocReadonlyTag: () => g2, isJSDocReturnTag: () => b2, isJSDocSatisfiesExpression: () => IL, isJSDocSatisfiesTag: () => T2, isJSDocSeeTag: () => Sj, isJSDocSignature: () => iu, isJSDocTag: () => zy, isJSDocTemplateTag: () => Go, isJSDocThisTag: () => mE, isJSDocThrowsTag: () => Cj, isJSDocTypeAlias: () => Cl, isJSDocTypeAssertion: () => xE, isJSDocTypeExpression: () => lE, isJSDocTypeLiteral: () => f2, isJSDocTypeTag: () => au, isJSDocTypedefTag: () => xj, isJSDocUnknownTag: () => Ej, isJSDocUnknownType: () => mj, isJSDocVariadicType: () => yj, isJSXTagName: () => xf, isJsonEqual: () => gv, isJsonSourceFile: () => a0, isJsxAttribute: () => nj, isJsxAttributeLike: () => XP, isJsxAttributes: () => p2, isJsxChild: () => o3, isJsxClosingElement: () => sE, isJsxClosingFragment: () => rj, isJsxElement: () => l2, isJsxExpression: () => aj, isJsxFragment: () => pd, isJsxOpeningElement: () => tu, isJsxOpeningFragment: () => u2, isJsxOpeningLikeElement: () => _32, isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName, isJsxSelfClosingElement: () => tj, isJsxSpreadAttribute: () => ij, isJsxTagNameExpression: () => KP, isJsxText: () => td, isJumpStatementTarget: () => isJumpStatementTarget, isKeyword: () => ba, isKnownSymbol: () => lN, isLabelName: () => isLabelName, isLabelOfLabeledStatement: () => isLabelOfLabeledStatement, isLabeledStatement: () => tE, isLateVisibilityPaintedStatement: () => ak, isLeftHandSideExpression: () => Do, isLeftHandSideOfAssignment: () => rO, isLet: () => xk, isLineBreak: () => un, isLiteralComputedPropertyDeclarationName: () => l4, isLiteralExpression: () => Iy, isLiteralExpressionOfObject: () => rP, isLiteralImportTypeNode: () => k3, isLiteralKind: () => ky, isLiteralLikeAccess: () => wf, isLiteralLikeElementAccess: () => wl, isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess, isLiteralTypeLikeExpression: () => cJ, isLiteralTypeLiteral: () => CP, isLiteralTypeNode: () => Yv, isLocalName: () => E2, isLogicalOperator: () => ZN, isLogicalOrCoalescingAssignmentExpression: () => eO, isLogicalOrCoalescingAssignmentOperator: () => jf, isLogicalOrCoalescingBinaryExpression: () => tO, isLogicalOrCoalescingBinaryOperator: () => Z4, isMappedTypeNode: () => K8, isMemberName: () => js, isMergeDeclarationMarker: () => ZR, isMetaProperty: () => t2, isMethodDeclaration: () => Vl, isMethodOrAccessor: () => Ly, isMethodSignature: () => L8, isMinusToken: () => Wv, isMissingDeclaration: () => YR, isModifier: () => Oy, isModifierKind: () => Wi, isModifierLike: () => ff, isModuleAugmentationExternal: () => x3, isModuleBlock: () => rE, isModuleBody: () => jP, isModuleDeclaration: () => Ea, isModuleExportsAccessExpression: () => T0, isModuleIdentifier: () => G3, isModuleName: () => _J, isModuleOrEnumDeclaration: () => qP, isModuleReference: () => $P, isModuleSpecifierLike: () => isModuleSpecifierLike, isModuleWithStringLiteralName: () => KD, isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration, isNameOfModuleDeclaration: () => isNameOfModuleDeclaration, isNamedClassElement: () => dP, isNamedDeclaration: () => af, isNamedEvaluation: () => fN, isNamedEvaluationSource: () => S4, isNamedExportBindings: () => QA, isNamedExports: () => iE, isNamedImportBindings: () => BP, isNamedImports: () => XR, isNamedImportsOrExports: () => YO, isNamedTupleMember: () => $v, isNamespaceBody: () => JP, isNamespaceExport: () => ld, isNamespaceExportDeclaration: () => a2, isNamespaceImport: () => _22, isNamespaceReexportDeclaration: () => oI, isNewExpression: () => X8, isNewExpressionTarget: () => isNewExpressionTarget, isNightly: () => PN, isNoSubstitutionTemplateLiteral: () => k8, isNode: () => eP, isNodeArray: () => _s, isNodeArrayMultiLine: () => AO, isNodeDescendantOf: () => KI, isNodeKind: () => gl, isNodeLikeSystem: () => M5, isNodeModulesDirectory: () => aA, isNodeWithPossibleHoistedDeclaration: () => zI, isNonContextualKeyword: () => y4, isNonExportDefaultModifier: () => kJ, isNonGlobalAmbientModule: () => XD, isNonGlobalDeclaration: () => isNonGlobalDeclaration, isNonNullAccess: () => kL, isNonNullChain: () => JS, isNonNullExpression: () => Uo, isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName, isNotEmittedOrPartiallyEmittedNode: () => DP, isNotEmittedStatement: () => c2, isNullishCoalesce: () => XA, isNumber: () => gi, isNumericLiteral: () => zs, isNumericLiteralName: () => $x, isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName, isObjectBindingOrAssignmentElement: () => YS, isObjectBindingOrAssignmentPattern: () => XS, isObjectBindingPattern: () => gR, isObjectLiteralElement: () => Wy, isObjectLiteralElementLike: () => jy, isObjectLiteralExpression: () => Hs, isObjectLiteralMethod: () => jk, isObjectLiteralOrClassExpressionMethodOrAccessor: () => Jk, isObjectTypeDeclaration: () => $O, isOctalDigit: () => hy, isOmittedExpression: () => cd, isOptionalChain: () => Ay, isOptionalChainRoot: () => Py, isOptionalDeclaration: () => DL, isOptionalJSDocPropertyLikeTag: () => Yx, isOptionalTypeNode: () => q8, isOuterExpression: () => yd, isOutermostOptionalChain: () => KA, isOverrideModifier: () => pR, isPackedArrayLiteral: () => hL, isParameter: () => Vs, isParameterDeclaration: () => mN, isParameterOrCatchClauseVariable: () => TL, isParameterPropertyDeclaration: () => lS, isParameterPropertyModifier: () => WS, isParenthesizedExpression: () => qo, isParenthesizedTypeNode: () => Kv, isParseTreeNode: () => pl2, isPartOfTypeNode: () => l0, isPartOfTypeQuery: () => F3, isPartiallyEmittedExpression: () => Z8, isPatternMatch: () => z1, isPinnedComment: () => v3, isPlainJsFile: () => PD, isPlusToken: () => zv, isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition, isPostfixUnaryExpression: () => Q8, isPrefixUnaryExpression: () => od, isPrivateIdentifier: () => vn, isPrivateIdentifierClassElementDeclaration: () => zS, isPrivateIdentifierPropertyAccessExpression: () => cP, isPrivateIdentifierSymbol: () => uN, isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo, isProgramUptoDate: () => isProgramUptoDate, isPrologueDirective: () => us, isPropertyAccessChain: () => LS, isPropertyAccessEntityNameExpression: () => rx, isPropertyAccessExpression: () => bn, isPropertyAccessOrQualifiedName: () => TP, isPropertyAccessOrQualifiedNameOrImportTypeNode: () => bP, isPropertyAssignment: () => lc, isPropertyDeclaration: () => Bo, isPropertyName: () => vl, isPropertyNameLiteral: () => L0, isPropertySignature: () => Wl, isProtoSetter: () => T4, isPrototypeAccess: () => Nl, isPrototypePropertyAssignment: () => CI, isPunctuation: () => isPunctuation, isPushOrUnshiftIdentifier: () => dN, isQualifiedName: () => rc, isQuestionDotToken: () => aR, isQuestionOrExclamationToken: () => iJ, isQuestionOrPlusOrMinusToken: () => oJ, isQuestionToken: () => ql, isRawSourceMap: () => isRawSourceMap, isReadonlyKeyword: () => O8, isReadonlyKeywordOrPlusOrMinusToken: () => sJ, isRecognizedTripleSlashComment: () => jD, isReferenceFileLocation: () => isReferenceFileLocation, isReferencedFile: () => isReferencedFile, isRegularExpressionLiteral: () => QL, isRequireCall: () => El, isRequireVariableStatement: () => W3, isRestParameter: () => u3, isRestTypeNode: () => U8, isReturnStatement: () => FR, isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler, isRightSideOfAccessExpression: () => nx, isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess, isRightSideOfQualifiedName: () => isRightSideOfQualifiedName, isRightSideOfQualifiedNameOrPropertyAccess: () => aO, isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => sO, isRootedDiskPath: () => A_, isSameEntityName: () => z_, isSatisfiesExpression: () => AR, isScopeMarker: () => i3, isSemicolonClassElement: () => kR, isSetAccessor: () => bl, isSetAccessorDeclaration: () => ic, isShebangTrivia: () => gy, isShorthandAmbientModuleSymbol: () => YD, isShorthandPropertyAssignment: () => nu, isSignedNumericLiteral: () => O0, isSimpleCopiableExpression: () => isSimpleCopiableExpression, isSimpleInlineableExpression: () => isSimpleInlineableExpression, isSingleOrDoubleQuote: () => hI, isSourceFile: () => wi, isSourceFileFromLibrary: () => isSourceFileFromLibrary, isSourceFileJS: () => y0, isSourceFileNotJS: () => uI, isSourceFileNotJson: () => fI, isSourceMapping: () => isSourceMapping, isSpecialPropertyDeclaration: () => AI, isSpreadAssignment: () => _E, isSpreadElement: () => Zv, isStatement: () => a3, isStatementButNotDeclaration: () => HP, isStatementOrBlock: () => s3, isStatementWithLocals: () => DD, isStatic: () => G0, isStaticModifier: () => lR, isString: () => Ji, isStringAKeyword: () => nN, isStringANonContextualKeyword: () => rN, isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection, isStringDoubleQuoted: () => gI, isStringLiteral: () => Gn, isStringLiteralLike: () => Ti, isStringLiteralOrJsxExpression: () => YP, isStringLiteralOrTemplate: () => isStringLiteralOrTemplate, isStringOrNumericLiteralLike: () => Ta, isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral, isStringTextContainingNode: () => _P, isSuperCall: () => Ek, isSuperKeyword: () => nd, isSuperOrSuperProperty: () => Zk, isSuperProperty: () => Sf, isSupportedSourceFileName: () => GM, isSwitchStatement: () => qR, isSyntaxList: () => Aj, isSyntheticExpression: () => PR, isSyntheticReference: () => QR, isTagName: () => isTagName, isTaggedTemplateExpression: () => Y8, isTaggedTemplateTag: () => isTaggedTemplateTag, isTemplateExpression: () => ER, isTemplateHead: () => ZL, isTemplateLiteral: () => EP, isTemplateLiteralKind: () => yl, isTemplateLiteralToken: () => nP, isTemplateLiteralTypeNode: () => hR, isTemplateLiteralTypeSpan: () => mR, isTemplateMiddle: () => eR, isTemplateMiddleOrTemplateTail: () => iP, isTemplateSpan: () => DR, isTemplateTail: () => tR, isTextWhiteSpaceLike: () => isTextWhiteSpaceLike, isThis: () => isThis, isThisContainerOrFunctionBlock: () => $k, isThisIdentifier: () => Mf, isThisInTypeQuery: () => qN, isThisInitializedDeclaration: () => tI, isThisInitializedObjectBindingExpression: () => rI, isThisProperty: () => eI, isThisTypeNode: () => Xv, isThisTypeParameter: () => Kx, isThisTypePredicate: () => Bk, isThrowStatement: () => UR, isToken: () => tP, isTokenKind: () => BS, isTraceEnabled: () => isTraceEnabled, isTransientSymbol: () => $y, isTrivia: () => aN, isTryStatement: () => zR, isTupleTypeNode: () => B8, isTypeAlias: () => LI, isTypeAliasDeclaration: () => n2, isTypeAssertionExpression: () => vR, isTypeDeclaration: () => Xx, isTypeElement: () => Ry, isTypeKeyword: () => isTypeKeyword, isTypeKeywordToken: () => isTypeKeywordToken, isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier, isTypeLiteralNode: () => id, isTypeNode: () => Jy, isTypeNodeKind: () => hx, isTypeOfExpression: () => TR, isTypeOnlyExportDeclaration: () => US, isTypeOnlyImportDeclaration: () => qS, isTypeOnlyImportOrExportDeclaration: () => sP, isTypeOperatorNode: () => G8, isTypeParameterDeclaration: () => Fo, isTypePredicateNode: () => j8, isTypeQueryNode: () => J8, isTypeReferenceNode: () => ac, isTypeReferenceType: () => tD, isUMDExportSymbol: () => VO, isUnaryExpression: () => t3, isUnaryExpressionWithWrite: () => wP, isUnicodeIdentifierStart: () => UT, isUnionTypeNode: () => z8, isUnparsedNode: () => ZA, isUnparsedPrepend: () => _j, isUnparsedSource: () => lj, isUnparsedTextLike: () => FS, isUrl: () => V5, isValidBigIntString: () => zx, isValidESSymbolDeclaration: () => Mk, isValidTypeOnlyAliasUseSite: () => _L, isValueSignatureDeclaration: () => WI, isVarConst: () => D3, isVariableDeclaration: () => Vi, isVariableDeclarationInVariableStatement: () => N3, isVariableDeclarationInitializedToBareOrAccessedRequire: () => Ef, isVariableDeclarationInitializedToRequire: () => U3, isVariableDeclarationList: () => r2, isVariableLike: () => u0, isVariableLikeOrAccessor: () => Nk, isVariableStatement: () => zo, isVoidExpression: () => Qv, isWatchSet: () => OO, isWhileStatement: () => MR, isWhiteSpaceLike: () => os30, isWhiteSpaceSingleLine: () => N_, isWithStatement: () => BR, isWriteAccess: () => FO, isWriteOnlyAccess: () => JO, isYieldExpression: () => wR, jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport, keywordPart: () => keywordPart, last: () => Zn, lastOrUndefined: () => Cn, length: () => I, libMap: () => libMap, libs: () => libs, lineBreakPart: () => lineBreakPart, linkNamePart: () => linkNamePart, linkPart: () => linkPart, linkTextPart: () => linkTextPart, listFiles: () => listFiles, loadModuleFromGlobalCache: () => loadModuleFromGlobalCache, loadWithModeAwareCache: () => loadWithModeAwareCache, makeIdentifierFromModuleName: () => GD, makeImport: () => makeImport, makeImportIfNecessary: () => makeImportIfNecessary, makeStringLiteral: () => makeStringLiteral, mangleScopedPackageName: () => mangleScopedPackageName, map: () => Ze, mapAllOrFail: () => Pt, mapDefined: () => qt, mapDefinedEntries: () => Ri, mapDefinedIterator: () => Zr, mapEntries: () => be, mapIterator: () => st, mapOneOrMany: () => mapOneOrMany, mapToDisplayParts: () => mapToDisplayParts, matchFiles: () => qM, matchPatternOrExact: () => tL, matchedText: () => S5, matchesExclude: () => matchesExclude, maybeBind: () => le, maybeSetLocalizedDiagnosticMessages: () => vx, memoize: () => tl, memoizeCached: () => D1, memoizeOne: () => An, memoizeWeak: () => P1, metadataHelper: () => metadataHelper, min: () => N1, minAndMax: () => nL, missingFileModifiedTime: () => missingFileModifiedTime, modifierToFlag: () => Q0, modifiersToFlags: () => Vn, moduleOptionDeclaration: () => moduleOptionDeclaration, moduleResolutionIsEqualTo: () => TD, moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter, moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations, moduleResolutionSupportsPackageJsonExportsAndImports: () => _v, moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules, moduleSpecifiers: () => ts_moduleSpecifiers_exports, moveEmitHelpers: () => moveEmitHelpers, moveRangeEnd: () => gO, moveRangePastDecorators: () => _x, moveRangePastModifiers: () => yO, moveRangePos: () => Ff, moveSyntheticComments: () => moveSyntheticComments, mutateMap: () => UO, mutateMapSkippingNewValues: () => fx, needsParentheses: () => needsParentheses, needsScopeMarker: () => IP, newCaseClauseTracker: () => newCaseClauseTracker, newPrivateEnvironment: () => newPrivateEnvironment, noEmitNotification: () => noEmitNotification, noEmitSubstitution: () => noEmitSubstitution, noTransformers: () => noTransformers, noTruncationMaximumTruncationLength: () => n8, nodeCanBeDecorated: () => R3, nodeHasName: () => hS, nodeIsDecorated: () => q_, nodeIsMissing: () => va, nodeIsPresent: () => xl, nodeIsSynthesized: () => fs62, nodeModuleNameResolver: () => nodeModuleNameResolver, nodeModulesPathPart: () => nodeModulesPathPart, nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver, nodeOrChildIsDecorated: () => m0, nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd, nodePosToString: () => ID, nodeSeenTracker: () => nodeSeenTracker, nodeStartsNewLexicalEnvironment: () => hN, nodeToDisplayParts: () => nodeToDisplayParts, noop: () => yn, noopFileWatcher: () => noopFileWatcher, noopPush: () => CT, normalizePath: () => Un, normalizeSlashes: () => Eo, not: () => w5, notImplemented: () => A1, notImplementedResolver: () => notImplementedResolver, nullNodeConverters: () => nullNodeConverters, nullParenthesizerRules: () => Jv, nullTransformationContext: () => nullTransformationContext, objectAllocator: () => lr, operatorPart: () => operatorPart, optionDeclarations: () => optionDeclarations, optionMapToObject: () => optionMapToObject, optionsAffectingProgramStructure: () => optionsAffectingProgramStructure, optionsForBuild: () => optionsForBuild, optionsForWatch: () => optionsForWatch, optionsHaveChanges: () => J_, optionsHaveModuleResolutionChanges: () => p3, or: () => W1, orderedRemoveItem: () => J, orderedRemoveItemAt: () => vT, outFile: () => B0, packageIdToPackageName: () => f3, packageIdToString: () => xD, padLeft: () => D5, padRight: () => k5, paramHelper: () => paramHelper, parameterIsThisKeyword: () => kl, parameterNamePart: () => parameterNamePart, parseBaseNodeFactory: () => I2, parseBigInt: () => oL, parseBuildCommand: () => parseBuildCommand, parseCommandLine: () => parseCommandLine, parseCommandLineWorker: () => parseCommandLineWorker, parseConfigFileTextToJson: () => parseConfigFileTextToJson, parseConfigFileWithSystem: () => parseConfigFileWithSystem, parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike, parseCustomTypeOption: () => parseCustomTypeOption, parseIsolatedEntityName: () => $J, parseIsolatedJSDocComment: () => XJ, parseJSDocTypeExpressionForTests: () => YJ, parseJsonConfigFileContent: () => parseJsonConfigFileContent, parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent, parseJsonText: () => KJ, parseListTypeOption: () => parseListTypeOption, parseNodeFactory: () => dc, parseNodeModuleFromPath: () => parseNodeModuleFromPath, parsePackageName: () => parsePackageName, parsePseudoBigInt: () => Hf, parseValidBigInt: () => Ux, patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory, pathContainsNodeModules: () => pathContainsNodeModules, pathIsAbsolute: () => sy, pathIsBareSpecifier: () => G5, pathIsRelative: () => So, patternText: () => T5, perfLogger: () => Dp, performIncrementalCompilation: () => performIncrementalCompilation, performance: () => ts_performance_exports, plainJSErrors: () => plainJSErrors, positionBelongsToNode: () => positionBelongsToNode, positionIsASICandidate: () => positionIsASICandidate, positionIsSynthesized: () => hs, positionsAreOnSameLine: () => $_, preProcessFile: () => preProcessFile, probablyUsesSemicolons: () => probablyUsesSemicolons, processCommentPragmas: () => ZE, processPragmasIntoFields: () => e7, processTaggedTemplateExpression: () => processTaggedTemplateExpression, programContainsEsModules: () => programContainsEsModules, programContainsModules: () => programContainsModules, projectReferenceIsEqualTo: () => bD, propKeyHelper: () => propKeyHelper, propertyNamePart: () => propertyNamePart, pseudoBigIntToString: () => yv, punctuationPart: () => punctuationPart, pushIfUnique: () => qn, quote: () => quote, quotePreferenceFromString: () => quotePreferenceFromString, rangeContainsPosition: () => rangeContainsPosition, rangeContainsPositionExclusive: () => rangeContainsPositionExclusive, rangeContainsRange: () => rangeContainsRange, rangeContainsRangeExclusive: () => rangeContainsRangeExclusive, rangeContainsStartEnd: () => rangeContainsStartEnd, rangeEndIsOnSameLineAsRangeStart: () => EO, rangeEndPositionsAreOnSameLine: () => xO, rangeEquals: () => Kc, rangeIsOnSingleLine: () => TO, rangeOfNode: () => iL, rangeOfTypeParameters: () => aL, rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd, rangeStartIsOnSameLineAsRangeEnd: () => cx, rangeStartPositionsAreOnSameLine: () => SO, readBuilderProgram: () => readBuilderProgram, readConfigFile: () => readConfigFile, readHelper: () => readHelper, readJson: () => hO, readJsonConfigFile: () => readJsonConfigFile, readJsonOrUndefined: () => ax, realizeDiagnostics: () => realizeDiagnostics, reduceEachLeadingCommentRange: () => zT, reduceEachTrailingCommentRange: () => WT, reduceLeft: () => Qa, reduceLeftIterator: () => K, reducePathComponents: () => is, refactor: () => ts_refactor_exports, regExpEscape: () => JM, relativeComplement: () => h_, removeAllComments: () => removeAllComments, removeEmitHelper: () => removeEmitHelper, removeExtension: () => Fx, removeFileExtension: () => Ll, removeIgnoredPath: () => removeIgnoredPath, removeMinAndVersionNumbers: () => q1, removeOptionality: () => removeOptionality, removePrefix: () => x5, removeSuffix: () => F1, removeTrailingDirectorySeparator: () => P_, repeatString: () => repeatString, replaceElement: () => ei, resolutionExtensionIsTSOrJson: () => YM, resolveConfigFileProjectName: () => resolveConfigFileProjectName, resolveJSModule: () => resolveJSModule, resolveModuleName: () => resolveModuleName, resolveModuleNameFromCache: () => resolveModuleNameFromCache, resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson, resolvePath: () => oy, resolveProjectReferencePath: () => resolveProjectReferencePath, resolveTripleslashReference: () => resolveTripleslashReference, resolveTypeReferenceDirective: () => resolveTypeReferenceDirective, resolvingEmptyArray: () => t8, restHelper: () => restHelper, returnFalse: () => w_, returnNoopFileWatcher: () => returnNoopFileWatcher, returnTrue: () => vp, returnUndefined: () => C1, returnsPromise: () => returnsPromise, runInitializersHelper: () => runInitializersHelper, sameFlatMap: () => at, sameMap: () => tt, sameMapping: () => sameMapping, scanShebangTrivia: () => yy, scanTokenAtPosition: () => yk, scanner: () => Zo, screenStartingMessageCodes: () => screenStartingMessageCodes, semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations, serializeCompilerOptions: () => serializeCompilerOptions, server: () => ts_server_exports, servicesVersion: () => E7, setCommentRange: () => setCommentRange, setConfigFileInOptions: () => setConfigFileInOptions, setConstantValue: () => setConstantValue, setEachParent: () => Q_, setEmitFlags: () => setEmitFlags, setFunctionNameHelper: () => setFunctionNameHelper, setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned, setIdentifierAutoGenerate: () => setIdentifierAutoGenerate, setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference, setIdentifierTypeArguments: () => setIdentifierTypeArguments, setInternalEmitFlags: () => setInternalEmitFlags, setLocalizedDiagnosticMessages: () => yx, setModuleDefaultHelper: () => setModuleDefaultHelper, setNodeFlags: () => dL, setObjectAllocator: () => gx, setOriginalNode: () => Dn, setParent: () => Sa, setParentRecursive: () => Vx, setPrivateIdentifier: () => setPrivateIdentifier, setResolvedModule: () => gD, setResolvedTypeReferenceDirective: () => yD, setSnippetElement: () => setSnippetElement, setSourceMapRange: () => setSourceMapRange, setStackTraceLimit: () => setStackTraceLimit, setStartsOnNewLine: () => setStartsOnNewLine, setSyntheticLeadingComments: () => setSyntheticLeadingComments, setSyntheticTrailingComments: () => setSyntheticTrailingComments, setSys: () => setSys, setSysLog: () => setSysLog, setTextRange: () => Rt, setTextRangeEnd: () => Wx, setTextRangePos: () => Gf, setTextRangePosEnd: () => Us, setTextRangePosWidth: () => $f, setTokenSourceMapRange: () => setTokenSourceMapRange, setTypeNode: () => setTypeNode, setUILocale: () => xp, setValueDeclaration: () => PI, shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension, shouldPreserveConstEnums: () => EM, shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules, showModuleSpecifier: () => HO, signatureHasLiteralTypes: () => signatureHasLiteralTypes, signatureHasRestParameter: () => signatureHasRestParameter, signatureToDisplayParts: () => signatureToDisplayParts, single: () => Yc, singleElementArray: () => Cp, singleIterator: () => Ka, singleOrMany: () => mo, singleOrUndefined: () => Xa, skipAlias: () => RO, skipAssertions: () => Hj, skipConstraint: () => skipConstraint, skipOuterExpressions: () => $o, skipParentheses: () => Pl, skipPartiallyEmittedExpressions: () => lf, skipTrivia: () => Ar, skipTypeChecking: () => sL, skipTypeParentheses: () => GI, skipWhile: () => N5, sliceAfter: () => rL, some: () => Ke, sort: () => Is, sortAndDeduplicate: () => uo, sortAndDeduplicateDiagnostics: () => yA, sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions, sourceFileMayBeEmitted: () => q0, sourceMapCommentRegExp: () => sourceMapCommentRegExp, sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart, spacePart: () => spacePart, spanMap: () => co, spreadArrayHelper: () => spreadArrayHelper, stableSort: () => Ns, startEndContainsRange: () => startEndContainsRange, startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd, startOnNewLine: () => vd, startTracing: () => startTracing, startsWith: () => Pn, startsWithDirectory: () => rA, startsWithUnderscore: () => startsWithUnderscore, startsWithUseStrict: () => SE, stringContains: () => Fi, stringContainsAt: () => stringContainsAt, stringToToken: () => _l, stripQuotes: () => CN, supportedDeclarationExtensions: () => Rv, supportedJSExtensions: () => Mv, supportedJSExtensionsFlat: () => Lv, supportedLocaleDirectories: () => Hy, supportedTSExtensions: () => Jo, supportedTSExtensionsFlat: () => Ov, supportedTSImplementationExtensions: () => b8, suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia, suppressLeadingTrivia: () => suppressLeadingTrivia, suppressTrailingTrivia: () => suppressTrailingTrivia, symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault, symbolName: () => rf, symbolNameNoDefault: () => symbolNameNoDefault, symbolPart: () => symbolPart, symbolToDisplayParts: () => symbolToDisplayParts, syntaxMayBeASICandidate: () => syntaxMayBeASICandidate, syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI, sys: () => iy, sysLog: () => sysLog, tagNamesAreEquivalent: () => Hi, takeWhile: () => I5, targetOptionDeclaration: () => targetOptionDeclaration, templateObjectHelper: () => templateObjectHelper, testFormatSettings: () => testFormatSettings, textChangeRangeIsUnchanged: () => cS, textChangeRangeNewSpan: () => R_, textChanges: () => ts_textChanges_exports, textOrKeywordPart: () => textOrKeywordPart, textPart: () => textPart, textRangeContainsPositionInclusive: () => bA, textSpanContainsPosition: () => vA, textSpanContainsTextSpan: () => TA, textSpanEnd: () => Ir, textSpanIntersection: () => _S, textSpanIntersectsWith: () => EA, textSpanIntersectsWithPosition: () => wA, textSpanIntersectsWithTextSpan: () => xA, textSpanIsEmpty: () => sS, textSpanOverlap: () => oS, textSpanOverlapsWith: () => SA, textSpansEqual: () => textSpansEqual, textToKeywordObj: () => cl, timestamp: () => ts, toArray: () => en2, toBuilderFileEmit: () => toBuilderFileEmit, toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit, toEditorSettings: () => lu, toFileNameLowerCase: () => Tp, toLowerCase: () => bp, toPath: () => Ui, toProgramEmitPending: () => toProgramEmitPending, tokenIsIdentifierOrKeyword: () => fr, tokenIsIdentifierOrKeywordOrGreaterThan: () => qT, tokenToString: () => Br, trace: () => trace, tracing: () => rs, tracingEnabled: () => tracingEnabled, transform: () => transform, transformClassFields: () => transformClassFields, transformDeclarations: () => transformDeclarations, transformECMAScriptModule: () => transformECMAScriptModule, transformES2015: () => transformES2015, transformES2016: () => transformES2016, transformES2017: () => transformES2017, transformES2018: () => transformES2018, transformES2019: () => transformES2019, transformES2020: () => transformES2020, transformES2021: () => transformES2021, transformES5: () => transformES5, transformESDecorators: () => transformESDecorators, transformESNext: () => transformESNext, transformGenerators: () => transformGenerators, transformJsx: () => transformJsx, transformLegacyDecorators: () => transformLegacyDecorators, transformModule: () => transformModule, transformNodeModule: () => transformNodeModule, transformNodes: () => transformNodes, transformSystemModule: () => transformSystemModule, transformTypeScript: () => transformTypeScript, transpile: () => transpile, transpileModule: () => transpileModule, transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions, trimString: () => Pp, trimStringEnd: () => X1, trimStringStart: () => nl, tryAddToSet: () => ua, tryAndIgnoreErrors: () => tryAndIgnoreErrors, tryCast: () => ln, tryDirectoryExists: () => tryDirectoryExists, tryExtractTSExtension: () => uO, tryFileExists: () => tryFileExists, tryGetClassExtendingExpressionWithTypeArguments: () => ex, tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => tx, tryGetDirectories: () => tryGetDirectories, tryGetExtensionFromPath: () => hv, tryGetImportFromModuleSpecifier: () => Y3, tryGetJSDocSatisfiesTypeNode: () => e8, tryGetModuleNameFromFile: () => CE, tryGetModuleSpecifierFromDeclaration: () => kI, tryGetNativePerformanceHooks: () => J5, tryGetPropertyAccessOrIdentifierToString: () => tv, tryGetPropertyNameOfBindingOrAssignmentElement: () => PE, tryGetSourceMappingURL: () => tryGetSourceMappingURL, tryGetTextOfPropertyName: () => e0, tryIOAndConsumeErrors: () => tryIOAndConsumeErrors, tryParsePattern: () => Bx, tryParsePatterns: () => XM, tryParseRawSourceMap: () => tryParseRawSourceMap, tryReadDirectory: () => tryReadDirectory, tryReadFile: () => tryReadFile, tryRemoveDirectoryPrefix: () => jM, tryRemoveExtension: () => Jx, tryRemovePrefix: () => ST, tryRemoveSuffix: () => B1, typeAcquisitionDeclarations: () => typeAcquisitionDeclarations, typeAliasNamePart: () => typeAliasNamePart, typeDirectiveIsEqualTo: () => ED, typeKeywords: () => typeKeywords, typeParameterNamePart: () => typeParameterNamePart, typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter, typeToDisplayParts: () => typeToDisplayParts, unchangedPollThresholds: () => unchangedPollThresholds, unchangedTextChangeRange: () => Vy, unescapeLeadingUnderscores: () => dl, unmangleScopedPackageName: () => unmangleScopedPackageName, unorderedRemoveItem: () => bT, unorderedRemoveItemAt: () => U1, unreachableCodeIsError: () => yM, unusedLabelIsError: () => vM, unwrapInnermostStatementOfLabel: () => Rk, updateErrorForNoInputFiles: () => updateErrorForNoInputFiles, updateLanguageServiceSourceFile: () => T7, updateMissingFilePathsWatch: () => updateMissingFilePathsWatch, updatePackageJsonWatch: () => updatePackageJsonWatch, updateResolutionField: () => updateResolutionField, updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher, updateSourceFile: () => k2, updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories, usesExtensionsOnImports: () => Rx, usingSingleLineStringWriter: () => mD, utf16EncodeAsString: () => by, validateLocaleAndSetLanguage: () => DA, valuesHelper: () => valuesHelper, version: () => C, versionMajorMinor: () => m, visitArray: () => visitArray, visitCommaListElements: () => visitCommaListElements, visitEachChild: () => visitEachChild, visitFunctionBody: () => visitFunctionBody, visitIterationBody: () => visitIterationBody, visitLexicalEnvironment: () => visitLexicalEnvironment, visitNode: () => visitNode, visitNodes: () => visitNodes2, visitParameterList: () => visitParameterList, walkUpBindingElementsAndPatterns: () => fS, walkUpLexicalEnvironments: () => walkUpLexicalEnvironments, walkUpOuterExpressions: () => Vj, walkUpParenthesizedExpressions: () => D0, walkUpParenthesizedTypes: () => VI, walkUpParenthesizedTypesAndGetParentAndChild: () => HI, whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp, writeCommentRange: () => $N, writeFile: () => jN, writeFileEnsuringDirectories: () => JN, zipToModeAwareCache: () => zipToModeAwareCache, zipWith: () => ce });
|
|
239989
239989
|
var R7 = D2({ "src/typescript/_namespaces/ts.ts"() {
|
|
239990
239990
|
"use strict";
|
|
239991
239991
|
nn(), l7(), L2(), FB();
|
|
@@ -247950,9 +247950,9 @@ var require_parser_espree = __commonJS({
|
|
|
247950
247950
|
return Su ? Ut.createElement(a) : {};
|
|
247951
247951
|
};
|
|
247952
247952
|
});
|
|
247953
|
-
var Wt = C((jl,
|
|
247953
|
+
var Wt = C((jl, fs62) => {
|
|
247954
247954
|
var wu = xe(), ku = me(), Fu = ps();
|
|
247955
|
-
|
|
247955
|
+
fs62.exports = !wu && !ku(function() {
|
|
247956
247956
|
return Object.defineProperty(Fu("div"), "a", { get: function() {
|
|
247957
247957
|
return 7;
|
|
247958
247958
|
} }).a != 7;
|
|
@@ -254624,8 +254624,8 @@ var require_parser_postcss = __commonJS({
|
|
|
254624
254624
|
return Jc(n, Qc);
|
|
254625
254625
|
};
|
|
254626
254626
|
});
|
|
254627
|
-
var ps = U((
|
|
254628
|
-
|
|
254627
|
+
var ps = U((fs62) => {
|
|
254628
|
+
fs62.f = Object.getOwnPropertySymbols;
|
|
254629
254629
|
});
|
|
254630
254630
|
var ds = U((Eh, hs) => {
|
|
254631
254631
|
var Yc = ir(), Xc = xe(), Zc = ls(), el = ps(), rl = Jr(), tl = Xc([].concat);
|
|
@@ -265395,7 +265395,7 @@ var require_parser_markdown = __commonJS({
|
|
|
265395
265395
|
ln.exports = { set: vr, get: Ke, has: mr, enforce: ls, getterFor: Ds };
|
|
265396
265396
|
});
|
|
265397
265397
|
var dn = $2((rp, pn) => {
|
|
265398
|
-
var
|
|
265398
|
+
var fs62 = Ae(), ps = de(), Er = ke(), iu = Be(), ds = Zt().CONFIGURABLE, hs = eu(), fn = Dn(), vs = fn.enforce, ms = fn.get, Cr = Object.defineProperty, Es = iu && !fs62(function() {
|
|
265399
265399
|
return Cr(function() {
|
|
265400
265400
|
}, "length", { value: 8 }).length !== 8;
|
|
265401
265401
|
}), Cs = String(String).split("String"), gs = pn.exports = function(e, r, u) {
|
|
@@ -269315,10 +269315,10 @@ var require_parser_html = __commonJS({
|
|
|
269315
269315
|
return r || (0, e[Xr(e)[0]])((r = { exports: {} }).exports, r), r.exports;
|
|
269316
269316
|
}, ps = (e, r) => {
|
|
269317
269317
|
for (var u in r) Je(e, u, { get: r[u], enumerable: true });
|
|
269318
|
-
},
|
|
269318
|
+
}, fs62 = (e, r, u, n) => {
|
|
269319
269319
|
if (r && typeof r == "object" || typeof r == "function") for (let D2 of Xr(r)) !tl.call(e, D2) && D2 !== u && Je(e, D2, { get: () => r[D2], enumerable: !(n = rl(r, D2)) || n.enumerable });
|
|
269320
269320
|
return e;
|
|
269321
|
-
}, nl = (e, r, u) => (u = e != null ? el(ul(e)) : {},
|
|
269321
|
+
}, nl = (e, r, u) => (u = e != null ? el(ul(e)) : {}, fs62(r || !e || !e.__esModule ? Je(u, "default", { value: e, enumerable: true }) : u, e)), ds = (e) => fs62(Je({}, "__esModule", { value: true }), e), Te, q = Ee({ "<define:process>"() {
|
|
269322
269322
|
Te = { env: {}, argv: [] };
|
|
269323
269323
|
} }), Es = I({ "node_modules/angular-html-parser/lib/compiler/src/chars.js"(e) {
|
|
269324
269324
|
"use strict";
|
|
@@ -283261,7 +283261,7 @@ ${frame}`;
|
|
|
283261
283261
|
var require_readlines = __commonJS22({
|
|
283262
283262
|
"node_modules/n-readlines/readlines.js"(exports22, module22) {
|
|
283263
283263
|
"use strict";
|
|
283264
|
-
var
|
|
283264
|
+
var fs62 = __require("fs");
|
|
283265
283265
|
var LineByLine = class {
|
|
283266
283266
|
constructor(file2, options3) {
|
|
283267
283267
|
options3 = options3 || {};
|
|
@@ -283275,7 +283275,7 @@ ${frame}`;
|
|
|
283275
283275
|
if (typeof file2 === "number") {
|
|
283276
283276
|
this.fd = file2;
|
|
283277
283277
|
} else {
|
|
283278
|
-
this.fd =
|
|
283278
|
+
this.fd = fs62.openSync(file2, "r");
|
|
283279
283279
|
}
|
|
283280
283280
|
this.options = options3;
|
|
283281
283281
|
this.newLineCharacter = options3.newLineCharacter;
|
|
@@ -283298,7 +283298,7 @@ ${frame}`;
|
|
|
283298
283298
|
this.fdPosition = 0;
|
|
283299
283299
|
}
|
|
283300
283300
|
close() {
|
|
283301
|
-
|
|
283301
|
+
fs62.closeSync(this.fd);
|
|
283302
283302
|
this.fd = null;
|
|
283303
283303
|
}
|
|
283304
283304
|
_extractLines(buffer) {
|
|
@@ -283328,7 +283328,7 @@ ${frame}`;
|
|
|
283328
283328
|
const buffers = [];
|
|
283329
283329
|
do {
|
|
283330
283330
|
const readBuffer = new Buffer(this.options.readChunk);
|
|
283331
|
-
bytesRead =
|
|
283331
|
+
bytesRead = fs62.readSync(this.fd, readBuffer, 0, this.options.readChunk, this.fdPosition);
|
|
283332
283332
|
totalBytesRead = totalBytesRead + bytesRead;
|
|
283333
283333
|
this.fdPosition = this.fdPosition + bytesRead;
|
|
283334
283334
|
buffers.push(readBuffer);
|
|
@@ -283382,7 +283382,7 @@ ${frame}`;
|
|
|
283382
283382
|
var require_get_interpreter = __commonJS22({
|
|
283383
283383
|
"src/utils/get-interpreter.js"(exports22, module22) {
|
|
283384
283384
|
"use strict";
|
|
283385
|
-
var
|
|
283385
|
+
var fs62 = __require("fs");
|
|
283386
283386
|
var readlines = require_readlines();
|
|
283387
283387
|
function getInterpreter(filepath) {
|
|
283388
283388
|
if (typeof filepath !== "string") {
|
|
@@ -283390,7 +283390,7 @@ ${frame}`;
|
|
|
283390
283390
|
}
|
|
283391
283391
|
let fd;
|
|
283392
283392
|
try {
|
|
283393
|
-
fd =
|
|
283393
|
+
fd = fs62.openSync(filepath, "r");
|
|
283394
283394
|
} catch {
|
|
283395
283395
|
return "";
|
|
283396
283396
|
}
|
|
@@ -283410,7 +283410,7 @@ ${frame}`;
|
|
|
283410
283410
|
return "";
|
|
283411
283411
|
} finally {
|
|
283412
283412
|
try {
|
|
283413
|
-
|
|
283413
|
+
fs62.closeSync(fd);
|
|
283414
283414
|
} catch {
|
|
283415
283415
|
}
|
|
283416
283416
|
}
|
|
@@ -290899,20 +290899,20 @@ ${error42.message}`;
|
|
|
290899
290899
|
});
|
|
290900
290900
|
var require_async2 = __commonJS22({
|
|
290901
290901
|
"node_modules/resolve/lib/async.js"(exports22, module22) {
|
|
290902
|
-
var
|
|
290902
|
+
var fs62 = __require("fs");
|
|
290903
290903
|
var getHomedir = require_homedir();
|
|
290904
290904
|
var path68 = __require("path");
|
|
290905
290905
|
var caller = require_caller();
|
|
290906
290906
|
var nodeModulesPaths = require_node_modules_paths();
|
|
290907
290907
|
var normalizeOptions = require_normalize_options();
|
|
290908
290908
|
var isCore = require_is_core_module2();
|
|
290909
|
-
var realpathFS = process.platform !== "win32" &&
|
|
290909
|
+
var realpathFS = process.platform !== "win32" && fs62.realpath && typeof fs62.realpath.native === "function" ? fs62.realpath.native : fs62.realpath;
|
|
290910
290910
|
var homedir29 = getHomedir();
|
|
290911
290911
|
var defaultPaths = function() {
|
|
290912
290912
|
return [path68.join(homedir29, ".node_modules"), path68.join(homedir29, ".node_libraries")];
|
|
290913
290913
|
};
|
|
290914
290914
|
var defaultIsFile = function isFile(file2, cb2) {
|
|
290915
|
-
|
|
290915
|
+
fs62.stat(file2, function(err, stat4) {
|
|
290916
290916
|
if (!err) {
|
|
290917
290917
|
return cb2(null, stat4.isFile() || stat4.isFIFO());
|
|
290918
290918
|
}
|
|
@@ -290922,7 +290922,7 @@ ${error42.message}`;
|
|
|
290922
290922
|
});
|
|
290923
290923
|
};
|
|
290924
290924
|
var defaultIsDir = function isDirectory(dir, cb2) {
|
|
290925
|
-
|
|
290925
|
+
fs62.stat(dir, function(err, stat4) {
|
|
290926
290926
|
if (!err) {
|
|
290927
290927
|
return cb2(null, stat4.isDirectory());
|
|
290928
290928
|
}
|
|
@@ -290983,7 +290983,7 @@ ${error42.message}`;
|
|
|
290983
290983
|
opts = normalizeOptions(x, opts);
|
|
290984
290984
|
var isFile = opts.isFile || defaultIsFile;
|
|
290985
290985
|
var isDirectory = opts.isDirectory || defaultIsDir;
|
|
290986
|
-
var readFile6 = opts.readFile ||
|
|
290986
|
+
var readFile6 = opts.readFile || fs62.readFile;
|
|
290987
290987
|
var realpath2 = opts.realpath || defaultRealpath;
|
|
290988
290988
|
var readPackage2 = opts.readPackage || defaultReadPackage;
|
|
290989
290989
|
if (opts.readFile && opts.readPackage) {
|
|
@@ -291445,20 +291445,20 @@ ${error42.message}`;
|
|
|
291445
291445
|
var require_sync = __commonJS22({
|
|
291446
291446
|
"node_modules/resolve/lib/sync.js"(exports22, module22) {
|
|
291447
291447
|
var isCore = require_is_core_module2();
|
|
291448
|
-
var
|
|
291448
|
+
var fs62 = __require("fs");
|
|
291449
291449
|
var path68 = __require("path");
|
|
291450
291450
|
var getHomedir = require_homedir();
|
|
291451
291451
|
var caller = require_caller();
|
|
291452
291452
|
var nodeModulesPaths = require_node_modules_paths();
|
|
291453
291453
|
var normalizeOptions = require_normalize_options();
|
|
291454
|
-
var realpathFS = process.platform !== "win32" &&
|
|
291454
|
+
var realpathFS = process.platform !== "win32" && fs62.realpathSync && typeof fs62.realpathSync.native === "function" ? fs62.realpathSync.native : fs62.realpathSync;
|
|
291455
291455
|
var homedir29 = getHomedir();
|
|
291456
291456
|
var defaultPaths = function() {
|
|
291457
291457
|
return [path68.join(homedir29, ".node_modules"), path68.join(homedir29, ".node_libraries")];
|
|
291458
291458
|
};
|
|
291459
291459
|
var defaultIsFile = function isFile(file2) {
|
|
291460
291460
|
try {
|
|
291461
|
-
var stat4 =
|
|
291461
|
+
var stat4 = fs62.statSync(file2, {
|
|
291462
291462
|
throwIfNoEntry: false
|
|
291463
291463
|
});
|
|
291464
291464
|
} catch (e) {
|
|
@@ -291470,7 +291470,7 @@ ${error42.message}`;
|
|
|
291470
291470
|
};
|
|
291471
291471
|
var defaultIsDir = function isDirectory(dir) {
|
|
291472
291472
|
try {
|
|
291473
|
-
var stat4 =
|
|
291473
|
+
var stat4 = fs62.statSync(dir, {
|
|
291474
291474
|
throwIfNoEntry: false
|
|
291475
291475
|
});
|
|
291476
291476
|
} catch (e) {
|
|
@@ -291517,7 +291517,7 @@ ${error42.message}`;
|
|
|
291517
291517
|
}
|
|
291518
291518
|
var opts = normalizeOptions(x, options3);
|
|
291519
291519
|
var isFile = opts.isFile || defaultIsFile;
|
|
291520
|
-
var readFileSync35 = opts.readFileSync ||
|
|
291520
|
+
var readFileSync35 = opts.readFileSync || fs62.readFileSync;
|
|
291521
291521
|
var isDirectory = opts.isDirectory || defaultIsDir;
|
|
291522
291522
|
var realpathSync = opts.realpathSync || defaultRealpathSync;
|
|
291523
291523
|
var readPackageSync2 = opts.readPackageSync || defaultReadPackageSync;
|
|
@@ -293535,7 +293535,7 @@ ${fromBody}`;
|
|
|
293535
293535
|
Object.defineProperty(exports22, "__esModule", {
|
|
293536
293536
|
value: true
|
|
293537
293537
|
});
|
|
293538
|
-
var
|
|
293538
|
+
var fs62 = __importStar22(__require("fs"));
|
|
293539
293539
|
var regex2 = {
|
|
293540
293540
|
section: /^\s*\[(([^#;]|\\#|\\;)+)\]\s*([#;].*)?$/,
|
|
293541
293541
|
param: /^\s*([\w\.\-\_]+)\s*[=:]\s*(.*?)\s*([#;].*)?$/,
|
|
@@ -293545,7 +293545,7 @@ ${fromBody}`;
|
|
|
293545
293545
|
return __awaiter22(this, void 0, void 0, function() {
|
|
293546
293546
|
return __generator22(this, function(_a20) {
|
|
293547
293547
|
return [2, new Promise(function(resolve15, reject2) {
|
|
293548
|
-
|
|
293548
|
+
fs62.readFile(file2, "utf8", function(err, data) {
|
|
293549
293549
|
if (err) {
|
|
293550
293550
|
reject2(err);
|
|
293551
293551
|
return;
|
|
@@ -293558,7 +293558,7 @@ ${fromBody}`;
|
|
|
293558
293558
|
}
|
|
293559
293559
|
exports22.parse = parse5;
|
|
293560
293560
|
function parseSync(file2) {
|
|
293561
|
-
return parseString(
|
|
293561
|
+
return parseString(fs62.readFileSync(file2, "utf8"));
|
|
293562
293562
|
}
|
|
293563
293563
|
exports22.parseSync = parseSync;
|
|
293564
293564
|
function parseString(data) {
|
|
@@ -293780,7 +293780,7 @@ ${fromBody}`;
|
|
|
293780
293780
|
Object.defineProperty(exports22, "__esModule", {
|
|
293781
293781
|
value: true
|
|
293782
293782
|
});
|
|
293783
|
-
var
|
|
293783
|
+
var fs62 = __importStar22(__require("fs"));
|
|
293784
293784
|
var path68 = __importStar22(__require("path"));
|
|
293785
293785
|
var semver2 = {
|
|
293786
293786
|
gte: require_gte2()
|
|
@@ -293916,7 +293916,7 @@ ${fromBody}`;
|
|
|
293916
293916
|
return __generator22(this, function(_a20) {
|
|
293917
293917
|
return [2, Promise.all(filepaths.map(function(name) {
|
|
293918
293918
|
return new Promise(function(resolve15) {
|
|
293919
|
-
|
|
293919
|
+
fs62.readFile(name, "utf8", function(err, data) {
|
|
293920
293920
|
resolve15({
|
|
293921
293921
|
name,
|
|
293922
293922
|
contents: err ? "" : data
|
|
@@ -293932,7 +293932,7 @@ ${fromBody}`;
|
|
|
293932
293932
|
var file2;
|
|
293933
293933
|
filepaths.forEach(function(filepath) {
|
|
293934
293934
|
try {
|
|
293935
|
-
file2 =
|
|
293935
|
+
file2 = fs62.readFileSync(filepath, "utf8");
|
|
293936
293936
|
} catch (e) {
|
|
293937
293937
|
file2 = "";
|
|
293938
293938
|
}
|
|
@@ -294063,10 +294063,10 @@ ${fromBody}`;
|
|
|
294063
294063
|
var require_find_project_root = __commonJS22({
|
|
294064
294064
|
"src/config/find-project-root.js"(exports22, module22) {
|
|
294065
294065
|
"use strict";
|
|
294066
|
-
var
|
|
294066
|
+
var fs62 = __require("fs");
|
|
294067
294067
|
var path68 = __require("path");
|
|
294068
294068
|
var MARKERS = [".git", ".hg"];
|
|
294069
|
-
var markerExists = (directory) => MARKERS.some((mark) =>
|
|
294069
|
+
var markerExists = (directory) => MARKERS.some((mark) => fs62.existsSync(path68.join(directory, mark)));
|
|
294070
294070
|
function findProjectRoot2(directory) {
|
|
294071
294071
|
while (!markerExists(directory)) {
|
|
294072
294072
|
const parentDirectory = path68.resolve(directory, "..");
|
|
@@ -294458,8 +294458,8 @@ ${fromBody}`;
|
|
|
294458
294458
|
var require_get_file_content_or_null = __commonJS22({
|
|
294459
294459
|
"src/utils/get-file-content-or-null.js"(exports22, module22) {
|
|
294460
294460
|
"use strict";
|
|
294461
|
-
var
|
|
294462
|
-
var fsAsync =
|
|
294461
|
+
var fs62 = __require("fs");
|
|
294462
|
+
var fsAsync = fs62.promises;
|
|
294463
294463
|
async function getFileContentOrNull(filename) {
|
|
294464
294464
|
try {
|
|
294465
294465
|
return await fsAsync.readFile(filename, "utf8");
|
|
@@ -294469,7 +294469,7 @@ ${fromBody}`;
|
|
|
294469
294469
|
}
|
|
294470
294470
|
getFileContentOrNull.sync = function(filename) {
|
|
294471
294471
|
try {
|
|
294472
|
-
return
|
|
294472
|
+
return fs62.readFileSync(filename, "utf8");
|
|
294473
294473
|
} catch (error42) {
|
|
294474
294474
|
return handleError2(filename, error42);
|
|
294475
294475
|
}
|
|
@@ -295242,8 +295242,8 @@ ${fromBody}`;
|
|
|
295242
295242
|
exports22.array = array2;
|
|
295243
295243
|
var errno = require_errno();
|
|
295244
295244
|
exports22.errno = errno;
|
|
295245
|
-
var
|
|
295246
|
-
exports22.fs =
|
|
295245
|
+
var fs62 = require_fs4();
|
|
295246
|
+
exports22.fs = fs62;
|
|
295247
295247
|
var path68 = require_path3();
|
|
295248
295248
|
exports22.path = path68;
|
|
295249
295249
|
var pattern = require_pattern2();
|
|
@@ -295423,12 +295423,12 @@ ${fromBody}`;
|
|
|
295423
295423
|
value: true
|
|
295424
295424
|
});
|
|
295425
295425
|
exports22.createFileSystemAdapter = exports22.FILE_SYSTEM_ADAPTER = void 0;
|
|
295426
|
-
var
|
|
295426
|
+
var fs62 = __require("fs");
|
|
295427
295427
|
exports22.FILE_SYSTEM_ADAPTER = {
|
|
295428
|
-
lstat:
|
|
295429
|
-
stat:
|
|
295430
|
-
lstatSync:
|
|
295431
|
-
statSync:
|
|
295428
|
+
lstat: fs62.lstat,
|
|
295429
|
+
stat: fs62.stat,
|
|
295430
|
+
lstatSync: fs62.lstatSync,
|
|
295431
|
+
statSync: fs62.statSync
|
|
295432
295432
|
};
|
|
295433
295433
|
function createFileSystemAdapter(fsMethods) {
|
|
295434
295434
|
if (fsMethods === void 0) {
|
|
@@ -295445,12 +295445,12 @@ ${fromBody}`;
|
|
|
295445
295445
|
Object.defineProperty(exports22, "__esModule", {
|
|
295446
295446
|
value: true
|
|
295447
295447
|
});
|
|
295448
|
-
var
|
|
295448
|
+
var fs62 = require_fs22();
|
|
295449
295449
|
var Settings2 = class {
|
|
295450
295450
|
constructor(_options = {}) {
|
|
295451
295451
|
this._options = _options;
|
|
295452
295452
|
this.followSymbolicLink = this._getValue(this._options.followSymbolicLink, true);
|
|
295453
|
-
this.fs =
|
|
295453
|
+
this.fs = fs62.createFileSystemAdapter(this._options.fs);
|
|
295454
295454
|
this.markSymbolicLink = this._getValue(this._options.markSymbolicLink, false);
|
|
295455
295455
|
this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true);
|
|
295456
295456
|
}
|
|
@@ -295604,8 +295604,8 @@ ${fromBody}`;
|
|
|
295604
295604
|
value: true
|
|
295605
295605
|
});
|
|
295606
295606
|
exports22.fs = void 0;
|
|
295607
|
-
var
|
|
295608
|
-
exports22.fs =
|
|
295607
|
+
var fs62 = require_fs32();
|
|
295608
|
+
exports22.fs = fs62;
|
|
295609
295609
|
}
|
|
295610
295610
|
});
|
|
295611
295611
|
var require_common32 = __commonJS22({
|
|
@@ -295804,14 +295804,14 @@ ${fromBody}`;
|
|
|
295804
295804
|
value: true
|
|
295805
295805
|
});
|
|
295806
295806
|
exports22.createFileSystemAdapter = exports22.FILE_SYSTEM_ADAPTER = void 0;
|
|
295807
|
-
var
|
|
295807
|
+
var fs62 = __require("fs");
|
|
295808
295808
|
exports22.FILE_SYSTEM_ADAPTER = {
|
|
295809
|
-
lstat:
|
|
295810
|
-
stat:
|
|
295811
|
-
lstatSync:
|
|
295812
|
-
statSync:
|
|
295813
|
-
readdir:
|
|
295814
|
-
readdirSync:
|
|
295809
|
+
lstat: fs62.lstat,
|
|
295810
|
+
stat: fs62.stat,
|
|
295811
|
+
lstatSync: fs62.lstatSync,
|
|
295812
|
+
statSync: fs62.statSync,
|
|
295813
|
+
readdir: fs62.readdir,
|
|
295814
|
+
readdirSync: fs62.readdirSync
|
|
295815
295815
|
};
|
|
295816
295816
|
function createFileSystemAdapter(fsMethods) {
|
|
295817
295817
|
if (fsMethods === void 0) {
|
|
@@ -295830,12 +295830,12 @@ ${fromBody}`;
|
|
|
295830
295830
|
});
|
|
295831
295831
|
var path68 = __require("path");
|
|
295832
295832
|
var fsStat = require_out();
|
|
295833
|
-
var
|
|
295833
|
+
var fs62 = require_fs42();
|
|
295834
295834
|
var Settings2 = class {
|
|
295835
295835
|
constructor(_options = {}) {
|
|
295836
295836
|
this._options = _options;
|
|
295837
295837
|
this.followSymbolicLinks = this._getValue(this._options.followSymbolicLinks, false);
|
|
295838
|
-
this.fs =
|
|
295838
|
+
this.fs = fs62.createFileSystemAdapter(this._options.fs);
|
|
295839
295839
|
this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path68.sep);
|
|
295840
295840
|
this.stats = this._getValue(this._options.stats, false);
|
|
295841
295841
|
this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true);
|
|
@@ -297157,16 +297157,16 @@ ${fromBody}`;
|
|
|
297157
297157
|
value: true
|
|
297158
297158
|
});
|
|
297159
297159
|
exports22.DEFAULT_FILE_SYSTEM_ADAPTER = void 0;
|
|
297160
|
-
var
|
|
297160
|
+
var fs62 = __require("fs");
|
|
297161
297161
|
var os30 = __require("os");
|
|
297162
297162
|
var CPU_COUNT = Math.max(os30.cpus().length, 1);
|
|
297163
297163
|
exports22.DEFAULT_FILE_SYSTEM_ADAPTER = {
|
|
297164
|
-
lstat:
|
|
297165
|
-
lstatSync:
|
|
297166
|
-
stat:
|
|
297167
|
-
statSync:
|
|
297168
|
-
readdir:
|
|
297169
|
-
readdirSync:
|
|
297164
|
+
lstat: fs62.lstat,
|
|
297165
|
+
lstatSync: fs62.lstatSync,
|
|
297166
|
+
stat: fs62.stat,
|
|
297167
|
+
statSync: fs62.statSync,
|
|
297168
|
+
readdir: fs62.readdir,
|
|
297169
|
+
readdirSync: fs62.readdirSync
|
|
297170
297170
|
};
|
|
297171
297171
|
var Settings2 = class {
|
|
297172
297172
|
constructor(_options = {}) {
|
|
@@ -313796,7 +313796,7 @@ ${text2}`;
|
|
|
313796
313796
|
var require_load_plugins = __commonJS22({
|
|
313797
313797
|
"src/common/load-plugins.js"(exports22, module22) {
|
|
313798
313798
|
"use strict";
|
|
313799
|
-
var
|
|
313799
|
+
var fs62 = __require("fs");
|
|
313800
313800
|
var path68 = __require("path");
|
|
313801
313801
|
var fastGlob = require_out4();
|
|
313802
313802
|
var partition = require_partition();
|
|
@@ -313872,7 +313872,7 @@ ${text2}`;
|
|
|
313872
313872
|
}
|
|
313873
313873
|
function isDirectory(dir) {
|
|
313874
313874
|
try {
|
|
313875
|
-
return
|
|
313875
|
+
return fs62.statSync(dir).isDirectory();
|
|
313876
313876
|
} catch {
|
|
313877
313877
|
return false;
|
|
313878
313878
|
}
|
|
@@ -319929,10 +319929,10 @@ var require_lib5 = __commonJS({
|
|
|
319929
319929
|
exports2.analyse = analyse;
|
|
319930
319930
|
var detectFile = (filepath, opts = {}) => new Promise((resolve15, reject2) => {
|
|
319931
319931
|
let fd;
|
|
319932
|
-
const
|
|
319932
|
+
const fs62 = (0, node_1.default)();
|
|
319933
319933
|
const handler = (err, buffer) => {
|
|
319934
319934
|
if (fd) {
|
|
319935
|
-
|
|
319935
|
+
fs62.closeSync(fd);
|
|
319936
319936
|
}
|
|
319937
319937
|
if (err) {
|
|
319938
319938
|
reject2(err);
|
|
@@ -319944,9 +319944,9 @@ var require_lib5 = __commonJS({
|
|
|
319944
319944
|
};
|
|
319945
319945
|
const sampleSize = (opts === null || opts === void 0 ? void 0 : opts.sampleSize) || 0;
|
|
319946
319946
|
if (sampleSize > 0) {
|
|
319947
|
-
fd =
|
|
319947
|
+
fd = fs62.openSync(filepath, "r");
|
|
319948
319948
|
let sample2 = Buffer.allocUnsafe(sampleSize);
|
|
319949
|
-
|
|
319949
|
+
fs62.read(fd, sample2, 0, sampleSize, opts.offset, (err, bytesRead) => {
|
|
319950
319950
|
if (err) {
|
|
319951
319951
|
handler(err, null);
|
|
319952
319952
|
} else {
|
|
@@ -319958,22 +319958,22 @@ var require_lib5 = __commonJS({
|
|
|
319958
319958
|
});
|
|
319959
319959
|
return;
|
|
319960
319960
|
}
|
|
319961
|
-
|
|
319961
|
+
fs62.readFile(filepath, handler);
|
|
319962
319962
|
});
|
|
319963
319963
|
exports2.detectFile = detectFile;
|
|
319964
319964
|
var detectFileSync = (filepath, opts = {}) => {
|
|
319965
|
-
const
|
|
319965
|
+
const fs62 = (0, node_1.default)();
|
|
319966
319966
|
if (opts && opts.sampleSize) {
|
|
319967
|
-
const fd =
|
|
319967
|
+
const fd = fs62.openSync(filepath, "r");
|
|
319968
319968
|
let sample2 = Buffer.allocUnsafe(opts.sampleSize);
|
|
319969
|
-
const bytesRead =
|
|
319969
|
+
const bytesRead = fs62.readSync(fd, sample2, 0, opts.sampleSize, opts.offset);
|
|
319970
319970
|
if (bytesRead < opts.sampleSize) {
|
|
319971
319971
|
sample2 = sample2.subarray(0, bytesRead);
|
|
319972
319972
|
}
|
|
319973
|
-
|
|
319973
|
+
fs62.closeSync(fd);
|
|
319974
319974
|
return (0, exports2.detect)(sample2);
|
|
319975
319975
|
}
|
|
319976
|
-
return (0, exports2.detect)(
|
|
319976
|
+
return (0, exports2.detect)(fs62.readFileSync(filepath));
|
|
319977
319977
|
};
|
|
319978
319978
|
exports2.detectFileSync = detectFileSync;
|
|
319979
319979
|
exports2.default = {
|
|
@@ -352649,7 +352649,7 @@ var require_path_is_absolute = __commonJS({
|
|
|
352649
352649
|
// node_modules/mammoth/lib/docx/files.js
|
|
352650
352650
|
var require_files = __commonJS({
|
|
352651
352651
|
"node_modules/mammoth/lib/docx/files.js"(exports2) {
|
|
352652
|
-
var
|
|
352652
|
+
var fs62 = __require("fs");
|
|
352653
352653
|
var url2 = __require("url");
|
|
352654
352654
|
var os30 = __require("os");
|
|
352655
352655
|
var dirname14 = __require("path").dirname;
|
|
@@ -352690,7 +352690,7 @@ var require_files = __commonJS({
|
|
|
352690
352690
|
read: read2
|
|
352691
352691
|
};
|
|
352692
352692
|
}
|
|
352693
|
-
var readFile6 = promises2.promisify(
|
|
352693
|
+
var readFile6 = promises2.promisify(fs62.readFile.bind(fs62));
|
|
352694
352694
|
function uriToPath(uriString, platform6) {
|
|
352695
352695
|
if (!platform6) {
|
|
352696
352696
|
platform6 = os30.platform();
|
|
@@ -355403,11 +355403,11 @@ var require_options_reader = __commonJS({
|
|
|
355403
355403
|
// node_modules/mammoth/lib/unzip.js
|
|
355404
355404
|
var require_unzip = __commonJS({
|
|
355405
355405
|
"node_modules/mammoth/lib/unzip.js"(exports2) {
|
|
355406
|
-
var
|
|
355406
|
+
var fs62 = __require("fs");
|
|
355407
355407
|
var promises2 = require_promises();
|
|
355408
355408
|
var zipfile = require_zipfile();
|
|
355409
355409
|
exports2.openZip = openZip;
|
|
355410
|
-
var readFile6 = promises2.promisify(
|
|
355410
|
+
var readFile6 = promises2.promisify(fs62.readFile);
|
|
355411
355411
|
function openZip(options3) {
|
|
355412
355412
|
if (options3.path) {
|
|
355413
355413
|
return readFile6(options3.path).then(zipfile.openArrayBuffer);
|
|
@@ -360658,9 +360658,9 @@ var require_xlsx = __commonJS({
|
|
|
360658
360658
|
}
|
|
360659
360659
|
return o;
|
|
360660
360660
|
}
|
|
360661
|
-
var
|
|
360661
|
+
var fs62;
|
|
360662
360662
|
function get_fs() {
|
|
360663
|
-
return
|
|
360663
|
+
return fs62 || (fs62 = __require("fs"));
|
|
360664
360664
|
}
|
|
360665
360665
|
function parse5(file2, options3) {
|
|
360666
360666
|
if (file2[0] == 80 && file2[1] == 75) return parse_zip2(file2, options3);
|
|
@@ -360936,7 +360936,7 @@ var require_xlsx = __commonJS({
|
|
|
360936
360936
|
}
|
|
360937
360937
|
function read_file(filename2, options3) {
|
|
360938
360938
|
get_fs();
|
|
360939
|
-
return parse5(
|
|
360939
|
+
return parse5(fs62.readFileSync(filename2), options3);
|
|
360940
360940
|
}
|
|
360941
360941
|
function read2(blob2, options3) {
|
|
360942
360942
|
var type = options3 && options3.type;
|
|
@@ -361262,7 +361262,7 @@ var require_xlsx = __commonJS({
|
|
|
361262
361262
|
function write_file(cfb, filename2, options3) {
|
|
361263
361263
|
get_fs();
|
|
361264
361264
|
var o = _write(cfb, options3);
|
|
361265
|
-
|
|
361265
|
+
fs62.writeFileSync(filename2, o);
|
|
361266
361266
|
}
|
|
361267
361267
|
function a2s2(o) {
|
|
361268
361268
|
var out = new Array(o.length);
|
|
@@ -361274,7 +361274,7 @@ var require_xlsx = __commonJS({
|
|
|
361274
361274
|
switch (options3 && options3.type || "buffer") {
|
|
361275
361275
|
case "file":
|
|
361276
361276
|
get_fs();
|
|
361277
|
-
|
|
361277
|
+
fs62.writeFileSync(options3.filename, o);
|
|
361278
361278
|
return o;
|
|
361279
361279
|
case "binary":
|
|
361280
361280
|
return typeof o == "string" ? o : a2s2(o);
|
|
@@ -388264,7 +388264,7 @@ var require_xlsx = __commonJS({
|
|
|
388264
388264
|
return out;
|
|
388265
388265
|
}
|
|
388266
388266
|
var qreg = /"/g;
|
|
388267
|
-
function make_csv_row(sheet, r, R, cols,
|
|
388267
|
+
function make_csv_row(sheet, r, R, cols, fs62, rs, FS, o) {
|
|
388268
388268
|
var isempty = true;
|
|
388269
388269
|
var row = [], txt = "", rr = encode_row(R);
|
|
388270
388270
|
for (var C = r.s.c; C <= r.e.c; ++C) {
|
|
@@ -388274,7 +388274,7 @@ var require_xlsx = __commonJS({
|
|
|
388274
388274
|
else if (val.v != null) {
|
|
388275
388275
|
isempty = false;
|
|
388276
388276
|
txt = "" + (o.rawNumbers && val.t == "n" ? val.v : format_cell(val, null, o));
|
|
388277
|
-
for (var i = 0, cc = 0; i !== txt.length; ++i) if ((cc = txt.charCodeAt(i)) ===
|
|
388277
|
+
for (var i = 0, cc = 0; i !== txt.length; ++i) if ((cc = txt.charCodeAt(i)) === fs62 || cc === rs || cc === 34 || o.forceQuotes) {
|
|
388278
388278
|
txt = '"' + txt.replace(qreg, '""') + '"';
|
|
388279
388279
|
break;
|
|
388280
388280
|
}
|
|
@@ -388294,7 +388294,7 @@ var require_xlsx = __commonJS({
|
|
|
388294
388294
|
var o = opts == null ? {} : opts;
|
|
388295
388295
|
if (sheet == null || sheet["!ref"] == null) return "";
|
|
388296
388296
|
var r = safe_decode_range(sheet["!ref"]);
|
|
388297
|
-
var FS = o.FS !== void 0 ? o.FS : ",",
|
|
388297
|
+
var FS = o.FS !== void 0 ? o.FS : ",", fs62 = FS.charCodeAt(0);
|
|
388298
388298
|
var RS = o.RS !== void 0 ? o.RS : "\n", rs = RS.charCodeAt(0);
|
|
388299
388299
|
var endregex = new RegExp((FS == "|" ? "\\|" : FS) + "+$");
|
|
388300
388300
|
var row = "", cols = [];
|
|
@@ -388305,7 +388305,7 @@ var require_xlsx = __commonJS({
|
|
|
388305
388305
|
var w = 0;
|
|
388306
388306
|
for (var R = r.s.r; R <= r.e.r; ++R) {
|
|
388307
388307
|
if ((rowinfo[R] || {}).hidden) continue;
|
|
388308
|
-
row = make_csv_row(sheet, r, R, cols,
|
|
388308
|
+
row = make_csv_row(sheet, r, R, cols, fs62, rs, FS, o);
|
|
388309
388309
|
if (row == null) {
|
|
388310
388310
|
continue;
|
|
388311
388311
|
}
|
|
@@ -388577,7 +388577,7 @@ var require_xlsx = __commonJS({
|
|
|
388577
388577
|
return stream;
|
|
388578
388578
|
}
|
|
388579
388579
|
var r = safe_decode_range(sheet["!ref"]);
|
|
388580
|
-
var FS = o.FS !== void 0 ? o.FS : ",",
|
|
388580
|
+
var FS = o.FS !== void 0 ? o.FS : ",", fs62 = FS.charCodeAt(0);
|
|
388581
388581
|
var RS = o.RS !== void 0 ? o.RS : "\n", rs = RS.charCodeAt(0);
|
|
388582
388582
|
var endregex = new RegExp((FS == "|" ? "\\|" : FS) + "+$");
|
|
388583
388583
|
var row = "", cols = [];
|
|
@@ -388595,7 +388595,7 @@ var require_xlsx = __commonJS({
|
|
|
388595
388595
|
while (R <= r.e.r) {
|
|
388596
388596
|
++R;
|
|
388597
388597
|
if ((rowinfo[R - 1] || {}).hidden) continue;
|
|
388598
|
-
row = make_csv_row(sheet, r, R - 1, cols,
|
|
388598
|
+
row = make_csv_row(sheet, r, R - 1, cols, fs62, rs, FS, o);
|
|
388599
388599
|
if (row != null) {
|
|
388600
388600
|
if (o.strip) row = row.replace(endregex, "");
|
|
388601
388601
|
if (row || o.blankrows !== false) return stream.push((w++ ? RS : "") + row);
|
|
@@ -389485,8 +389485,8 @@ function wrapReason(ex) {
|
|
|
389485
389485
|
return new UnknownErrorException(ex.message, ex.toString());
|
|
389486
389486
|
}
|
|
389487
389487
|
async function node_utils_fetchData(url2) {
|
|
389488
|
-
const
|
|
389489
|
-
const data = await
|
|
389488
|
+
const fs62 = process.getBuiltinModule("fs");
|
|
389489
|
+
const data = await fs62.promises.readFile(url2);
|
|
389490
389490
|
return new Uint8Array(data);
|
|
389491
389491
|
}
|
|
389492
389492
|
function expandBBox(array2, index, minX, minY, maxX, maxY) {
|
|
@@ -406991,10 +406991,10 @@ var init_pdf = __esm({
|
|
|
406991
406991
|
this._readableStream = null;
|
|
406992
406992
|
this._readCapability = Promise.withResolvers();
|
|
406993
406993
|
this._headersCapability = Promise.withResolvers();
|
|
406994
|
-
const
|
|
406995
|
-
|
|
406994
|
+
const fs62 = process.getBuiltinModule("fs");
|
|
406995
|
+
fs62.promises.lstat(this._url).then((stat4) => {
|
|
406996
406996
|
this._contentLength = stat4.size;
|
|
406997
|
-
this._setReadableStream(
|
|
406997
|
+
this._setReadableStream(fs62.createReadStream(this._url));
|
|
406998
406998
|
this._headersCapability.resolve();
|
|
406999
406999
|
}, (error42) => {
|
|
407000
407000
|
if (error42.code === "ENOENT") {
|
|
@@ -407090,8 +407090,8 @@ var init_pdf = __esm({
|
|
|
407090
407090
|
this._readCapability = Promise.withResolvers();
|
|
407091
407091
|
const source2 = stream.source;
|
|
407092
407092
|
this._isStreamingSupported = !source2.disableStream;
|
|
407093
|
-
const
|
|
407094
|
-
this._setReadableStream(
|
|
407093
|
+
const fs62 = process.getBuiltinModule("fs");
|
|
407094
|
+
this._setReadableStream(fs62.createReadStream(this._url, {
|
|
407095
407095
|
start,
|
|
407096
407096
|
end: end - 1
|
|
407097
407097
|
}));
|
|
@@ -492863,14 +492863,14 @@ var require_emscripten_module_WASM_RELEASE_SYNC = __commonJS({
|
|
|
492863
492863
|
});
|
|
492864
492864
|
var p = Object.assign({}, a), t = "./this.program", u = "object" == typeof window, v = "function" == typeof importScripts, w = "object" == typeof process && "object" == typeof process.versions && "string" == typeof process.versions.node, x = "", y, z, A;
|
|
492865
492865
|
if (w) {
|
|
492866
|
-
var
|
|
492866
|
+
var fs62 = __require("fs"), B = __require("path");
|
|
492867
492867
|
x = v ? B.dirname(x) + "/" : __dirname + "/";
|
|
492868
492868
|
y = (b, c) => {
|
|
492869
492869
|
var d = C(b);
|
|
492870
492870
|
if (d)
|
|
492871
492871
|
return c ? d : d.toString();
|
|
492872
492872
|
b = b.startsWith("file://") ? new URL(b) : B.normalize(b);
|
|
492873
|
-
return
|
|
492873
|
+
return fs62.readFileSync(b, c ? void 0 : "utf8");
|
|
492874
492874
|
};
|
|
492875
492875
|
A = (b) => {
|
|
492876
492876
|
b = y(b, true);
|
|
@@ -492881,7 +492881,7 @@ var require_emscripten_module_WASM_RELEASE_SYNC = __commonJS({
|
|
|
492881
492881
|
var e = C(b);
|
|
492882
492882
|
e && c(e);
|
|
492883
492883
|
b = b.startsWith("file://") ? new URL(b) : B.normalize(b);
|
|
492884
|
-
|
|
492884
|
+
fs62.readFile(b, function(f, g) {
|
|
492885
492885
|
f ? d(f) : c(g.buffer);
|
|
492886
492886
|
});
|
|
492887
492887
|
};
|
|
@@ -498223,7 +498223,7 @@ var require_tiktoken = __commonJS({
|
|
|
498223
498223
|
var imports = {};
|
|
498224
498224
|
imports["./tiktoken_bg.js"] = wasm;
|
|
498225
498225
|
var path68 = __require("path");
|
|
498226
|
-
var
|
|
498226
|
+
var fs62 = __require("fs");
|
|
498227
498227
|
var candidates = __dirname.split(path68.sep).reduce((memo12, _3, index, array2) => {
|
|
498228
498228
|
const prefix = array2.slice(0, index + 1).join(path68.sep) + path68.sep;
|
|
498229
498229
|
if (!prefix.includes("node_modules" + path68.sep)) {
|
|
@@ -498243,7 +498243,7 @@ var require_tiktoken = __commonJS({
|
|
|
498243
498243
|
var bytes = null;
|
|
498244
498244
|
for (const candidate of candidates) {
|
|
498245
498245
|
try {
|
|
498246
|
-
bytes =
|
|
498246
|
+
bytes = fs62.readFileSync(candidate);
|
|
498247
498247
|
break;
|
|
498248
498248
|
} catch {
|
|
498249
498249
|
}
|
|
@@ -498652,6 +498652,9 @@ var init_websearch2 = __esm({
|
|
|
498652
498652
|
async createBrowser() {
|
|
498653
498653
|
const proxyConfig = getProxyConfig();
|
|
498654
498654
|
const debugPort = proxyConfig.browserDebugPort || 9222;
|
|
498655
|
+
if (this.isWSLMode && proxyConfig.browserPath && existsSync16(proxyConfig.browserPath) && isExecutableForPlatform(proxyConfig.browserPath)) {
|
|
498656
|
+
return this.launchBrowserDirect(proxyConfig);
|
|
498657
|
+
}
|
|
498655
498658
|
if (this.isWSLMode) {
|
|
498656
498659
|
return this.launchBrowserWSL(proxyConfig, debugPort);
|
|
498657
498660
|
}
|
|
@@ -499719,16 +499722,16 @@ var require_sql_wasm = __commonJS({
|
|
|
499719
499722
|
throw b;
|
|
499720
499723
|
}, D2 = "", Ea, Fa;
|
|
499721
499724
|
if (ca) {
|
|
499722
|
-
var
|
|
499725
|
+
var fs62 = __require("fs");
|
|
499723
499726
|
__require("path");
|
|
499724
499727
|
D2 = __dirname + "/";
|
|
499725
499728
|
Fa = (a) => {
|
|
499726
499729
|
a = Ga(a) ? new URL(a) : a;
|
|
499727
|
-
return
|
|
499730
|
+
return fs62.readFileSync(a);
|
|
499728
499731
|
};
|
|
499729
499732
|
Ea = async (a) => {
|
|
499730
499733
|
a = Ga(a) ? new URL(a) : a;
|
|
499731
|
-
return
|
|
499734
|
+
return fs62.readFileSync(a, void 0);
|
|
499732
499735
|
};
|
|
499733
499736
|
!f.thisProgram && 1 < process.argv.length && (Ca = process.argv[1].replace(/\\/g, "/"));
|
|
499734
499737
|
process.argv.slice(2);
|
|
@@ -500027,7 +500030,7 @@ var require_sql_wasm = __commonJS({
|
|
|
500027
500030
|
if (ca) {
|
|
500028
500031
|
var b = Buffer.alloc(256), c = 0, d = process.stdin.fd;
|
|
500029
500032
|
try {
|
|
500030
|
-
c =
|
|
500033
|
+
c = fs62.readSync(d, b, 0, 256);
|
|
500031
500034
|
} catch (e) {
|
|
500032
500035
|
if (e.toString().includes("EOF")) c = 0;
|
|
500033
500036
|
else throw e;
|
|
@@ -515029,7 +515032,7 @@ var require_parse6 = __commonJS({
|
|
|
515029
515032
|
var require_gray_matter = __commonJS({
|
|
515030
515033
|
"node_modules/gray-matter/index.js"(exports2, module2) {
|
|
515031
515034
|
"use strict";
|
|
515032
|
-
var
|
|
515035
|
+
var fs62 = __require("fs");
|
|
515033
515036
|
var sections = require_section_matter();
|
|
515034
515037
|
var defaults = require_defaults3();
|
|
515035
515038
|
var stringify2 = require_stringify2();
|
|
@@ -515113,7 +515116,7 @@ var require_gray_matter = __commonJS({
|
|
|
515113
515116
|
return stringify2(file2, data, options3);
|
|
515114
515117
|
};
|
|
515115
515118
|
matter3.read = function(filepath, options3) {
|
|
515116
|
-
const str2 =
|
|
515119
|
+
const str2 = fs62.readFileSync(filepath, "utf8");
|
|
515117
515120
|
const file2 = matter3(str2, options3);
|
|
515118
515121
|
file2.path = filepath;
|
|
515119
515122
|
return file2;
|
|
@@ -520192,8 +520195,8 @@ var init_HybridCodeSearchService = __esm({
|
|
|
520192
520195
|
}
|
|
520193
520196
|
async findDefinitionWithLSP(symbolName, contextFile, line, column) {
|
|
520194
520197
|
let position = null;
|
|
520195
|
-
const
|
|
520196
|
-
const content = await
|
|
520198
|
+
const fs62 = await import("fs/promises");
|
|
520199
|
+
const content = await fs62.readFile(contextFile, "utf-8");
|
|
520197
520200
|
const lines = content.split("\n");
|
|
520198
520201
|
if (line !== void 0 && column !== void 0) {
|
|
520199
520202
|
let adjustedLine = line;
|
|
@@ -520992,8 +520995,8 @@ async function refreshToolsCache() {
|
|
|
520992
520995
|
if (codebaseConfig.enabled) {
|
|
520993
520996
|
const projectRoot2 = process.cwd();
|
|
520994
520997
|
const dbPath = path48.join(projectRoot2, ".snow", "codebase", "embeddings.db");
|
|
520995
|
-
const
|
|
520996
|
-
if (
|
|
520998
|
+
const fs62 = await import("node:fs");
|
|
520999
|
+
if (fs62.existsSync(dbPath)) {
|
|
520997
521000
|
const { CodebaseDatabase: CodebaseDatabase2 } = await Promise.resolve().then(() => (init_codebaseDatabase(), codebaseDatabase_exports));
|
|
520998
521001
|
const db = new CodebaseDatabase2(projectRoot2);
|
|
520999
521002
|
await db.initialize();
|
|
@@ -537250,307 +537253,223 @@ var init_sessionInitializer = __esm({
|
|
|
537250
537253
|
}
|
|
537251
537254
|
});
|
|
537252
537255
|
|
|
537253
|
-
// dist/
|
|
537254
|
-
|
|
537256
|
+
// dist/utils/ui/diffPreview.js
|
|
537257
|
+
import fs47 from "fs";
|
|
537258
|
+
function readOriginalFile(filePath) {
|
|
537255
537259
|
try {
|
|
537256
|
-
|
|
537257
|
-
|
|
537258
|
-
|
|
537259
|
-
}
|
|
537260
|
-
const { matched, unmatched } = vscodeConnection.getAvailableIDEs();
|
|
537261
|
-
const found = matched.find((ide) => ide.port === port) || unmatched.find((ide) => ide.port === port);
|
|
537262
|
-
return (found == null ? void 0 : found.name) || "IDE";
|
|
537260
|
+
if (!filePath || !fs47.existsSync(filePath))
|
|
537261
|
+
return null;
|
|
537262
|
+
return fs47.readFileSync(filePath, "utf-8");
|
|
537263
537263
|
} catch {
|
|
537264
|
-
return
|
|
537264
|
+
return null;
|
|
537265
537265
|
}
|
|
537266
537266
|
}
|
|
537267
|
-
function
|
|
537268
|
-
if (!
|
|
537269
|
-
return
|
|
537270
|
-
}
|
|
537271
|
-
const editorLines = [];
|
|
537272
|
-
if (editorContext.workspaceFolder) {
|
|
537273
|
-
const ideName = resolveConnectedIdeName();
|
|
537274
|
-
editorLines.push(`\u2514\u2500 ${ideName} Workspace: ${editorContext.workspaceFolder}`);
|
|
537275
|
-
}
|
|
537276
|
-
if (editorContext.activeFile) {
|
|
537277
|
-
editorLines.push(`\u2514\u2500 Active File: ${editorContext.activeFile}`);
|
|
537278
|
-
}
|
|
537279
|
-
if (editorContext.cursorPosition) {
|
|
537280
|
-
editorLines.push(`\u2514\u2500 Cursor: Line ${editorContext.cursorPosition.line + 1}, Column ${editorContext.cursorPosition.character + 1}`);
|
|
537281
|
-
}
|
|
537282
|
-
if (editorContext.selectedText) {
|
|
537283
|
-
editorLines.push(`\u2514\u2500 Selected Code:
|
|
537284
|
-
\`\`\`
|
|
537285
|
-
${editorContext.selectedText}
|
|
537286
|
-
\`\`\``);
|
|
537267
|
+
function computeHashlinePreview(originalContent, operations) {
|
|
537268
|
+
if (!Array.isArray(operations) || operations.length === 0) {
|
|
537269
|
+
return originalContent;
|
|
537287
537270
|
}
|
|
537288
|
-
|
|
537289
|
-
|
|
537271
|
+
const mutableLines = originalContent.split("\n");
|
|
537272
|
+
const parsed = operations.map((op2) => {
|
|
537273
|
+
const startMatch = String(op2.startAnchor ?? "").match(/^(\d+):/);
|
|
537274
|
+
const endMatch = String(op2.endAnchor ?? "").match(/^(\d+):/);
|
|
537275
|
+
return {
|
|
537276
|
+
type: op2.type,
|
|
537277
|
+
content: op2.content ?? "",
|
|
537278
|
+
startLine: startMatch ? parseInt(startMatch[1], 10) : 0,
|
|
537279
|
+
endLine: endMatch ? parseInt(endMatch[1], 10) : 0
|
|
537280
|
+
};
|
|
537281
|
+
}).filter((op2) => op2.startLine > 0 && op2.endLine > 0).sort((a, b) => b.startLine - a.startLine);
|
|
537282
|
+
for (const op2 of parsed) {
|
|
537283
|
+
const newLines = op2.content.split("\n");
|
|
537284
|
+
switch (op2.type) {
|
|
537285
|
+
case "replace":
|
|
537286
|
+
mutableLines.splice(op2.startLine - 1, op2.endLine - op2.startLine + 1, ...newLines);
|
|
537287
|
+
break;
|
|
537288
|
+
case "insert_after":
|
|
537289
|
+
mutableLines.splice(op2.startLine, 0, ...newLines);
|
|
537290
|
+
break;
|
|
537291
|
+
case "delete":
|
|
537292
|
+
mutableLines.splice(op2.startLine - 1, op2.endLine - op2.startLine + 1);
|
|
537293
|
+
break;
|
|
537294
|
+
}
|
|
537290
537295
|
}
|
|
537291
|
-
return
|
|
537296
|
+
return mutableLines.join("\n");
|
|
537292
537297
|
}
|
|
537293
|
-
|
|
537294
|
-
|
|
537295
|
-
|
|
537296
|
-
|
|
537298
|
+
function computeReplaceEditPreview(originalContent, searchContent, replaceContent) {
|
|
537299
|
+
const idx = originalContent.indexOf(searchContent);
|
|
537300
|
+
if (idx !== -1) {
|
|
537301
|
+
return originalContent.substring(0, idx) + replaceContent + originalContent.substring(idx + searchContent.length);
|
|
537297
537302
|
}
|
|
537298
|
-
|
|
537299
|
-
|
|
537300
|
-
|
|
537301
|
-
|
|
537302
|
-
|
|
537303
|
-
|
|
537304
|
-
if (
|
|
537305
|
-
|
|
537303
|
+
return originalContent;
|
|
537304
|
+
}
|
|
537305
|
+
function collectDiffPreviewEntries(toolName, toolArgs) {
|
|
537306
|
+
const entries = [];
|
|
537307
|
+
try {
|
|
537308
|
+
const parsed = JSON.parse(toolArgs);
|
|
537309
|
+
if (typeof parsed.filePath === "string" && parsed.filePath.trimStart().startsWith("[")) {
|
|
537310
|
+
try {
|
|
537311
|
+
parsed.filePath = JSON.parse(parsed.filePath);
|
|
537312
|
+
} catch {
|
|
537313
|
+
}
|
|
537306
537314
|
}
|
|
537307
|
-
|
|
537308
|
-
|
|
537309
|
-
|
|
537310
|
-
|
|
537311
|
-
|
|
537312
|
-
|
|
537315
|
+
if (toolName === "filesystem-edit" && parsed.filePath) {
|
|
537316
|
+
if (typeof parsed.filePath === "string") {
|
|
537317
|
+
const originalContent = readOriginalFile(parsed.filePath);
|
|
537318
|
+
if (originalContent !== null) {
|
|
537319
|
+
const newContent = computeHashlinePreview(originalContent, parsed.operations);
|
|
537320
|
+
entries.push({
|
|
537321
|
+
filePath: parsed.filePath,
|
|
537322
|
+
oldContent: originalContent,
|
|
537323
|
+
newContent
|
|
537324
|
+
});
|
|
537325
|
+
}
|
|
537326
|
+
} else if (Array.isArray(parsed.filePath)) {
|
|
537327
|
+
for (const item of parsed.filePath) {
|
|
537328
|
+
if (item && typeof item === "object" && typeof item.path === "string") {
|
|
537329
|
+
const originalContent = readOriginalFile(item.path);
|
|
537330
|
+
if (originalContent !== null) {
|
|
537331
|
+
const newContent = computeHashlinePreview(originalContent, item.operations);
|
|
537332
|
+
entries.push({
|
|
537333
|
+
filePath: item.path,
|
|
537334
|
+
oldContent: originalContent,
|
|
537335
|
+
newContent
|
|
537336
|
+
});
|
|
537337
|
+
}
|
|
537338
|
+
}
|
|
537339
|
+
}
|
|
537313
537340
|
}
|
|
537314
537341
|
}
|
|
537315
|
-
|
|
537316
|
-
|
|
537317
|
-
|
|
537318
|
-
|
|
537319
|
-
|
|
537320
|
-
|
|
537321
|
-
|
|
537322
|
-
|
|
537323
|
-
|
|
537324
|
-
|
|
537342
|
+
if (toolName === "filesystem-replaceedit" && parsed.filePath) {
|
|
537343
|
+
if (typeof parsed.filePath === "string") {
|
|
537344
|
+
const originalContent = readOriginalFile(parsed.filePath);
|
|
537345
|
+
if (originalContent !== null) {
|
|
537346
|
+
const newContent = parsed.searchContent && parsed.replaceContent !== void 0 ? computeReplaceEditPreview(originalContent, parsed.searchContent, parsed.replaceContent) : originalContent;
|
|
537347
|
+
entries.push({
|
|
537348
|
+
filePath: parsed.filePath,
|
|
537349
|
+
oldContent: originalContent,
|
|
537350
|
+
newContent
|
|
537351
|
+
});
|
|
537352
|
+
}
|
|
537353
|
+
} else if (Array.isArray(parsed.filePath)) {
|
|
537354
|
+
for (const item of parsed.filePath) {
|
|
537355
|
+
if (typeof item === "string") {
|
|
537356
|
+
const originalContent = readOriginalFile(item);
|
|
537357
|
+
if (originalContent !== null) {
|
|
537358
|
+
const newContent = parsed.searchContent && parsed.replaceContent !== void 0 ? computeReplaceEditPreview(originalContent, parsed.searchContent, parsed.replaceContent) : originalContent;
|
|
537359
|
+
entries.push({
|
|
537360
|
+
filePath: item,
|
|
537361
|
+
oldContent: originalContent,
|
|
537362
|
+
newContent
|
|
537363
|
+
});
|
|
537364
|
+
}
|
|
537365
|
+
} else if (item && typeof item === "object" && typeof item.path === "string") {
|
|
537366
|
+
const originalContent = readOriginalFile(item.path);
|
|
537367
|
+
if (originalContent !== null) {
|
|
537368
|
+
const search = item.searchContent ?? parsed.searchContent;
|
|
537369
|
+
const replace = item.replaceContent ?? parsed.replaceContent;
|
|
537370
|
+
const newContent = search && replace !== void 0 ? computeReplaceEditPreview(originalContent, search, replace) : originalContent;
|
|
537371
|
+
entries.push({
|
|
537372
|
+
filePath: item.path,
|
|
537373
|
+
oldContent: originalContent,
|
|
537374
|
+
newContent
|
|
537375
|
+
});
|
|
537376
|
+
}
|
|
537377
|
+
}
|
|
537378
|
+
}
|
|
537325
537379
|
}
|
|
537326
537380
|
}
|
|
537327
|
-
if (
|
|
537328
|
-
if (
|
|
537329
|
-
|
|
537381
|
+
if (toolName === "filesystem-create" && parsed.filePath) {
|
|
537382
|
+
if (typeof parsed.filePath === "string" && parsed.content) {
|
|
537383
|
+
const originalContent = readOriginalFile(parsed.filePath) ?? "";
|
|
537384
|
+
entries.push({
|
|
537385
|
+
filePath: parsed.filePath,
|
|
537386
|
+
oldContent: originalContent,
|
|
537387
|
+
newContent: parsed.content
|
|
537388
|
+
});
|
|
537389
|
+
} else if (Array.isArray(parsed.filePath)) {
|
|
537390
|
+
for (const item of parsed.filePath) {
|
|
537391
|
+
if (item && typeof item === "object" && typeof item.path === "string" && typeof item.content === "string") {
|
|
537392
|
+
const originalContent = readOriginalFile(item.path) ?? "";
|
|
537393
|
+
entries.push({
|
|
537394
|
+
filePath: item.path,
|
|
537395
|
+
oldContent: originalContent,
|
|
537396
|
+
newContent: item.content
|
|
537397
|
+
});
|
|
537398
|
+
}
|
|
537399
|
+
}
|
|
537330
537400
|
}
|
|
537331
537401
|
}
|
|
537402
|
+
} catch {
|
|
537332
537403
|
}
|
|
537333
|
-
|
|
537334
|
-
messages.splice(idx, 1);
|
|
537335
|
-
}
|
|
537336
|
-
if (indicesToRemove.length > 0) {
|
|
537337
|
-
}
|
|
537404
|
+
return entries;
|
|
537338
537405
|
}
|
|
537339
|
-
|
|
537340
|
-
"
|
|
537341
|
-
|
|
537406
|
+
function enrichPendingEditArgs(toolName, toolArgs) {
|
|
537407
|
+
if (toolName !== "filesystem-edit" && toolName !== "filesystem-replaceedit" && toolName !== "filesystem-create") {
|
|
537408
|
+
return toolArgs;
|
|
537342
537409
|
}
|
|
537343
|
-
|
|
537344
|
-
|
|
537345
|
-
|
|
537346
|
-
|
|
537347
|
-
|
|
537348
|
-
|
|
537349
|
-
return null;
|
|
537410
|
+
const rawFilePath = toolArgs["filePath"];
|
|
537411
|
+
if (typeof rawFilePath === "string" && rawFilePath.trimStart().startsWith("[")) {
|
|
537412
|
+
try {
|
|
537413
|
+
toolArgs = { ...toolArgs, filePath: JSON.parse(rawFilePath) };
|
|
537414
|
+
} catch {
|
|
537415
|
+
}
|
|
537350
537416
|
}
|
|
537351
|
-
|
|
537352
|
-
|
|
537417
|
+
const isBatch = toolArgs["isBatch"] || Array.isArray(toolArgs["filePath"]);
|
|
537418
|
+
if (!isBatch) {
|
|
537419
|
+
const entries2 = collectDiffPreviewEntries(toolName, JSON.stringify(toolArgs));
|
|
537420
|
+
if (entries2.length === 1) {
|
|
537421
|
+
const entry = entries2[0];
|
|
537422
|
+
if (toolName === "filesystem-create") {
|
|
537423
|
+
return {
|
|
537424
|
+
...toolArgs,
|
|
537425
|
+
content: entry.newContent,
|
|
537426
|
+
path: entry.filePath
|
|
537427
|
+
};
|
|
537428
|
+
}
|
|
537429
|
+
return {
|
|
537430
|
+
...toolArgs,
|
|
537431
|
+
oldContent: entry.oldContent,
|
|
537432
|
+
newContent: entry.newContent,
|
|
537433
|
+
filename: entry.filePath
|
|
537434
|
+
};
|
|
537435
|
+
}
|
|
537436
|
+
return toolArgs;
|
|
537353
537437
|
}
|
|
537354
|
-
|
|
537355
|
-
|
|
537356
|
-
|
|
537357
|
-
function normalizeImageData(image2) {
|
|
537358
|
-
var _a20, _b14;
|
|
537359
|
-
const data = ((_a20 = image2.data) == null ? void 0 : _a20.trim()) || "";
|
|
537360
|
-
if (!data || /^https?:\/\//i.test(data) || /^data:/i.test(data)) {
|
|
537361
|
-
return image2;
|
|
537438
|
+
const entries = collectDiffPreviewEntries(toolName, JSON.stringify(toolArgs));
|
|
537439
|
+
if (entries.length === 0) {
|
|
537440
|
+
return toolArgs;
|
|
537362
537441
|
}
|
|
537363
|
-
|
|
537364
|
-
|
|
537365
|
-
|
|
537366
|
-
|
|
537367
|
-
|
|
537368
|
-
|
|
537369
|
-
|
|
537370
|
-
|
|
537371
|
-
|
|
537372
|
-
|
|
537373
|
-
|
|
537374
|
-
return null;
|
|
537442
|
+
if (toolName === "filesystem-create") {
|
|
537443
|
+
const batchResults2 = entries.map((entry) => ({
|
|
537444
|
+
success: true,
|
|
537445
|
+
path: entry.filePath,
|
|
537446
|
+
content: entry.newContent
|
|
537447
|
+
}));
|
|
537448
|
+
return {
|
|
537449
|
+
...toolArgs,
|
|
537450
|
+
isBatch: true,
|
|
537451
|
+
batchResults: batchResults2
|
|
537452
|
+
};
|
|
537375
537453
|
}
|
|
537454
|
+
const batchResults = entries.map((entry) => ({
|
|
537455
|
+
success: true,
|
|
537456
|
+
path: entry.filePath,
|
|
537457
|
+
oldContent: entry.oldContent,
|
|
537458
|
+
newContent: entry.newContent
|
|
537459
|
+
}));
|
|
537376
537460
|
return {
|
|
537377
|
-
|
|
537378
|
-
|
|
537379
|
-
|
|
537380
|
-
requestMethod: config3.visionRequestMethod || config3.requestMethod,
|
|
537381
|
-
advancedModel: visionModel,
|
|
537382
|
-
basicModel: visionModel,
|
|
537383
|
-
supportsVision: true
|
|
537461
|
+
...toolArgs,
|
|
537462
|
+
isBatch: true,
|
|
537463
|
+
batchResults
|
|
537384
537464
|
};
|
|
537385
537465
|
}
|
|
537386
|
-
|
|
537387
|
-
|
|
537388
|
-
}
|
|
537389
|
-
function buildDescriptionPrompt(imageCount, source2, sourceContext) {
|
|
537390
|
-
const sourceLabel = source2 === "tool" ? "tool result" : "user message";
|
|
537391
|
-
const contextBlock = sourceContext ? `
|
|
537392
|
-
|
|
537393
|
-
Source message content from the same ${sourceLabel} (use it to understand what the requester cares about in the image, such as alignment, highlighted areas, errors, comparison targets, or UI details):
|
|
537394
|
-
<source_message>
|
|
537395
|
-
${sourceContext}
|
|
537396
|
-
</source_message>` : "";
|
|
537397
|
-
return `The attached ${imageCount === 1 ? "image is" : "images are"} from a ${sourceLabel}. Describe each image accurately and concisely for another AI model that cannot see images.${contextBlock}
|
|
537398
|
-
|
|
537399
|
-
Requirements:
|
|
537400
|
-
1. If there are multiple images, number them as Image 1, Image 2, etc.
|
|
537401
|
-
2. Include visible text, UI elements, diagrams, charts, code, errors, layout, objects, and any relevant details.
|
|
537402
|
-
3. Use the source message content to prioritize details that answer what the requester is asking about, but do not treat it as visual evidence by itself.
|
|
537403
|
-
4. Do not invent details that are not visible.
|
|
537404
|
-
5. Respond with plain text only.`;
|
|
537405
|
-
}
|
|
537406
|
-
function appendVisionText(content, addition) {
|
|
537407
|
-
const trimmedContent = (content == null ? void 0 : content.trimEnd()) || "";
|
|
537408
|
-
const trimmedAddition = addition.trim();
|
|
537409
|
-
if (!trimmedContent) {
|
|
537410
|
-
return trimmedAddition;
|
|
537411
|
-
}
|
|
537412
|
-
return `${trimmedContent}
|
|
537413
|
-
|
|
537414
|
-
${trimmedAddition}`;
|
|
537415
|
-
}
|
|
537416
|
-
var IMAGE_UNAVAILABLE_NOTICE, VISION_CONTEXT_MAX_CHARS, VisionAgent, visionAgent;
|
|
537417
|
-
var init_visionAgent = __esm({
|
|
537418
|
-
"dist/agents/visionAgent.js"() {
|
|
537466
|
+
var init_diffPreview = __esm({
|
|
537467
|
+
"dist/utils/ui/diffPreview.js"() {
|
|
537419
537468
|
"use strict";
|
|
537420
|
-
init_apiConfig();
|
|
537421
|
-
init_logger();
|
|
537422
|
-
init_chat();
|
|
537423
|
-
init_responses();
|
|
537424
|
-
init_gemini();
|
|
537425
|
-
init_anthropic();
|
|
537426
|
-
IMAGE_UNAVAILABLE_NOTICE = "Visual processing hint: The current main model does not support image recognition, and the image field in this message has been removed by the system; due to the lack of a configured available visual model or failure in the visual model call, the image content cannot be provided. Please do not claim that you have seen these images.";
|
|
537427
|
-
VISION_CONTEXT_MAX_CHARS = 4e3;
|
|
537428
|
-
VisionAgent = class {
|
|
537429
|
-
shouldProcessImages(config3 = getSnowConfig()) {
|
|
537430
|
-
return config3.supportsVision === false;
|
|
537431
|
-
}
|
|
537432
|
-
async callModel(messages, config3, configOverride, abortSignal) {
|
|
537433
|
-
var _a20, _b14;
|
|
537434
|
-
const requestMethod = getConfiguredRequestMethod(config3);
|
|
537435
|
-
const modelName = configOverride.advancedModel || config3.visionModel || "";
|
|
537436
|
-
let streamGenerator;
|
|
537437
|
-
switch (requestMethod) {
|
|
537438
|
-
case "anthropic":
|
|
537439
|
-
streamGenerator = createStreamingAnthropicCompletion({
|
|
537440
|
-
model: modelName,
|
|
537441
|
-
messages,
|
|
537442
|
-
max_tokens: 1200,
|
|
537443
|
-
includeBuiltinSystemPrompt: false,
|
|
537444
|
-
disableThinking: true,
|
|
537445
|
-
configOverride
|
|
537446
|
-
}, abortSignal);
|
|
537447
|
-
break;
|
|
537448
|
-
case "gemini":
|
|
537449
|
-
streamGenerator = createStreamingGeminiCompletion({
|
|
537450
|
-
model: modelName,
|
|
537451
|
-
messages,
|
|
537452
|
-
includeBuiltinSystemPrompt: false,
|
|
537453
|
-
disableThinking: true,
|
|
537454
|
-
configOverride
|
|
537455
|
-
}, abortSignal);
|
|
537456
|
-
break;
|
|
537457
|
-
case "responses":
|
|
537458
|
-
streamGenerator = createStreamingResponse({
|
|
537459
|
-
model: modelName,
|
|
537460
|
-
messages,
|
|
537461
|
-
stream: true,
|
|
537462
|
-
includeBuiltinSystemPrompt: false,
|
|
537463
|
-
disableThinking: true,
|
|
537464
|
-
configOverride
|
|
537465
|
-
}, abortSignal);
|
|
537466
|
-
break;
|
|
537467
|
-
case "chat":
|
|
537468
|
-
default:
|
|
537469
|
-
streamGenerator = createStreamingChatCompletion({
|
|
537470
|
-
model: modelName,
|
|
537471
|
-
messages,
|
|
537472
|
-
stream: true,
|
|
537473
|
-
includeBuiltinSystemPrompt: false,
|
|
537474
|
-
disableThinking: true,
|
|
537475
|
-
configOverride
|
|
537476
|
-
}, abortSignal);
|
|
537477
|
-
break;
|
|
537478
|
-
}
|
|
537479
|
-
let completeContent = "";
|
|
537480
|
-
for await (const chunk2 of streamGenerator) {
|
|
537481
|
-
if (abortSignal == null ? void 0 : abortSignal.aborted) {
|
|
537482
|
-
throw new Error("Request aborted");
|
|
537483
|
-
}
|
|
537484
|
-
if (requestMethod === "chat") {
|
|
537485
|
-
if (chunk2.choices && ((_b14 = (_a20 = chunk2.choices[0]) == null ? void 0 : _a20.delta) == null ? void 0 : _b14.content)) {
|
|
537486
|
-
completeContent += chunk2.choices[0].delta.content;
|
|
537487
|
-
}
|
|
537488
|
-
} else if (chunk2.type === "content" && chunk2.content) {
|
|
537489
|
-
completeContent += chunk2.content;
|
|
537490
|
-
}
|
|
537491
|
-
}
|
|
537492
|
-
return completeContent.trim();
|
|
537493
|
-
}
|
|
537494
|
-
async describeImages(images, source2, sourceContent, abortSignal) {
|
|
537495
|
-
const config3 = getSnowConfig();
|
|
537496
|
-
const configOverride = buildVisionConfigOverride(config3);
|
|
537497
|
-
if (!configOverride) {
|
|
537498
|
-
return null;
|
|
537499
|
-
}
|
|
537500
|
-
const normalizedImages = images.map(normalizeImageData);
|
|
537501
|
-
const sourceContext = buildSourceContext(sourceContent || "");
|
|
537502
|
-
const messages = [
|
|
537503
|
-
{
|
|
537504
|
-
role: "user",
|
|
537505
|
-
content: buildDescriptionPrompt(normalizedImages.length, source2, sourceContext),
|
|
537506
|
-
images: normalizedImages
|
|
537507
|
-
}
|
|
537508
|
-
];
|
|
537509
|
-
try {
|
|
537510
|
-
const description = await this.callModel(messages, config3, configOverride, abortSignal);
|
|
537511
|
-
return description || null;
|
|
537512
|
-
} catch (error42) {
|
|
537513
|
-
logger.warn("Vision agent: failed to describe images", error42);
|
|
537514
|
-
return null;
|
|
537515
|
-
}
|
|
537516
|
-
}
|
|
537517
|
-
async prepareContentForNonVisionModel(content, images, options3) {
|
|
537518
|
-
if (!images || images.length === 0) {
|
|
537519
|
-
return { content, images };
|
|
537520
|
-
}
|
|
537521
|
-
const config3 = getSnowConfig();
|
|
537522
|
-
if (!this.shouldProcessImages(config3)) {
|
|
537523
|
-
return { content, images };
|
|
537524
|
-
}
|
|
537525
|
-
const description = await this.describeImages(images, options3.source, content, options3.abortSignal);
|
|
537526
|
-
const replacementText = description ? `The current model does not support image recognition. The visual model has generated the following description for the image field\uFF1A
|
|
537527
|
-
${description}` : IMAGE_UNAVAILABLE_NOTICE;
|
|
537528
|
-
return {
|
|
537529
|
-
content: appendVisionText(content, replacementText),
|
|
537530
|
-
images: void 0
|
|
537531
|
-
};
|
|
537532
|
-
}
|
|
537533
|
-
async prepareToolResultForNonVisionModel(result2, abortSignal) {
|
|
537534
|
-
if (!result2.images || result2.images.length === 0) {
|
|
537535
|
-
return result2;
|
|
537536
|
-
}
|
|
537537
|
-
const processed = await this.prepareContentForNonVisionModel(result2.content, result2.images, { source: "tool", abortSignal });
|
|
537538
|
-
return {
|
|
537539
|
-
...result2,
|
|
537540
|
-
content: processed.content,
|
|
537541
|
-
images: processed.images
|
|
537542
|
-
};
|
|
537543
|
-
}
|
|
537544
|
-
};
|
|
537545
|
-
visionAgent = new VisionAgent();
|
|
537546
537469
|
}
|
|
537547
537470
|
});
|
|
537548
537471
|
|
|
537549
537472
|
// dist/utils/session/sessionConverter.js
|
|
537550
|
-
var sessionConverter_exports = {};
|
|
537551
|
-
__export(sessionConverter_exports, {
|
|
537552
|
-
convertSessionMessagesToUI: () => convertSessionMessagesToUI
|
|
537553
|
-
});
|
|
537554
537473
|
function cleanThinkingContent3(content) {
|
|
537555
537474
|
return content.replace(/\s*<\/?think(?:ing)?>\s*/gi, "").trim();
|
|
537556
537475
|
}
|
|
@@ -537625,7 +537544,7 @@ function convertSessionMessagesToUI(sessionMessages) {
|
|
|
537625
537544
|
streaming: false,
|
|
537626
537545
|
toolCall: {
|
|
537627
537546
|
name: toolCall.function.name,
|
|
537628
|
-
arguments: toolArgs
|
|
537547
|
+
arguments: enrichPendingEditArgs(toolCall.function.name, toolArgs)
|
|
537629
537548
|
},
|
|
537630
537549
|
toolCallId: toolCall.id,
|
|
537631
537550
|
toolPending: false,
|
|
@@ -537793,13 +537712,14 @@ function convertSessionMessagesToUI(sessionMessages) {
|
|
|
537793
537712
|
}
|
|
537794
537713
|
const needTwoSteps = isToolNeedTwoStepDisplay(toolCall.function.name);
|
|
537795
537714
|
if (needTwoSteps) {
|
|
537715
|
+
const enrichedArgs = enrichPendingEditArgs(toolCall.function.name, toolArgs);
|
|
537796
537716
|
uiMessages.push({
|
|
537797
537717
|
role: "assistant",
|
|
537798
537718
|
content: `\u26A1 ${toolDisplay.toolName}`,
|
|
537799
537719
|
streaming: false,
|
|
537800
537720
|
toolCall: {
|
|
537801
537721
|
name: toolCall.function.name,
|
|
537802
|
-
arguments:
|
|
537722
|
+
arguments: enrichedArgs
|
|
537803
537723
|
},
|
|
537804
537724
|
toolDisplay,
|
|
537805
537725
|
messageStatus: "pending"
|
|
@@ -537978,6 +537898,314 @@ var init_sessionConverter = __esm({
|
|
|
537978
537898
|
"use strict";
|
|
537979
537899
|
init_messageFormatter();
|
|
537980
537900
|
init_toolDisplayConfig();
|
|
537901
|
+
init_diffPreview();
|
|
537902
|
+
}
|
|
537903
|
+
});
|
|
537904
|
+
|
|
537905
|
+
// dist/hooks/conversation/core/snapshotMessageIndex.js
|
|
537906
|
+
function getPostAppendSnapshotMessageIndex(sessionMessages) {
|
|
537907
|
+
return convertSessionMessagesToUI(sessionMessages).length;
|
|
537908
|
+
}
|
|
537909
|
+
var init_snapshotMessageIndex = __esm({
|
|
537910
|
+
"dist/hooks/conversation/core/snapshotMessageIndex.js"() {
|
|
537911
|
+
"use strict";
|
|
537912
|
+
init_sessionConverter();
|
|
537913
|
+
}
|
|
537914
|
+
});
|
|
537915
|
+
|
|
537916
|
+
// dist/hooks/conversation/core/editorContextBuilder.js
|
|
537917
|
+
function resolveConnectedIdeName() {
|
|
537918
|
+
try {
|
|
537919
|
+
const port = vscodeConnection.getPort();
|
|
537920
|
+
if (!port) {
|
|
537921
|
+
return "IDE";
|
|
537922
|
+
}
|
|
537923
|
+
const { matched, unmatched } = vscodeConnection.getAvailableIDEs();
|
|
537924
|
+
const found = matched.find((ide) => ide.port === port) || unmatched.find((ide) => ide.port === port);
|
|
537925
|
+
return (found == null ? void 0 : found.name) || "IDE";
|
|
537926
|
+
} catch {
|
|
537927
|
+
return "IDE";
|
|
537928
|
+
}
|
|
537929
|
+
}
|
|
537930
|
+
function buildEditorContextContent(editorContext, userContent) {
|
|
537931
|
+
if (!editorContext) {
|
|
537932
|
+
return userContent;
|
|
537933
|
+
}
|
|
537934
|
+
const editorLines = [];
|
|
537935
|
+
if (editorContext.workspaceFolder) {
|
|
537936
|
+
const ideName = resolveConnectedIdeName();
|
|
537937
|
+
editorLines.push(`\u2514\u2500 ${ideName} Workspace: ${editorContext.workspaceFolder}`);
|
|
537938
|
+
}
|
|
537939
|
+
if (editorContext.activeFile) {
|
|
537940
|
+
editorLines.push(`\u2514\u2500 Active File: ${editorContext.activeFile}`);
|
|
537941
|
+
}
|
|
537942
|
+
if (editorContext.cursorPosition) {
|
|
537943
|
+
editorLines.push(`\u2514\u2500 Cursor: Line ${editorContext.cursorPosition.line + 1}, Column ${editorContext.cursorPosition.character + 1}`);
|
|
537944
|
+
}
|
|
537945
|
+
if (editorContext.selectedText) {
|
|
537946
|
+
editorLines.push(`\u2514\u2500 Selected Code:
|
|
537947
|
+
\`\`\`
|
|
537948
|
+
${editorContext.selectedText}
|
|
537949
|
+
\`\`\``);
|
|
537950
|
+
}
|
|
537951
|
+
if (editorLines.length > 0) {
|
|
537952
|
+
return editorLines.join("\n") + "\n\n" + userContent;
|
|
537953
|
+
}
|
|
537954
|
+
return userContent;
|
|
537955
|
+
}
|
|
537956
|
+
var init_editorContextBuilder = __esm({
|
|
537957
|
+
"dist/hooks/conversation/core/editorContextBuilder.js"() {
|
|
537958
|
+
"use strict";
|
|
537959
|
+
init_vscodeConnection();
|
|
537960
|
+
}
|
|
537961
|
+
});
|
|
537962
|
+
|
|
537963
|
+
// dist/hooks/conversation/utils/messageCleanup.js
|
|
537964
|
+
function cleanOrphanedToolCalls2(messages) {
|
|
537965
|
+
const toolResultIds = /* @__PURE__ */ new Set();
|
|
537966
|
+
for (const msg of messages) {
|
|
537967
|
+
if (msg.role === "tool" && msg.tool_call_id) {
|
|
537968
|
+
toolResultIds.add(msg.tool_call_id);
|
|
537969
|
+
}
|
|
537970
|
+
}
|
|
537971
|
+
const declaredToolCallIds = /* @__PURE__ */ new Set();
|
|
537972
|
+
for (const msg of messages) {
|
|
537973
|
+
if (msg.role === "assistant" && msg.tool_calls) {
|
|
537974
|
+
for (const tc of msg.tool_calls) {
|
|
537975
|
+
declaredToolCallIds.add(tc.id);
|
|
537976
|
+
}
|
|
537977
|
+
}
|
|
537978
|
+
}
|
|
537979
|
+
const indicesToRemove = [];
|
|
537980
|
+
for (let i = messages.length - 1; i >= 0; i--) {
|
|
537981
|
+
const msg = messages[i];
|
|
537982
|
+
if (!msg)
|
|
537983
|
+
continue;
|
|
537984
|
+
if (msg.role === "assistant" && msg.tool_calls) {
|
|
537985
|
+
const hasAllResults = msg.tool_calls.every((tc) => toolResultIds.has(tc.id));
|
|
537986
|
+
if (!hasAllResults) {
|
|
537987
|
+
indicesToRemove.push(i);
|
|
537988
|
+
}
|
|
537989
|
+
}
|
|
537990
|
+
if (msg.role === "tool" && msg.tool_call_id) {
|
|
537991
|
+
if (!declaredToolCallIds.has(msg.tool_call_id)) {
|
|
537992
|
+
indicesToRemove.push(i);
|
|
537993
|
+
}
|
|
537994
|
+
}
|
|
537995
|
+
}
|
|
537996
|
+
for (const idx of indicesToRemove) {
|
|
537997
|
+
messages.splice(idx, 1);
|
|
537998
|
+
}
|
|
537999
|
+
if (indicesToRemove.length > 0) {
|
|
538000
|
+
}
|
|
538001
|
+
}
|
|
538002
|
+
var init_messageCleanup = __esm({
|
|
538003
|
+
"dist/hooks/conversation/utils/messageCleanup.js"() {
|
|
538004
|
+
"use strict";
|
|
538005
|
+
}
|
|
538006
|
+
});
|
|
538007
|
+
|
|
538008
|
+
// dist/agents/visionAgent.js
|
|
538009
|
+
function buildSourceContext(content) {
|
|
538010
|
+
const trimmedContent = (content == null ? void 0 : content.trim()) || "";
|
|
538011
|
+
if (!trimmedContent) {
|
|
538012
|
+
return null;
|
|
538013
|
+
}
|
|
538014
|
+
if (trimmedContent.length <= VISION_CONTEXT_MAX_CHARS) {
|
|
538015
|
+
return trimmedContent;
|
|
538016
|
+
}
|
|
538017
|
+
return `${trimmedContent.slice(0, VISION_CONTEXT_MAX_CHARS)}
|
|
538018
|
+
...[truncated]`;
|
|
538019
|
+
}
|
|
538020
|
+
function normalizeImageData(image2) {
|
|
538021
|
+
var _a20, _b14;
|
|
538022
|
+
const data = ((_a20 = image2.data) == null ? void 0 : _a20.trim()) || "";
|
|
538023
|
+
if (!data || /^https?:\/\//i.test(data) || /^data:/i.test(data)) {
|
|
538024
|
+
return image2;
|
|
538025
|
+
}
|
|
538026
|
+
const mimeType = ((_b14 = image2.mimeType) == null ? void 0 : _b14.trim()) || "image/png";
|
|
538027
|
+
return {
|
|
538028
|
+
...image2,
|
|
538029
|
+
data: `data:${mimeType};base64,${data}`,
|
|
538030
|
+
mimeType
|
|
538031
|
+
};
|
|
538032
|
+
}
|
|
538033
|
+
function buildVisionConfigOverride(config3) {
|
|
538034
|
+
var _a20, _b14, _c6;
|
|
538035
|
+
const visionModel = (_a20 = config3.visionModel) == null ? void 0 : _a20.trim();
|
|
538036
|
+
if (!visionModel) {
|
|
538037
|
+
return null;
|
|
538038
|
+
}
|
|
538039
|
+
return {
|
|
538040
|
+
baseUrl: ((_b14 = config3.visionBaseUrl) == null ? void 0 : _b14.trim()) || config3.baseUrl,
|
|
538041
|
+
baseUrlMode: config3.visionBaseUrlMode || config3.baseUrlMode,
|
|
538042
|
+
apiKey: ((_c6 = config3.visionApiKey) == null ? void 0 : _c6.trim()) || config3.apiKey,
|
|
538043
|
+
requestMethod: config3.visionRequestMethod || config3.requestMethod,
|
|
538044
|
+
advancedModel: visionModel,
|
|
538045
|
+
basicModel: visionModel,
|
|
538046
|
+
supportsVision: true
|
|
538047
|
+
};
|
|
538048
|
+
}
|
|
538049
|
+
function getConfiguredRequestMethod(config3) {
|
|
538050
|
+
return config3.visionRequestMethod || config3.requestMethod;
|
|
538051
|
+
}
|
|
538052
|
+
function buildDescriptionPrompt(imageCount, source2, sourceContext) {
|
|
538053
|
+
const sourceLabel = source2 === "tool" ? "tool result" : "user message";
|
|
538054
|
+
const contextBlock = sourceContext ? `
|
|
538055
|
+
|
|
538056
|
+
Source message content from the same ${sourceLabel} (use it to understand what the requester cares about in the image, such as alignment, highlighted areas, errors, comparison targets, or UI details):
|
|
538057
|
+
<source_message>
|
|
538058
|
+
${sourceContext}
|
|
538059
|
+
</source_message>` : "";
|
|
538060
|
+
return `The attached ${imageCount === 1 ? "image is" : "images are"} from a ${sourceLabel}. Describe each image accurately and concisely for another AI model that cannot see images.${contextBlock}
|
|
538061
|
+
|
|
538062
|
+
Requirements:
|
|
538063
|
+
1. If there are multiple images, number them as Image 1, Image 2, etc.
|
|
538064
|
+
2. Include visible text, UI elements, diagrams, charts, code, errors, layout, objects, and any relevant details.
|
|
538065
|
+
3. Use the source message content to prioritize details that answer what the requester is asking about, but do not treat it as visual evidence by itself.
|
|
538066
|
+
4. Do not invent details that are not visible.
|
|
538067
|
+
5. Respond with plain text only.`;
|
|
538068
|
+
}
|
|
538069
|
+
function appendVisionText(content, addition) {
|
|
538070
|
+
const trimmedContent = (content == null ? void 0 : content.trimEnd()) || "";
|
|
538071
|
+
const trimmedAddition = addition.trim();
|
|
538072
|
+
if (!trimmedContent) {
|
|
538073
|
+
return trimmedAddition;
|
|
538074
|
+
}
|
|
538075
|
+
return `${trimmedContent}
|
|
538076
|
+
|
|
538077
|
+
${trimmedAddition}`;
|
|
538078
|
+
}
|
|
538079
|
+
var IMAGE_UNAVAILABLE_NOTICE, VISION_CONTEXT_MAX_CHARS, VisionAgent, visionAgent;
|
|
538080
|
+
var init_visionAgent = __esm({
|
|
538081
|
+
"dist/agents/visionAgent.js"() {
|
|
538082
|
+
"use strict";
|
|
538083
|
+
init_apiConfig();
|
|
538084
|
+
init_logger();
|
|
538085
|
+
init_chat();
|
|
538086
|
+
init_responses();
|
|
538087
|
+
init_gemini();
|
|
538088
|
+
init_anthropic();
|
|
538089
|
+
IMAGE_UNAVAILABLE_NOTICE = "Visual processing hint: The current main model does not support image recognition, and the image field in this message has been removed by the system; due to the lack of a configured available visual model or failure in the visual model call, the image content cannot be provided. Please do not claim that you have seen these images.";
|
|
538090
|
+
VISION_CONTEXT_MAX_CHARS = 4e3;
|
|
538091
|
+
VisionAgent = class {
|
|
538092
|
+
shouldProcessImages(config3 = getSnowConfig()) {
|
|
538093
|
+
return config3.supportsVision === false;
|
|
538094
|
+
}
|
|
538095
|
+
async callModel(messages, config3, configOverride, abortSignal) {
|
|
538096
|
+
var _a20, _b14;
|
|
538097
|
+
const requestMethod = getConfiguredRequestMethod(config3);
|
|
538098
|
+
const modelName = configOverride.advancedModel || config3.visionModel || "";
|
|
538099
|
+
let streamGenerator;
|
|
538100
|
+
switch (requestMethod) {
|
|
538101
|
+
case "anthropic":
|
|
538102
|
+
streamGenerator = createStreamingAnthropicCompletion({
|
|
538103
|
+
model: modelName,
|
|
538104
|
+
messages,
|
|
538105
|
+
max_tokens: 1200,
|
|
538106
|
+
includeBuiltinSystemPrompt: false,
|
|
538107
|
+
disableThinking: true,
|
|
538108
|
+
configOverride
|
|
538109
|
+
}, abortSignal);
|
|
538110
|
+
break;
|
|
538111
|
+
case "gemini":
|
|
538112
|
+
streamGenerator = createStreamingGeminiCompletion({
|
|
538113
|
+
model: modelName,
|
|
538114
|
+
messages,
|
|
538115
|
+
includeBuiltinSystemPrompt: false,
|
|
538116
|
+
disableThinking: true,
|
|
538117
|
+
configOverride
|
|
538118
|
+
}, abortSignal);
|
|
538119
|
+
break;
|
|
538120
|
+
case "responses":
|
|
538121
|
+
streamGenerator = createStreamingResponse({
|
|
538122
|
+
model: modelName,
|
|
538123
|
+
messages,
|
|
538124
|
+
stream: true,
|
|
538125
|
+
includeBuiltinSystemPrompt: false,
|
|
538126
|
+
disableThinking: true,
|
|
538127
|
+
configOverride
|
|
538128
|
+
}, abortSignal);
|
|
538129
|
+
break;
|
|
538130
|
+
case "chat":
|
|
538131
|
+
default:
|
|
538132
|
+
streamGenerator = createStreamingChatCompletion({
|
|
538133
|
+
model: modelName,
|
|
538134
|
+
messages,
|
|
538135
|
+
stream: true,
|
|
538136
|
+
includeBuiltinSystemPrompt: false,
|
|
538137
|
+
disableThinking: true,
|
|
538138
|
+
configOverride
|
|
538139
|
+
}, abortSignal);
|
|
538140
|
+
break;
|
|
538141
|
+
}
|
|
538142
|
+
let completeContent = "";
|
|
538143
|
+
for await (const chunk2 of streamGenerator) {
|
|
538144
|
+
if (abortSignal == null ? void 0 : abortSignal.aborted) {
|
|
538145
|
+
throw new Error("Request aborted");
|
|
538146
|
+
}
|
|
538147
|
+
if (requestMethod === "chat") {
|
|
538148
|
+
if (chunk2.choices && ((_b14 = (_a20 = chunk2.choices[0]) == null ? void 0 : _a20.delta) == null ? void 0 : _b14.content)) {
|
|
538149
|
+
completeContent += chunk2.choices[0].delta.content;
|
|
538150
|
+
}
|
|
538151
|
+
} else if (chunk2.type === "content" && chunk2.content) {
|
|
538152
|
+
completeContent += chunk2.content;
|
|
538153
|
+
}
|
|
538154
|
+
}
|
|
538155
|
+
return completeContent.trim();
|
|
538156
|
+
}
|
|
538157
|
+
async describeImages(images, source2, sourceContent, abortSignal) {
|
|
538158
|
+
const config3 = getSnowConfig();
|
|
538159
|
+
const configOverride = buildVisionConfigOverride(config3);
|
|
538160
|
+
if (!configOverride) {
|
|
538161
|
+
return null;
|
|
538162
|
+
}
|
|
538163
|
+
const normalizedImages = images.map(normalizeImageData);
|
|
538164
|
+
const sourceContext = buildSourceContext(sourceContent || "");
|
|
538165
|
+
const messages = [
|
|
538166
|
+
{
|
|
538167
|
+
role: "user",
|
|
538168
|
+
content: buildDescriptionPrompt(normalizedImages.length, source2, sourceContext),
|
|
538169
|
+
images: normalizedImages
|
|
538170
|
+
}
|
|
538171
|
+
];
|
|
538172
|
+
try {
|
|
538173
|
+
const description = await this.callModel(messages, config3, configOverride, abortSignal);
|
|
538174
|
+
return description || null;
|
|
538175
|
+
} catch (error42) {
|
|
538176
|
+
logger.warn("Vision agent: failed to describe images", error42);
|
|
538177
|
+
return null;
|
|
538178
|
+
}
|
|
538179
|
+
}
|
|
538180
|
+
async prepareContentForNonVisionModel(content, images, options3) {
|
|
538181
|
+
if (!images || images.length === 0) {
|
|
538182
|
+
return { content, images };
|
|
538183
|
+
}
|
|
538184
|
+
const config3 = getSnowConfig();
|
|
538185
|
+
if (!this.shouldProcessImages(config3)) {
|
|
538186
|
+
return { content, images };
|
|
538187
|
+
}
|
|
538188
|
+
const description = await this.describeImages(images, options3.source, content, options3.abortSignal);
|
|
538189
|
+
const replacementText = description ? `The current model does not support image recognition. The visual model has generated the following description for the image field\uFF1A
|
|
538190
|
+
${description}` : IMAGE_UNAVAILABLE_NOTICE;
|
|
538191
|
+
return {
|
|
538192
|
+
content: appendVisionText(content, replacementText),
|
|
538193
|
+
images: void 0
|
|
538194
|
+
};
|
|
538195
|
+
}
|
|
538196
|
+
async prepareToolResultForNonVisionModel(result2, abortSignal) {
|
|
538197
|
+
if (!result2.images || result2.images.length === 0) {
|
|
538198
|
+
return result2;
|
|
538199
|
+
}
|
|
538200
|
+
const processed = await this.prepareContentForNonVisionModel(result2.content, result2.images, { source: "tool", abortSignal });
|
|
538201
|
+
return {
|
|
538202
|
+
...result2,
|
|
538203
|
+
content: processed.content,
|
|
538204
|
+
images: processed.images
|
|
538205
|
+
};
|
|
538206
|
+
}
|
|
538207
|
+
};
|
|
538208
|
+
visionAgent = new VisionAgent();
|
|
537981
538209
|
}
|
|
537982
538210
|
});
|
|
537983
538211
|
|
|
@@ -538027,13 +538255,7 @@ async function appendUserMessageAndSyncContext(options3) {
|
|
|
538027
538255
|
const { setConversationContext: setConversationContext2 } = await Promise.resolve().then(() => (init_conversationContext(), conversationContext_exports));
|
|
538028
538256
|
const updatedSession = sessionManager.getCurrentSession();
|
|
538029
538257
|
if (updatedSession) {
|
|
538030
|
-
const
|
|
538031
|
-
const uiMessages = convertSessionMessagesToUI2(updatedSession.messages);
|
|
538032
|
-
const compressedSummaryIndex = uiMessages.findIndex((msg) => {
|
|
538033
|
-
var _a20;
|
|
538034
|
-
return (msg == null ? void 0 : msg.role) === "user" && ((_a20 = msg.content) == null ? void 0 : _a20.trim()) && !msg.subAgentDirected;
|
|
538035
|
-
});
|
|
538036
|
-
const snapshotMessageIndex = updatedSession.compressedFrom != null ? Math.max(0, compressedSummaryIndex) : uiMessages.length;
|
|
538258
|
+
const snapshotMessageIndex = getPostAppendSnapshotMessageIndex(updatedSession.messages);
|
|
538037
538259
|
setConversationContext2(updatedSession.id, snapshotMessageIndex);
|
|
538038
538260
|
}
|
|
538039
538261
|
} catch (error42) {
|
|
@@ -538047,6 +538269,7 @@ var init_conversationSetup = __esm({
|
|
|
538047
538269
|
init_toolSearchService();
|
|
538048
538270
|
init_sessionManager();
|
|
538049
538271
|
init_sessionInitializer();
|
|
538272
|
+
init_snapshotMessageIndex();
|
|
538050
538273
|
init_editorContextBuilder();
|
|
538051
538274
|
init_messageCleanup();
|
|
538052
538275
|
init_visionAgent();
|
|
@@ -543084,15 +543307,15 @@ var init_regex_ByjZg3Zy = __esm({
|
|
|
543084
543307
|
});
|
|
543085
543308
|
|
|
543086
543309
|
// node_modules/@blindfold/sdk/dist/index.mjs
|
|
543087
|
-
import * as
|
|
543310
|
+
import * as fs48 from "fs";
|
|
543088
543311
|
import * as path55 from "path";
|
|
543089
543312
|
function sleep2(ms) {
|
|
543090
543313
|
return new Promise((resolve15) => setTimeout(resolve15, ms));
|
|
543091
543314
|
}
|
|
543092
543315
|
function loadPolicies(policiesFile) {
|
|
543093
|
-
const bundled = JSON.parse(
|
|
543316
|
+
const bundled = JSON.parse(fs48.readFileSync(BUNDLED_POLICIES_PATH, "utf-8"));
|
|
543094
543317
|
if (policiesFile) {
|
|
543095
|
-
const user = JSON.parse(
|
|
543318
|
+
const user = JSON.parse(fs48.readFileSync(policiesFile, "utf-8"));
|
|
543096
543319
|
return {
|
|
543097
543320
|
...bundled,
|
|
543098
543321
|
...user
|
|
@@ -544663,13 +544886,14 @@ async function processToolCallsAfterStream(options3) {
|
|
|
544663
544886
|
toolArgs = {};
|
|
544664
544887
|
}
|
|
544665
544888
|
if (isToolNeedTwoStepDisplay(toolCall.function.name)) {
|
|
544889
|
+
const enrichedArgs = enrichPendingEditArgs(toolCall.function.name, toolArgs);
|
|
544666
544890
|
pendingDisplayMessages.push({
|
|
544667
544891
|
role: "assistant",
|
|
544668
544892
|
content: `\u26A1 ${toolDisplay.toolName}`,
|
|
544669
544893
|
streaming: false,
|
|
544670
544894
|
toolCall: {
|
|
544671
544895
|
name: toolCall.function.name,
|
|
544672
|
-
arguments:
|
|
544896
|
+
arguments: enrichedArgs
|
|
544673
544897
|
},
|
|
544674
544898
|
toolDisplay,
|
|
544675
544899
|
toolCallId: toolCall.id,
|
|
@@ -544689,6 +544913,7 @@ var init_toolCallProcessor = __esm({
|
|
|
544689
544913
|
"use strict";
|
|
544690
544914
|
init_messageFormatter();
|
|
544691
544915
|
init_toolDisplayConfig();
|
|
544916
|
+
init_diffPreview();
|
|
544692
544917
|
init_thinkingExtractor();
|
|
544693
544918
|
}
|
|
544694
544919
|
});
|
|
@@ -545148,7 +545373,7 @@ var init_fileDialog = __esm({
|
|
|
545148
545373
|
});
|
|
545149
545374
|
|
|
545150
545375
|
// dist/utils/session/chatExporter.js
|
|
545151
|
-
import * as
|
|
545376
|
+
import * as fs49 from "fs/promises";
|
|
545152
545377
|
function getRoleLabel(role) {
|
|
545153
545378
|
return ROLE_LABELS[role] ?? "Unknown";
|
|
545154
545379
|
}
|
|
@@ -545414,7 +545639,7 @@ function renderSession(session, format5) {
|
|
|
545414
545639
|
}
|
|
545415
545640
|
async function exportSessionToFile(session, filePath, format5 = "txt") {
|
|
545416
545641
|
const content = renderSession(session, format5);
|
|
545417
|
-
await
|
|
545642
|
+
await fs49.writeFile(filePath, content, "utf-8");
|
|
545418
545643
|
}
|
|
545419
545644
|
var ROLE_LABELS, HTML_STYLE;
|
|
545420
545645
|
var init_chatExporter = __esm({
|
|
@@ -547913,13 +548138,7 @@ async function handlePendingMessages(options3) {
|
|
|
547913
548138
|
const { setConversationContext: setConversationContext2 } = await Promise.resolve().then(() => (init_conversationContext(), conversationContext_exports));
|
|
547914
548139
|
const updatedSession = sessionManager.getCurrentSession();
|
|
547915
548140
|
if (updatedSession) {
|
|
547916
|
-
const
|
|
547917
|
-
const uiMessages = convertSessionMessagesToUI2(updatedSession.messages);
|
|
547918
|
-
const compressedSummaryIndex = uiMessages.findIndex((msg) => {
|
|
547919
|
-
var _a20;
|
|
547920
|
-
return (msg == null ? void 0 : msg.role) === "user" && ((_a20 = msg.content) == null ? void 0 : _a20.trim()) && !msg.subAgentDirected;
|
|
547921
|
-
});
|
|
547922
|
-
const snapshotMessageIndex = updatedSession.compressedFrom != null ? Math.max(0, compressedSummaryIndex) : uiMessages.length;
|
|
548141
|
+
const snapshotMessageIndex = getPostAppendSnapshotMessageIndex(updatedSession.messages);
|
|
547923
548142
|
setConversationContext2(updatedSession.id, snapshotMessageIndex);
|
|
547924
548143
|
}
|
|
547925
548144
|
} catch (error42) {
|
|
@@ -547937,6 +548156,7 @@ var init_pendingMessagesHandler = __esm({
|
|
|
547937
548156
|
"use strict";
|
|
547938
548157
|
init_visionAgent();
|
|
547939
548158
|
init_sessionManager();
|
|
548159
|
+
init_snapshotMessageIndex();
|
|
547940
548160
|
await init_autoCompressHandler();
|
|
547941
548161
|
}
|
|
547942
548162
|
});
|
|
@@ -549638,17 +549858,17 @@ __export(newPrompt_exports, {
|
|
|
549638
549858
|
default: () => newPrompt_default,
|
|
549639
549859
|
streamGeneratePrompt: () => streamGeneratePrompt
|
|
549640
549860
|
});
|
|
549641
|
-
import
|
|
549861
|
+
import fs50 from "fs";
|
|
549642
549862
|
import path57 from "path";
|
|
549643
549863
|
import { execSync as execSync5 } from "child_process";
|
|
549644
549864
|
function readFileSafe(filePath, maxLen = 8192) {
|
|
549645
549865
|
try {
|
|
549646
|
-
if (!
|
|
549866
|
+
if (!fs50.existsSync(filePath))
|
|
549647
549867
|
return null;
|
|
549648
549868
|
const buf = Buffer.alloc(maxLen);
|
|
549649
|
-
const fd =
|
|
549650
|
-
const bytesRead =
|
|
549651
|
-
|
|
549869
|
+
const fd = fs50.openSync(filePath, "r");
|
|
549870
|
+
const bytesRead = fs50.readSync(fd, buf, 0, maxLen, 0);
|
|
549871
|
+
fs50.closeSync(fd);
|
|
549652
549872
|
return buf.toString("utf-8", 0, bytesRead);
|
|
549653
549873
|
} catch {
|
|
549654
549874
|
return null;
|
|
@@ -549665,7 +549885,7 @@ function detectTechStack(cwd2, rootFileSet) {
|
|
|
549665
549885
|
const hasAny = (...names) => names.some((n) => has4(n));
|
|
549666
549886
|
if (has4("package.json")) {
|
|
549667
549887
|
try {
|
|
549668
|
-
const pkg = JSON.parse(
|
|
549888
|
+
const pkg = JSON.parse(fs50.readFileSync(path57.join(cwd2, "package.json"), "utf-8"));
|
|
549669
549889
|
if (pkg.name)
|
|
549670
549890
|
projectMeta.push(`Name: ${pkg.name}`);
|
|
549671
549891
|
if (pkg.description)
|
|
@@ -549913,7 +550133,7 @@ function detectTechStack(cwd2, rootFileSet) {
|
|
|
549913
550133
|
languages.push("PHP");
|
|
549914
550134
|
buildTools.push("Composer");
|
|
549915
550135
|
try {
|
|
549916
|
-
const pkg = JSON.parse(
|
|
550136
|
+
const pkg = JSON.parse(fs50.readFileSync(path57.join(cwd2, "composer.json"), "utf-8"));
|
|
549917
550137
|
if (pkg.name && !projectMeta.length)
|
|
549918
550138
|
projectMeta.push(`Name: ${pkg.name}`);
|
|
549919
550139
|
if (pkg.description)
|
|
@@ -549992,7 +550212,7 @@ function detectTechStack(cwd2, rootFileSet) {
|
|
|
549992
550212
|
if (!languages.length) {
|
|
549993
550213
|
try {
|
|
549994
550214
|
const exts = /* @__PURE__ */ new Map();
|
|
549995
|
-
const entries =
|
|
550215
|
+
const entries = fs50.readdirSync(cwd2, { withFileTypes: true });
|
|
549996
550216
|
const srcDirs = ["src", "lib", "app", "source", "cmd", "pkg", "internal"];
|
|
549997
550217
|
const dirsToScan = [cwd2];
|
|
549998
550218
|
for (const d of srcDirs) {
|
|
@@ -550002,7 +550222,7 @@ function detectTechStack(cwd2, rootFileSet) {
|
|
|
550002
550222
|
}
|
|
550003
550223
|
for (const dir of dirsToScan) {
|
|
550004
550224
|
try {
|
|
550005
|
-
const files =
|
|
550225
|
+
const files = fs50.readdirSync(dir);
|
|
550006
550226
|
for (const f of files) {
|
|
550007
550227
|
const ext = path57.extname(f).toLowerCase();
|
|
550008
550228
|
if (ext)
|
|
@@ -550077,7 +550297,7 @@ function gatherProjectContext() {
|
|
|
550077
550297
|
const sections = [];
|
|
550078
550298
|
let rootFileSet;
|
|
550079
550299
|
try {
|
|
550080
|
-
rootFileSet = new Set(
|
|
550300
|
+
rootFileSet = new Set(fs50.readdirSync(cwd2));
|
|
550081
550301
|
} catch {
|
|
550082
550302
|
rootFileSet = /* @__PURE__ */ new Set();
|
|
550083
550303
|
}
|
|
@@ -550097,8 +550317,8 @@ function gatherProjectContext() {
|
|
|
550097
550317
|
}
|
|
550098
550318
|
try {
|
|
550099
550319
|
const agentsPath = path57.join(cwd2, "AGENTS.md");
|
|
550100
|
-
if (
|
|
550101
|
-
const content =
|
|
550320
|
+
if (fs50.existsSync(agentsPath)) {
|
|
550321
|
+
const content = fs50.readFileSync(agentsPath, "utf-8").trim();
|
|
550102
550322
|
if (content) {
|
|
550103
550323
|
const truncated = content.length > 1500 ? content.slice(0, 1500) + "\n...(truncated)" : content;
|
|
550104
550324
|
sections.push(`[Project Documentation - AGENTS.md]
|
|
@@ -550108,7 +550328,7 @@ ${truncated}`);
|
|
|
550108
550328
|
} catch {
|
|
550109
550329
|
}
|
|
550110
550330
|
try {
|
|
550111
|
-
const entries =
|
|
550331
|
+
const entries = fs50.readdirSync(cwd2, { withFileTypes: true });
|
|
550112
550332
|
const ignore2 = /* @__PURE__ */ new Set([
|
|
550113
550333
|
"node_modules",
|
|
550114
550334
|
".git",
|
|
@@ -550439,7 +550659,7 @@ __export(role_exports, {
|
|
|
550439
550659
|
switchActiveRole: () => switchActiveRole,
|
|
550440
550660
|
toggleRoleOverride: () => toggleRoleOverride
|
|
550441
550661
|
});
|
|
550442
|
-
import
|
|
550662
|
+
import fs51 from "fs/promises";
|
|
550443
550663
|
import path58 from "path";
|
|
550444
550664
|
import { homedir as homedir22 } from "os";
|
|
550445
550665
|
import { existsSync as existsSync34, readdirSync as readdirSync7 } from "fs";
|
|
@@ -550484,9 +550704,9 @@ async function createRoleFile(location, projectRoot) {
|
|
|
550484
550704
|
const roleFilePath = getRoleFilePath(location, projectRoot);
|
|
550485
550705
|
if (location === "global") {
|
|
550486
550706
|
const dir = path58.dirname(roleFilePath);
|
|
550487
|
-
await
|
|
550707
|
+
await fs51.mkdir(dir, { recursive: true });
|
|
550488
550708
|
}
|
|
550489
|
-
await
|
|
550709
|
+
await fs51.writeFile(roleFilePath, "", "utf-8");
|
|
550490
550710
|
return {
|
|
550491
550711
|
success: true,
|
|
550492
550712
|
path: roleFilePath
|
|
@@ -550509,7 +550729,7 @@ async function deleteRoleFile(location, projectRoot) {
|
|
|
550509
550729
|
error: "ROLE.md does not exist at this location"
|
|
550510
550730
|
};
|
|
550511
550731
|
}
|
|
550512
|
-
await
|
|
550732
|
+
await fs51.unlink(roleFilePath);
|
|
550513
550733
|
return {
|
|
550514
550734
|
success: true,
|
|
550515
550735
|
path: roleFilePath
|
|
@@ -550595,12 +550815,12 @@ async function createInactiveRole(location, projectRoot) {
|
|
|
550595
550815
|
try {
|
|
550596
550816
|
const dir = getRoleDirectory(location, projectRoot);
|
|
550597
550817
|
if (location === "global") {
|
|
550598
|
-
await
|
|
550818
|
+
await fs51.mkdir(dir, { recursive: true });
|
|
550599
550819
|
}
|
|
550600
550820
|
const hash = generateRoleHash();
|
|
550601
550821
|
const filename = `ROLE-${hash}.md`;
|
|
550602
550822
|
const filePath = path58.join(dir, filename);
|
|
550603
|
-
await
|
|
550823
|
+
await fs51.writeFile(filePath, "", "utf-8");
|
|
550604
550824
|
return { success: true, path: filePath };
|
|
550605
550825
|
} catch (error42) {
|
|
550606
550826
|
return {
|
|
@@ -550620,7 +550840,7 @@ async function deleteRole(roleId, location, projectRoot) {
|
|
|
550620
550840
|
if (targetRole.isActive) {
|
|
550621
550841
|
return { success: false, error: "Cannot delete active role" };
|
|
550622
550842
|
}
|
|
550623
|
-
await
|
|
550843
|
+
await fs51.unlink(targetRole.path);
|
|
550624
550844
|
const config3 = readRoleConfig(location, projectRoot);
|
|
550625
550845
|
if (config3.activeRoleId === roleId) {
|
|
550626
550846
|
await writeRoleConfig(location, { ...config3, activeRoleId: DEFAULT_ACTIVE_ROLE_ID }, projectRoot);
|
|
@@ -643059,17 +643279,17 @@ function MessageRendererImpl({ message, terminalWidth, isFirstInGroup = false, i
|
|
|
643059
643279
|
": ",
|
|
643060
643280
|
arg.value
|
|
643061
643281
|
))),
|
|
643062
|
-
message.toolCall && message.toolCall.name === "filesystem-create" && !message.toolCall.arguments.isBatch && message.toolCall.arguments.content && import_react88.default.createElement(
|
|
643282
|
+
message.toolCall && message.toolCall.name === "filesystem-create" && !message.toolCall.arguments.isBatch && message.toolCall.arguments.content && message.messageStatus === "pending" && import_react88.default.createElement(
|
|
643063
643283
|
Box_default,
|
|
643064
643284
|
{ marginTop: 1 },
|
|
643065
643285
|
import_react88.default.createElement(DiffViewer, { newContent: message.toolCall.arguments.content, filename: message.toolCall.arguments.path })
|
|
643066
643286
|
),
|
|
643067
|
-
message.toolCall && (message.toolCall.name === "filesystem-edit" || message.toolCall.name === "filesystem-replaceedit") && message.toolCall.arguments.oldContent && message.toolCall.arguments.newContent && import_react88.default.createElement(
|
|
643287
|
+
message.toolCall && (message.toolCall.name === "filesystem-edit" || message.toolCall.name === "filesystem-replaceedit") && message.toolCall.arguments.oldContent && message.toolCall.arguments.newContent && message.messageStatus === "pending" && import_react88.default.createElement(
|
|
643068
643288
|
Box_default,
|
|
643069
643289
|
{ marginTop: 1 },
|
|
643070
643290
|
import_react88.default.createElement(DiffViewer, { oldContent: message.toolCall.arguments.oldContent, newContent: message.toolCall.arguments.newContent, filename: message.toolCall.arguments.filename, completeOldContent: message.toolCall.arguments.completeOldContent, completeNewContent: message.toolCall.arguments.completeNewContent, startLineNumber: message.toolCall.arguments.contextStartLine })
|
|
643071
643291
|
),
|
|
643072
|
-
message.toolCall && (message.toolCall.name === "filesystem-edit" || message.toolCall.name === "filesystem-replaceedit") && message.toolCall.arguments.isBatch && message.toolCall.arguments.batchResults && Array.isArray(message.toolCall.arguments.batchResults) && import_react88.default.createElement(Box_default, { marginTop: 1, flexDirection: "column" }, message.toolCall.arguments.batchResults.map((fileResult, index) => {
|
|
643292
|
+
message.toolCall && (message.toolCall.name === "filesystem-edit" || message.toolCall.name === "filesystem-replaceedit") && message.toolCall.arguments.isBatch && message.toolCall.arguments.batchResults && Array.isArray(message.toolCall.arguments.batchResults) && message.messageStatus === "pending" && import_react88.default.createElement(Box_default, { marginTop: 1, flexDirection: "column" }, message.toolCall.arguments.batchResults.map((fileResult, index) => {
|
|
643073
643293
|
if (fileResult.success && fileResult.oldContent && fileResult.newContent) {
|
|
643074
643294
|
return import_react88.default.createElement(
|
|
643075
643295
|
Box_default,
|
|
@@ -643080,7 +643300,7 @@ function MessageRendererImpl({ message, terminalWidth, isFirstInGroup = false, i
|
|
|
643080
643300
|
}
|
|
643081
643301
|
return null;
|
|
643082
643302
|
})),
|
|
643083
|
-
message.toolCall && message.toolCall.name === "filesystem-create" && message.toolCall.arguments.isBatch && message.toolCall.arguments.batchResults && Array.isArray(message.toolCall.arguments.batchResults) && import_react88.default.createElement(Box_default, { marginTop: 1, flexDirection: "column" }, message.toolCall.arguments.batchResults.map((fileResult, index) => {
|
|
643303
|
+
message.toolCall && message.toolCall.name === "filesystem-create" && message.toolCall.arguments.isBatch && message.toolCall.arguments.batchResults && Array.isArray(message.toolCall.arguments.batchResults) && message.messageStatus === "pending" && import_react88.default.createElement(Box_default, { marginTop: 1, flexDirection: "column" }, message.toolCall.arguments.batchResults.map((fileResult, index) => {
|
|
643084
643304
|
if (fileResult.success && fileResult.content) {
|
|
643085
643305
|
return import_react88.default.createElement(
|
|
643086
643306
|
Box_default,
|
|
@@ -646963,7 +647183,7 @@ var commandUsageManager_exports = {};
|
|
|
646963
647183
|
__export(commandUsageManager_exports, {
|
|
646964
647184
|
commandUsageManager: () => commandUsageManager
|
|
646965
647185
|
});
|
|
646966
|
-
import
|
|
647186
|
+
import fs52 from "fs/promises";
|
|
646967
647187
|
import path60 from "path";
|
|
646968
647188
|
import os27 from "os";
|
|
646969
647189
|
var CommandUsageManager, commandUsageManager;
|
|
@@ -647012,7 +647232,7 @@ var init_commandUsageManager = __esm({
|
|
|
647012
647232
|
async ensureSnowDir() {
|
|
647013
647233
|
try {
|
|
647014
647234
|
const snowDir = path60.dirname(this.usageFile);
|
|
647015
|
-
await
|
|
647235
|
+
await fs52.mkdir(snowDir, { recursive: true });
|
|
647016
647236
|
} catch {
|
|
647017
647237
|
}
|
|
647018
647238
|
}
|
|
@@ -647024,7 +647244,7 @@ var init_commandUsageManager = __esm({
|
|
|
647024
647244
|
return;
|
|
647025
647245
|
try {
|
|
647026
647246
|
await this.ensureSnowDir();
|
|
647027
|
-
const data = await
|
|
647247
|
+
const data = await fs52.readFile(this.usageFile, "utf-8");
|
|
647028
647248
|
this.usageData = JSON.parse(data);
|
|
647029
647249
|
} catch {
|
|
647030
647250
|
this.usageData = {
|
|
@@ -647053,7 +647273,7 @@ var init_commandUsageManager = __esm({
|
|
|
647053
647273
|
try {
|
|
647054
647274
|
await this.ensureSnowDir();
|
|
647055
647275
|
this.usageData.lastUpdated = Date.now();
|
|
647056
|
-
await
|
|
647276
|
+
await fs52.writeFile(this.usageFile, JSON.stringify(this.usageData, null, 2), "utf-8");
|
|
647057
647277
|
this.isDirty = false;
|
|
647058
647278
|
} catch (error42) {
|
|
647059
647279
|
logger.error("Failed to save command usage:", error42);
|
|
@@ -647903,7 +648123,7 @@ var init_useFilePicker = __esm({
|
|
|
647903
648123
|
});
|
|
647904
648124
|
|
|
647905
648125
|
// dist/utils/session/historyManager.js
|
|
647906
|
-
import
|
|
648126
|
+
import fs53 from "fs/promises";
|
|
647907
648127
|
import path61 from "path";
|
|
647908
648128
|
import os28 from "os";
|
|
647909
648129
|
var HistoryManager, historyManager;
|
|
@@ -647976,7 +648196,7 @@ var init_historyManager = __esm({
|
|
|
647976
648196
|
async ensureSnowDir() {
|
|
647977
648197
|
try {
|
|
647978
648198
|
const snowDir = path61.dirname(this.historyFile);
|
|
647979
|
-
await
|
|
648199
|
+
await fs53.mkdir(snowDir, { recursive: true });
|
|
647980
648200
|
} catch (error42) {
|
|
647981
648201
|
}
|
|
647982
648202
|
}
|
|
@@ -647991,7 +648211,7 @@ var init_historyManager = __esm({
|
|
|
647991
648211
|
}
|
|
647992
648212
|
async readHistoryFile(filePath) {
|
|
647993
648213
|
try {
|
|
647994
|
-
const data = await
|
|
648214
|
+
const data = await fs53.readFile(filePath, "utf-8");
|
|
647995
648215
|
const parsed = JSON.parse(data);
|
|
647996
648216
|
return {
|
|
647997
648217
|
entries: Array.isArray(parsed.entries) ? parsed.entries : [],
|
|
@@ -648118,7 +648338,7 @@ var init_historyManager = __esm({
|
|
|
648118
648338
|
}
|
|
648119
648339
|
try {
|
|
648120
648340
|
await this.ensureSnowDir();
|
|
648121
|
-
await
|
|
648341
|
+
await fs53.writeFile(this.historyFile, JSON.stringify(this.historyData, null, 2), "utf-8");
|
|
648122
648342
|
} catch (error42) {
|
|
648123
648343
|
logger.error("Failed to save history:", error42);
|
|
648124
648344
|
}
|
|
@@ -649111,7 +649331,7 @@ var init_historyMenu = __esm({
|
|
|
649111
649331
|
|
|
649112
649332
|
// dist/utils/ui/externalEditor.js
|
|
649113
649333
|
import { spawn as spawn15 } from "child_process";
|
|
649114
|
-
import { promises as
|
|
649334
|
+
import { promises as fs54 } from "fs";
|
|
649115
649335
|
import { tmpdir as tmpdir5 } from "os";
|
|
649116
649336
|
import { join as join42 } from "path";
|
|
649117
649337
|
function pauseStdinForExternalEditor() {
|
|
@@ -649149,7 +649369,7 @@ async function editTextWithNotepad(initialText) {
|
|
|
649149
649369
|
return initialText;
|
|
649150
649370
|
}
|
|
649151
649371
|
const tempFile = join42(tmpdir5(), `snow-chat-${Date.now()}-${Math.random().toString(16).slice(2)}.txt`);
|
|
649152
|
-
await
|
|
649372
|
+
await fs54.writeFile(tempFile, addUtf8Bom(initialText), "utf8");
|
|
649153
649373
|
const restoreStdin = pauseStdinForExternalEditor();
|
|
649154
649374
|
try {
|
|
649155
649375
|
await spawnNotepad(tempFile);
|
|
@@ -649158,7 +649378,7 @@ async function editTextWithNotepad(initialText) {
|
|
|
649158
649378
|
} finally {
|
|
649159
649379
|
restoreStdin();
|
|
649160
649380
|
try {
|
|
649161
|
-
await
|
|
649381
|
+
await fs54.unlink(tempFile);
|
|
649162
649382
|
} catch {
|
|
649163
649383
|
}
|
|
649164
649384
|
}
|
|
@@ -650235,7 +650455,7 @@ var init_useAgentPicker = __esm({
|
|
|
650235
650455
|
});
|
|
650236
650456
|
|
|
650237
650457
|
// dist/utils/core/todoScanner.js
|
|
650238
|
-
import
|
|
650458
|
+
import fs55 from "fs";
|
|
650239
650459
|
import path62 from "path";
|
|
650240
650460
|
function shouldIgnore(filePath) {
|
|
650241
650461
|
const relativePath = filePath;
|
|
@@ -650249,7 +650469,7 @@ function shouldIgnore(filePath) {
|
|
|
650249
650469
|
}
|
|
650250
650470
|
function scanFileForTodos(filePath, rootDir) {
|
|
650251
650471
|
try {
|
|
650252
|
-
const content =
|
|
650472
|
+
const content = fs55.readFileSync(filePath, "utf-8");
|
|
650253
650473
|
const lines = content.split("\n");
|
|
650254
650474
|
const todos = [];
|
|
650255
650475
|
lines.forEach((line, index) => {
|
|
@@ -650278,7 +650498,7 @@ function scanFileForTodos(filePath, rootDir) {
|
|
|
650278
650498
|
function scanDirectory(dir, rootDir) {
|
|
650279
650499
|
let todos = [];
|
|
650280
650500
|
try {
|
|
650281
|
-
const entries =
|
|
650501
|
+
const entries = fs55.readdirSync(dir, { withFileTypes: true });
|
|
650282
650502
|
for (const entry of entries) {
|
|
650283
650503
|
const fullPath = path62.join(dir, entry.name);
|
|
650284
650504
|
const relativePath = path62.relative(rootDir, fullPath);
|
|
@@ -652327,7 +652547,7 @@ var FileList_exports = {};
|
|
|
652327
652547
|
__export(FileList_exports, {
|
|
652328
652548
|
default: () => FileList_default
|
|
652329
652549
|
});
|
|
652330
|
-
import
|
|
652550
|
+
import fs56 from "fs";
|
|
652331
652551
|
import path64 from "path";
|
|
652332
652552
|
var import_react111, SEARCH_RESULT_TTL_MS, getDisplayItemKey, getNormalizedItemPath, getLookupKey, getRelativeTreePath, getTreeDepth, getSourceDirName, compareTreeItems, buildTreeDisplayItems, getFullFilePath, AGENT_PREVIEW_VIEWPORT_HEIGHT, AGENT_PREVIEW_INDENT_WIDTH, AGENT_PREVIEW_RESERVED_COLUMNS, AGENT_PREVIEW_PANEL_PADDING, normalizeAgentPreviewContent, sliceByVisualWidth, getSafeAgentPreviewLineWidth, buildAgentPreviewLines, buildSafeAgentPreviewTitle, FileList, FileList_default;
|
|
652333
652553
|
var init_FileList = __esm({
|
|
@@ -652642,7 +652862,7 @@ var init_FileList = __esm({
|
|
|
652642
652862
|
const gitignorePath = path64.join(dirPath, ".gitignore");
|
|
652643
652863
|
let gitignorePatterns = [];
|
|
652644
652864
|
try {
|
|
652645
|
-
const content = await
|
|
652865
|
+
const content = await fs56.promises.readFile(gitignorePath, "utf-8");
|
|
652646
652866
|
gitignorePatterns = content.split("\n").map((line) => line.trim()).filter((line) => line && !line.startsWith("#")).map((line) => line.replace(/\/$/, ""));
|
|
652647
652867
|
} catch {
|
|
652648
652868
|
}
|
|
@@ -652654,7 +652874,7 @@ var init_FileList = __esm({
|
|
|
652654
652874
|
const current = node.path;
|
|
652655
652875
|
let entries = [];
|
|
652656
652876
|
try {
|
|
652657
|
-
entries = await
|
|
652877
|
+
entries = await fs56.promises.readdir(current, {
|
|
652658
652878
|
withFileTypes: true
|
|
652659
652879
|
});
|
|
652660
652880
|
} catch {
|
|
@@ -652666,7 +652886,7 @@ var init_FileList = __esm({
|
|
|
652666
652886
|
}
|
|
652667
652887
|
const fullPath = path64.join(current, entry.name);
|
|
652668
652888
|
try {
|
|
652669
|
-
const stats = await
|
|
652889
|
+
const stats = await fs56.promises.stat(fullPath);
|
|
652670
652890
|
if (!entry.isDirectory() && stats.size > 10 * 1024 * 1024) {
|
|
652671
652891
|
continue;
|
|
652672
652892
|
}
|
|
@@ -652717,7 +652937,7 @@ var init_FileList = __esm({
|
|
|
652717
652937
|
try {
|
|
652718
652938
|
const baseDir = file2.sourceDir || rootPath;
|
|
652719
652939
|
const fullPath = path64.join(baseDir, file2.path);
|
|
652720
|
-
const content = await
|
|
652940
|
+
const content = await fs56.promises.readFile(fullPath, "utf-8");
|
|
652721
652941
|
const lines = content.split("\n");
|
|
652722
652942
|
for (let i = 0; i < lines.length; i++) {
|
|
652723
652943
|
if (fileResults.length >= 10) {
|
|
@@ -658917,7 +659137,7 @@ var DiffReviewPanel_exports = {};
|
|
|
658917
659137
|
__export(DiffReviewPanel_exports, {
|
|
658918
659138
|
default: () => DiffReviewPanel
|
|
658919
659139
|
});
|
|
658920
|
-
import
|
|
659140
|
+
import fs57 from "fs/promises";
|
|
658921
659141
|
function DiffReviewPanel({ messages, snapshotFileCount, onClose, terminalWidth }) {
|
|
658922
659142
|
const { t } = useI18n();
|
|
658923
659143
|
const { theme: theme14 } = useTheme();
|
|
@@ -659011,7 +659231,7 @@ function DiffReviewPanel({ messages, snapshotFileCount, onClose, terminalWidth }
|
|
|
659011
659231
|
hashBasedSnapshotManager.getRollbackPreviewForFile(currentSession.id, activeMessageIndex, filePath).then(async (preview) => {
|
|
659012
659232
|
let currentContent = "";
|
|
659013
659233
|
try {
|
|
659014
|
-
currentContent = await
|
|
659234
|
+
currentContent = await fs57.readFile(preview.absolutePath, "utf-8");
|
|
659015
659235
|
} catch {
|
|
659016
659236
|
currentContent = "";
|
|
659017
659237
|
}
|
|
@@ -659124,7 +659344,7 @@ function DiffReviewPanel({ messages, snapshotFileCount, onClose, terminalWidth }
|
|
|
659124
659344
|
const originalContent = preview.rollbackContent;
|
|
659125
659345
|
let currentContent = "";
|
|
659126
659346
|
try {
|
|
659127
|
-
currentContent = await
|
|
659347
|
+
currentContent = await fs57.readFile(preview.absolutePath, "utf-8");
|
|
659128
659348
|
} catch {
|
|
659129
659349
|
currentContent = "";
|
|
659130
659350
|
}
|
|
@@ -661713,10 +661933,10 @@ var init_useRollback = __esm({
|
|
|
661713
661933
|
|
|
661714
661934
|
// dist/utils/codebase/gitignoreValidator.js
|
|
661715
661935
|
import path65 from "node:path";
|
|
661716
|
-
import
|
|
661936
|
+
import fs58 from "node:fs";
|
|
661717
661937
|
function validateGitignore(workingDirectory) {
|
|
661718
661938
|
const gitignorePath = path65.join(workingDirectory, ".gitignore");
|
|
661719
|
-
if (!
|
|
661939
|
+
if (!fs58.existsSync(gitignorePath)) {
|
|
661720
661940
|
const currentLanguage = getCurrentLanguage();
|
|
661721
661941
|
const t = translations[currentLanguage];
|
|
661722
661942
|
return {
|
|
@@ -661736,7 +661956,7 @@ var init_gitignoreValidator = __esm({
|
|
|
661736
661956
|
|
|
661737
661957
|
// dist/utils/codebase/reindexCodebase.js
|
|
661738
661958
|
import path66 from "node:path";
|
|
661739
|
-
import
|
|
661959
|
+
import fs59 from "node:fs";
|
|
661740
661960
|
async function reindexCodebase(workingDirectory, currentAgent, progressCallback, force) {
|
|
661741
661961
|
const config3 = loadCodebaseConfig();
|
|
661742
661962
|
if (!config3.enabled) {
|
|
@@ -661763,8 +661983,8 @@ async function reindexCodebase(workingDirectory, currentAgent, progressCallback,
|
|
|
661763
661983
|
}
|
|
661764
661984
|
if (force) {
|
|
661765
661985
|
const dbPath = path66.join(workingDirectory, ".snow", "codebase", "embeddings.db");
|
|
661766
|
-
if (
|
|
661767
|
-
|
|
661986
|
+
if (fs59.existsSync(dbPath)) {
|
|
661987
|
+
fs59.unlinkSync(dbPath);
|
|
661768
661988
|
}
|
|
661769
661989
|
}
|
|
661770
661990
|
const agent = new CodebaseIndexAgent(workingDirectory);
|
|
@@ -663323,7 +663543,7 @@ var init_build5 = __esm({
|
|
|
663323
663543
|
});
|
|
663324
663544
|
|
|
663325
663545
|
// dist/ui/components/tools/ToolConfirmation.js
|
|
663326
|
-
import
|
|
663546
|
+
import fs60 from "fs";
|
|
663327
663547
|
function formatArgumentValue(value, maxLength = 100, noTruncate = false) {
|
|
663328
663548
|
if (value === null || value === void 0) {
|
|
663329
663549
|
return String(value);
|
|
@@ -663504,7 +663724,7 @@ function ToolConfirmation({ toolName, toolArguments, allTools, onConfirm, onHook
|
|
|
663504
663724
|
if (!vscodeConnection.isConnected()) {
|
|
663505
663725
|
return;
|
|
663506
663726
|
}
|
|
663507
|
-
const
|
|
663727
|
+
const computeHashlinePreview2 = (originalContent, operations) => {
|
|
663508
663728
|
if (!Array.isArray(operations) || operations.length === 0) {
|
|
663509
663729
|
return originalContent;
|
|
663510
663730
|
}
|
|
@@ -663535,7 +663755,7 @@ function ToolConfirmation({ toolName, toolArguments, allTools, onConfirm, onHook
|
|
|
663535
663755
|
}
|
|
663536
663756
|
return mutableLines.join("\n");
|
|
663537
663757
|
};
|
|
663538
|
-
const
|
|
663758
|
+
const computeReplaceEditPreview2 = (originalContent, searchContent, replaceContent) => {
|
|
663539
663759
|
const idx = originalContent.indexOf(searchContent);
|
|
663540
663760
|
if (idx !== -1) {
|
|
663541
663761
|
return originalContent.substring(0, idx) + replaceContent + originalContent.substring(idx + searchContent.length);
|
|
@@ -663544,9 +663764,9 @@ function ToolConfirmation({ toolName, toolArguments, allTools, onConfirm, onHook
|
|
|
663544
663764
|
};
|
|
663545
663765
|
const readOriginal = (filePath) => {
|
|
663546
663766
|
try {
|
|
663547
|
-
if (!filePath || !
|
|
663767
|
+
if (!filePath || !fs60.existsSync(filePath))
|
|
663548
663768
|
return null;
|
|
663549
|
-
return
|
|
663769
|
+
return fs60.readFileSync(filePath, "utf-8");
|
|
663550
663770
|
} catch {
|
|
663551
663771
|
return null;
|
|
663552
663772
|
}
|
|
@@ -663555,14 +663775,14 @@ function ToolConfirmation({ toolName, toolArguments, allTools, onConfirm, onHook
|
|
|
663555
663775
|
const originalContent = readOriginal(filePath);
|
|
663556
663776
|
if (originalContent === null)
|
|
663557
663777
|
return null;
|
|
663558
|
-
const newContent =
|
|
663778
|
+
const newContent = computeHashlinePreview2(originalContent, operations);
|
|
663559
663779
|
return { filePath, originalContent, newContent, label };
|
|
663560
663780
|
};
|
|
663561
663781
|
const collectReplaceEntry = (filePath, searchContent, replaceContent, label) => {
|
|
663562
663782
|
const originalContent = readOriginal(filePath);
|
|
663563
663783
|
if (originalContent === null)
|
|
663564
663784
|
return null;
|
|
663565
|
-
const newContent = searchContent && replaceContent !== void 0 ?
|
|
663785
|
+
const newContent = searchContent && replaceContent !== void 0 ? computeReplaceEditPreview2(originalContent, searchContent, replaceContent) : originalContent;
|
|
663566
663786
|
return { filePath, originalContent, newContent, label };
|
|
663567
663787
|
};
|
|
663568
663788
|
const collectDiffsForTool = (name, args2) => {
|
|
@@ -670987,7 +671207,7 @@ var UsagePanel_exports = {};
|
|
|
670987
671207
|
__export(UsagePanel_exports, {
|
|
670988
671208
|
default: () => UsagePanel
|
|
670989
671209
|
});
|
|
670990
|
-
import
|
|
671210
|
+
import fs61 from "fs/promises";
|
|
670991
671211
|
import path67 from "path";
|
|
670992
671212
|
import os29 from "os";
|
|
670993
671213
|
function getModelShortName(modelName, maxLength = 20) {
|
|
@@ -671056,18 +671276,18 @@ async function loadUsageData() {
|
|
|
671056
671276
|
const usageDir = path67.join(homeDir, ".snow", "usage");
|
|
671057
671277
|
try {
|
|
671058
671278
|
const entries = [];
|
|
671059
|
-
const dateDirs = await
|
|
671279
|
+
const dateDirs = await fs61.readdir(usageDir);
|
|
671060
671280
|
for (const dateDir of dateDirs) {
|
|
671061
671281
|
const datePath = path67.join(usageDir, dateDir);
|
|
671062
|
-
const stats = await
|
|
671282
|
+
const stats = await fs61.stat(datePath);
|
|
671063
671283
|
if (!stats.isDirectory())
|
|
671064
671284
|
continue;
|
|
671065
|
-
const files = await
|
|
671285
|
+
const files = await fs61.readdir(datePath);
|
|
671066
671286
|
for (const file2 of files) {
|
|
671067
671287
|
if (!file2.endsWith(".jsonl"))
|
|
671068
671288
|
continue;
|
|
671069
671289
|
const filePath = path67.join(datePath, file2);
|
|
671070
|
-
const content = await
|
|
671290
|
+
const content = await fs61.readFile(filePath, "utf-8");
|
|
671071
671291
|
const lines = content.trim().split("\n").filter((l2) => l2.trim());
|
|
671072
671292
|
for (const line of lines) {
|
|
671073
671293
|
try {
|
|
@@ -693321,7 +693541,7 @@ var require_package4 = __commonJS({
|
|
|
693321
693541
|
"package.json"(exports2, module2) {
|
|
693322
693542
|
module2.exports = {
|
|
693323
693543
|
name: "snow-ai",
|
|
693324
|
-
version: "0.8.
|
|
693544
|
+
version: "0.8.12",
|
|
693325
693545
|
description: "Agentic coding in your terminal",
|
|
693326
693546
|
license: "MIT",
|
|
693327
693547
|
bin: {
|