@qualcomm-ui/changesets-cli 1.0.3 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/cli.cjs +848 -312
- package/dist/cli.cjs.map +4 -4
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/dist/update-jsdoc-since-tags.d.ts +51 -0
- package/dist/update-jsdoc-since-tags.d.ts.map +1 -0
- package/dist/update-jsdoc-since-tags.spec.d.ts +2 -0
- package/dist/update-jsdoc-since-tags.spec.d.ts.map +1 -0
- package/dist/version-bump.d.ts +22 -0
- package/dist/version-bump.d.ts.map +1 -0
- package/dist/version-bump.spec.d.ts +2 -0
- package/dist/version-bump.spec.d.ts.map +1 -0
- package/package.json +3 -2
package/dist/cli.cjs
CHANGED
|
@@ -3831,10 +3831,10 @@ var require_universalify = __commonJS({
|
|
|
3831
3831
|
return Object.defineProperty(function() {
|
|
3832
3832
|
if (typeof arguments[arguments.length - 1] === "function") fn.apply(this, arguments);
|
|
3833
3833
|
else {
|
|
3834
|
-
return new Promise((
|
|
3834
|
+
return new Promise((resolve3, reject) => {
|
|
3835
3835
|
arguments[arguments.length] = (err, res) => {
|
|
3836
3836
|
if (err) return reject(err);
|
|
3837
|
-
|
|
3837
|
+
resolve3(res);
|
|
3838
3838
|
};
|
|
3839
3839
|
arguments.length++;
|
|
3840
3840
|
fn.apply(this, arguments);
|
|
@@ -4347,8 +4347,8 @@ var require_graceful_fs = __commonJS({
|
|
|
4347
4347
|
fs4.createReadStream = createReadStream;
|
|
4348
4348
|
fs4.createWriteStream = createWriteStream;
|
|
4349
4349
|
var fs$readFile = fs4.readFile;
|
|
4350
|
-
fs4.readFile =
|
|
4351
|
-
function
|
|
4350
|
+
fs4.readFile = readFile7;
|
|
4351
|
+
function readFile7(path3, options, cb) {
|
|
4352
4352
|
if (typeof options === "function")
|
|
4353
4353
|
cb = options, options = null;
|
|
4354
4354
|
return go$readFile(path3, options, cb);
|
|
@@ -4419,9 +4419,9 @@ var require_graceful_fs = __commonJS({
|
|
|
4419
4419
|
}
|
|
4420
4420
|
}
|
|
4421
4421
|
var fs$readdir = fs4.readdir;
|
|
4422
|
-
fs4.readdir =
|
|
4422
|
+
fs4.readdir = readdir2;
|
|
4423
4423
|
var noReaddirOptionVersions = /^v[0-5]\./;
|
|
4424
|
-
function
|
|
4424
|
+
function readdir2(path3, options, cb) {
|
|
4425
4425
|
if (typeof options === "function")
|
|
4426
4426
|
cb = options, options = null;
|
|
4427
4427
|
var go$readdir = noReaddirOptionVersions.test(process.version) ? function go$readdir2(path4, options2, cb2, startTime) {
|
|
@@ -4687,18 +4687,18 @@ var require_fs = __commonJS({
|
|
|
4687
4687
|
if (typeof callback === "function") {
|
|
4688
4688
|
return fs3.exists(filename, callback);
|
|
4689
4689
|
}
|
|
4690
|
-
return new Promise((
|
|
4691
|
-
return fs3.exists(filename,
|
|
4690
|
+
return new Promise((resolve3) => {
|
|
4691
|
+
return fs3.exists(filename, resolve3);
|
|
4692
4692
|
});
|
|
4693
4693
|
};
|
|
4694
4694
|
exports2.read = function(fd, buffer, offset, length, position, callback) {
|
|
4695
4695
|
if (typeof callback === "function") {
|
|
4696
4696
|
return fs3.read(fd, buffer, offset, length, position, callback);
|
|
4697
4697
|
}
|
|
4698
|
-
return new Promise((
|
|
4698
|
+
return new Promise((resolve3, reject) => {
|
|
4699
4699
|
fs3.read(fd, buffer, offset, length, position, (err, bytesRead, buffer2) => {
|
|
4700
4700
|
if (err) return reject(err);
|
|
4701
|
-
|
|
4701
|
+
resolve3({ bytesRead, buffer: buffer2 });
|
|
4702
4702
|
});
|
|
4703
4703
|
});
|
|
4704
4704
|
};
|
|
@@ -4706,10 +4706,10 @@ var require_fs = __commonJS({
|
|
|
4706
4706
|
if (typeof args[args.length - 1] === "function") {
|
|
4707
4707
|
return fs3.write(fd, buffer, ...args);
|
|
4708
4708
|
}
|
|
4709
|
-
return new Promise((
|
|
4709
|
+
return new Promise((resolve3, reject) => {
|
|
4710
4710
|
fs3.write(fd, buffer, ...args, (err, bytesWritten, buffer2) => {
|
|
4711
4711
|
if (err) return reject(err);
|
|
4712
|
-
|
|
4712
|
+
resolve3({ bytesWritten, buffer: buffer2 });
|
|
4713
4713
|
});
|
|
4714
4714
|
});
|
|
4715
4715
|
};
|
|
@@ -5907,10 +5907,10 @@ var require_symlink = __commonJS({
|
|
|
5907
5907
|
pathExists(dstpath, (err, destinationExists) => {
|
|
5908
5908
|
if (err) return callback(err);
|
|
5909
5909
|
if (destinationExists) return callback(null);
|
|
5910
|
-
symlinkPaths(srcpath, dstpath, (err2,
|
|
5910
|
+
symlinkPaths(srcpath, dstpath, (err2, relative3) => {
|
|
5911
5911
|
if (err2) return callback(err2);
|
|
5912
|
-
srcpath =
|
|
5913
|
-
symlinkType(
|
|
5912
|
+
srcpath = relative3.toDst;
|
|
5913
|
+
symlinkType(relative3.toCwd, type2, (err3, type3) => {
|
|
5914
5914
|
if (err3) return callback(err3);
|
|
5915
5915
|
const dir = path3.dirname(dstpath);
|
|
5916
5916
|
pathExists(dir, (err4, dirExists) => {
|
|
@@ -5928,9 +5928,9 @@ var require_symlink = __commonJS({
|
|
|
5928
5928
|
function createSymlinkSync(srcpath, dstpath, type2) {
|
|
5929
5929
|
const destinationExists = fs3.existsSync(dstpath);
|
|
5930
5930
|
if (destinationExists) return void 0;
|
|
5931
|
-
const
|
|
5932
|
-
srcpath =
|
|
5933
|
-
type2 = symlinkTypeSync(
|
|
5931
|
+
const relative3 = symlinkPathsSync(srcpath, dstpath);
|
|
5932
|
+
srcpath = relative3.toDst;
|
|
5933
|
+
type2 = symlinkTypeSync(relative3.toCwd, type2);
|
|
5934
5934
|
const dir = path3.dirname(dstpath);
|
|
5935
5935
|
const exists = fs3.existsSync(dir);
|
|
5936
5936
|
if (exists) return fs3.symlinkSync(srcpath, dstpath, type2);
|
|
@@ -5981,7 +5981,7 @@ var require_jsonfile = __commonJS({
|
|
|
5981
5981
|
} catch (_) {
|
|
5982
5982
|
_fs = require("fs");
|
|
5983
5983
|
}
|
|
5984
|
-
function
|
|
5984
|
+
function readFile7(file, options, callback) {
|
|
5985
5985
|
if (callback == null) {
|
|
5986
5986
|
callback = options;
|
|
5987
5987
|
options = {};
|
|
@@ -6012,7 +6012,7 @@ var require_jsonfile = __commonJS({
|
|
|
6012
6012
|
callback(null, obj);
|
|
6013
6013
|
});
|
|
6014
6014
|
}
|
|
6015
|
-
function
|
|
6015
|
+
function readFileSync3(file, options) {
|
|
6016
6016
|
options = options || {};
|
|
6017
6017
|
if (typeof options === "string") {
|
|
6018
6018
|
options = { encoding: options };
|
|
@@ -6077,8 +6077,8 @@ var require_jsonfile = __commonJS({
|
|
|
6077
6077
|
return content;
|
|
6078
6078
|
}
|
|
6079
6079
|
var jsonfile = {
|
|
6080
|
-
readFile:
|
|
6081
|
-
readFileSync:
|
|
6080
|
+
readFile: readFile7,
|
|
6081
|
+
readFileSync: readFileSync3,
|
|
6082
6082
|
writeFile: writeFile3,
|
|
6083
6083
|
writeFileSync
|
|
6084
6084
|
};
|
|
@@ -6506,12 +6506,12 @@ var require_isexe = __commonJS({
|
|
|
6506
6506
|
if (typeof Promise !== "function") {
|
|
6507
6507
|
throw new TypeError("callback not provided");
|
|
6508
6508
|
}
|
|
6509
|
-
return new Promise(function(
|
|
6509
|
+
return new Promise(function(resolve3, reject) {
|
|
6510
6510
|
isexe(path3, options || {}, function(er, is) {
|
|
6511
6511
|
if (er) {
|
|
6512
6512
|
reject(er);
|
|
6513
6513
|
} else {
|
|
6514
|
-
|
|
6514
|
+
resolve3(is);
|
|
6515
6515
|
}
|
|
6516
6516
|
});
|
|
6517
6517
|
});
|
|
@@ -6578,27 +6578,27 @@ var require_which = __commonJS({
|
|
|
6578
6578
|
opt = {};
|
|
6579
6579
|
const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt);
|
|
6580
6580
|
const found = [];
|
|
6581
|
-
const step = (i) => new Promise((
|
|
6581
|
+
const step = (i) => new Promise((resolve3, reject) => {
|
|
6582
6582
|
if (i === pathEnv.length)
|
|
6583
|
-
return opt.all && found.length ?
|
|
6583
|
+
return opt.all && found.length ? resolve3(found) : reject(getNotFoundError(cmd));
|
|
6584
6584
|
const ppRaw = pathEnv[i];
|
|
6585
6585
|
const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw;
|
|
6586
6586
|
const pCmd = path3.join(pathPart, cmd);
|
|
6587
6587
|
const p = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
|
|
6588
|
-
|
|
6588
|
+
resolve3(subStep(p, i, 0));
|
|
6589
6589
|
});
|
|
6590
|
-
const subStep = (p, i, ii) => new Promise((
|
|
6590
|
+
const subStep = (p, i, ii) => new Promise((resolve3, reject) => {
|
|
6591
6591
|
if (ii === pathExt.length)
|
|
6592
|
-
return
|
|
6592
|
+
return resolve3(step(i + 1));
|
|
6593
6593
|
const ext = pathExt[ii];
|
|
6594
6594
|
isexe(p + ext, { pathExt: pathExtExe }, (er, is) => {
|
|
6595
6595
|
if (!er && is) {
|
|
6596
6596
|
if (opt.all)
|
|
6597
6597
|
found.push(p + ext);
|
|
6598
6598
|
else
|
|
6599
|
-
return
|
|
6599
|
+
return resolve3(p + ext);
|
|
6600
6600
|
}
|
|
6601
|
-
return
|
|
6601
|
+
return resolve3(subStep(p, i, ii + 1));
|
|
6602
6602
|
});
|
|
6603
6603
|
});
|
|
6604
6604
|
return cb ? step(0).then((res) => cb(null, res), cb) : step(0);
|
|
@@ -7193,13 +7193,13 @@ var require_promise = __commonJS({
|
|
|
7193
7193
|
var EventEmitter = require("events");
|
|
7194
7194
|
var ChildProcessPromise = class extends Promise {
|
|
7195
7195
|
constructor(executer) {
|
|
7196
|
-
let
|
|
7196
|
+
let resolve3;
|
|
7197
7197
|
let reject;
|
|
7198
7198
|
super((res, rej) => {
|
|
7199
|
-
|
|
7199
|
+
resolve3 = res;
|
|
7200
7200
|
reject = rej;
|
|
7201
7201
|
});
|
|
7202
|
-
executer(
|
|
7202
|
+
executer(resolve3, reject, this);
|
|
7203
7203
|
}
|
|
7204
7204
|
};
|
|
7205
7205
|
Object.assign(ChildProcessPromise.prototype, EventEmitter.prototype);
|
|
@@ -7222,7 +7222,7 @@ var require_spawndamnit = __commonJS({
|
|
|
7222
7222
|
}
|
|
7223
7223
|
});
|
|
7224
7224
|
function spawn2(cmd, args, opts) {
|
|
7225
|
-
return new ChildProcessPromise((
|
|
7225
|
+
return new ChildProcessPromise((resolve3, reject, events) => {
|
|
7226
7226
|
let child = crossSpawn(cmd, args, opts);
|
|
7227
7227
|
let stdout2 = Buffer.from("");
|
|
7228
7228
|
let stderr = Buffer.from("");
|
|
@@ -7245,7 +7245,7 @@ var require_spawndamnit = __commonJS({
|
|
|
7245
7245
|
});
|
|
7246
7246
|
child.on("close", (code) => {
|
|
7247
7247
|
activeProcesses.delete(child);
|
|
7248
|
-
|
|
7248
|
+
resolve3({ code, stdout: stdout2, stderr });
|
|
7249
7249
|
});
|
|
7250
7250
|
});
|
|
7251
7251
|
}
|
|
@@ -10232,7 +10232,7 @@ var require_picocolors = __commonJS({
|
|
|
10232
10232
|
var require_p_map = __commonJS({
|
|
10233
10233
|
"../../node_modules/.pnpm/p-map@2.1.0/node_modules/p-map/index.js"(exports2, module2) {
|
|
10234
10234
|
"use strict";
|
|
10235
|
-
var pMap = (iterable, mapper, options) => new Promise((
|
|
10235
|
+
var pMap = (iterable, mapper, options) => new Promise((resolve3, reject) => {
|
|
10236
10236
|
options = Object.assign({
|
|
10237
10237
|
concurrency: Infinity
|
|
10238
10238
|
}, options);
|
|
@@ -10259,7 +10259,7 @@ var require_p_map = __commonJS({
|
|
|
10259
10259
|
if (nextItem.done) {
|
|
10260
10260
|
isIterableDone = true;
|
|
10261
10261
|
if (resolvingCount === 0) {
|
|
10262
|
-
|
|
10262
|
+
resolve3(ret);
|
|
10263
10263
|
}
|
|
10264
10264
|
return;
|
|
10265
10265
|
}
|
|
@@ -10919,11 +10919,11 @@ var require_doc = __commonJS({
|
|
|
10919
10919
|
type: "cursor",
|
|
10920
10920
|
placeholder: Symbol("cursor")
|
|
10921
10921
|
};
|
|
10922
|
-
function
|
|
10922
|
+
function join7(sep3, arr) {
|
|
10923
10923
|
const res = [];
|
|
10924
10924
|
for (let i = 0; i < arr.length; i++) {
|
|
10925
10925
|
if (i !== 0) {
|
|
10926
|
-
res.push(
|
|
10926
|
+
res.push(sep3);
|
|
10927
10927
|
}
|
|
10928
10928
|
res.push(arr[i]);
|
|
10929
10929
|
}
|
|
@@ -10949,7 +10949,7 @@ var require_doc = __commonJS({
|
|
|
10949
10949
|
}
|
|
10950
10950
|
module22.exports = {
|
|
10951
10951
|
concat,
|
|
10952
|
-
join:
|
|
10952
|
+
join: join7,
|
|
10953
10953
|
line,
|
|
10954
10954
|
softline,
|
|
10955
10955
|
hardline,
|
|
@@ -11141,7 +11141,7 @@ var require_doc = __commonJS({
|
|
|
11141
11141
|
var getLast = require_get_last();
|
|
11142
11142
|
var {
|
|
11143
11143
|
literalline,
|
|
11144
|
-
join:
|
|
11144
|
+
join: join7
|
|
11145
11145
|
} = require_doc_builders();
|
|
11146
11146
|
var isConcat = (doc) => Array.isArray(doc) || doc && doc.type === "concat";
|
|
11147
11147
|
var getDocParts = (doc) => {
|
|
@@ -11454,7 +11454,7 @@ var require_doc = __commonJS({
|
|
|
11454
11454
|
}
|
|
11455
11455
|
function replaceTextEndOfLine(text) {
|
|
11456
11456
|
let replacement = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : literalline;
|
|
11457
|
-
return
|
|
11457
|
+
return join7(replacement, text.split("\n")).parts;
|
|
11458
11458
|
}
|
|
11459
11459
|
function canBreakFn(doc) {
|
|
11460
11460
|
if (doc.type === "line") {
|
|
@@ -14792,22 +14792,22 @@ ${offset}${err}${errEnd}`;
|
|
|
14792
14792
|
return nextOffset;
|
|
14793
14793
|
}
|
|
14794
14794
|
};
|
|
14795
|
-
var
|
|
14795
|
+
var Node2 = class {
|
|
14796
14796
|
static addStringTerminator(src, offset, str2) {
|
|
14797
14797
|
if (str2[str2.length - 1] === "\n")
|
|
14798
14798
|
return str2;
|
|
14799
|
-
const next =
|
|
14799
|
+
const next = Node2.endOfWhiteSpace(src, offset);
|
|
14800
14800
|
return next >= src.length || src[next] === "\n" ? str2 + "\n" : str2;
|
|
14801
14801
|
}
|
|
14802
|
-
static atDocumentBoundary(src, offset,
|
|
14802
|
+
static atDocumentBoundary(src, offset, sep3) {
|
|
14803
14803
|
const ch0 = src[offset];
|
|
14804
14804
|
if (!ch0)
|
|
14805
14805
|
return true;
|
|
14806
14806
|
const prev = src[offset - 1];
|
|
14807
14807
|
if (prev && prev !== "\n")
|
|
14808
14808
|
return false;
|
|
14809
|
-
if (
|
|
14810
|
-
if (ch0 !==
|
|
14809
|
+
if (sep3) {
|
|
14810
|
+
if (ch0 !== sep3)
|
|
14811
14811
|
return false;
|
|
14812
14812
|
} else {
|
|
14813
14813
|
if (ch0 !== Char.DIRECTIVES_END && ch0 !== Char.DOCUMENT_END)
|
|
@@ -14857,11 +14857,11 @@ ${offset}${err}${errEnd}`;
|
|
|
14857
14857
|
return offset + 1;
|
|
14858
14858
|
}
|
|
14859
14859
|
static endOfBlockIndent(src, indent, lineStart) {
|
|
14860
|
-
const inEnd =
|
|
14860
|
+
const inEnd = Node2.endOfIndent(src, lineStart);
|
|
14861
14861
|
if (inEnd > lineStart + indent) {
|
|
14862
14862
|
return inEnd;
|
|
14863
14863
|
} else {
|
|
14864
|
-
const wsEnd =
|
|
14864
|
+
const wsEnd = Node2.endOfWhiteSpace(src, inEnd);
|
|
14865
14865
|
const ch = src[wsEnd];
|
|
14866
14866
|
if (!ch || ch === "\n")
|
|
14867
14867
|
return wsEnd;
|
|
@@ -14881,7 +14881,7 @@ ${offset}${err}${errEnd}`;
|
|
|
14881
14881
|
}
|
|
14882
14882
|
static normalizeOffset(src, offset) {
|
|
14883
14883
|
const ch = src[offset];
|
|
14884
|
-
return !ch ? offset : ch !== "\n" && src[offset - 1] === "\n" ? offset - 1 :
|
|
14884
|
+
return !ch ? offset : ch !== "\n" && src[offset - 1] === "\n" ? offset - 1 : Node2.endOfWhiteSpace(src, offset);
|
|
14885
14885
|
}
|
|
14886
14886
|
static foldNewline(src, offset, indent) {
|
|
14887
14887
|
let inCount = 0;
|
|
@@ -14898,7 +14898,7 @@ ${offset}${err}${errEnd}`;
|
|
|
14898
14898
|
case " ":
|
|
14899
14899
|
if (inCount <= indent)
|
|
14900
14900
|
error = true;
|
|
14901
|
-
offset =
|
|
14901
|
+
offset = Node2.endOfWhiteSpace(src, offset + 2) - 1;
|
|
14902
14902
|
break;
|
|
14903
14903
|
case " ":
|
|
14904
14904
|
inCount += 1;
|
|
@@ -14966,7 +14966,7 @@ ${offset}${err}${errEnd}`;
|
|
|
14966
14966
|
const {
|
|
14967
14967
|
end
|
|
14968
14968
|
} = this.valueRange;
|
|
14969
|
-
return start !== end ||
|
|
14969
|
+
return start !== end || Node2.atBlank(src, end - 1);
|
|
14970
14970
|
}
|
|
14971
14971
|
get hasComment() {
|
|
14972
14972
|
if (this.context) {
|
|
@@ -15060,7 +15060,7 @@ ${offset}${err}${errEnd}`;
|
|
|
15060
15060
|
src
|
|
15061
15061
|
} = this.context;
|
|
15062
15062
|
if (src[start] === Char.COMMENT) {
|
|
15063
|
-
const end =
|
|
15063
|
+
const end = Node2.endOfLine(src, start + 1);
|
|
15064
15064
|
const commentRange = new Range(start, end);
|
|
15065
15065
|
this.props.push(commentRange);
|
|
15066
15066
|
return end;
|
|
@@ -15086,12 +15086,12 @@ ${offset}${err}${errEnd}`;
|
|
|
15086
15086
|
if (value != null)
|
|
15087
15087
|
return value;
|
|
15088
15088
|
const str2 = src.slice(range.start, range.end);
|
|
15089
|
-
return
|
|
15089
|
+
return Node2.addStringTerminator(src, range.end, str2);
|
|
15090
15090
|
}
|
|
15091
15091
|
};
|
|
15092
15092
|
var YAMLError = class extends Error {
|
|
15093
15093
|
constructor(name, source, message) {
|
|
15094
|
-
if (!message || !(source instanceof
|
|
15094
|
+
if (!message || !(source instanceof Node2))
|
|
15095
15095
|
throw new Error(`Invalid arguments for new ${name}`);
|
|
15096
15096
|
super();
|
|
15097
15097
|
this.name = name;
|
|
@@ -15170,7 +15170,7 @@ ${ctx}
|
|
|
15170
15170
|
}
|
|
15171
15171
|
return obj;
|
|
15172
15172
|
}
|
|
15173
|
-
var PlainValue = class extends
|
|
15173
|
+
var PlainValue = class extends Node2 {
|
|
15174
15174
|
static endOfLine(src, start, inFlow) {
|
|
15175
15175
|
let ch = src[start];
|
|
15176
15176
|
let offset = start;
|
|
@@ -15207,7 +15207,7 @@ ${ctx}
|
|
|
15207
15207
|
const {
|
|
15208
15208
|
fold,
|
|
15209
15209
|
offset
|
|
15210
|
-
} =
|
|
15210
|
+
} = Node2.foldNewline(src, i, -1);
|
|
15211
15211
|
str2 += fold;
|
|
15212
15212
|
i = offset;
|
|
15213
15213
|
} else if (ch2 === " " || ch2 === " ") {
|
|
@@ -15255,9 +15255,9 @@ ${ctx}
|
|
|
15255
15255
|
let offset = start;
|
|
15256
15256
|
let valueEnd = start;
|
|
15257
15257
|
for (let ch = src[offset]; ch === "\n"; ch = src[offset]) {
|
|
15258
|
-
if (
|
|
15258
|
+
if (Node2.atDocumentBoundary(src, offset + 1))
|
|
15259
15259
|
break;
|
|
15260
|
-
const end =
|
|
15260
|
+
const end = Node2.endOfBlockIndent(src, indent, offset + 1);
|
|
15261
15261
|
if (end === null || src[end] === "#")
|
|
15262
15262
|
break;
|
|
15263
15263
|
if (src[end] === "\n") {
|
|
@@ -15284,7 +15284,7 @@ ${ctx}
|
|
|
15284
15284
|
offset = PlainValue.endOfLine(src, start, inFlow);
|
|
15285
15285
|
}
|
|
15286
15286
|
this.valueRange = new Range(start, offset);
|
|
15287
|
-
offset =
|
|
15287
|
+
offset = Node2.endOfWhiteSpace(src, offset);
|
|
15288
15288
|
offset = this.parseComment(offset);
|
|
15289
15289
|
if (!this.hasComment || this.valueRange.isEmpty()) {
|
|
15290
15290
|
offset = this.parseBlockValue(offset);
|
|
@@ -15293,7 +15293,7 @@ ${ctx}
|
|
|
15293
15293
|
}
|
|
15294
15294
|
};
|
|
15295
15295
|
exports22.Char = Char;
|
|
15296
|
-
exports22.Node =
|
|
15296
|
+
exports22.Node = Node2;
|
|
15297
15297
|
exports22.PlainValue = PlainValue;
|
|
15298
15298
|
exports22.Range = Range;
|
|
15299
15299
|
exports22.Type = Type2;
|
|
@@ -15973,7 +15973,7 @@ ${ctx}
|
|
|
15973
15973
|
const folded = this.type === PlainValue.Type.BLOCK_FOLDED;
|
|
15974
15974
|
let atStart = true;
|
|
15975
15975
|
let str2 = "";
|
|
15976
|
-
let
|
|
15976
|
+
let sep3 = "";
|
|
15977
15977
|
let prevMoreIndented = false;
|
|
15978
15978
|
for (let i = start; i < end; ++i) {
|
|
15979
15979
|
for (let j = 0; j < bi; ++j) {
|
|
@@ -15983,25 +15983,25 @@ ${ctx}
|
|
|
15983
15983
|
}
|
|
15984
15984
|
const ch2 = src[i];
|
|
15985
15985
|
if (ch2 === "\n") {
|
|
15986
|
-
if (
|
|
15986
|
+
if (sep3 === "\n")
|
|
15987
15987
|
str2 += "\n";
|
|
15988
15988
|
else
|
|
15989
|
-
|
|
15989
|
+
sep3 = "\n";
|
|
15990
15990
|
} else {
|
|
15991
15991
|
const lineEnd = PlainValue.Node.endOfLine(src, i);
|
|
15992
15992
|
const line = src.slice(i, lineEnd);
|
|
15993
15993
|
i = lineEnd;
|
|
15994
15994
|
if (folded && (ch2 === " " || ch2 === " ") && i < keepStart) {
|
|
15995
|
-
if (
|
|
15996
|
-
|
|
15997
|
-
else if (!prevMoreIndented && !atStart &&
|
|
15998
|
-
|
|
15999
|
-
str2 +=
|
|
16000
|
-
|
|
15995
|
+
if (sep3 === " ")
|
|
15996
|
+
sep3 = "\n";
|
|
15997
|
+
else if (!prevMoreIndented && !atStart && sep3 === "\n")
|
|
15998
|
+
sep3 = "\n\n";
|
|
15999
|
+
str2 += sep3 + line;
|
|
16000
|
+
sep3 = lineEnd < end && src[lineEnd] || "";
|
|
16001
16001
|
prevMoreIndented = true;
|
|
16002
16002
|
} else {
|
|
16003
|
-
str2 +=
|
|
16004
|
-
|
|
16003
|
+
str2 += sep3 + line;
|
|
16004
|
+
sep3 = folded && i < keepStart ? " " : "\n";
|
|
16005
16005
|
prevMoreIndented = false;
|
|
16006
16006
|
}
|
|
16007
16007
|
if (atStart && line !== "")
|
|
@@ -16720,7 +16720,7 @@ ${indent}${str2}`;
|
|
|
16720
16720
|
return !comment ? str2 : comment.indexOf("\n") === -1 ? `${str2} #${comment}` : `${str2}
|
|
16721
16721
|
` + comment.replace(/^/gm, `${indent || ""}#`);
|
|
16722
16722
|
}
|
|
16723
|
-
var
|
|
16723
|
+
var Node2 = class {
|
|
16724
16724
|
};
|
|
16725
16725
|
function toJSON(value, arg, ctx) {
|
|
16726
16726
|
if (Array.isArray(value))
|
|
@@ -16741,7 +16741,7 @@ ${indent}${str2}`;
|
|
|
16741
16741
|
return Number(value);
|
|
16742
16742
|
return value;
|
|
16743
16743
|
}
|
|
16744
|
-
var Scalar = class extends
|
|
16744
|
+
var Scalar = class extends Node2 {
|
|
16745
16745
|
constructor(value) {
|
|
16746
16746
|
super();
|
|
16747
16747
|
this.value = value;
|
|
@@ -16775,7 +16775,7 @@ ${indent}${str2}`;
|
|
|
16775
16775
|
return schema2.createNode(v, false);
|
|
16776
16776
|
}
|
|
16777
16777
|
var isEmptyPath = (path3) => path3 == null || typeof path3 === "object" && path3[Symbol.iterator]().next().done;
|
|
16778
|
-
var Collection = class extends
|
|
16778
|
+
var Collection = class extends Node2 {
|
|
16779
16779
|
constructor(schema2) {
|
|
16780
16780
|
super();
|
|
16781
16781
|
PlainValue._defineProperty(this, "items", []);
|
|
@@ -16998,7 +16998,7 @@ ${indent}${s}` : "\n";
|
|
|
16998
16998
|
return "";
|
|
16999
16999
|
if (typeof jsKey !== "object")
|
|
17000
17000
|
return String(jsKey);
|
|
17001
|
-
if (key instanceof
|
|
17001
|
+
if (key instanceof Node2 && ctx && ctx.doc)
|
|
17002
17002
|
return key.toString({
|
|
17003
17003
|
anchors: /* @__PURE__ */ Object.create(null),
|
|
17004
17004
|
doc: ctx.doc,
|
|
@@ -17010,7 +17010,7 @@ ${indent}${s}` : "\n";
|
|
|
17010
17010
|
});
|
|
17011
17011
|
return JSON.stringify(jsKey);
|
|
17012
17012
|
};
|
|
17013
|
-
var Pair = class extends
|
|
17013
|
+
var Pair = class extends Node2 {
|
|
17014
17014
|
constructor(key, value = null) {
|
|
17015
17015
|
super();
|
|
17016
17016
|
this.key = key;
|
|
@@ -17018,12 +17018,12 @@ ${indent}${s}` : "\n";
|
|
|
17018
17018
|
this.type = Pair.Type.PAIR;
|
|
17019
17019
|
}
|
|
17020
17020
|
get commentBefore() {
|
|
17021
|
-
return this.key instanceof
|
|
17021
|
+
return this.key instanceof Node2 ? this.key.commentBefore : void 0;
|
|
17022
17022
|
}
|
|
17023
17023
|
set commentBefore(cb) {
|
|
17024
17024
|
if (this.key == null)
|
|
17025
17025
|
this.key = new Scalar(null);
|
|
17026
|
-
if (this.key instanceof
|
|
17026
|
+
if (this.key instanceof Node2)
|
|
17027
17027
|
this.key.commentBefore = cb;
|
|
17028
17028
|
else {
|
|
17029
17029
|
const msg = "Pair.commentBefore is an alias for Pair.key.commentBefore. To set it, the key must be a Node.";
|
|
@@ -17068,7 +17068,7 @@ ${indent}${s}` : "\n";
|
|
|
17068
17068
|
key,
|
|
17069
17069
|
value
|
|
17070
17070
|
} = this;
|
|
17071
|
-
let keyComment = key instanceof
|
|
17071
|
+
let keyComment = key instanceof Node2 && key.comment;
|
|
17072
17072
|
if (simpleKeys) {
|
|
17073
17073
|
if (keyComment) {
|
|
17074
17074
|
throw new Error("With simple keys, key nodes cannot have comments");
|
|
@@ -17078,7 +17078,7 @@ ${indent}${s}` : "\n";
|
|
|
17078
17078
|
throw new Error(msg);
|
|
17079
17079
|
}
|
|
17080
17080
|
}
|
|
17081
|
-
let explicitKey = !simpleKeys && (!key || keyComment || (key instanceof
|
|
17081
|
+
let explicitKey = !simpleKeys && (!key || keyComment || (key instanceof Node2 ? key instanceof Collection || key.type === PlainValue.Type.BLOCK_FOLDED || key.type === PlainValue.Type.BLOCK_LITERAL : typeof key === "object"));
|
|
17082
17082
|
const {
|
|
17083
17083
|
doc,
|
|
17084
17084
|
indent,
|
|
@@ -17115,7 +17115,7 @@ ${indent}:` : `${str2}:`;
|
|
|
17115
17115
|
}
|
|
17116
17116
|
let vcb = "";
|
|
17117
17117
|
let valueComment = null;
|
|
17118
|
-
if (value instanceof
|
|
17118
|
+
if (value instanceof Node2) {
|
|
17119
17119
|
if (value.spaceBefore)
|
|
17120
17120
|
vcb = "\n";
|
|
17121
17121
|
if (value.commentBefore) {
|
|
@@ -17174,7 +17174,7 @@ ${ctx.indent}`;
|
|
|
17174
17174
|
}
|
|
17175
17175
|
return 1;
|
|
17176
17176
|
};
|
|
17177
|
-
var Alias = class extends
|
|
17177
|
+
var Alias = class extends Node2 {
|
|
17178
17178
|
static stringify({
|
|
17179
17179
|
range,
|
|
17180
17180
|
source
|
|
@@ -17394,12 +17394,12 @@ ${ctx.indent}`;
|
|
|
17394
17394
|
for (const {
|
|
17395
17395
|
format: format2,
|
|
17396
17396
|
test,
|
|
17397
|
-
resolve:
|
|
17397
|
+
resolve: resolve3
|
|
17398
17398
|
} of tags) {
|
|
17399
17399
|
if (test) {
|
|
17400
17400
|
const match = str2.match(test);
|
|
17401
17401
|
if (match) {
|
|
17402
|
-
let res =
|
|
17402
|
+
let res = resolve3.apply(null, match);
|
|
17403
17403
|
if (!(res instanceof Scalar))
|
|
17404
17404
|
res = new Scalar(res);
|
|
17405
17405
|
if (format2)
|
|
@@ -18636,7 +18636,7 @@ ${ca}` : ca;
|
|
|
18636
18636
|
exports22.Alias = Alias;
|
|
18637
18637
|
exports22.Collection = Collection;
|
|
18638
18638
|
exports22.Merge = Merge;
|
|
18639
|
-
exports22.Node =
|
|
18639
|
+
exports22.Node = Node2;
|
|
18640
18640
|
exports22.Pair = Pair;
|
|
18641
18641
|
exports22.Scalar = Scalar;
|
|
18642
18642
|
exports22.YAMLMap = YAMLMap;
|
|
@@ -20423,8 +20423,8 @@ ${error.message}`;
|
|
|
20423
20423
|
Object.defineProperty(exports22, "__esModule", {
|
|
20424
20424
|
value: true
|
|
20425
20425
|
});
|
|
20426
|
-
exports22.readFile =
|
|
20427
|
-
exports22.readFileSync =
|
|
20426
|
+
exports22.readFile = readFile7;
|
|
20427
|
+
exports22.readFileSync = readFileSync3;
|
|
20428
20428
|
var _fs = _interopRequireDefault(require("fs"));
|
|
20429
20429
|
function _interopRequireDefault(obj) {
|
|
20430
20430
|
return obj && obj.__esModule ? obj : {
|
|
@@ -20432,17 +20432,17 @@ ${error.message}`;
|
|
|
20432
20432
|
};
|
|
20433
20433
|
}
|
|
20434
20434
|
async function fsReadFileAsync(pathname, encoding) {
|
|
20435
|
-
return new Promise((
|
|
20435
|
+
return new Promise((resolve3, reject) => {
|
|
20436
20436
|
_fs.default.readFile(pathname, encoding, (error, contents) => {
|
|
20437
20437
|
if (error) {
|
|
20438
20438
|
reject(error);
|
|
20439
20439
|
return;
|
|
20440
20440
|
}
|
|
20441
|
-
|
|
20441
|
+
resolve3(contents);
|
|
20442
20442
|
});
|
|
20443
20443
|
});
|
|
20444
20444
|
}
|
|
20445
|
-
async function
|
|
20445
|
+
async function readFile7(filepath, options = {}) {
|
|
20446
20446
|
const throwNotFound = options.throwNotFound === true;
|
|
20447
20447
|
try {
|
|
20448
20448
|
const content = await fsReadFileAsync(filepath, "utf8");
|
|
@@ -20454,7 +20454,7 @@ ${error.message}`;
|
|
|
20454
20454
|
throw error;
|
|
20455
20455
|
}
|
|
20456
20456
|
}
|
|
20457
|
-
function
|
|
20457
|
+
function readFileSync3(filepath, options = {}) {
|
|
20458
20458
|
const throwNotFound = options.throwNotFound === true;
|
|
20459
20459
|
try {
|
|
20460
20460
|
const content = _fs.default.readFileSync(filepath, "utf8");
|
|
@@ -20841,7 +20841,7 @@ ${error.message}`;
|
|
|
20841
20841
|
var path3 = require("path");
|
|
20842
20842
|
var fs3 = require("fs");
|
|
20843
20843
|
var exists = fs3.exists || path3.exists;
|
|
20844
|
-
var
|
|
20844
|
+
var existsSync2 = fs3.existsSync || path3.existsSync;
|
|
20845
20845
|
function splitPath(path22) {
|
|
20846
20846
|
var parts = path22.split(/(\/|\\)/);
|
|
20847
20847
|
if (!parts.length)
|
|
@@ -20866,7 +20866,7 @@ ${error.message}`;
|
|
|
20866
20866
|
if (parts.length === 0)
|
|
20867
20867
|
return null;
|
|
20868
20868
|
var p = parts.join("");
|
|
20869
|
-
var itdoes =
|
|
20869
|
+
var itdoes = existsSync2(path3.join(p, clue));
|
|
20870
20870
|
return itdoes ? p : testDir(parts.slice(0, -1));
|
|
20871
20871
|
}
|
|
20872
20872
|
return testDir(splitPath(currentFullPath));
|
|
@@ -22854,7 +22854,7 @@ var require_parser_babel = __commonJS({
|
|
|
22854
22854
|
function ul(t) {
|
|
22855
22855
|
return hl.has(t);
|
|
22856
22856
|
}
|
|
22857
|
-
var Fe = 0, Le = 1, de = 2, Gt = 4, gr = 8, ht = 16, Pr = 32, Ee = 64, ut = 128, Oe = 256, ct = Le | de | ut | Oe, le = 1, Ce = 2, Ar = 4, be = 8, pt = 16, Tr = 64, ft = 128, Jt = 256, Xt = 512, Yt = 1024, Qt = 2048, Ve = 4096, dt = 8192, vr = le | Ce | be | ft | dt, Be = le | 0 | be | dt, cl = le | 0 | be | 0, mt = le | 0 | Ar | 0, Er = le | 0 | pt | 0, pl = 0 | Ce | 0 | ft, fl = 0 | Ce | 0 | 0, Cr = le | Ce | be | Jt | dt, br = 0 | Yt, Pe = 0 | Tr, dl = le | 0 | 0 | Tr, ml = Cr | Xt, yl = 0 | Yt, Sr = 0 | Ce | 0 | Ve, xl = Qt, yt = 4, Zt = 2, es = 1,
|
|
22857
|
+
var Fe = 0, Le = 1, de = 2, Gt = 4, gr = 8, ht = 16, Pr = 32, Ee = 64, ut = 128, Oe = 256, ct = Le | de | ut | Oe, le = 1, Ce = 2, Ar = 4, be = 8, pt = 16, Tr = 64, ft = 128, Jt = 256, Xt = 512, Yt = 1024, Qt = 2048, Ve = 4096, dt = 8192, vr = le | Ce | be | ft | dt, Be = le | 0 | be | dt, cl = le | 0 | be | 0, mt = le | 0 | Ar | 0, Er = le | 0 | pt | 0, pl = 0 | Ce | 0 | ft, fl = 0 | Ce | 0 | 0, Cr = le | Ce | be | Jt | dt, br = 0 | Yt, Pe = 0 | Tr, dl = le | 0 | 0 | Tr, ml = Cr | Xt, yl = 0 | Yt, Sr = 0 | Ce | 0 | Ve, xl = Qt, yt = 4, Zt = 2, es = 1, ts2 = Zt | es, gl = Zt | yt, Pl = es | yt, Al = Zt, Tl = es, ss = 0, rs = class {
|
|
22858
22858
|
constructor(t) {
|
|
22859
22859
|
this.var = /* @__PURE__ */ new Set(), this.lexical = /* @__PURE__ */ new Set(), this.functions = /* @__PURE__ */ new Set(), this.flags = t;
|
|
22860
22860
|
}
|
|
@@ -23827,10 +23827,10 @@ var require_parser_babel = __commonJS({
|
|
|
23827
23827
|
}
|
|
23828
23828
|
declarePrivateName(t, r, e) {
|
|
23829
23829
|
let { privateNames: s, loneAccessors: i, undefinedPrivateNames: a } = this.current(), n = s.has(t);
|
|
23830
|
-
if (r &
|
|
23830
|
+
if (r & ts2) {
|
|
23831
23831
|
let o = n && i.get(t);
|
|
23832
23832
|
if (o) {
|
|
23833
|
-
let u = o & yt, c = r & yt, y = o &
|
|
23833
|
+
let u = o & yt, c = r & yt, y = o & ts2, g = r & ts2;
|
|
23834
23834
|
n = y === g || u !== c, n || i.delete(t);
|
|
23835
23835
|
} else n || i.set(t, r);
|
|
23836
23836
|
}
|
|
@@ -30024,7 +30024,7 @@ var require_parser_flow = __commonJS({
|
|
|
30024
30024
|
Lt(), (function(j0) {
|
|
30025
30025
|
"use strict";
|
|
30026
30026
|
var ur = "member_property_expression", hr = 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, of = "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
|
|
30027
|
-
`, 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, _d = 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", zh = 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, _a = "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", SS = 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, fs3 = 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, br = 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)
|
|
30027
|
+
`, 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, _d = 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", zh = 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, ts2 = "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, _a = "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", SS = 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, fs3 = 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, br = 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)
|
|
30028
30028
|
`, 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", XY = "%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
|
|
30029
30029
|
`, 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 = `
|
|
30030
30030
|
`, 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 = `
|
|
@@ -31198,25 +31198,25 @@ var require_parser_flow = __commonJS({
|
|
|
31198
31198
|
}
|
|
31199
31199
|
function Rv(t) {
|
|
31200
31200
|
var n = YV(t), e = n[0], i = n[1], x = n[2], c = wp(x), s = new an(gx, 268435455, Li).udivmod(c).quotient, p = Vr(t, e), y = Ep(p);
|
|
31201
|
-
(y < 0 || y >= x) && e7(
|
|
31201
|
+
(y < 0 || y >= x) && e7(ts2);
|
|
31202
31202
|
for (var T = wp(y); ; ) if (e++, p = Vr(t, e), p != 95) {
|
|
31203
31203
|
if (y = Ep(p), y < 0 || y >= x) break;
|
|
31204
|
-
KA(s, T) && e7(
|
|
31204
|
+
KA(s, T) && e7(ts2), y = wp(y), T = R70(j70(c, T), y), KA(T, y) && e7(ts2);
|
|
31205
31205
|
}
|
|
31206
|
-
return e != nn(t) && e7(
|
|
31206
|
+
return e != nn(t) && e7(ts2), x == 10 && KA(new an(0, 0, Mi), T) && e7(ts2), i < 0 && (T = XV(T)), T;
|
|
31207
31207
|
}
|
|
31208
31208
|
function jv(t) {
|
|
31209
31209
|
return t.toFloat();
|
|
31210
31210
|
}
|
|
31211
31211
|
function Bi(t) {
|
|
31212
31212
|
var n = YV(t), e = n[0], i = n[1], x = n[2], c = nn(t), s = -1 >>> 0, p = e < c ? Vr(t, e) : 0, y = Ep(p);
|
|
31213
|
-
(y < 0 || y >= x) && e7(
|
|
31213
|
+
(y < 0 || y >= x) && e7(ts2);
|
|
31214
31214
|
var T = y;
|
|
31215
31215
|
for (e++; e < c; e++) if (p = Vr(t, e), p != 95) {
|
|
31216
31216
|
if (y = Ep(p), y < 0 || y >= x) break;
|
|
31217
|
-
T = x * T + y, T > s && e7(
|
|
31217
|
+
T = x * T + y, T > s && e7(ts2);
|
|
31218
31218
|
}
|
|
31219
|
-
return e != c && e7(
|
|
31219
|
+
return e != c && e7(ts2), T = i * T, x == 10 && (T | 0) != T && e7(ts2), T | 0;
|
|
31220
31220
|
}
|
|
31221
31221
|
function G70(t) {
|
|
31222
31222
|
return t.slice(1);
|
|
@@ -68038,26 +68038,26 @@ ${fe.join(`
|
|
|
68038
68038
|
} }), R5 = () => {
|
|
68039
68039
|
}, j5 = () => {
|
|
68040
68040
|
}, J5 = () => {
|
|
68041
|
-
},
|
|
68041
|
+
}, ts2 = Date.now, F5 = () => {
|
|
68042
68042
|
}, Dp = new Proxy(() => {
|
|
68043
68043
|
}, { get: () => Dp });
|
|
68044
68044
|
function DT(e) {
|
|
68045
68045
|
var t;
|
|
68046
68046
|
if (Q1) {
|
|
68047
68047
|
let r = (t = Z1.get(e)) != null ? t : 0;
|
|
68048
|
-
Z1.set(e, r + 1), Ip.set(e,
|
|
68048
|
+
Z1.set(e, r + 1), Ip.set(e, ts2()), kp == null || kp.mark(e), typeof onProfilerEvent == "function" && onProfilerEvent(e);
|
|
68049
68049
|
}
|
|
68050
68050
|
}
|
|
68051
68051
|
function B5(e, t, r) {
|
|
68052
68052
|
var s, f;
|
|
68053
68053
|
if (Q1) {
|
|
68054
|
-
let x = (s = r !== void 0 ? Ip.get(r) : void 0) != null ? s :
|
|
68054
|
+
let x = (s = r !== void 0 ? Ip.get(r) : void 0) != null ? s : ts2(), w = (f = t !== void 0 ? Ip.get(t) : void 0) != null ? f : kT, A = eg.get(e) || 0;
|
|
68055
68055
|
eg.set(e, A + (x - w)), kp == null || kp.measure(e, t, r);
|
|
68056
68056
|
}
|
|
68057
68057
|
}
|
|
68058
68058
|
var kp, q5, Q1, kT, Ip, Z1, eg, pH = D({ "src/compiler/performance.ts"() {
|
|
68059
68059
|
"use strict";
|
|
68060
|
-
nn(), q5 = { enter: yn, exit: yn }, Q1 = false, kT =
|
|
68060
|
+
nn(), q5 = { enter: yn, exit: yn }, Q1 = false, kT = ts2(), Ip = /* @__PURE__ */ new Map(), Z1 = /* @__PURE__ */ new Map(), eg = /* @__PURE__ */ new Map();
|
|
68061
68061
|
} }), IT = () => {
|
|
68062
68062
|
}, U5 = () => {
|
|
68063
68063
|
}, rs;
|
|
@@ -83345,10 +83345,10 @@ ${fe.join(`
|
|
|
83345
83345
|
return T ? [createTextSpanFromNode(L, U), createTextSpanFromNode(T, U)].sort((it, mt) => it.start - mt.start) : Bt;
|
|
83346
83346
|
}
|
|
83347
83347
|
function Mn(Z, ie, U) {
|
|
83348
|
-
let L =
|
|
83349
|
-
X("getIndentationAtPosition: getCurrentSourceFile: " + (
|
|
83348
|
+
let L = ts2(), fe = lu(U), T = x.getCurrentSourceFile(Z);
|
|
83349
|
+
X("getIndentationAtPosition: getCurrentSourceFile: " + (ts2() - L)), L = ts2();
|
|
83350
83350
|
let it = ts_formatting_exports.SmartIndenter.getIndentation(ie, T, fe);
|
|
83351
|
-
return X("getIndentationAtPosition: computeIndentation : " + (
|
|
83351
|
+
return X("getIndentationAtPosition: computeIndentation : " + (ts2() - L)), it;
|
|
83352
83352
|
}
|
|
83353
83353
|
function _i(Z, ie, U, L) {
|
|
83354
83354
|
let fe = x.getCurrentSourceFile(Z);
|
|
@@ -84090,7 +84090,7 @@ ${fe.join(`
|
|
|
84090
84090
|
this.hostCancellationToken = e, this.throttleWaitMilliseconds = t, this.lastCancellationCheckTime = 0;
|
|
84091
84091
|
}
|
|
84092
84092
|
isCancellationRequested() {
|
|
84093
|
-
let e =
|
|
84093
|
+
let e = ts2();
|
|
84094
84094
|
return Math.abs(e - this.lastCancellationCheckTime) >= this.throttleWaitMilliseconds ? (this.lastCancellationCheckTime = e, this.hostCancellationToken.isCancellationRequested()) : false;
|
|
84095
84095
|
}
|
|
84096
84096
|
throwIfCancellationRequested() {
|
|
@@ -84123,7 +84123,7 @@ ${fe.join(`
|
|
|
84123
84123
|
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();
|
|
84124
84124
|
} }), FB = () => {
|
|
84125
84125
|
}, L7 = {};
|
|
84126
|
-
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: () => S, 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: () => D2, 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: () => of, 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: () => SS, 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: () => _c, isClassElement: () => Js, isClassExpression: () => _d, 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: () => pc3, 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: () => _3, 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: () => _2, 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: () => pl, 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: () => os2, 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: () => fs3, 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: () => en, 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 });
|
|
84126
|
+
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: () => S, 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: () => D2, 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: () => of, 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: () => SS, 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: () => _c, isClassElement: () => Js, isClassExpression: () => _d, 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: () => pc3, 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: () => _3, 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: () => _2, 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: () => pl, 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: () => os2, 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: () => fs3, 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: () => ts2, toArray: () => en, 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 });
|
|
84127
84127
|
var R7 = D({ "src/typescript/_namespaces/ts.ts"() {
|
|
84128
84128
|
"use strict";
|
|
84129
84129
|
nn(), l7(), L2(), FB();
|
|
@@ -92056,11 +92056,11 @@ var require_parser_espree = __commonJS({
|
|
|
92056
92056
|
};
|
|
92057
92057
|
});
|
|
92058
92058
|
var ss = C((Ol, is) => {
|
|
92059
|
-
var pu = oe(), fu = jt(), Zi = be(), du = qt(), es = Dt(), rs = Nt(), De = fu("wks"), we = pu.Symbol,
|
|
92059
|
+
var pu = oe(), fu = jt(), Zi = be(), du = qt(), es = Dt(), rs = Nt(), De = fu("wks"), we = pu.Symbol, ts2 = we && we.for, mu = rs ? we : we && we.withoutSetter || du;
|
|
92060
92060
|
is.exports = function(a) {
|
|
92061
92061
|
if (!Zi(De, a) || !(es || typeof De[a] == "string")) {
|
|
92062
92062
|
var u = "Symbol." + a;
|
|
92063
|
-
es && Zi(we, a) ? De[a] = we[a] : rs &&
|
|
92063
|
+
es && Zi(we, a) ? De[a] = we[a] : rs && ts2 ? De[a] = ts2(u) : De[a] = mu(u);
|
|
92064
92064
|
}
|
|
92065
92065
|
return De[a];
|
|
92066
92066
|
};
|
|
@@ -98736,7 +98736,7 @@ var require_parser_postcss = __commonJS({
|
|
|
98736
98736
|
return Bc(e.length);
|
|
98737
98737
|
};
|
|
98738
98738
|
});
|
|
98739
|
-
var ns = U((xh,
|
|
98739
|
+
var ns = U((xh, ts2) => {
|
|
98740
98740
|
var Fc = nr(), Uc = Qi(), $c = es(), rs = function(e) {
|
|
98741
98741
|
return function(n, i, u) {
|
|
98742
98742
|
var o = Fc(n), h = $c(o), l = Uc(u, h), p;
|
|
@@ -98746,7 +98746,7 @@ var require_parser_postcss = __commonJS({
|
|
|
98746
98746
|
return !e && -1;
|
|
98747
98747
|
};
|
|
98748
98748
|
};
|
|
98749
|
-
|
|
98749
|
+
ts2.exports = { includes: rs(true), indexOf: rs(false) };
|
|
98750
98750
|
});
|
|
98751
98751
|
var os2 = U((Sh, ss) => {
|
|
98752
98752
|
var Wc = xe(), ct = Te(), Vc = nr(), Gc = ns().indexOf, Hc = nt(), is = Wc([].push);
|
|
@@ -109503,9 +109503,9 @@ var require_parser_markdown = __commonJS({
|
|
|
109503
109503
|
rn.exports = rs(en) && /native code/.test(String(en));
|
|
109504
109504
|
});
|
|
109505
109505
|
var an = $((Zf, nn) => {
|
|
109506
|
-
var us = Mr(),
|
|
109506
|
+
var us = Mr(), ts2 = $r(), tn = us("keys");
|
|
109507
109507
|
nn.exports = function(e) {
|
|
109508
|
-
return tn[e] || (tn[e] =
|
|
109508
|
+
return tn[e] || (tn[e] = ts2(e));
|
|
109509
109509
|
};
|
|
109510
109510
|
});
|
|
109511
109511
|
var ru = $((Qf, on) => {
|
|
@@ -113388,12 +113388,12 @@ var require_parser_html = __commonJS({
|
|
|
113388
113388
|
};
|
|
113389
113389
|
});
|
|
113390
113390
|
var is = S((V2, ss) => {
|
|
113391
|
-
var PD = $r(), kD = De(), LD = de(), $D = ke(), MD = Wn(), jD = _e(), us = ir(), UD = Jn(), GD = Gr(),
|
|
113391
|
+
var PD = $r(), kD = De(), LD = de(), $D = ke(), MD = Wn(), jD = _e(), us = ir(), UD = Jn(), GD = Gr(), ts2 = rs(), VD = TypeError, Ye = function(e, r) {
|
|
113392
113392
|
this.stopped = e, this.result = r;
|
|
113393
113393
|
}, ns = Ye.prototype;
|
|
113394
113394
|
ss.exports = function(e, r, u) {
|
|
113395
113395
|
var n = u && u.that, D = !!(u && u.AS_ENTRIES), s = !!(u && u.IS_RECORD), i = !!(u && u.IS_ITERATOR), f = !!(u && u.INTERRUPTED), c = PD(r, n), F, a, l, h, C, d, m, T = function(g) {
|
|
113396
|
-
return F &&
|
|
113396
|
+
return F && ts2(F, "normal", g), new Ye(true, g);
|
|
113397
113397
|
}, w = function(g) {
|
|
113398
113398
|
return D ? (LD(g), f ? c(g[0], g[1], T) : c(g[0], g[1])) : f ? c(g, T) : c(g);
|
|
113399
113399
|
};
|
|
@@ -113411,7 +113411,7 @@ var require_parser_html = __commonJS({
|
|
|
113411
113411
|
try {
|
|
113412
113412
|
C = w(m.value);
|
|
113413
113413
|
} catch (g) {
|
|
113414
|
-
|
|
113414
|
+
ts2(F, "throw", g);
|
|
113415
113415
|
}
|
|
113416
113416
|
if (typeof C == "object" && C && us(ns, C)) return C;
|
|
113417
113417
|
}
|
|
@@ -121791,7 +121791,7 @@ var require_prettier = __commonJS({
|
|
|
121791
121791
|
tokenize: function tokenize(value) {
|
|
121792
121792
|
return value.split("");
|
|
121793
121793
|
},
|
|
121794
|
-
join: function
|
|
121794
|
+
join: function join7(chars) {
|
|
121795
121795
|
return chars.join("");
|
|
121796
121796
|
}
|
|
121797
121797
|
};
|
|
@@ -123470,11 +123470,11 @@ var require_prettier = __commonJS({
|
|
|
123470
123470
|
}
|
|
123471
123471
|
function __awaiter(thisArg, _arguments, P, generator) {
|
|
123472
123472
|
function adopt(value) {
|
|
123473
|
-
return value instanceof P ? value : new P(function(
|
|
123474
|
-
|
|
123473
|
+
return value instanceof P ? value : new P(function(resolve3) {
|
|
123474
|
+
resolve3(value);
|
|
123475
123475
|
});
|
|
123476
123476
|
}
|
|
123477
|
-
return new (P || (P = Promise))(function(
|
|
123477
|
+
return new (P || (P = Promise))(function(resolve3, reject) {
|
|
123478
123478
|
function fulfilled(value) {
|
|
123479
123479
|
try {
|
|
123480
123480
|
step(generator.next(value));
|
|
@@ -123490,7 +123490,7 @@ var require_prettier = __commonJS({
|
|
|
123490
123490
|
}
|
|
123491
123491
|
}
|
|
123492
123492
|
function step(result) {
|
|
123493
|
-
result.done ?
|
|
123493
|
+
result.done ? resolve3(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
123494
123494
|
}
|
|
123495
123495
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
123496
123496
|
});
|
|
@@ -123713,14 +123713,14 @@ var require_prettier = __commonJS({
|
|
|
123713
123713
|
}, i);
|
|
123714
123714
|
function verb(n) {
|
|
123715
123715
|
i[n] = o[n] && function(v) {
|
|
123716
|
-
return new Promise(function(
|
|
123717
|
-
v = o[n](v), settle(
|
|
123716
|
+
return new Promise(function(resolve3, reject) {
|
|
123717
|
+
v = o[n](v), settle(resolve3, reject, v.done, v.value);
|
|
123718
123718
|
});
|
|
123719
123719
|
};
|
|
123720
123720
|
}
|
|
123721
|
-
function settle(
|
|
123721
|
+
function settle(resolve3, reject, d, v) {
|
|
123722
123722
|
Promise.resolve(v).then(function(v2) {
|
|
123723
|
-
|
|
123723
|
+
resolve3({
|
|
123724
123724
|
value: v2,
|
|
123725
123725
|
done: d
|
|
123726
123726
|
});
|
|
@@ -127710,7 +127710,7 @@ ${frame}`;
|
|
|
127710
127710
|
breakParent,
|
|
127711
127711
|
indent,
|
|
127712
127712
|
lineSuffix,
|
|
127713
|
-
join:
|
|
127713
|
+
join: join7,
|
|
127714
127714
|
cursor
|
|
127715
127715
|
}
|
|
127716
127716
|
} = require_doc();
|
|
@@ -128092,9 +128092,9 @@ ${frame}`;
|
|
|
128092
128092
|
return "";
|
|
128093
128093
|
}
|
|
128094
128094
|
if (sameIndent) {
|
|
128095
|
-
return
|
|
128095
|
+
return join7(hardline, parts);
|
|
128096
128096
|
}
|
|
128097
|
-
return indent([hardline,
|
|
128097
|
+
return indent([hardline, join7(hardline, parts)]);
|
|
128098
128098
|
}
|
|
128099
128099
|
function printCommentsSeparately(path3, options, ignored) {
|
|
128100
128100
|
const value = path3.getValue();
|
|
@@ -135093,8 +135093,8 @@ ${error.message}`;
|
|
|
135093
135093
|
cb(null, x);
|
|
135094
135094
|
}
|
|
135095
135095
|
};
|
|
135096
|
-
var defaultReadPackage = function defaultReadPackage2(
|
|
135097
|
-
|
|
135096
|
+
var defaultReadPackage = function defaultReadPackage2(readFile7, pkgfile, cb) {
|
|
135097
|
+
readFile7(pkgfile, function(readFileErr, body) {
|
|
135098
135098
|
if (readFileErr)
|
|
135099
135099
|
cb(readFileErr);
|
|
135100
135100
|
else {
|
|
@@ -135114,7 +135114,7 @@ ${error.message}`;
|
|
|
135114
135114
|
}
|
|
135115
135115
|
return dirs;
|
|
135116
135116
|
};
|
|
135117
|
-
module22.exports = function
|
|
135117
|
+
module22.exports = function resolve3(x, options, callback) {
|
|
135118
135118
|
var cb = callback;
|
|
135119
135119
|
var opts = options;
|
|
135120
135120
|
if (typeof options === "function") {
|
|
@@ -135130,7 +135130,7 @@ ${error.message}`;
|
|
|
135130
135130
|
opts = normalizeOptions(x, opts);
|
|
135131
135131
|
var isFile = opts.isFile || defaultIsFile;
|
|
135132
135132
|
var isDirectory = opts.isDirectory || defaultIsDir;
|
|
135133
|
-
var
|
|
135133
|
+
var readFile7 = opts.readFile || fs3.readFile;
|
|
135134
135134
|
var realpath = opts.realpath || defaultRealpath;
|
|
135135
135135
|
var readPackage = opts.readPackage || defaultReadPackage;
|
|
135136
135136
|
if (opts.readFile && opts.readPackage) {
|
|
@@ -135262,7 +135262,7 @@ ${error.message}`;
|
|
|
135262
135262
|
isFile(pkgfile, function(err2, ex) {
|
|
135263
135263
|
if (!ex)
|
|
135264
135264
|
return loadpkg(path3.dirname(dir), cb2);
|
|
135265
|
-
readPackage(
|
|
135265
|
+
readPackage(readFile7, pkgfile, function(err3, pkgParam) {
|
|
135266
135266
|
if (err3)
|
|
135267
135267
|
cb2(err3);
|
|
135268
135268
|
var pkg = pkgParam;
|
|
@@ -135290,7 +135290,7 @@ ${error.message}`;
|
|
|
135290
135290
|
return cb2(err2);
|
|
135291
135291
|
if (!ex)
|
|
135292
135292
|
return loadAsFile(path3.join(x2, "index"), fpkg, cb2);
|
|
135293
|
-
readPackage(
|
|
135293
|
+
readPackage(readFile7, pkgfile, function(err3, pkgParam) {
|
|
135294
135294
|
if (err3)
|
|
135295
135295
|
return cb2(err3);
|
|
135296
135296
|
var pkg = pkgParam;
|
|
@@ -135643,8 +135643,8 @@ ${error.message}`;
|
|
|
135643
135643
|
}
|
|
135644
135644
|
return x;
|
|
135645
135645
|
};
|
|
135646
|
-
var defaultReadPackageSync = function defaultReadPackageSync2(
|
|
135647
|
-
var body =
|
|
135646
|
+
var defaultReadPackageSync = function defaultReadPackageSync2(readFileSync3, pkgfile) {
|
|
135647
|
+
var body = readFileSync3(pkgfile);
|
|
135648
135648
|
try {
|
|
135649
135649
|
var pkg = JSON.parse(body);
|
|
135650
135650
|
return pkg;
|
|
@@ -135664,7 +135664,7 @@ ${error.message}`;
|
|
|
135664
135664
|
}
|
|
135665
135665
|
var opts = normalizeOptions(x, options);
|
|
135666
135666
|
var isFile = opts.isFile || defaultIsFile;
|
|
135667
|
-
var
|
|
135667
|
+
var readFileSync3 = opts.readFileSync || fs3.readFileSync;
|
|
135668
135668
|
var isDirectory = opts.isDirectory || defaultIsDir;
|
|
135669
135669
|
var realpathSync = opts.realpathSync || defaultRealpathSync;
|
|
135670
135670
|
var readPackageSync = opts.readPackageSync || defaultReadPackageSync;
|
|
@@ -135726,7 +135726,7 @@ ${error.message}`;
|
|
|
135726
135726
|
if (!isFile(pkgfile)) {
|
|
135727
135727
|
return loadpkg(path3.dirname(dir));
|
|
135728
135728
|
}
|
|
135729
|
-
var pkg = readPackageSync(
|
|
135729
|
+
var pkg = readPackageSync(readFileSync3, pkgfile);
|
|
135730
135730
|
if (pkg && opts.packageFilter) {
|
|
135731
135731
|
pkg = opts.packageFilter(pkg, dir);
|
|
135732
135732
|
}
|
|
@@ -135739,7 +135739,7 @@ ${error.message}`;
|
|
|
135739
135739
|
var pkgfile = path3.join(maybeRealpathSync(realpathSync, x2, opts), "/package.json");
|
|
135740
135740
|
if (isFile(pkgfile)) {
|
|
135741
135741
|
try {
|
|
135742
|
-
var pkg = readPackageSync(
|
|
135742
|
+
var pkg = readPackageSync(readFileSync3, pkgfile);
|
|
135743
135743
|
} catch (e) {
|
|
135744
135744
|
}
|
|
135745
135745
|
if (pkg && opts.packageFilter) {
|
|
@@ -135800,10 +135800,10 @@ ${error.message}`;
|
|
|
135800
135800
|
"src/common/resolve.js"(exports22, module22) {
|
|
135801
135801
|
"use strict";
|
|
135802
135802
|
var {
|
|
135803
|
-
resolve:
|
|
135803
|
+
resolve: resolve3
|
|
135804
135804
|
} = require;
|
|
135805
|
-
if (
|
|
135806
|
-
|
|
135805
|
+
if (resolve3.length === 1 || process.env.PRETTIER_FALLBACK_RESOLVE) {
|
|
135806
|
+
resolve3 = (id, options) => {
|
|
135807
135807
|
let basedir;
|
|
135808
135808
|
if (options && options.paths && options.paths.length === 1) {
|
|
135809
135809
|
basedir = options.paths[0];
|
|
@@ -135813,7 +135813,7 @@ ${error.message}`;
|
|
|
135813
135813
|
});
|
|
135814
135814
|
};
|
|
135815
135815
|
}
|
|
135816
|
-
module22.exports =
|
|
135816
|
+
module22.exports = resolve3;
|
|
135817
135817
|
}
|
|
135818
135818
|
});
|
|
135819
135819
|
function mimicFunction(to, from, {
|
|
@@ -135881,8 +135881,8 @@ ${fromBody}`;
|
|
|
135881
135881
|
"use strict";
|
|
135882
135882
|
module22.exports = () => {
|
|
135883
135883
|
const ret = {};
|
|
135884
|
-
ret.promise = new Promise((
|
|
135885
|
-
ret.resolve =
|
|
135884
|
+
ret.promise = new Promise((resolve3, reject) => {
|
|
135885
|
+
ret.resolve = resolve3;
|
|
135886
135886
|
ret.reject = reject;
|
|
135887
135887
|
});
|
|
135888
135888
|
return ret;
|
|
@@ -135893,7 +135893,7 @@ ${fromBody}`;
|
|
|
135893
135893
|
"node_modules/map-age-cleaner/dist/index.js"(exports22, module22) {
|
|
135894
135894
|
"use strict";
|
|
135895
135895
|
var __awaiter2 = exports22 && exports22.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
135896
|
-
return new (P || (P = Promise))(function(
|
|
135896
|
+
return new (P || (P = Promise))(function(resolve3, reject) {
|
|
135897
135897
|
function fulfilled(value) {
|
|
135898
135898
|
try {
|
|
135899
135899
|
step(generator.next(value));
|
|
@@ -135909,7 +135909,7 @@ ${fromBody}`;
|
|
|
135909
135909
|
}
|
|
135910
135910
|
}
|
|
135911
135911
|
function step(result) {
|
|
135912
|
-
result.done ?
|
|
135912
|
+
result.done ? resolve3(result.value) : new P(function(resolve22) {
|
|
135913
135913
|
resolve22(result.value);
|
|
135914
135914
|
}).then(fulfilled, rejected);
|
|
135915
135915
|
}
|
|
@@ -136170,7 +136170,7 @@ ${fromBody}`;
|
|
|
136170
136170
|
var require_yallist = __commonJS22({
|
|
136171
136171
|
"node_modules/editorconfig/node_modules/yallist/yallist.js"(exports22, module22) {
|
|
136172
136172
|
module22.exports = Yallist;
|
|
136173
|
-
Yallist.Node =
|
|
136173
|
+
Yallist.Node = Node2;
|
|
136174
136174
|
Yallist.create = Yallist;
|
|
136175
136175
|
function Yallist(list) {
|
|
136176
136176
|
var self2 = this;
|
|
@@ -136457,22 +136457,22 @@ ${fromBody}`;
|
|
|
136457
136457
|
return this;
|
|
136458
136458
|
};
|
|
136459
136459
|
function push(self2, item) {
|
|
136460
|
-
self2.tail = new
|
|
136460
|
+
self2.tail = new Node2(item, self2.tail, null, self2);
|
|
136461
136461
|
if (!self2.head) {
|
|
136462
136462
|
self2.head = self2.tail;
|
|
136463
136463
|
}
|
|
136464
136464
|
self2.length++;
|
|
136465
136465
|
}
|
|
136466
136466
|
function unshift(self2, item) {
|
|
136467
|
-
self2.head = new
|
|
136467
|
+
self2.head = new Node2(item, null, self2.head, self2);
|
|
136468
136468
|
if (!self2.tail) {
|
|
136469
136469
|
self2.tail = self2.head;
|
|
136470
136470
|
}
|
|
136471
136471
|
self2.length++;
|
|
136472
136472
|
}
|
|
136473
|
-
function
|
|
136474
|
-
if (!(this instanceof
|
|
136475
|
-
return new
|
|
136473
|
+
function Node2(value, prev, next, list) {
|
|
136474
|
+
if (!(this instanceof Node2)) {
|
|
136475
|
+
return new Node2(value, prev, next, list);
|
|
136476
136476
|
}
|
|
136477
136477
|
this.list = list;
|
|
136478
136478
|
this.value = value;
|
|
@@ -137553,7 +137553,7 @@ ${fromBody}`;
|
|
|
137553
137553
|
"node_modules/editorconfig/src/lib/ini.js"(exports22) {
|
|
137554
137554
|
"use strict";
|
|
137555
137555
|
var __awaiter2 = exports22 && exports22.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
137556
|
-
return new (P || (P = Promise))(function(
|
|
137556
|
+
return new (P || (P = Promise))(function(resolve3, reject) {
|
|
137557
137557
|
function fulfilled(value) {
|
|
137558
137558
|
try {
|
|
137559
137559
|
step(generator.next(value));
|
|
@@ -137569,7 +137569,7 @@ ${fromBody}`;
|
|
|
137569
137569
|
}
|
|
137570
137570
|
}
|
|
137571
137571
|
function step(result) {
|
|
137572
|
-
result.done ?
|
|
137572
|
+
result.done ? resolve3(result.value) : new P(function(resolve22) {
|
|
137573
137573
|
resolve22(result.value);
|
|
137574
137574
|
}).then(fulfilled, rejected);
|
|
137575
137575
|
}
|
|
@@ -137691,13 +137691,13 @@ ${fromBody}`;
|
|
|
137691
137691
|
function parse(file) {
|
|
137692
137692
|
return __awaiter2(this, void 0, void 0, function() {
|
|
137693
137693
|
return __generator2(this, function(_a) {
|
|
137694
|
-
return [2, new Promise(function(
|
|
137694
|
+
return [2, new Promise(function(resolve3, reject) {
|
|
137695
137695
|
fs3.readFile(file, "utf8", function(err, data) {
|
|
137696
137696
|
if (err) {
|
|
137697
137697
|
reject(err);
|
|
137698
137698
|
return;
|
|
137699
137699
|
}
|
|
137700
|
-
|
|
137700
|
+
resolve3(parseString(data));
|
|
137701
137701
|
});
|
|
137702
137702
|
})];
|
|
137703
137703
|
});
|
|
@@ -137793,7 +137793,7 @@ ${fromBody}`;
|
|
|
137793
137793
|
"node_modules/editorconfig/src/index.js"(exports22) {
|
|
137794
137794
|
"use strict";
|
|
137795
137795
|
var __awaiter2 = exports22 && exports22.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
137796
|
-
return new (P || (P = Promise))(function(
|
|
137796
|
+
return new (P || (P = Promise))(function(resolve3, reject) {
|
|
137797
137797
|
function fulfilled(value) {
|
|
137798
137798
|
try {
|
|
137799
137799
|
step(generator.next(value));
|
|
@@ -137809,7 +137809,7 @@ ${fromBody}`;
|
|
|
137809
137809
|
}
|
|
137810
137810
|
}
|
|
137811
137811
|
function step(result) {
|
|
137812
|
-
result.done ?
|
|
137812
|
+
result.done ? resolve3(result.value) : new P(function(resolve22) {
|
|
137813
137813
|
resolve22(result.value);
|
|
137814
137814
|
}).then(fulfilled, rejected);
|
|
137815
137815
|
}
|
|
@@ -138062,9 +138062,9 @@ ${fromBody}`;
|
|
|
138062
138062
|
return __awaiter2(this, void 0, void 0, function() {
|
|
138063
138063
|
return __generator2(this, function(_a) {
|
|
138064
138064
|
return [2, Promise.all(filepaths.map(function(name) {
|
|
138065
|
-
return new Promise(function(
|
|
138065
|
+
return new Promise(function(resolve3) {
|
|
138066
138066
|
fs3.readFile(name, "utf8", function(err, data) {
|
|
138067
|
-
|
|
138067
|
+
resolve3({
|
|
138068
138068
|
name,
|
|
138069
138069
|
contents: err ? "" : data
|
|
138070
138070
|
});
|
|
@@ -138276,7 +138276,7 @@ ${fromBody}`;
|
|
|
138276
138276
|
var loadToml = require_load_toml();
|
|
138277
138277
|
var loadJson5 = require_load_json5();
|
|
138278
138278
|
var partition = require_partition();
|
|
138279
|
-
var
|
|
138279
|
+
var resolve3 = require_resolve2();
|
|
138280
138280
|
var {
|
|
138281
138281
|
default: mem2,
|
|
138282
138282
|
memClear: memClear2
|
|
@@ -138290,7 +138290,7 @@ ${fromBody}`;
|
|
|
138290
138290
|
if (result && result.config) {
|
|
138291
138291
|
if (typeof result.config === "string") {
|
|
138292
138292
|
const dir = path3.dirname(result.filepath);
|
|
138293
|
-
const modulePath =
|
|
138293
|
+
const modulePath = resolve3(result.config, {
|
|
138294
138294
|
paths: [dir]
|
|
138295
138295
|
});
|
|
138296
138296
|
result.config = require(modulePath);
|
|
@@ -139788,7 +139788,7 @@ ${fromBody}`;
|
|
|
139788
139788
|
readdirWithFileTypes(directory, settings, callback);
|
|
139789
139789
|
return;
|
|
139790
139790
|
}
|
|
139791
|
-
|
|
139791
|
+
readdir2(directory, settings, callback);
|
|
139792
139792
|
}
|
|
139793
139793
|
exports22.read = read;
|
|
139794
139794
|
function readdirWithFileTypes(directory, settings, callback) {
|
|
@@ -139839,7 +139839,7 @@ ${fromBody}`;
|
|
|
139839
139839
|
});
|
|
139840
139840
|
};
|
|
139841
139841
|
}
|
|
139842
|
-
function
|
|
139842
|
+
function readdir2(directory, settings, callback) {
|
|
139843
139843
|
settings.fs.readdir(directory, (readdirError, names) => {
|
|
139844
139844
|
if (readdirError !== null) {
|
|
139845
139845
|
callFailureCallback(callback, readdirError);
|
|
@@ -139874,7 +139874,7 @@ ${fromBody}`;
|
|
|
139874
139874
|
});
|
|
139875
139875
|
});
|
|
139876
139876
|
}
|
|
139877
|
-
exports22.readdir =
|
|
139877
|
+
exports22.readdir = readdir2;
|
|
139878
139878
|
function callFailureCallback(callback, error) {
|
|
139879
139879
|
callback(error);
|
|
139880
139880
|
}
|
|
@@ -139898,7 +139898,7 @@ ${fromBody}`;
|
|
|
139898
139898
|
if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
|
|
139899
139899
|
return readdirWithFileTypes(directory, settings);
|
|
139900
139900
|
}
|
|
139901
|
-
return
|
|
139901
|
+
return readdir2(directory, settings);
|
|
139902
139902
|
}
|
|
139903
139903
|
exports22.read = read;
|
|
139904
139904
|
function readdirWithFileTypes(directory, settings) {
|
|
@@ -139925,7 +139925,7 @@ ${fromBody}`;
|
|
|
139925
139925
|
});
|
|
139926
139926
|
}
|
|
139927
139927
|
exports22.readdirWithFileTypes = readdirWithFileTypes;
|
|
139928
|
-
function
|
|
139928
|
+
function readdir2(directory, settings) {
|
|
139929
139929
|
const names = settings.fs.readdirSync(directory);
|
|
139930
139930
|
return names.map((name) => {
|
|
139931
139931
|
const entryPath = common2.joinPathSegments(directory, name, settings.pathSegmentSeparator);
|
|
@@ -139941,7 +139941,7 @@ ${fromBody}`;
|
|
|
139941
139941
|
return entry;
|
|
139942
139942
|
});
|
|
139943
139943
|
}
|
|
139944
|
-
exports22.readdir =
|
|
139944
|
+
exports22.readdir = readdir2;
|
|
139945
139945
|
}
|
|
139946
139946
|
});
|
|
139947
139947
|
var require_fs4 = __commonJS22({
|
|
@@ -140254,26 +140254,26 @@ ${fromBody}`;
|
|
|
140254
140254
|
queue.drained = drained;
|
|
140255
140255
|
return queue;
|
|
140256
140256
|
function push(value) {
|
|
140257
|
-
var p = new Promise(function(
|
|
140257
|
+
var p = new Promise(function(resolve3, reject) {
|
|
140258
140258
|
pushCb(value, function(err, result) {
|
|
140259
140259
|
if (err) {
|
|
140260
140260
|
reject(err);
|
|
140261
140261
|
return;
|
|
140262
140262
|
}
|
|
140263
|
-
|
|
140263
|
+
resolve3(result);
|
|
140264
140264
|
});
|
|
140265
140265
|
});
|
|
140266
140266
|
p.catch(noop);
|
|
140267
140267
|
return p;
|
|
140268
140268
|
}
|
|
140269
140269
|
function unshift(value) {
|
|
140270
|
-
var p = new Promise(function(
|
|
140270
|
+
var p = new Promise(function(resolve3, reject) {
|
|
140271
140271
|
unshiftCb(value, function(err, result) {
|
|
140272
140272
|
if (err) {
|
|
140273
140273
|
reject(err);
|
|
140274
140274
|
return;
|
|
140275
140275
|
}
|
|
140276
|
-
|
|
140276
|
+
resolve3(result);
|
|
140277
140277
|
});
|
|
140278
140278
|
});
|
|
140279
140279
|
p.catch(noop);
|
|
@@ -140281,10 +140281,10 @@ ${fromBody}`;
|
|
|
140281
140281
|
}
|
|
140282
140282
|
function drained() {
|
|
140283
140283
|
var previousDrain = queue.drain;
|
|
140284
|
-
var p = new Promise(function(
|
|
140284
|
+
var p = new Promise(function(resolve3) {
|
|
140285
140285
|
queue.drain = function() {
|
|
140286
140286
|
previousDrain();
|
|
140287
|
-
|
|
140287
|
+
resolve3();
|
|
140288
140288
|
};
|
|
140289
140289
|
});
|
|
140290
140290
|
return p;
|
|
@@ -140775,9 +140775,9 @@ ${fromBody}`;
|
|
|
140775
140775
|
});
|
|
140776
140776
|
}
|
|
140777
140777
|
_getStat(filepath) {
|
|
140778
|
-
return new Promise((
|
|
140778
|
+
return new Promise((resolve3, reject) => {
|
|
140779
140779
|
this._stat(filepath, this._fsStatSettings, (error, stats) => {
|
|
140780
|
-
return error === null ?
|
|
140780
|
+
return error === null ? resolve3(stats) : reject(error);
|
|
140781
140781
|
});
|
|
140782
140782
|
});
|
|
140783
140783
|
}
|
|
@@ -140801,10 +140801,10 @@ ${fromBody}`;
|
|
|
140801
140801
|
this._readerStream = new stream_1.default(this._settings);
|
|
140802
140802
|
}
|
|
140803
140803
|
dynamic(root, options) {
|
|
140804
|
-
return new Promise((
|
|
140804
|
+
return new Promise((resolve3, reject) => {
|
|
140805
140805
|
this._walkAsync(root, options, (error, entries) => {
|
|
140806
140806
|
if (error === null) {
|
|
140807
|
-
|
|
140807
|
+
resolve3(entries);
|
|
140808
140808
|
} else {
|
|
140809
140809
|
reject(error);
|
|
140810
140810
|
}
|
|
@@ -140814,10 +140814,10 @@ ${fromBody}`;
|
|
|
140814
140814
|
async static(patterns, options) {
|
|
140815
140815
|
const entries = [];
|
|
140816
140816
|
const stream = this._readerStream.static(patterns, options);
|
|
140817
|
-
return new Promise((
|
|
140817
|
+
return new Promise((resolve3, reject) => {
|
|
140818
140818
|
stream.once("error", reject);
|
|
140819
140819
|
stream.on("data", (entry) => entries.push(entry));
|
|
140820
|
-
stream.once("end", () =>
|
|
140820
|
+
stream.once("end", () => resolve3(entries));
|
|
140821
140821
|
});
|
|
140822
140822
|
}
|
|
140823
140823
|
};
|
|
@@ -142439,7 +142439,7 @@ ${fromBody}`;
|
|
|
142439
142439
|
} = require_util();
|
|
142440
142440
|
var {
|
|
142441
142441
|
builders: {
|
|
142442
|
-
join:
|
|
142442
|
+
join: join7,
|
|
142443
142443
|
hardline,
|
|
142444
142444
|
softline,
|
|
142445
142445
|
group,
|
|
@@ -142552,7 +142552,7 @@ ${fromBody}`;
|
|
|
142552
142552
|
maxColumnWidths[index] = Math.max(maxColumnWidths[index], getStringWidth(cell));
|
|
142553
142553
|
}
|
|
142554
142554
|
}
|
|
142555
|
-
parts.push(lineSuffixBoundary, "`", indent([hardline,
|
|
142555
|
+
parts.push(lineSuffixBoundary, "`", indent([hardline, join7(hardline, table.map((row) => join7(" | ", row.cells.map((cell, index) => row.hasLineBreak ? cell : cell + " ".repeat(maxColumnWidths[index] - getStringWidth(cell))))))]), hardline, "`");
|
|
142556
142556
|
return parts;
|
|
142557
142557
|
}
|
|
142558
142558
|
}
|
|
@@ -142696,7 +142696,7 @@ ${fromBody}`;
|
|
|
142696
142696
|
var {
|
|
142697
142697
|
builders: {
|
|
142698
142698
|
indent,
|
|
142699
|
-
join:
|
|
142699
|
+
join: join7,
|
|
142700
142700
|
hardline
|
|
142701
142701
|
}
|
|
142702
142702
|
} = require_doc();
|
|
@@ -142752,7 +142752,7 @@ ${fromBody}`;
|
|
|
142752
142752
|
parts.push(expressionDoc);
|
|
142753
142753
|
}
|
|
142754
142754
|
}
|
|
142755
|
-
return ["`", indent([hardline,
|
|
142755
|
+
return ["`", indent([hardline, join7(hardline, parts)]), hardline, "`"];
|
|
142756
142756
|
}
|
|
142757
142757
|
function printGraphqlComments(lines) {
|
|
142758
142758
|
const parts = [];
|
|
@@ -142769,7 +142769,7 @@ ${fromBody}`;
|
|
|
142769
142769
|
}
|
|
142770
142770
|
seenComment = true;
|
|
142771
142771
|
}
|
|
142772
|
-
return parts.length === 0 ? null :
|
|
142772
|
+
return parts.length === 0 ? null : join7(hardline, parts);
|
|
142773
142773
|
}
|
|
142774
142774
|
module22.exports = format2;
|
|
142775
142775
|
}
|
|
@@ -144429,7 +144429,7 @@ ${fromBody}`;
|
|
|
144429
144429
|
"use strict";
|
|
144430
144430
|
var {
|
|
144431
144431
|
builders: {
|
|
144432
|
-
join:
|
|
144432
|
+
join: join7,
|
|
144433
144433
|
line,
|
|
144434
144434
|
group,
|
|
144435
144435
|
softline,
|
|
@@ -144446,7 +144446,7 @@ ${fromBody}`;
|
|
|
144446
144446
|
}
|
|
144447
144447
|
if (options.__isVueForBindingLeft) {
|
|
144448
144448
|
return path3.call((functionDeclarationPath) => {
|
|
144449
|
-
const printed =
|
|
144449
|
+
const printed = join7([",", line], functionDeclarationPath.map(print, "params"));
|
|
144450
144450
|
const {
|
|
144451
144451
|
params
|
|
144452
144452
|
} = functionDeclarationPath.getValue();
|
|
@@ -144457,7 +144457,7 @@ ${fromBody}`;
|
|
|
144457
144457
|
}, "program", "body", 0);
|
|
144458
144458
|
}
|
|
144459
144459
|
if (options.__isVueBindings) {
|
|
144460
|
-
return path3.call((functionDeclarationPath) =>
|
|
144460
|
+
return path3.call((functionDeclarationPath) => join7([",", line], functionDeclarationPath.map(print, "params")), "program", "body", 0);
|
|
144461
144461
|
}
|
|
144462
144462
|
}
|
|
144463
144463
|
function isVueEventBindingExpression(node) {
|
|
@@ -144493,7 +144493,7 @@ ${fromBody}`;
|
|
|
144493
144493
|
} = require_util();
|
|
144494
144494
|
var {
|
|
144495
144495
|
builders: {
|
|
144496
|
-
join:
|
|
144496
|
+
join: join7,
|
|
144497
144497
|
line,
|
|
144498
144498
|
softline,
|
|
144499
144499
|
group,
|
|
@@ -144575,7 +144575,7 @@ ${fromBody}`;
|
|
|
144575
144575
|
const shouldInline = shouldInlineLogicalExpression(node);
|
|
144576
144576
|
const lineBeforeOperator = (node.operator === "|>" || node.type === "NGPipeExpression" || node.operator === "|" && options.parser === "__vue_expression") && !hasLeadingOwnLineComment(options.originalText, node.right);
|
|
144577
144577
|
const operator = node.type === "NGPipeExpression" ? "|" : node.operator;
|
|
144578
|
-
const rightSuffix = node.type === "NGPipeExpression" && node.arguments.length > 0 ? group(indent([line, ": ",
|
|
144578
|
+
const rightSuffix = node.type === "NGPipeExpression" && node.arguments.length > 0 ? group(indent([line, ": ", join7([line, ": "], path3.map(print, "arguments").map((arg) => align(2, group(arg))))])) : "";
|
|
144579
144579
|
let right;
|
|
144580
144580
|
if (shouldInline) {
|
|
144581
144581
|
right = [operator, " ", print("right"), rightSuffix];
|
|
@@ -144625,7 +144625,7 @@ ${fromBody}`;
|
|
|
144625
144625
|
"use strict";
|
|
144626
144626
|
var {
|
|
144627
144627
|
builders: {
|
|
144628
|
-
join:
|
|
144628
|
+
join: join7,
|
|
144629
144629
|
line,
|
|
144630
144630
|
group
|
|
144631
144631
|
}
|
|
@@ -144649,7 +144649,7 @@ ${fromBody}`;
|
|
|
144649
144649
|
case "NGPipeExpression":
|
|
144650
144650
|
return printBinaryishExpression(path3, options, print);
|
|
144651
144651
|
case "NGChainedExpression":
|
|
144652
|
-
return group(
|
|
144652
|
+
return group(join7([";", line], path3.map((childPath) => hasNgSideEffect(childPath) ? print() : ["(", print(), ")"], "expressions")));
|
|
144653
144653
|
case "NGEmptyExpression":
|
|
144654
144654
|
return "";
|
|
144655
144655
|
case "NGQuotedExpression":
|
|
@@ -144713,7 +144713,7 @@ ${fromBody}`;
|
|
|
144713
144713
|
fill,
|
|
144714
144714
|
ifBreak,
|
|
144715
144715
|
lineSuffixBoundary,
|
|
144716
|
-
join:
|
|
144716
|
+
join: join7
|
|
144717
144717
|
},
|
|
144718
144718
|
utils: {
|
|
144719
144719
|
willBreak
|
|
@@ -145051,9 +145051,9 @@ ${fromBody}`;
|
|
|
145051
145051
|
case "JSXIdentifier":
|
|
145052
145052
|
return String(node.name);
|
|
145053
145053
|
case "JSXNamespacedName":
|
|
145054
|
-
return
|
|
145054
|
+
return join7(":", [print("namespace"), print("name")]);
|
|
145055
145055
|
case "JSXMemberExpression":
|
|
145056
|
-
return
|
|
145056
|
+
return join7(".", [print("object"), print("property")]);
|
|
145057
145057
|
case "JSXSpreadAttribute":
|
|
145058
145058
|
return printJsxSpreadAttribute(path3, options, print);
|
|
145059
145059
|
case "JSXSpreadChild": {
|
|
@@ -145260,11 +145260,11 @@ ${fromBody}`;
|
|
|
145260
145260
|
type: "cursor",
|
|
145261
145261
|
placeholder: Symbol("cursor")
|
|
145262
145262
|
};
|
|
145263
|
-
function
|
|
145263
|
+
function join7(sep3, arr) {
|
|
145264
145264
|
const res = [];
|
|
145265
145265
|
for (let i = 0; i < arr.length; i++) {
|
|
145266
145266
|
if (i !== 0) {
|
|
145267
|
-
res.push(
|
|
145267
|
+
res.push(sep3);
|
|
145268
145268
|
}
|
|
145269
145269
|
res.push(arr[i]);
|
|
145270
145270
|
}
|
|
@@ -145290,7 +145290,7 @@ ${fromBody}`;
|
|
|
145290
145290
|
}
|
|
145291
145291
|
module22.exports = {
|
|
145292
145292
|
concat,
|
|
145293
|
-
join:
|
|
145293
|
+
join: join7,
|
|
145294
145294
|
line,
|
|
145295
145295
|
softline,
|
|
145296
145296
|
hardline,
|
|
@@ -145323,7 +145323,7 @@ ${fromBody}`;
|
|
|
145323
145323
|
var getLast = require_get_last();
|
|
145324
145324
|
var {
|
|
145325
145325
|
literalline,
|
|
145326
|
-
join:
|
|
145326
|
+
join: join7
|
|
145327
145327
|
} = require_doc_builders();
|
|
145328
145328
|
var isConcat = (doc2) => Array.isArray(doc2) || doc2 && doc2.type === "concat";
|
|
145329
145329
|
var getDocParts = (doc2) => {
|
|
@@ -145635,7 +145635,7 @@ ${fromBody}`;
|
|
|
145635
145635
|
return mapDoc(doc2, (currentDoc) => typeof currentDoc === "string" && currentDoc.includes("\n") ? replaceTextEndOfLine(currentDoc) : currentDoc);
|
|
145636
145636
|
}
|
|
145637
145637
|
function replaceTextEndOfLine(text, replacement = literalline) {
|
|
145638
|
-
return
|
|
145638
|
+
return join7(replacement, text.split("\n")).parts;
|
|
145639
145639
|
}
|
|
145640
145640
|
function canBreakFn(doc2) {
|
|
145641
145641
|
if (doc2.type === "line") {
|
|
@@ -145673,7 +145673,7 @@ ${fromBody}`;
|
|
|
145673
145673
|
var {
|
|
145674
145674
|
builders: {
|
|
145675
145675
|
indent,
|
|
145676
|
-
join:
|
|
145676
|
+
join: join7,
|
|
145677
145677
|
line
|
|
145678
145678
|
}
|
|
145679
145679
|
} = require_doc();
|
|
@@ -145723,7 +145723,7 @@ ${fromBody}`;
|
|
|
145723
145723
|
if (!isNonEmptyArray(node.modifiers)) {
|
|
145724
145724
|
return "";
|
|
145725
145725
|
}
|
|
145726
|
-
return [
|
|
145726
|
+
return [join7(" ", path3.map(print, "modifiers")), " "];
|
|
145727
145727
|
}
|
|
145728
145728
|
function adjustClause(node, clause, forceSpace) {
|
|
145729
145729
|
if (node.type === "EmptyStatement") {
|
|
@@ -146106,7 +146106,7 @@ ${fromBody}`;
|
|
|
146106
146106
|
} = require_loc();
|
|
146107
146107
|
var {
|
|
146108
146108
|
builders: {
|
|
146109
|
-
join:
|
|
146109
|
+
join: join7,
|
|
146110
146110
|
hardline,
|
|
146111
146111
|
group,
|
|
146112
146112
|
indent,
|
|
@@ -146250,7 +146250,7 @@ ${fromBody}`;
|
|
|
146250
146250
|
if (groups2.length === 0) {
|
|
146251
146251
|
return "";
|
|
146252
146252
|
}
|
|
146253
|
-
return indent(group([hardline,
|
|
146253
|
+
return indent(group([hardline, join7(hardline, groups2.map(printGroup))]));
|
|
146254
146254
|
}
|
|
146255
146255
|
const printedGroups = groups.map(printGroup);
|
|
146256
146256
|
const oneLine = printedGroups;
|
|
@@ -146290,7 +146290,7 @@ ${fromBody}`;
|
|
|
146290
146290
|
"use strict";
|
|
146291
146291
|
var {
|
|
146292
146292
|
builders: {
|
|
146293
|
-
join:
|
|
146293
|
+
join: join7,
|
|
146294
146294
|
group
|
|
146295
146295
|
}
|
|
146296
146296
|
} = require_doc();
|
|
@@ -146323,7 +146323,7 @@ ${fromBody}`;
|
|
|
146323
146323
|
iterateCallArgumentsPath(path3, () => {
|
|
146324
146324
|
printed.push(print());
|
|
146325
146325
|
});
|
|
146326
|
-
return [isNew ? "new " : "", print("callee"), optional, printFunctionTypeParameters(path3, options, print), "(",
|
|
146326
|
+
return [isNew ? "new " : "", print("callee"), optional, printFunctionTypeParameters(path3, options, print), "(", join7(", ", printed), ")"];
|
|
146327
146327
|
}
|
|
146328
146328
|
const isIdentifierWithFlowAnnotation = (options.parser === "babel" || options.parser === "babel-flow") && node.callee && node.callee.type === "Identifier" && hasFlowAnnotationComment(node.callee.trailingComments);
|
|
146329
146329
|
if (isIdentifierWithFlowAnnotation) {
|
|
@@ -146805,7 +146805,7 @@ ${fromBody}`;
|
|
|
146805
146805
|
var {
|
|
146806
146806
|
builders: {
|
|
146807
146807
|
group,
|
|
146808
|
-
join:
|
|
146808
|
+
join: join7,
|
|
146809
146809
|
line,
|
|
146810
146810
|
softline,
|
|
146811
146811
|
indent,
|
|
@@ -146906,10 +146906,10 @@ ${fromBody}`;
|
|
|
146906
146906
|
return printComments(typePath, printedType, options);
|
|
146907
146907
|
}, "types");
|
|
146908
146908
|
if (shouldHug) {
|
|
146909
|
-
return
|
|
146909
|
+
return join7(" | ", printed);
|
|
146910
146910
|
}
|
|
146911
146911
|
const shouldAddStartLine = shouldIndent && !hasLeadingOwnLineComment(options.originalText, node);
|
|
146912
|
-
const code = [ifBreak([shouldAddStartLine ? line : "", "| "]),
|
|
146912
|
+
const code = [ifBreak([shouldAddStartLine ? line : "", "| "]), join7([line, "| "], printed)];
|
|
146913
146913
|
if (pathNeedsParens(path3, options)) {
|
|
146914
146914
|
return group([indent(code), softline]);
|
|
146915
146915
|
}
|
|
@@ -146984,7 +146984,7 @@ ${fromBody}`;
|
|
|
146984
146984
|
} = require_comments();
|
|
146985
146985
|
var {
|
|
146986
146986
|
builders: {
|
|
146987
|
-
join:
|
|
146987
|
+
join: join7,
|
|
146988
146988
|
line,
|
|
146989
146989
|
hardline,
|
|
146990
146990
|
softline,
|
|
@@ -147026,10 +147026,10 @@ ${fromBody}`;
|
|
|
147026
147026
|
const isArrowFunctionVariable = path3.match((node2) => !(node2[paramsKey].length === 1 && isObjectType(node2[paramsKey][0])), void 0, (node2, name) => name === "typeAnnotation", (node2) => node2.type === "Identifier", isArrowFunctionVariableDeclarator);
|
|
147027
147027
|
const shouldInline = node[paramsKey].length === 0 || !isArrowFunctionVariable && (isParameterInTestCall || node[paramsKey].length === 1 && (node[paramsKey][0].type === "NullableTypeAnnotation" || shouldHugType(node[paramsKey][0])));
|
|
147028
147028
|
if (shouldInline) {
|
|
147029
|
-
return ["<",
|
|
147029
|
+
return ["<", join7(", ", path3.map(print, paramsKey)), printDanglingCommentsForInline(path3, options), ">"];
|
|
147030
147030
|
}
|
|
147031
147031
|
const trailingComma = node.type === "TSTypeParameterInstantiation" ? "" : getFunctionParameters(node).length === 1 && isTSXFile(options) && !node[paramsKey][0].constraint && path3.getParentNode().type === "ArrowFunctionExpression" ? "," : shouldPrintComma(options, "all") ? ifBreak(",") : "";
|
|
147032
|
-
return group(["<", indent([softline,
|
|
147032
|
+
return group(["<", indent([softline, join7([",", line], path3.map(print, paramsKey))]), trailingComma, softline, ">"], {
|
|
147033
147033
|
id: getTypeParametersGroupId(node)
|
|
147034
147034
|
});
|
|
147035
147035
|
}
|
|
@@ -147167,7 +147167,7 @@ ${fromBody}`;
|
|
|
147167
147167
|
indent,
|
|
147168
147168
|
ifBreak,
|
|
147169
147169
|
hardline,
|
|
147170
|
-
join:
|
|
147170
|
+
join: join7,
|
|
147171
147171
|
indentIfBreak
|
|
147172
147172
|
},
|
|
147173
147173
|
utils: {
|
|
@@ -147323,7 +147323,7 @@ ${fromBody}`;
|
|
|
147323
147323
|
if (tailNode.body.type === "SequenceExpression") {
|
|
147324
147324
|
bodyDoc = group(["(", indent([softline, bodyDoc]), softline, ")"]);
|
|
147325
147325
|
}
|
|
147326
|
-
return group([group(indent([isCallee || isAssignmentRhs ? softline : "", group(
|
|
147326
|
+
return group([group(indent([isCallee || isAssignmentRhs ? softline : "", group(join7([" =>", line], signatures), {
|
|
147327
147327
|
shouldBreak
|
|
147328
147328
|
})]), {
|
|
147329
147329
|
id: groupId,
|
|
@@ -147475,7 +147475,7 @@ ${fromBody}`;
|
|
|
147475
147475
|
builders: {
|
|
147476
147476
|
line,
|
|
147477
147477
|
hardline,
|
|
147478
|
-
join:
|
|
147478
|
+
join: join7,
|
|
147479
147479
|
breakParent,
|
|
147480
147480
|
group
|
|
147481
147481
|
}
|
|
@@ -147489,10 +147489,10 @@ ${fromBody}`;
|
|
|
147489
147489
|
} = require_utils7();
|
|
147490
147490
|
function printClassMemberDecorators(path3, options, print) {
|
|
147491
147491
|
const node = path3.getValue();
|
|
147492
|
-
return group([
|
|
147492
|
+
return group([join7(line, path3.map(print, "decorators")), hasNewlineBetweenOrAfterDecorators(node, options) ? hardline : line]);
|
|
147493
147493
|
}
|
|
147494
147494
|
function printDecoratorsBeforeExport(path3, options, print) {
|
|
147495
|
-
return [
|
|
147495
|
+
return [join7(hardline, path3.map(print, "declaration", "decorators")), hardline];
|
|
147496
147496
|
}
|
|
147497
147497
|
function printDecorators(path3, options, print) {
|
|
147498
147498
|
const node = path3.getValue();
|
|
@@ -147503,7 +147503,7 @@ ${fromBody}`;
|
|
|
147503
147503
|
return;
|
|
147504
147504
|
}
|
|
147505
147505
|
const shouldBreak = node.type === "ClassExpression" || node.type === "ClassDeclaration" || hasNewlineBetweenOrAfterDecorators(node, options);
|
|
147506
|
-
return [getParentExportDeclaration(path3) ? hardline : shouldBreak ? breakParent : "",
|
|
147506
|
+
return [getParentExportDeclaration(path3) ? hardline : shouldBreak ? breakParent : "", join7(line, path3.map(print, "decorators")), line];
|
|
147507
147507
|
}
|
|
147508
147508
|
function hasNewlineBetweenOrAfterDecorators(node, options) {
|
|
147509
147509
|
return node.decorators.some((decorator) => hasNewline(options.originalText, locEnd(decorator)));
|
|
@@ -147536,7 +147536,7 @@ ${fromBody}`;
|
|
|
147536
147536
|
} = require_comments();
|
|
147537
147537
|
var {
|
|
147538
147538
|
builders: {
|
|
147539
|
-
join:
|
|
147539
|
+
join: join7,
|
|
147540
147540
|
line,
|
|
147541
147541
|
hardline,
|
|
147542
147542
|
softline,
|
|
@@ -147636,7 +147636,7 @@ ${fromBody}`;
|
|
|
147636
147636
|
}) => marker === listName);
|
|
147637
147637
|
return [shouldIndentOnlyHeritageClauses(node) ? ifBreak(" ", line, {
|
|
147638
147638
|
groupId: getTypeParametersGroupId(node.typeParameters)
|
|
147639
|
-
}) : line, printedLeadingComments, printedLeadingComments && hardline, listName, group(indent([line,
|
|
147639
|
+
}) : line, printedLeadingComments, printedLeadingComments && hardline, listName, group(indent([line, join7([",", line], path3.map(print, listName))]))];
|
|
147640
147640
|
}
|
|
147641
147641
|
function printSuperClass(path3, options, print) {
|
|
147642
147642
|
const printed = print("superClass");
|
|
@@ -147723,7 +147723,7 @@ ${fromBody}`;
|
|
|
147723
147723
|
} = require_util();
|
|
147724
147724
|
var {
|
|
147725
147725
|
builders: {
|
|
147726
|
-
join:
|
|
147726
|
+
join: join7,
|
|
147727
147727
|
line,
|
|
147728
147728
|
group,
|
|
147729
147729
|
indent,
|
|
@@ -147760,7 +147760,7 @@ ${fromBody}`;
|
|
|
147760
147760
|
if (isNonEmptyArray(node.extends)) {
|
|
147761
147761
|
extendsParts.push(shouldIndentOnlyHeritageClauses ? ifBreak(" ", line, {
|
|
147762
147762
|
groupId: getTypeParametersGroupId(node.typeParameters)
|
|
147763
|
-
}) : line, "extends ", (node.extends.length === 1 ? identity : indent)(
|
|
147763
|
+
}) : line, "extends ", (node.extends.length === 1 ? identity : indent)(join7([",", line], path3.map(print, "extends"))));
|
|
147764
147764
|
}
|
|
147765
147765
|
if (node.id && hasComment(node.id, CommentCheckFlags.Trailing) || isNonEmptyArray(node.extends)) {
|
|
147766
147766
|
if (shouldIndentOnlyHeritageClauses) {
|
|
@@ -147790,7 +147790,7 @@ ${fromBody}`;
|
|
|
147790
147790
|
softline,
|
|
147791
147791
|
group,
|
|
147792
147792
|
indent,
|
|
147793
|
-
join:
|
|
147793
|
+
join: join7,
|
|
147794
147794
|
line,
|
|
147795
147795
|
ifBreak,
|
|
147796
147796
|
hardline
|
|
@@ -147931,14 +147931,14 @@ ${fromBody}`;
|
|
|
147931
147931
|
throw new Error(`Unknown specifier type ${JSON.stringify(specifierType)}`);
|
|
147932
147932
|
}
|
|
147933
147933
|
}, "specifiers");
|
|
147934
|
-
parts.push(
|
|
147934
|
+
parts.push(join7(", ", standaloneSpecifiers));
|
|
147935
147935
|
if (groupedSpecifiers.length > 0) {
|
|
147936
147936
|
if (standaloneSpecifiers.length > 0) {
|
|
147937
147937
|
parts.push(", ");
|
|
147938
147938
|
}
|
|
147939
147939
|
const canBreak = groupedSpecifiers.length > 1 || standaloneSpecifiers.length > 0 || node.specifiers.some((node2) => hasComment(node2));
|
|
147940
147940
|
if (canBreak) {
|
|
147941
|
-
parts.push(group(["{", indent([options.bracketSpacing ? line : softline,
|
|
147941
|
+
parts.push(group(["{", indent([options.bracketSpacing ? line : softline, join7([",", line], groupedSpecifiers)]), ifBreak(shouldPrintComma(options) ? "," : ""), options.bracketSpacing ? line : softline, "}"]));
|
|
147942
147942
|
} else {
|
|
147943
147943
|
parts.push(["{", options.bracketSpacing ? " " : "", ...groupedSpecifiers, options.bracketSpacing ? " " : "", "}"]);
|
|
147944
147944
|
}
|
|
@@ -147963,7 +147963,7 @@ ${fromBody}`;
|
|
|
147963
147963
|
function printImportAssertions(path3, options, print) {
|
|
147964
147964
|
const node = path3.getNode();
|
|
147965
147965
|
if (isNonEmptyArray(node.assertions)) {
|
|
147966
|
-
return [" assert {", options.bracketSpacing ? " " : "",
|
|
147966
|
+
return [" assert {", options.bracketSpacing ? " " : "", join7(", ", path3.map(print, "assertions")), options.bracketSpacing ? " " : "", "}"];
|
|
147967
147967
|
}
|
|
147968
147968
|
return "";
|
|
147969
147969
|
}
|
|
@@ -148874,7 +148874,7 @@ ${fromBody}`;
|
|
|
148874
148874
|
} = require_util();
|
|
148875
148875
|
var {
|
|
148876
148876
|
builders: {
|
|
148877
|
-
join:
|
|
148877
|
+
join: join7,
|
|
148878
148878
|
line,
|
|
148879
148879
|
hardline,
|
|
148880
148880
|
softline,
|
|
@@ -148982,7 +148982,7 @@ ${fromBody}`;
|
|
|
148982
148982
|
case "TSTypeAliasDeclaration":
|
|
148983
148983
|
return printTypeAlias(path3, options, print);
|
|
148984
148984
|
case "TSQualifiedName":
|
|
148985
|
-
return
|
|
148985
|
+
return join7(".", [print("left"), print("right")]);
|
|
148986
148986
|
case "TSAbstractMethodDefinition":
|
|
148987
148987
|
case "TSDeclareMethod":
|
|
148988
148988
|
return printClassMethod(path3, options, print);
|
|
@@ -149061,7 +149061,7 @@ ${fromBody}`;
|
|
|
149061
149061
|
case "TSIndexSignature": {
|
|
149062
149062
|
const parent = path3.getParentNode();
|
|
149063
149063
|
const trailingComma = node.parameters.length > 1 ? ifBreak(shouldPrintComma(options) ? "," : "") : "";
|
|
149064
|
-
const parametersGroup = group([indent([softline,
|
|
149064
|
+
const parametersGroup = group([indent([softline, join7([", ", softline], path3.map(print, "parameters"))]), trailingComma, softline]);
|
|
149065
149065
|
return [node.export ? "export " : "", node.accessibility ? [node.accessibility, " "] : "", node.static ? "static " : "", node.readonly ? "readonly " : "", node.declare ? "declare " : "", "[", node.parameters ? parametersGroup : "", node.typeAnnotation ? "]: " : "]", node.typeAnnotation ? print("typeAnnotation") : "", parent.type === "ClassBody" ? semi : ""];
|
|
149066
149066
|
}
|
|
149067
149067
|
case "TSTypePredicate":
|
|
@@ -149233,7 +149233,7 @@ ${fromBody}`;
|
|
|
149233
149233
|
} = require_util();
|
|
149234
149234
|
var {
|
|
149235
149235
|
builders: {
|
|
149236
|
-
join:
|
|
149236
|
+
join: join7,
|
|
149237
149237
|
hardline
|
|
149238
149238
|
},
|
|
149239
149239
|
utils: {
|
|
@@ -149275,7 +149275,7 @@ ${fromBody}`;
|
|
|
149275
149275
|
}
|
|
149276
149276
|
function printIndentableBlockComment(comment) {
|
|
149277
149277
|
const lines = comment.value.split("\n");
|
|
149278
|
-
return ["/*",
|
|
149278
|
+
return ["/*", join7(hardline, lines.map((line, index) => index === 0 ? line.trimEnd() : " " + (index < lines.length - 1 ? line.trim() : line.trimStart()))), "*/"];
|
|
149279
149279
|
}
|
|
149280
149280
|
module22.exports = {
|
|
149281
149281
|
printComment
|
|
@@ -149368,7 +149368,7 @@ ${fromBody}`;
|
|
|
149368
149368
|
} = require_util();
|
|
149369
149369
|
var {
|
|
149370
149370
|
builders: {
|
|
149371
|
-
join:
|
|
149371
|
+
join: join7,
|
|
149372
149372
|
line,
|
|
149373
149373
|
hardline,
|
|
149374
149374
|
softline,
|
|
@@ -149715,7 +149715,7 @@ ${fromBody}`;
|
|
|
149715
149715
|
}, "expressions");
|
|
149716
149716
|
return group(parts2);
|
|
149717
149717
|
}
|
|
149718
|
-
return group(
|
|
149718
|
+
return group(join7([",", line], path3.map(print, "expressions")));
|
|
149719
149719
|
}
|
|
149720
149720
|
case "ThisExpression":
|
|
149721
149721
|
return "this";
|
|
@@ -149838,7 +149838,7 @@ ${fromBody}`;
|
|
|
149838
149838
|
}
|
|
149839
149839
|
return ["catch ", print("body")];
|
|
149840
149840
|
case "SwitchStatement":
|
|
149841
|
-
return [group(["switch (", indent([softline, print("discriminant")]), softline, ")"]), " {", node.cases.length > 0 ? indent([hardline,
|
|
149841
|
+
return [group(["switch (", indent([softline, print("discriminant")]), softline, ")"]), " {", node.cases.length > 0 ? indent([hardline, join7(hardline, path3.map((casePath, index, cases) => {
|
|
149842
149842
|
const caseNode = casePath.getValue();
|
|
149843
149843
|
return [print(), index !== cases.length - 1 && isNextLineEmpty(caseNode, options) ? hardline : ""];
|
|
149844
149844
|
}, "cases"))]) : "", hardline, "}"];
|
|
@@ -149939,7 +149939,7 @@ ${fromBody}`;
|
|
|
149939
149939
|
builders: {
|
|
149940
149940
|
hardline,
|
|
149941
149941
|
indent,
|
|
149942
|
-
join:
|
|
149942
|
+
join: join7
|
|
149943
149943
|
}
|
|
149944
149944
|
} = require_doc();
|
|
149945
149945
|
var preprocess = require_print_preprocess();
|
|
@@ -149953,10 +149953,10 @@ ${fromBody}`;
|
|
|
149953
149953
|
return "[]";
|
|
149954
149954
|
}
|
|
149955
149955
|
const printed = path3.map(() => path3.getValue() === null ? "null" : print(), "elements");
|
|
149956
|
-
return ["[", indent([hardline,
|
|
149956
|
+
return ["[", indent([hardline, join7([",", hardline], printed)]), hardline, "]"];
|
|
149957
149957
|
}
|
|
149958
149958
|
case "ObjectExpression":
|
|
149959
|
-
return node.properties.length === 0 ? "{}" : ["{", indent([hardline,
|
|
149959
|
+
return node.properties.length === 0 ? "{}" : ["{", indent([hardline, join7([",", hardline], path3.map(print, "properties"))]), hardline, "}"];
|
|
149960
149960
|
case "ObjectProperty":
|
|
149961
149961
|
return [print("key"), ": ", print("value")];
|
|
149962
149962
|
case "UnaryExpression":
|
|
@@ -151242,7 +151242,7 @@ ${fromBody}`;
|
|
|
151242
151242
|
} = require_util();
|
|
151243
151243
|
var {
|
|
151244
151244
|
builders: {
|
|
151245
|
-
join:
|
|
151245
|
+
join: join7,
|
|
151246
151246
|
line,
|
|
151247
151247
|
hardline,
|
|
151248
151248
|
softline,
|
|
@@ -151385,10 +151385,10 @@ ${fromBody}`;
|
|
|
151385
151385
|
}
|
|
151386
151386
|
parts.push(print());
|
|
151387
151387
|
}, "nodes");
|
|
151388
|
-
return group(indent(
|
|
151388
|
+
return group(indent(join7(line, parts)));
|
|
151389
151389
|
}
|
|
151390
151390
|
case "media-query": {
|
|
151391
|
-
return [
|
|
151391
|
+
return [join7(" ", path3.map(print, "nodes")), isLastNode(path3, node) ? "" : ","];
|
|
151392
151392
|
}
|
|
151393
151393
|
case "media-type": {
|
|
151394
151394
|
return adjustNumbers(adjustStrings(node.value, options));
|
|
@@ -151418,7 +151418,7 @@ ${fromBody}`;
|
|
|
151418
151418
|
return node.value;
|
|
151419
151419
|
}
|
|
151420
151420
|
case "selector-root": {
|
|
151421
|
-
return group([insideAtRuleNode(path3, "custom-selector") ? [getAncestorNode(path3, "css-atrule").customSelector, line] : "",
|
|
151421
|
+
return group([insideAtRuleNode(path3, "custom-selector") ? [getAncestorNode(path3, "css-atrule").customSelector, line] : "", join7([",", insideAtRuleNode(path3, ["extend", "custom-selector", "nest"]) ? line : hardline], path3.map(print, "nodes"))]);
|
|
151422
151422
|
}
|
|
151423
151423
|
case "selector-selector": {
|
|
151424
151424
|
return group(indent(path3.map(print, "nodes")));
|
|
@@ -151459,7 +151459,7 @@ ${fromBody}`;
|
|
|
151459
151459
|
return [node.namespace ? [node.namespace === true ? "" : node.namespace.trim(), "|"] : "", node.value];
|
|
151460
151460
|
}
|
|
151461
151461
|
case "selector-pseudo": {
|
|
151462
|
-
return [maybeToLowerCase(node.value), isNonEmptyArray(node.nodes) ? group(["(", indent([softline,
|
|
151462
|
+
return [maybeToLowerCase(node.value), isNonEmptyArray(node.nodes) ? group(["(", indent([softline, join7([",", line], path3.map(print, "nodes"))]), softline, ")"]) : ""];
|
|
151463
151463
|
}
|
|
151464
151464
|
case "selector-nesting": {
|
|
151465
151465
|
return node.value;
|
|
@@ -151655,7 +151655,7 @@ ${fromBody}`;
|
|
|
151655
151655
|
case "value-paren_group": {
|
|
151656
151656
|
const parentNode = path3.getParentNode();
|
|
151657
151657
|
if (parentNode && isURLFunctionNode(parentNode) && (node.groups.length === 1 || node.groups.length > 0 && node.groups[0].type === "value-comma_group" && node.groups[0].groups.length > 0 && node.groups[0].groups[0].type === "value-word" && node.groups[0].groups[0].value.startsWith("data:"))) {
|
|
151658
|
-
return [node.open ? print("open") : "",
|
|
151658
|
+
return [node.open ? print("open") : "", join7(",", path3.map(print, "groups")), node.close ? print("close") : ""];
|
|
151659
151659
|
}
|
|
151660
151660
|
if (!node.open) {
|
|
151661
151661
|
const printed2 = path3.map(print, "groups");
|
|
@@ -151675,7 +151675,7 @@ ${fromBody}`;
|
|
|
151675
151675
|
const isConfiguration = isConfigurationNode(node, parentNode);
|
|
151676
151676
|
const shouldBreak = isConfiguration || isSCSSMapItem && !isKey;
|
|
151677
151677
|
const shouldDedent = isConfiguration || isKey;
|
|
151678
|
-
const printed = group([node.open ? print("open") : "", indent([softline,
|
|
151678
|
+
const printed = group([node.open ? print("open") : "", indent([softline, join7([line], path3.map((childPath, index) => {
|
|
151679
151679
|
const child = childPath.getValue();
|
|
151680
151680
|
const isLast = index === node.groups.length - 1;
|
|
151681
151681
|
let printed2 = [print(), isLast ? "" : ","];
|
|
@@ -152047,7 +152047,7 @@ ${fromBody}`;
|
|
|
152047
152047
|
hardline,
|
|
152048
152048
|
ifBreak,
|
|
152049
152049
|
indent,
|
|
152050
|
-
join:
|
|
152050
|
+
join: join7,
|
|
152051
152051
|
line,
|
|
152052
152052
|
softline
|
|
152053
152053
|
},
|
|
@@ -152139,7 +152139,7 @@ ${fromBody}`;
|
|
|
152139
152139
|
return path3.map(print2, "parts");
|
|
152140
152140
|
}
|
|
152141
152141
|
case "Hash": {
|
|
152142
|
-
return
|
|
152142
|
+
return join7(line, path3.map(print2, "pairs"));
|
|
152143
152143
|
}
|
|
152144
152144
|
case "HashPair": {
|
|
152145
152145
|
return [node.key, "=", print2("value")];
|
|
@@ -152375,7 +152375,7 @@ ${fromBody}`;
|
|
|
152375
152375
|
if (isNonEmptyArray(node.program.blockParams)) {
|
|
152376
152376
|
parts.push(printBlockParams(node.program));
|
|
152377
152377
|
}
|
|
152378
|
-
return group([printOpeningBlockOpeningMustache(node), printPath(path3, print2), parts.length > 0 ? indent([line,
|
|
152378
|
+
return group([printOpeningBlockOpeningMustache(node), printPath(path3, print2), parts.length > 0 ? indent([line, join7(line, parts)]) : "", softline, printOpeningBlockClosingMustache(node)]);
|
|
152379
152379
|
}
|
|
152380
152380
|
function printElseBlock(node, options) {
|
|
152381
152381
|
return [options.htmlWhitespaceSensitivity === "ignore" ? hardline : "", printInverseBlockOpeningMustache(node), "else", printInverseBlockClosingMustache(node)];
|
|
@@ -152426,7 +152426,7 @@ ${fromBody}`;
|
|
|
152426
152426
|
return "";
|
|
152427
152427
|
}
|
|
152428
152428
|
function getTextValueParts(value) {
|
|
152429
|
-
return getDocParts(
|
|
152429
|
+
return getDocParts(join7(line, splitByHtmlWhitespace(value)));
|
|
152430
152430
|
}
|
|
152431
152431
|
function splitByHtmlWhitespace(string) {
|
|
152432
152432
|
return string.split(/[\t\n\f\r ]+/);
|
|
@@ -152510,7 +152510,7 @@ ${fromBody}`;
|
|
|
152510
152510
|
if (parts.length === 0) {
|
|
152511
152511
|
return "";
|
|
152512
152512
|
}
|
|
152513
|
-
return
|
|
152513
|
+
return join7(line, parts);
|
|
152514
152514
|
}
|
|
152515
152515
|
function printBlockParams(node) {
|
|
152516
152516
|
return ["as |", node.blockParams.join(" "), "|"];
|
|
@@ -152607,7 +152607,7 @@ ${fromBody}`;
|
|
|
152607
152607
|
"use strict";
|
|
152608
152608
|
var {
|
|
152609
152609
|
builders: {
|
|
152610
|
-
join:
|
|
152610
|
+
join: join7,
|
|
152611
152611
|
hardline,
|
|
152612
152612
|
line,
|
|
152613
152613
|
softline,
|
|
@@ -152652,16 +152652,16 @@ ${fromBody}`;
|
|
|
152652
152652
|
case "OperationDefinition": {
|
|
152653
152653
|
const hasOperation = options.originalText[locStart(node)] !== "{";
|
|
152654
152654
|
const hasName = Boolean(node.name);
|
|
152655
|
-
return [hasOperation ? node.operation : "", hasOperation && hasName ? [" ", print("name")] : "", hasOperation && !hasName && isNonEmptyArray(node.variableDefinitions) ? " " : "", isNonEmptyArray(node.variableDefinitions) ? group(["(", indent([softline,
|
|
152655
|
+
return [hasOperation ? node.operation : "", hasOperation && hasName ? [" ", print("name")] : "", hasOperation && !hasName && isNonEmptyArray(node.variableDefinitions) ? " " : "", isNonEmptyArray(node.variableDefinitions) ? group(["(", indent([softline, join7([ifBreak("", ", "), softline], path3.map(print, "variableDefinitions"))]), softline, ")"]) : "", printDirectives(path3, print, node), node.selectionSet ? !hasOperation && !hasName ? "" : " " : "", print("selectionSet")];
|
|
152656
152656
|
}
|
|
152657
152657
|
case "FragmentDefinition": {
|
|
152658
|
-
return ["fragment ", print("name"), isNonEmptyArray(node.variableDefinitions) ? group(["(", indent([softline,
|
|
152658
|
+
return ["fragment ", print("name"), isNonEmptyArray(node.variableDefinitions) ? group(["(", indent([softline, join7([ifBreak("", ", "), softline], path3.map(print, "variableDefinitions"))]), softline, ")"]) : "", " on ", print("typeCondition"), printDirectives(path3, print, node), " ", print("selectionSet")];
|
|
152659
152659
|
}
|
|
152660
152660
|
case "SelectionSet": {
|
|
152661
|
-
return ["{", indent([hardline,
|
|
152661
|
+
return ["{", indent([hardline, join7(hardline, printSequence(path3, options, print, "selections"))]), hardline, "}"];
|
|
152662
152662
|
}
|
|
152663
152663
|
case "Field": {
|
|
152664
|
-
return group([node.alias ? [print("alias"), ": "] : "", print("name"), node.arguments.length > 0 ? group(["(", indent([softline,
|
|
152664
|
+
return group([node.alias ? [print("alias"), ": "] : "", print("name"), node.arguments.length > 0 ? group(["(", indent([softline, join7([ifBreak("", ", "), softline], printSequence(path3, options, print, "arguments"))]), softline, ")"]) : "", printDirectives(path3, print, node), node.selectionSet ? " " : "", print("selectionSet")]);
|
|
152665
152665
|
}
|
|
152666
152666
|
case "Name": {
|
|
152667
152667
|
return node.value;
|
|
@@ -152675,7 +152675,7 @@ ${fromBody}`;
|
|
|
152675
152675
|
if (lines.every((line2) => line2 === "")) {
|
|
152676
152676
|
lines.length = 0;
|
|
152677
152677
|
}
|
|
152678
|
-
return
|
|
152678
|
+
return join7(hardline, ['"""', ...lines, '"""']);
|
|
152679
152679
|
}
|
|
152680
152680
|
return ['"', node.value.replace(/["\\]/g, "\\$&").replace(/\n/g, "\\n"), '"'];
|
|
152681
152681
|
}
|
|
@@ -152694,17 +152694,17 @@ ${fromBody}`;
|
|
|
152694
152694
|
return ["$", print("name")];
|
|
152695
152695
|
}
|
|
152696
152696
|
case "ListValue": {
|
|
152697
|
-
return group(["[", indent([softline,
|
|
152697
|
+
return group(["[", indent([softline, join7([ifBreak("", ", "), softline], path3.map(print, "values"))]), softline, "]"]);
|
|
152698
152698
|
}
|
|
152699
152699
|
case "ObjectValue": {
|
|
152700
|
-
return group(["{", options.bracketSpacing && node.fields.length > 0 ? " " : "", indent([softline,
|
|
152700
|
+
return group(["{", options.bracketSpacing && node.fields.length > 0 ? " " : "", indent([softline, join7([ifBreak("", ", "), softline], path3.map(print, "fields"))]), softline, ifBreak("", options.bracketSpacing && node.fields.length > 0 ? " " : ""), "}"]);
|
|
152701
152701
|
}
|
|
152702
152702
|
case "ObjectField":
|
|
152703
152703
|
case "Argument": {
|
|
152704
152704
|
return [print("name"), ": ", print("value")];
|
|
152705
152705
|
}
|
|
152706
152706
|
case "Directive": {
|
|
152707
|
-
return ["@", print("name"), node.arguments.length > 0 ? group(["(", indent([softline,
|
|
152707
|
+
return ["@", print("name"), node.arguments.length > 0 ? group(["(", indent([softline, join7([ifBreak("", ", "), softline], printSequence(path3, options, print, "arguments"))]), softline, ")"]) : ""];
|
|
152708
152708
|
}
|
|
152709
152709
|
case "NamedType": {
|
|
152710
152710
|
return print("name");
|
|
@@ -152714,17 +152714,17 @@ ${fromBody}`;
|
|
|
152714
152714
|
}
|
|
152715
152715
|
case "ObjectTypeExtension":
|
|
152716
152716
|
case "ObjectTypeDefinition": {
|
|
152717
|
-
return [print("description"), node.description ? hardline : "", node.kind === "ObjectTypeExtension" ? "extend " : "", "type ", print("name"), node.interfaces.length > 0 ? [" implements ", ...printInterfaces(path3, options, print)] : "", printDirectives(path3, print, node), node.fields.length > 0 ? [" {", indent([hardline,
|
|
152717
|
+
return [print("description"), node.description ? hardline : "", node.kind === "ObjectTypeExtension" ? "extend " : "", "type ", print("name"), node.interfaces.length > 0 ? [" implements ", ...printInterfaces(path3, options, print)] : "", printDirectives(path3, print, node), node.fields.length > 0 ? [" {", indent([hardline, join7(hardline, printSequence(path3, options, print, "fields"))]), hardline, "}"] : ""];
|
|
152718
152718
|
}
|
|
152719
152719
|
case "FieldDefinition": {
|
|
152720
|
-
return [print("description"), node.description ? hardline : "", print("name"), node.arguments.length > 0 ? group(["(", indent([softline,
|
|
152720
|
+
return [print("description"), node.description ? hardline : "", print("name"), node.arguments.length > 0 ? group(["(", indent([softline, join7([ifBreak("", ", "), softline], printSequence(path3, options, print, "arguments"))]), softline, ")"]) : "", ": ", print("type"), printDirectives(path3, print, node)];
|
|
152721
152721
|
}
|
|
152722
152722
|
case "DirectiveDefinition": {
|
|
152723
|
-
return [print("description"), node.description ? hardline : "", "directive ", "@", print("name"), node.arguments.length > 0 ? group(["(", indent([softline,
|
|
152723
|
+
return [print("description"), node.description ? hardline : "", "directive ", "@", print("name"), node.arguments.length > 0 ? group(["(", indent([softline, join7([ifBreak("", ", "), softline], printSequence(path3, options, print, "arguments"))]), softline, ")"]) : "", node.repeatable ? " repeatable" : "", " on ", join7(" | ", path3.map(print, "locations"))];
|
|
152724
152724
|
}
|
|
152725
152725
|
case "EnumTypeExtension":
|
|
152726
152726
|
case "EnumTypeDefinition": {
|
|
152727
|
-
return [print("description"), node.description ? hardline : "", node.kind === "EnumTypeExtension" ? "extend " : "", "enum ", print("name"), printDirectives(path3, print, node), node.values.length > 0 ? [" {", indent([hardline,
|
|
152727
|
+
return [print("description"), node.description ? hardline : "", node.kind === "EnumTypeExtension" ? "extend " : "", "enum ", print("name"), printDirectives(path3, print, node), node.values.length > 0 ? [" {", indent([hardline, join7(hardline, printSequence(path3, options, print, "values"))]), hardline, "}"] : ""];
|
|
152728
152728
|
}
|
|
152729
152729
|
case "EnumValueDefinition": {
|
|
152730
152730
|
return [print("description"), node.description ? hardline : "", print("name"), printDirectives(path3, print, node)];
|
|
@@ -152734,20 +152734,20 @@ ${fromBody}`;
|
|
|
152734
152734
|
}
|
|
152735
152735
|
case "InputObjectTypeExtension":
|
|
152736
152736
|
case "InputObjectTypeDefinition": {
|
|
152737
|
-
return [print("description"), node.description ? hardline : "", node.kind === "InputObjectTypeExtension" ? "extend " : "", "input ", print("name"), printDirectives(path3, print, node), node.fields.length > 0 ? [" {", indent([hardline,
|
|
152737
|
+
return [print("description"), node.description ? hardline : "", node.kind === "InputObjectTypeExtension" ? "extend " : "", "input ", print("name"), printDirectives(path3, print, node), node.fields.length > 0 ? [" {", indent([hardline, join7(hardline, printSequence(path3, options, print, "fields"))]), hardline, "}"] : ""];
|
|
152738
152738
|
}
|
|
152739
152739
|
case "SchemaExtension": {
|
|
152740
|
-
return ["extend schema", printDirectives(path3, print, node), ...node.operationTypes.length > 0 ? [" {", indent([hardline,
|
|
152740
|
+
return ["extend schema", printDirectives(path3, print, node), ...node.operationTypes.length > 0 ? [" {", indent([hardline, join7(hardline, printSequence(path3, options, print, "operationTypes"))]), hardline, "}"] : []];
|
|
152741
152741
|
}
|
|
152742
152742
|
case "SchemaDefinition": {
|
|
152743
|
-
return [print("description"), node.description ? hardline : "", "schema", printDirectives(path3, print, node), " {", node.operationTypes.length > 0 ? indent([hardline,
|
|
152743
|
+
return [print("description"), node.description ? hardline : "", "schema", printDirectives(path3, print, node), " {", node.operationTypes.length > 0 ? indent([hardline, join7(hardline, printSequence(path3, options, print, "operationTypes"))]) : "", hardline, "}"];
|
|
152744
152744
|
}
|
|
152745
152745
|
case "OperationTypeDefinition": {
|
|
152746
152746
|
return [print("operation"), ": ", print("type")];
|
|
152747
152747
|
}
|
|
152748
152748
|
case "InterfaceTypeExtension":
|
|
152749
152749
|
case "InterfaceTypeDefinition": {
|
|
152750
|
-
return [print("description"), node.description ? hardline : "", node.kind === "InterfaceTypeExtension" ? "extend " : "", "interface ", print("name"), node.interfaces.length > 0 ? [" implements ", ...printInterfaces(path3, options, print)] : "", printDirectives(path3, print, node), node.fields.length > 0 ? [" {", indent([hardline,
|
|
152750
|
+
return [print("description"), node.description ? hardline : "", node.kind === "InterfaceTypeExtension" ? "extend " : "", "interface ", print("name"), node.interfaces.length > 0 ? [" implements ", ...printInterfaces(path3, options, print)] : "", printDirectives(path3, print, node), node.fields.length > 0 ? [" {", indent([hardline, join7(hardline, printSequence(path3, options, print, "fields"))]), hardline, "}"] : ""];
|
|
152751
152751
|
}
|
|
152752
152752
|
case "FragmentSpread": {
|
|
152753
152753
|
return ["...", print("name"), printDirectives(path3, print, node)];
|
|
@@ -152757,7 +152757,7 @@ ${fromBody}`;
|
|
|
152757
152757
|
}
|
|
152758
152758
|
case "UnionTypeExtension":
|
|
152759
152759
|
case "UnionTypeDefinition": {
|
|
152760
|
-
return group([print("description"), node.description ? hardline : "", group([node.kind === "UnionTypeExtension" ? "extend " : "", "union ", print("name"), printDirectives(path3, print, node), node.types.length > 0 ? [" =", ifBreak("", " "), indent([ifBreak([line, " "]),
|
|
152760
|
+
return group([print("description"), node.description ? hardline : "", group([node.kind === "UnionTypeExtension" ? "extend " : "", "union ", print("name"), printDirectives(path3, print, node), node.types.length > 0 ? [" =", ifBreak("", " "), indent([ifBreak([line, " "]), join7([line, "| "], path3.map(print, "types"))])] : ""])]);
|
|
152761
152761
|
}
|
|
152762
152762
|
case "ScalarTypeExtension":
|
|
152763
152763
|
case "ScalarTypeDefinition": {
|
|
@@ -152777,7 +152777,7 @@ ${fromBody}`;
|
|
|
152777
152777
|
if (node.directives.length === 0) {
|
|
152778
152778
|
return "";
|
|
152779
152779
|
}
|
|
152780
|
-
const printed =
|
|
152780
|
+
const printed = join7(line, path3.map(print, "directives"));
|
|
152781
152781
|
if (node.kind === "FragmentDefinition" || node.kind === "OperationDefinition") {
|
|
152782
152782
|
return group([line, printed]);
|
|
152783
152783
|
}
|
|
@@ -153413,7 +153413,7 @@ ${extracted.content}`;
|
|
|
153413
153413
|
var {
|
|
153414
153414
|
builders: {
|
|
153415
153415
|
breakParent,
|
|
153416
|
-
join:
|
|
153416
|
+
join: join7,
|
|
153417
153417
|
line,
|
|
153418
153418
|
literalline,
|
|
153419
153419
|
markAsRoot,
|
|
@@ -153714,9 +153714,9 @@ ${extracted.content}`;
|
|
|
153714
153714
|
function printTableContents(isCompact) {
|
|
153715
153715
|
const parts = [printRow(contents[0], isCompact), printAlign(isCompact)];
|
|
153716
153716
|
if (contents.length > 1) {
|
|
153717
|
-
parts.push(
|
|
153717
|
+
parts.push(join7(hardlineWithoutBreakParent, contents.slice(1).map((rowContents) => printRow(rowContents, isCompact))));
|
|
153718
153718
|
}
|
|
153719
|
-
return
|
|
153719
|
+
return join7(hardlineWithoutBreakParent, parts);
|
|
153720
153720
|
}
|
|
153721
153721
|
function printAlign(isCompact) {
|
|
153722
153722
|
const align2 = columnMaxWidths.map((width, index) => {
|
|
@@ -154167,7 +154167,7 @@ ${extracted.content}`;
|
|
|
154167
154167
|
builders: {
|
|
154168
154168
|
line,
|
|
154169
154169
|
hardline,
|
|
154170
|
-
join:
|
|
154170
|
+
join: join7
|
|
154171
154171
|
},
|
|
154172
154172
|
utils: {
|
|
154173
154173
|
getDocParts,
|
|
@@ -154521,7 +154521,7 @@ ${extracted.content}`;
|
|
|
154521
154521
|
return tagName === "script" && attributeName === "setup" || tagName === "style" && attributeName === "vars";
|
|
154522
154522
|
}
|
|
154523
154523
|
function getTextValueParts(node, value = node.value) {
|
|
154524
|
-
return node.parent.isWhitespaceSensitive ? node.parent.isIndentationSensitive ? replaceTextEndOfLine(value) : replaceTextEndOfLine(dedentString(htmlTrimPreserveIndentation(value)), hardline) : getDocParts(
|
|
154524
|
+
return node.parent.isWhitespaceSensitive ? node.parent.isIndentationSensitive ? replaceTextEndOfLine(value) : replaceTextEndOfLine(dedentString(htmlTrimPreserveIndentation(value)), hardline) : getDocParts(join7(line, splitByHtmlWhitespace(value)));
|
|
154525
154525
|
}
|
|
154526
154526
|
function isVueScriptTag(node, options) {
|
|
154527
154527
|
return isVueSfcBlock(node, options) && node.name === "script";
|
|
@@ -155816,7 +155816,7 @@ ${extracted.content}`;
|
|
|
155816
155816
|
var {
|
|
155817
155817
|
builders: {
|
|
155818
155818
|
indent,
|
|
155819
|
-
join:
|
|
155819
|
+
join: join7,
|
|
155820
155820
|
line,
|
|
155821
155821
|
softline,
|
|
155822
155822
|
hardline
|
|
@@ -155930,7 +155930,7 @@ ${extracted.content}`;
|
|
|
155930
155930
|
const forceNotToBreakAttrContent = node.type === "element" && node.fullName === "script" && node.attrs.length === 1 && node.attrs[0].fullName === "src" && node.children.length === 0;
|
|
155931
155931
|
const shouldPrintAttributePerLine = options.singleAttributePerLine && node.attrs.length > 1 && !isVueSfcBlock(node, options);
|
|
155932
155932
|
const attributeLine = shouldPrintAttributePerLine ? hardline : line;
|
|
155933
|
-
const parts = [indent([forceNotToBreakAttrContent ? " " : line,
|
|
155933
|
+
const parts = [indent([forceNotToBreakAttrContent ? " " : line, join7(attributeLine, printedAttributes)])];
|
|
155934
155934
|
if (node.firstChild && needsToBorrowParentOpeningTagEndMarker(node.firstChild) || node.isSelfClosing && needsToBorrowLastChildClosingTagEndMarker(node.parent) || forceNotToBreakAttrContent) {
|
|
155935
155935
|
parts.push(node.isSelfClosing ? " " : "");
|
|
155936
155936
|
} else {
|
|
@@ -156164,7 +156164,7 @@ ${extracted.content}`;
|
|
|
156164
156164
|
var {
|
|
156165
156165
|
builders: {
|
|
156166
156166
|
ifBreak,
|
|
156167
|
-
join:
|
|
156167
|
+
join: join7,
|
|
156168
156168
|
line
|
|
156169
156169
|
}
|
|
156170
156170
|
} = require_doc();
|
|
@@ -156199,7 +156199,7 @@ ${extracted.content}`;
|
|
|
156199
156199
|
return index === -1 ? descriptor.length : index;
|
|
156200
156200
|
});
|
|
156201
156201
|
const maxDescriptorLeftLength = getMax(descriptorLeftLengths);
|
|
156202
|
-
return
|
|
156202
|
+
return join7([",", line], urls.map((url, index) => {
|
|
156203
156203
|
const parts = [url];
|
|
156204
156204
|
const descriptor = descriptors[index];
|
|
156205
156205
|
if (descriptor) {
|
|
@@ -157373,7 +157373,7 @@ ${text}`;
|
|
|
157373
157373
|
line,
|
|
157374
157374
|
softline,
|
|
157375
157375
|
hardline,
|
|
157376
|
-
join:
|
|
157376
|
+
join: join7
|
|
157377
157377
|
}
|
|
157378
157378
|
} = require_doc();
|
|
157379
157379
|
var {
|
|
@@ -157396,7 +157396,7 @@ ${text}`;
|
|
|
157396
157396
|
}
|
|
157397
157397
|
const lastItem = getLast(node.children);
|
|
157398
157398
|
const isLastItemEmptyMappingItem = lastItem && lastItem.type === "flowMappingItem" && isEmptyNode(lastItem.key) && isEmptyNode(lastItem.value);
|
|
157399
|
-
return [openMarker, alignWithSpaces(options.tabWidth, [bracketSpacing, printChildren(path3, print, options), options.trailingComma === "none" ? "" : ifBreak(","), hasEndComments(node) ? [hardline,
|
|
157399
|
+
return [openMarker, alignWithSpaces(options.tabWidth, [bracketSpacing, printChildren(path3, print, options), options.trailingComma === "none" ? "" : ifBreak(","), hasEndComments(node) ? [hardline, join7(hardline, path3.map(print, "endComments"))] : ""]), isLastItemEmptyMappingItem ? "" : bracketSpacing, closeMarker];
|
|
157400
157400
|
}
|
|
157401
157401
|
function printChildren(path3, print, options) {
|
|
157402
157402
|
const node = path3.getValue();
|
|
@@ -157418,7 +157418,7 @@ ${text}`;
|
|
|
157418
157418
|
group,
|
|
157419
157419
|
hardline,
|
|
157420
157420
|
ifBreak,
|
|
157421
|
-
join:
|
|
157421
|
+
join: join7,
|
|
157422
157422
|
line
|
|
157423
157423
|
}
|
|
157424
157424
|
} = require_doc();
|
|
@@ -157460,7 +157460,7 @@ ${text}`;
|
|
|
157460
157460
|
return [": ", alignWithSpaces(2, printedValue)];
|
|
157461
157461
|
}
|
|
157462
157462
|
if (hasLeadingComments(value) || !isInlineNode(key.content)) {
|
|
157463
|
-
return ["? ", alignWithSpaces(2, printedKey), hardline,
|
|
157463
|
+
return ["? ", alignWithSpaces(2, printedKey), hardline, join7("", path3.map(print, "value", "leadingComments").map((comment) => [comment, hardline])), ": ", alignWithSpaces(2, printedValue)];
|
|
157464
157464
|
}
|
|
157465
157465
|
if (isSingleLineNode(key.content) && !hasLeadingComments(key.content) && !hasMiddleComments(key.content) && !hasTrailingComment(key.content) && !hasEndComments(key) && !hasLeadingComments(value.content) && !hasMiddleComments(value.content) && !hasEndComments(value) && isAbsolutelyPrintedAsSingleLineNode(value.content, options)) {
|
|
157466
157466
|
return [printedKey, spaceBeforeColon, ": ", printedValue];
|
|
@@ -157544,7 +157544,7 @@ ${text}`;
|
|
|
157544
157544
|
dedentToRoot,
|
|
157545
157545
|
fill,
|
|
157546
157546
|
hardline,
|
|
157547
|
-
join:
|
|
157547
|
+
join: join7,
|
|
157548
157548
|
line,
|
|
157549
157549
|
literalline,
|
|
157550
157550
|
markAsRoot
|
|
@@ -157587,7 +157587,7 @@ ${text}`;
|
|
|
157587
157587
|
if (index === 0) {
|
|
157588
157588
|
contentsParts.push(hardline);
|
|
157589
157589
|
}
|
|
157590
|
-
contentsParts.push(fill(getDocParts(
|
|
157590
|
+
contentsParts.push(fill(getDocParts(join7(line, lineWords))));
|
|
157591
157591
|
if (index !== lineContents.length - 1) {
|
|
157592
157592
|
contentsParts.push(lineWords.length === 0 ? hardline : markAsRoot(literalline));
|
|
157593
157593
|
} else if (node.chomping === "keep" && isLastDescendant) {
|
|
@@ -157613,7 +157613,7 @@ ${text}`;
|
|
|
157613
157613
|
fill,
|
|
157614
157614
|
group,
|
|
157615
157615
|
hardline,
|
|
157616
|
-
join:
|
|
157616
|
+
join: join7,
|
|
157617
157617
|
line,
|
|
157618
157618
|
lineSuffix,
|
|
157619
157619
|
literalline
|
|
@@ -157662,7 +157662,7 @@ ${text}`;
|
|
|
157662
157662
|
const node = path3.getValue();
|
|
157663
157663
|
const parts = [];
|
|
157664
157664
|
if (node.type !== "mappingValue" && hasLeadingComments(node)) {
|
|
157665
|
-
parts.push([
|
|
157665
|
+
parts.push([join7(hardline, path3.map(print, "leadingComments")), hardline]);
|
|
157666
157666
|
}
|
|
157667
157667
|
const {
|
|
157668
157668
|
tag,
|
|
@@ -157689,7 +157689,7 @@ ${text}`;
|
|
|
157689
157689
|
}
|
|
157690
157690
|
}
|
|
157691
157691
|
if (hasMiddleComments(node)) {
|
|
157692
|
-
parts.push([node.middleComments.length === 1 ? "" : hardline,
|
|
157692
|
+
parts.push([node.middleComments.length === 1 ? "" : hardline, join7(hardline, path3.map(print, "middleComments")), hardline]);
|
|
157693
157693
|
}
|
|
157694
157694
|
const parentNode = path3.getParentNode();
|
|
157695
157695
|
if (hasPrettierIgnore(path3)) {
|
|
@@ -157701,7 +157701,7 @@ ${text}`;
|
|
|
157701
157701
|
parts.push(lineSuffix([node.type === "mappingValue" && !node.content ? "" : " ", parentNode.type === "mappingKey" && path3.getParentNode(2).type === "mapping" && isInlineNode(node) ? "" : breakParent, print("trailingComment")]));
|
|
157702
157702
|
}
|
|
157703
157703
|
if (shouldPrintEndComments(node)) {
|
|
157704
|
-
parts.push(alignWithSpaces(node.type === "sequenceItem" ? 2 : 0, [hardline,
|
|
157704
|
+
parts.push(alignWithSpaces(node.type === "sequenceItem" ? 2 : 0, [hardline, join7(hardline, path3.map((path22) => [isPreviousLineEmpty(options.originalText, path22.getValue(), locStart) ? hardline : "", print()], "endComments"))]));
|
|
157705
157705
|
}
|
|
157706
157706
|
parts.push(nextEmptyLine);
|
|
157707
157707
|
return parts;
|
|
@@ -157751,10 +157751,10 @@ ${text}`;
|
|
|
157751
157751
|
if (shouldPrintDocumentBody(node)) {
|
|
157752
157752
|
parts.push(print("body"));
|
|
157753
157753
|
}
|
|
157754
|
-
return
|
|
157754
|
+
return join7(hardline, parts);
|
|
157755
157755
|
}
|
|
157756
157756
|
case "documentHead":
|
|
157757
|
-
return
|
|
157757
|
+
return join7(hardline, [...path3.map(print, "children"), ...path3.map(print, "endComments")]);
|
|
157758
157758
|
case "documentBody": {
|
|
157759
157759
|
const {
|
|
157760
157760
|
children,
|
|
@@ -157771,10 +157771,10 @@ ${text}`;
|
|
|
157771
157771
|
separator = hardline;
|
|
157772
157772
|
}
|
|
157773
157773
|
}
|
|
157774
|
-
return [
|
|
157774
|
+
return [join7(hardline, path3.map(print, "children")), separator, join7(hardline, path3.map(print, "endComments"))];
|
|
157775
157775
|
}
|
|
157776
157776
|
case "directive":
|
|
157777
|
-
return ["%",
|
|
157777
|
+
return ["%", join7(" ", [node.name, ...node.parameters])];
|
|
157778
157778
|
case "comment":
|
|
157779
157779
|
return ["#", node.value];
|
|
157780
157780
|
case "alias":
|
|
@@ -157809,7 +157809,7 @@ ${text}`;
|
|
|
157809
157809
|
}
|
|
157810
157810
|
case "mapping":
|
|
157811
157811
|
case "sequence":
|
|
157812
|
-
return
|
|
157812
|
+
return join7(hardline, path3.map(print, "children"));
|
|
157813
157813
|
case "sequenceItem":
|
|
157814
157814
|
return ["- ", alignWithSpaces(2, node.content ? print("content") : "")];
|
|
157815
157815
|
case "mappingKey":
|
|
@@ -157846,7 +157846,7 @@ ${text}`;
|
|
|
157846
157846
|
}
|
|
157847
157847
|
function printFlowScalarContent(nodeType, content, options) {
|
|
157848
157848
|
const lineContents = getFlowScalarLineContents(nodeType, content, options);
|
|
157849
|
-
return
|
|
157849
|
+
return join7(hardline, lineContents.map((lineContentWords) => fill(getDocParts(join7(line, lineContentWords)))));
|
|
157850
157850
|
}
|
|
157851
157851
|
function clean(node, newNode) {
|
|
157852
157852
|
if (isNode(newNode)) {
|
|
@@ -157954,7 +157954,7 @@ ${text}`;
|
|
|
157954
157954
|
memClear: memClear2
|
|
157955
157955
|
} = (init_dist(), __toCommonJS(dist_exports));
|
|
157956
157956
|
var thirdParty = require_third_party();
|
|
157957
|
-
var
|
|
157957
|
+
var resolve3 = require_resolve2();
|
|
157958
157958
|
var memoizedLoad = mem2(load2, {
|
|
157959
157959
|
cacheKey: JSON.stringify
|
|
157960
157960
|
});
|
|
@@ -157982,9 +157982,9 @@ ${text}`;
|
|
|
157982
157982
|
const externalManualLoadPluginInfos = externalPluginNames.map((pluginName) => {
|
|
157983
157983
|
let requirePath;
|
|
157984
157984
|
try {
|
|
157985
|
-
requirePath =
|
|
157985
|
+
requirePath = resolve3(path3.resolve(process.cwd(), pluginName));
|
|
157986
157986
|
} catch {
|
|
157987
|
-
requirePath =
|
|
157987
|
+
requirePath = resolve3(pluginName, {
|
|
157988
157988
|
paths: [process.cwd()]
|
|
157989
157989
|
});
|
|
157990
157990
|
}
|
|
@@ -158001,7 +158001,7 @@ ${text}`;
|
|
|
158001
158001
|
}
|
|
158002
158002
|
return memoizedSearch(nodeModulesDir).map((pluginName) => ({
|
|
158003
158003
|
name: pluginName,
|
|
158004
|
-
requirePath:
|
|
158004
|
+
requirePath: resolve3(pluginName, {
|
|
158005
158005
|
paths: [resolvedPluginSearchDir]
|
|
158006
158006
|
})
|
|
158007
158007
|
}));
|
|
@@ -158123,9 +158123,8 @@ var {
|
|
|
158123
158123
|
} = import_index.default;
|
|
158124
158124
|
|
|
158125
158125
|
// src/cli.ts
|
|
158126
|
-
var import_node_child_process5 = require("node:child_process");
|
|
158127
158126
|
var import_node_process2 = require("node:process");
|
|
158128
|
-
var
|
|
158127
|
+
var import_promises6 = require("node:readline/promises");
|
|
158129
158128
|
|
|
158130
158129
|
// src/check-versions.ts
|
|
158131
158130
|
var core = __toESM(require("@actions/core"), 1);
|
|
@@ -158819,7 +158818,7 @@ async function parseChangelog(path3) {
|
|
|
158819
158818
|
return null;
|
|
158820
158819
|
}
|
|
158821
158820
|
const headerLine = lines[firstVersionIndex];
|
|
158822
|
-
const match = headerLine.match(/^## ([\d.]+)
|
|
158821
|
+
const match = headerLine.match(/^## ([\d.]+)/);
|
|
158823
158822
|
if (!match) {
|
|
158824
158823
|
console.log(` Invalid version format: ${headerLine}`);
|
|
158825
158824
|
return null;
|
|
@@ -162065,6 +162064,500 @@ async function conventionalCommitChangeset(options, cwd = process.cwd()) {
|
|
|
162065
162064
|
);
|
|
162066
162065
|
}
|
|
162067
162066
|
|
|
162067
|
+
// src/update-jsdoc-since-tags.ts
|
|
162068
|
+
var import_promises5 = require("node:fs/promises");
|
|
162069
|
+
var import_node_path5 = require("node:path");
|
|
162070
|
+
var import_ts_morph = require("ts-morph");
|
|
162071
|
+
var NEXT_RELEASE = "next-release";
|
|
162072
|
+
var NEXT_RELEASE_TAG_PATTERN = /@since\s+next-release\b/;
|
|
162073
|
+
var SOURCE_EXTENSIONS = /* @__PURE__ */ new Set([
|
|
162074
|
+
".cjs",
|
|
162075
|
+
".cts",
|
|
162076
|
+
".js",
|
|
162077
|
+
".jsx",
|
|
162078
|
+
".mjs",
|
|
162079
|
+
".mts",
|
|
162080
|
+
".ts",
|
|
162081
|
+
".tsx"
|
|
162082
|
+
]);
|
|
162083
|
+
var EXCLUDED_DIRECTORIES = /* @__PURE__ */ new Set([
|
|
162084
|
+
".turbo",
|
|
162085
|
+
"__tests__",
|
|
162086
|
+
"build",
|
|
162087
|
+
"coverage",
|
|
162088
|
+
"dist",
|
|
162089
|
+
"lib",
|
|
162090
|
+
"node_modules"
|
|
162091
|
+
]);
|
|
162092
|
+
var TEST_FILE_PATTERN = /\.(spec|test)\.[cm]?[jt]sx?$/;
|
|
162093
|
+
function pluralize(count, singular, plural) {
|
|
162094
|
+
return count === 1 ? singular : plural;
|
|
162095
|
+
}
|
|
162096
|
+
function formatJsDocSinceUpdateStartMessage() {
|
|
162097
|
+
return "Updating JSDoc @since tags...";
|
|
162098
|
+
}
|
|
162099
|
+
function formatJsDocSincePackageUpdateProgress({
|
|
162100
|
+
name,
|
|
162101
|
+
version
|
|
162102
|
+
}) {
|
|
162103
|
+
return `Processing package ${name} ${version}...`;
|
|
162104
|
+
}
|
|
162105
|
+
function normalizeRelativePath(cwd, filePath) {
|
|
162106
|
+
return (0, import_node_path5.relative)(cwd, filePath).split(import_node_path5.sep).join("/");
|
|
162107
|
+
}
|
|
162108
|
+
function hasNextReleaseSinceTag(content) {
|
|
162109
|
+
const scanner = import_ts_morph.ts.createScanner(
|
|
162110
|
+
import_ts_morph.ts.ScriptTarget.Latest,
|
|
162111
|
+
false,
|
|
162112
|
+
import_ts_morph.ts.LanguageVariant.Standard,
|
|
162113
|
+
content
|
|
162114
|
+
);
|
|
162115
|
+
let token = scanner.scan();
|
|
162116
|
+
while (token !== import_ts_morph.ts.SyntaxKind.EndOfFileToken) {
|
|
162117
|
+
if (token === import_ts_morph.ts.SyntaxKind.MultiLineCommentTrivia) {
|
|
162118
|
+
const text = scanner.getTokenText();
|
|
162119
|
+
if (text.startsWith("/**") && NEXT_RELEASE_TAG_PATTERN.test(text)) {
|
|
162120
|
+
return true;
|
|
162121
|
+
}
|
|
162122
|
+
}
|
|
162123
|
+
token = scanner.scan();
|
|
162124
|
+
}
|
|
162125
|
+
return false;
|
|
162126
|
+
}
|
|
162127
|
+
function getNodeName(node) {
|
|
162128
|
+
if (import_ts_morph.Node.isClassDeclaration(node) || import_ts_morph.Node.isEnumDeclaration(node) || import_ts_morph.Node.isFunctionDeclaration(node) || import_ts_morph.Node.isInterfaceDeclaration(node) || import_ts_morph.Node.isMethodDeclaration(node) || import_ts_morph.Node.isMethodSignature(node) || import_ts_morph.Node.isPropertyDeclaration(node) || import_ts_morph.Node.isPropertySignature(node) || import_ts_morph.Node.isTypeAliasDeclaration(node)) {
|
|
162129
|
+
return node.getName();
|
|
162130
|
+
}
|
|
162131
|
+
if (import_ts_morph.Node.isVariableStatement(node)) {
|
|
162132
|
+
return node.getDeclarationList().getDeclarations().map((declaration) => declaration.getName()).join(", ");
|
|
162133
|
+
}
|
|
162134
|
+
return void 0;
|
|
162135
|
+
}
|
|
162136
|
+
function getQualifiedEntityName(node) {
|
|
162137
|
+
const name = getNodeName(node);
|
|
162138
|
+
if (!name) {
|
|
162139
|
+
return "unknown";
|
|
162140
|
+
}
|
|
162141
|
+
const parent = node.getParent();
|
|
162142
|
+
const parentName = parent ? getNodeName(parent) : void 0;
|
|
162143
|
+
if (parentName) {
|
|
162144
|
+
return `${parentName}.${name}`;
|
|
162145
|
+
}
|
|
162146
|
+
return name;
|
|
162147
|
+
}
|
|
162148
|
+
function getVersionedPackages(packages) {
|
|
162149
|
+
return packages.flatMap((pkg) => {
|
|
162150
|
+
if (!pkg.version) {
|
|
162151
|
+
return [];
|
|
162152
|
+
}
|
|
162153
|
+
return [{ name: pkg.name, root: pkg.root, version: pkg.version }];
|
|
162154
|
+
});
|
|
162155
|
+
}
|
|
162156
|
+
function isSourceFile(filePath) {
|
|
162157
|
+
return SOURCE_EXTENSIONS.has((0, import_node_path5.extname)(filePath)) && !TEST_FILE_PATTERN.test(filePath);
|
|
162158
|
+
}
|
|
162159
|
+
async function getSourceFiles(dir) {
|
|
162160
|
+
const entries = (await (0, import_promises5.readdir)(dir, { withFileTypes: true })).sort(
|
|
162161
|
+
(a, b) => a.name.localeCompare(b.name)
|
|
162162
|
+
);
|
|
162163
|
+
const files = [];
|
|
162164
|
+
for (const entry of entries) {
|
|
162165
|
+
const entryPath = (0, import_node_path5.join)(dir, entry.name);
|
|
162166
|
+
if (entry.isDirectory()) {
|
|
162167
|
+
if (!EXCLUDED_DIRECTORIES.has(entry.name)) {
|
|
162168
|
+
files.push(...await getSourceFiles(entryPath));
|
|
162169
|
+
}
|
|
162170
|
+
continue;
|
|
162171
|
+
}
|
|
162172
|
+
if (entry.isFile() && isSourceFile(entry.name)) {
|
|
162173
|
+
files.push(entryPath);
|
|
162174
|
+
}
|
|
162175
|
+
}
|
|
162176
|
+
return files;
|
|
162177
|
+
}
|
|
162178
|
+
async function updateSourceFile(filePath, version) {
|
|
162179
|
+
const project = new import_ts_morph.Project({
|
|
162180
|
+
compilerOptions: {
|
|
162181
|
+
allowJs: true,
|
|
162182
|
+
checkJs: false
|
|
162183
|
+
},
|
|
162184
|
+
manipulationSettings: {
|
|
162185
|
+
insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces: false,
|
|
162186
|
+
useTrailingCommas: true
|
|
162187
|
+
},
|
|
162188
|
+
skipAddingFilesFromTsConfig: true
|
|
162189
|
+
});
|
|
162190
|
+
const sourceFile = project.addSourceFileAtPath(filePath);
|
|
162191
|
+
let tagCount = 0;
|
|
162192
|
+
sourceFile.forEachDescendant((node) => {
|
|
162193
|
+
if (!import_ts_morph.Node.isJSDocable(node)) {
|
|
162194
|
+
return;
|
|
162195
|
+
}
|
|
162196
|
+
for (const jsDoc of node.getJsDocs()) {
|
|
162197
|
+
for (const tag of jsDoc.getTags()) {
|
|
162198
|
+
if (tag.getTagName() === "since" && tag.getCommentText()?.trim() === NEXT_RELEASE) {
|
|
162199
|
+
tag.set({ tagName: "since", text: version });
|
|
162200
|
+
tagCount += 1;
|
|
162201
|
+
}
|
|
162202
|
+
}
|
|
162203
|
+
}
|
|
162204
|
+
});
|
|
162205
|
+
if (tagCount > 0) {
|
|
162206
|
+
await sourceFile.save();
|
|
162207
|
+
}
|
|
162208
|
+
return tagCount;
|
|
162209
|
+
}
|
|
162210
|
+
async function findUnresolvedFiles(cwd, sourceFiles) {
|
|
162211
|
+
const unresolvedFiles = [];
|
|
162212
|
+
for (const filePath of sourceFiles) {
|
|
162213
|
+
const content = await (0, import_promises5.readFile)(filePath, "utf-8");
|
|
162214
|
+
if (hasNextReleaseSinceTag(content)) {
|
|
162215
|
+
unresolvedFiles.push(normalizeRelativePath(cwd, filePath));
|
|
162216
|
+
}
|
|
162217
|
+
}
|
|
162218
|
+
return unresolvedFiles;
|
|
162219
|
+
}
|
|
162220
|
+
function collectSourceFileSinceTagLocations(cwd, sourceFile) {
|
|
162221
|
+
const filePath = normalizeRelativePath(cwd, sourceFile.getFilePath());
|
|
162222
|
+
const locations = [];
|
|
162223
|
+
sourceFile.forEachDescendant((node) => {
|
|
162224
|
+
if (!import_ts_morph.Node.isJSDocable(node)) {
|
|
162225
|
+
return;
|
|
162226
|
+
}
|
|
162227
|
+
for (const jsDoc of node.getJsDocs()) {
|
|
162228
|
+
for (const tag of jsDoc.getTags()) {
|
|
162229
|
+
if (tag.getTagName() === "since" && tag.getCommentText()?.trim() === NEXT_RELEASE) {
|
|
162230
|
+
locations.push({
|
|
162231
|
+
entityName: getQualifiedEntityName(node),
|
|
162232
|
+
filePath
|
|
162233
|
+
});
|
|
162234
|
+
}
|
|
162235
|
+
}
|
|
162236
|
+
}
|
|
162237
|
+
});
|
|
162238
|
+
return locations;
|
|
162239
|
+
}
|
|
162240
|
+
function createProject() {
|
|
162241
|
+
return new import_ts_morph.Project({
|
|
162242
|
+
compilerOptions: {
|
|
162243
|
+
allowJs: true,
|
|
162244
|
+
checkJs: false
|
|
162245
|
+
},
|
|
162246
|
+
manipulationSettings: {
|
|
162247
|
+
insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces: false,
|
|
162248
|
+
useTrailingCommas: true
|
|
162249
|
+
},
|
|
162250
|
+
skipAddingFilesFromTsConfig: true
|
|
162251
|
+
});
|
|
162252
|
+
}
|
|
162253
|
+
function getFileSinceTagLocations(cwd, filePath) {
|
|
162254
|
+
const project = createProject();
|
|
162255
|
+
return collectSourceFileSinceTagLocations(
|
|
162256
|
+
cwd,
|
|
162257
|
+
project.addSourceFileAtPath(filePath)
|
|
162258
|
+
);
|
|
162259
|
+
}
|
|
162260
|
+
async function checkJsDocSinceTags({
|
|
162261
|
+
cwd = process.cwd(),
|
|
162262
|
+
packages
|
|
162263
|
+
}) {
|
|
162264
|
+
const unresolvedTags = [];
|
|
162265
|
+
for (const pkg of packages) {
|
|
162266
|
+
const sourceFiles = await getSourceFiles(pkg.root);
|
|
162267
|
+
for (const filePath of sourceFiles) {
|
|
162268
|
+
unresolvedTags.push(...getFileSinceTagLocations(cwd, filePath));
|
|
162269
|
+
}
|
|
162270
|
+
}
|
|
162271
|
+
return { unresolvedTags };
|
|
162272
|
+
}
|
|
162273
|
+
async function updatePackages(cwd, packages, onProgress) {
|
|
162274
|
+
const updatedPackages = [];
|
|
162275
|
+
const unresolvedFiles = [];
|
|
162276
|
+
for (const pkg of packages) {
|
|
162277
|
+
onProgress?.(formatJsDocSincePackageUpdateProgress(pkg));
|
|
162278
|
+
const sourceFiles = await getSourceFiles(pkg.root);
|
|
162279
|
+
let fileCount = 0;
|
|
162280
|
+
let tagCount = 0;
|
|
162281
|
+
for (const filePath of sourceFiles) {
|
|
162282
|
+
const updatedTags = await updateSourceFile(filePath, pkg.version);
|
|
162283
|
+
if (updatedTags > 0) {
|
|
162284
|
+
fileCount += 1;
|
|
162285
|
+
tagCount += updatedTags;
|
|
162286
|
+
}
|
|
162287
|
+
}
|
|
162288
|
+
if (tagCount > 0) {
|
|
162289
|
+
updatedPackages.push({
|
|
162290
|
+
fileCount,
|
|
162291
|
+
name: pkg.name,
|
|
162292
|
+
tagCount,
|
|
162293
|
+
version: pkg.version
|
|
162294
|
+
});
|
|
162295
|
+
}
|
|
162296
|
+
unresolvedFiles.push(...await findUnresolvedFiles(cwd, sourceFiles));
|
|
162297
|
+
}
|
|
162298
|
+
return { unresolvedFiles, updatedPackages };
|
|
162299
|
+
}
|
|
162300
|
+
async function updateJsDocSinceTagsForPackages({
|
|
162301
|
+
cwd = process.cwd(),
|
|
162302
|
+
onProgress,
|
|
162303
|
+
packages
|
|
162304
|
+
}) {
|
|
162305
|
+
return updatePackages(cwd, getVersionedPackages(packages), onProgress);
|
|
162306
|
+
}
|
|
162307
|
+
function formatJsDocSinceUpdateResult(result) {
|
|
162308
|
+
const lines = [];
|
|
162309
|
+
if (result.updatedPackages.length > 0) {
|
|
162310
|
+
lines.push("Updated JSDoc @since tags:");
|
|
162311
|
+
for (const pkg of result.updatedPackages) {
|
|
162312
|
+
lines.push(
|
|
162313
|
+
` ${pkg.name} ${pkg.version}: ${pkg.tagCount} ${pluralize(
|
|
162314
|
+
pkg.tagCount,
|
|
162315
|
+
"tag",
|
|
162316
|
+
"tags"
|
|
162317
|
+
)} in ${pkg.fileCount} ${pluralize(pkg.fileCount, "file", "files")}`
|
|
162318
|
+
);
|
|
162319
|
+
}
|
|
162320
|
+
}
|
|
162321
|
+
if (result.unresolvedFiles.length > 0) {
|
|
162322
|
+
if (lines.length > 0) {
|
|
162323
|
+
lines.push("");
|
|
162324
|
+
}
|
|
162325
|
+
lines.push(
|
|
162326
|
+
"Warning: unresolved @since next-release tags remain after JSDoc version update:"
|
|
162327
|
+
);
|
|
162328
|
+
lines.push(...result.unresolvedFiles.map((filePath) => ` ${filePath}`));
|
|
162329
|
+
lines.push("");
|
|
162330
|
+
lines.push(
|
|
162331
|
+
"These tags were not rewritten automatically. This is non-blocking, but the updater may need to support another JSDoc shape."
|
|
162332
|
+
);
|
|
162333
|
+
}
|
|
162334
|
+
return lines;
|
|
162335
|
+
}
|
|
162336
|
+
function formatJsDocSinceCheckResult(result) {
|
|
162337
|
+
if (result.unresolvedTags.length === 0) {
|
|
162338
|
+
return ["No @since next-release tags found."];
|
|
162339
|
+
}
|
|
162340
|
+
return [
|
|
162341
|
+
"Found @since next-release tags:",
|
|
162342
|
+
...result.unresolvedTags.map(
|
|
162343
|
+
({ entityName, filePath }) => ` ${filePath}: ${entityName}`
|
|
162344
|
+
)
|
|
162345
|
+
];
|
|
162346
|
+
}
|
|
162347
|
+
|
|
162348
|
+
// src/version-bump.ts
|
|
162349
|
+
var import_get_packages4 = require("@manypkg/get-packages");
|
|
162350
|
+
var import_node_child_process5 = require("node:child_process");
|
|
162351
|
+
var import_node_fs2 = require("node:fs");
|
|
162352
|
+
var import_node_path6 = require("node:path");
|
|
162353
|
+
var CHANGESET_CONFIG_LOCATION2 = (0, import_node_path6.join)(".changeset", "config.json");
|
|
162354
|
+
function normalizePath(path3) {
|
|
162355
|
+
return (0, import_node_path6.resolve)(path3);
|
|
162356
|
+
}
|
|
162357
|
+
function isWithinDirectory(parent, child) {
|
|
162358
|
+
const relativePath = (0, import_node_path6.relative)(parent, child);
|
|
162359
|
+
return relativePath === "" || !relativePath.startsWith("..") && !(0, import_node_path6.isAbsolute)(relativePath);
|
|
162360
|
+
}
|
|
162361
|
+
function getPackageLabel(directory) {
|
|
162362
|
+
return directory.replaceAll("\\", "/");
|
|
162363
|
+
}
|
|
162364
|
+
function getSelectedDirectory(cwd, directory) {
|
|
162365
|
+
return (0, import_node_path6.resolve)(cwd, directory);
|
|
162366
|
+
}
|
|
162367
|
+
function getSelectedDirectories({
|
|
162368
|
+
cwd,
|
|
162369
|
+
directories,
|
|
162370
|
+
directory
|
|
162371
|
+
}) {
|
|
162372
|
+
const selectedDirectories = directories && directories.length > 0 ? directories : directory ? [directory] : [];
|
|
162373
|
+
return selectedDirectories.map((selectedDirectory) => ({
|
|
162374
|
+
input: selectedDirectory,
|
|
162375
|
+
root: getSelectedDirectory(cwd, selectedDirectory)
|
|
162376
|
+
}));
|
|
162377
|
+
}
|
|
162378
|
+
function getPackageSourceSnapshot(pkg, versionOverride) {
|
|
162379
|
+
return {
|
|
162380
|
+
...pkg,
|
|
162381
|
+
root: (0, import_node_path6.resolve)(pkg.root, "src"),
|
|
162382
|
+
version: versionOverride ?? pkg.version
|
|
162383
|
+
};
|
|
162384
|
+
}
|
|
162385
|
+
function getPackageSourceSnapshots(packages, versionOverride) {
|
|
162386
|
+
return packages.map((pkg) => getPackageSourceSnapshot(pkg, versionOverride));
|
|
162387
|
+
}
|
|
162388
|
+
function normalizeGitPath(path3) {
|
|
162389
|
+
return path3.split(import_node_path6.sep).join("/");
|
|
162390
|
+
}
|
|
162391
|
+
function getBaseBranch({
|
|
162392
|
+
configPath = CHANGESET_CONFIG_LOCATION2,
|
|
162393
|
+
cwd
|
|
162394
|
+
}) {
|
|
162395
|
+
const changesetConfig = JSON.parse(
|
|
162396
|
+
(0, import_node_fs2.readFileSync)((0, import_node_path6.join)(cwd, configPath), "utf-8")
|
|
162397
|
+
);
|
|
162398
|
+
return changesetConfig.baseBranch ?? "main";
|
|
162399
|
+
}
|
|
162400
|
+
function getPackageVersionAtRef(pkg, diffRef, cwd) {
|
|
162401
|
+
const packageJsonPath = normalizeGitPath(
|
|
162402
|
+
(0, import_node_path6.relative)(cwd, (0, import_node_path6.join)(pkg.root, "package.json"))
|
|
162403
|
+
);
|
|
162404
|
+
try {
|
|
162405
|
+
const packageJson = (0, import_node_child_process5.execFileSync)(
|
|
162406
|
+
"git",
|
|
162407
|
+
["show", `${diffRef}:${packageJsonPath}`],
|
|
162408
|
+
{
|
|
162409
|
+
cwd,
|
|
162410
|
+
encoding: "utf-8"
|
|
162411
|
+
}
|
|
162412
|
+
);
|
|
162413
|
+
return JSON.parse(packageJson).version;
|
|
162414
|
+
} catch {
|
|
162415
|
+
return void 0;
|
|
162416
|
+
}
|
|
162417
|
+
}
|
|
162418
|
+
function isGitRefResolvable(diffRef, cwd) {
|
|
162419
|
+
try {
|
|
162420
|
+
(0, import_node_child_process5.execFileSync)("git", ["rev-parse", "--verify", `${diffRef}^{commit}`], {
|
|
162421
|
+
cwd,
|
|
162422
|
+
stdio: "ignore"
|
|
162423
|
+
});
|
|
162424
|
+
return true;
|
|
162425
|
+
} catch {
|
|
162426
|
+
return false;
|
|
162427
|
+
}
|
|
162428
|
+
}
|
|
162429
|
+
function getPackagesChangedSinceRef({
|
|
162430
|
+
cwd,
|
|
162431
|
+
diffRef,
|
|
162432
|
+
packages
|
|
162433
|
+
}) {
|
|
162434
|
+
if (!isGitRefResolvable(diffRef, cwd)) {
|
|
162435
|
+
throw new Error(`Git ref "${diffRef}" could not be resolved.`);
|
|
162436
|
+
}
|
|
162437
|
+
return packages.filter(
|
|
162438
|
+
(pkg) => getPackageVersionAtRef(pkg, diffRef, cwd) !== pkg.version
|
|
162439
|
+
);
|
|
162440
|
+
}
|
|
162441
|
+
function findContainingPackage(directory, packages) {
|
|
162442
|
+
return packages.filter((pkg) => isWithinDirectory(normalizePath(pkg.root), directory)).sort((a, b) => normalizePath(b.root).length - normalizePath(a.root).length).at(0);
|
|
162443
|
+
}
|
|
162444
|
+
function selectCustomCheckSnapshots(directories, packages) {
|
|
162445
|
+
return directories.map(({ input, root }) => {
|
|
162446
|
+
const containingPackage = findContainingPackage(root, packages);
|
|
162447
|
+
return {
|
|
162448
|
+
name: containingPackage?.name ?? getPackageLabel(input),
|
|
162449
|
+
root,
|
|
162450
|
+
version: containingPackage?.version
|
|
162451
|
+
};
|
|
162452
|
+
});
|
|
162453
|
+
}
|
|
162454
|
+
function selectCustomUpdateSnapshots(directories, packages, versionOverride) {
|
|
162455
|
+
return directories.map(({ input, root }) => {
|
|
162456
|
+
const containingPackage = findContainingPackage(root, packages);
|
|
162457
|
+
const version = versionOverride ?? containingPackage?.version;
|
|
162458
|
+
if (!version) {
|
|
162459
|
+
throw new Error(
|
|
162460
|
+
`Directory "${input}" is not within a package with a version. Pass --version to update arbitrary directories.`
|
|
162461
|
+
);
|
|
162462
|
+
}
|
|
162463
|
+
return {
|
|
162464
|
+
name: containingPackage?.name ?? getPackageLabel(input),
|
|
162465
|
+
root,
|
|
162466
|
+
version
|
|
162467
|
+
};
|
|
162468
|
+
});
|
|
162469
|
+
}
|
|
162470
|
+
function selectDefaultPackageSourceSnapshots({
|
|
162471
|
+
configPath,
|
|
162472
|
+
cwd = process.cwd(),
|
|
162473
|
+
diffRef,
|
|
162474
|
+
directories,
|
|
162475
|
+
directory,
|
|
162476
|
+
packages,
|
|
162477
|
+
version
|
|
162478
|
+
}) {
|
|
162479
|
+
const selectedDirectories = getSelectedDirectories({
|
|
162480
|
+
cwd,
|
|
162481
|
+
directories,
|
|
162482
|
+
directory
|
|
162483
|
+
});
|
|
162484
|
+
if (selectedDirectories.length === 0) {
|
|
162485
|
+
const selectedDiffRef = diffRef ?? getBaseBranch({ configPath, cwd });
|
|
162486
|
+
return getPackageSourceSnapshots(
|
|
162487
|
+
getPackagesChangedSinceRef({
|
|
162488
|
+
cwd,
|
|
162489
|
+
diffRef: selectedDiffRef,
|
|
162490
|
+
packages
|
|
162491
|
+
}),
|
|
162492
|
+
version
|
|
162493
|
+
);
|
|
162494
|
+
}
|
|
162495
|
+
return selectCustomUpdateSnapshots(selectedDirectories, packages, version);
|
|
162496
|
+
}
|
|
162497
|
+
function selectCheckPackageSnapshots({
|
|
162498
|
+
cwd = process.cwd(),
|
|
162499
|
+
directories,
|
|
162500
|
+
directory,
|
|
162501
|
+
packages
|
|
162502
|
+
}) {
|
|
162503
|
+
const selectedDirectories = getSelectedDirectories({
|
|
162504
|
+
cwd,
|
|
162505
|
+
directories,
|
|
162506
|
+
directory
|
|
162507
|
+
});
|
|
162508
|
+
if (selectedDirectories.length === 0) {
|
|
162509
|
+
return getPackageSourceSnapshots(packages);
|
|
162510
|
+
}
|
|
162511
|
+
return selectCustomCheckSnapshots(selectedDirectories, packages);
|
|
162512
|
+
}
|
|
162513
|
+
function getPackageSnapshots(cwd = process.cwd()) {
|
|
162514
|
+
return (0, import_get_packages4.getPackagesSync)(cwd).packages.flatMap((pkg) => {
|
|
162515
|
+
const { name, version } = pkg.packageJson;
|
|
162516
|
+
if (!name) {
|
|
162517
|
+
return [];
|
|
162518
|
+
}
|
|
162519
|
+
const sourceRoot = (0, import_node_path6.join)(pkg.dir, "src");
|
|
162520
|
+
if (!(0, import_node_fs2.existsSync)(sourceRoot)) {
|
|
162521
|
+
return [];
|
|
162522
|
+
}
|
|
162523
|
+
return [{ name, root: pkg.dir, version }];
|
|
162524
|
+
});
|
|
162525
|
+
}
|
|
162526
|
+
function getCheckPackageSnapshots({
|
|
162527
|
+
cwd = process.cwd(),
|
|
162528
|
+
directories,
|
|
162529
|
+
directory,
|
|
162530
|
+
packages = getPackageSnapshots(cwd)
|
|
162531
|
+
} = {}) {
|
|
162532
|
+
return selectCheckPackageSnapshots({ cwd, directories, directory, packages });
|
|
162533
|
+
}
|
|
162534
|
+
function getUpdatePackageSnapshots({
|
|
162535
|
+
configPath,
|
|
162536
|
+
cwd = process.cwd(),
|
|
162537
|
+
diffRef,
|
|
162538
|
+
directories,
|
|
162539
|
+
directory,
|
|
162540
|
+
packages = getPackageSnapshots(cwd),
|
|
162541
|
+
version
|
|
162542
|
+
} = {}) {
|
|
162543
|
+
return selectDefaultPackageSourceSnapshots({
|
|
162544
|
+
configPath,
|
|
162545
|
+
cwd,
|
|
162546
|
+
diffRef,
|
|
162547
|
+
directories,
|
|
162548
|
+
directory,
|
|
162549
|
+
packages,
|
|
162550
|
+
version
|
|
162551
|
+
});
|
|
162552
|
+
}
|
|
162553
|
+
function bumpVersionsAndMaybeUpdateJsDocSinceTags({
|
|
162554
|
+
exec = (command) => (0, import_node_child_process5.execSync)(command, { stdio: "inherit" }),
|
|
162555
|
+
packageManager = "pnpm"
|
|
162556
|
+
} = {}) {
|
|
162557
|
+
const command = `${packageManager} changeset version`;
|
|
162558
|
+
exec(command);
|
|
162559
|
+
}
|
|
162560
|
+
|
|
162068
162561
|
// src/cli.ts
|
|
162069
162562
|
function buildSteps(options) {
|
|
162070
162563
|
const pm = options.packageManager ?? "pnpm";
|
|
@@ -162081,9 +162574,9 @@ function buildSteps(options) {
|
|
|
162081
162574
|
{
|
|
162082
162575
|
description: "Bump versions and generate changelogs",
|
|
162083
162576
|
name: "bump",
|
|
162084
|
-
run: () => {
|
|
162085
|
-
|
|
162086
|
-
}
|
|
162577
|
+
run: () => bumpVersionsAndMaybeUpdateJsDocSinceTags({
|
|
162578
|
+
packageManager: pm
|
|
162579
|
+
})
|
|
162087
162580
|
},
|
|
162088
162581
|
{
|
|
162089
162582
|
description: "Consolidate changelog formatting",
|
|
@@ -162100,7 +162593,7 @@ function buildSteps(options) {
|
|
|
162100
162593
|
];
|
|
162101
162594
|
}
|
|
162102
162595
|
async function waitForConfirmation(stepName) {
|
|
162103
|
-
const rl = (0,
|
|
162596
|
+
const rl = (0, import_promises6.createInterface)({ input: import_node_process2.stdin, output: import_node_process2.stdout });
|
|
162104
162597
|
try {
|
|
162105
162598
|
const answer = await rl.question(
|
|
162106
162599
|
`
|
|
@@ -162179,6 +162672,49 @@ program.command("check-versions").description(
|
|
|
162179
162672
|
"--config <path>",
|
|
162180
162673
|
"Path to the changesets config file, relative to the project root"
|
|
162181
162674
|
).action((options) => checkVersions({ configPath: options.config }));
|
|
162675
|
+
program.command("check-jsdoc-since-tags").argument(
|
|
162676
|
+
"[directories...]",
|
|
162677
|
+
"Directories to scan instead of package sources. If this is omitted, the `src` folder will be used by default"
|
|
162678
|
+
).description(
|
|
162679
|
+
"Check for JSDoc @since next-release tags without modifying files"
|
|
162680
|
+
).action(async (directories) => {
|
|
162681
|
+
const result = await checkJsDocSinceTags({
|
|
162682
|
+
packages: getCheckPackageSnapshots({ directories })
|
|
162683
|
+
});
|
|
162684
|
+
for (const line of formatJsDocSinceCheckResult(result)) {
|
|
162685
|
+
console.log(line);
|
|
162686
|
+
}
|
|
162687
|
+
});
|
|
162688
|
+
program.command("update-jsdoc-since-tags").argument(
|
|
162689
|
+
"[directories...]",
|
|
162690
|
+
"Directories to update instead of package sources"
|
|
162691
|
+
).option(
|
|
162692
|
+
"--version <version>",
|
|
162693
|
+
"Version to use instead of each containing package's current version"
|
|
162694
|
+
).option(
|
|
162695
|
+
"--diff-ref <git-ref>",
|
|
162696
|
+
"Git ref to compare package versions against (defaults to the changesets base branch)"
|
|
162697
|
+
).description(
|
|
162698
|
+
"Replace JSDoc @since next-release tags with package or explicit versions"
|
|
162699
|
+
).action(async (directories, options) => {
|
|
162700
|
+
console.log(formatJsDocSinceUpdateStartMessage());
|
|
162701
|
+
const result = await updateJsDocSinceTagsForPackages({
|
|
162702
|
+
onProgress: console.log,
|
|
162703
|
+
packages: getUpdatePackageSnapshots({
|
|
162704
|
+
diffRef: options.diffRef,
|
|
162705
|
+
directories,
|
|
162706
|
+
version: options.version
|
|
162707
|
+
})
|
|
162708
|
+
});
|
|
162709
|
+
const lines = formatJsDocSinceUpdateResult(result);
|
|
162710
|
+
if (lines.length === 0) {
|
|
162711
|
+
console.log("No JSDoc @since next-release tags updated.");
|
|
162712
|
+
return;
|
|
162713
|
+
}
|
|
162714
|
+
for (const line of lines) {
|
|
162715
|
+
console.log(line);
|
|
162716
|
+
}
|
|
162717
|
+
});
|
|
162182
162718
|
program.command("create-github-releases").description("Create GitHub releases for published packages from changelogs").option(
|
|
162183
162719
|
"--token <token>",
|
|
162184
162720
|
"GitHub token for authentication (falls back to TOKEN or GITHUB_TOKEN env vars)"
|