@stencil/core 4.18.2 → 4.18.3
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/cli/index.cjs +27 -12
- package/cli/index.js +27 -12
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +828 -662
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +2 -2
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +52 -40
- package/internal/app-data/package.json +1 -1
- package/internal/client/index.js +34 -16
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +32 -16
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +66 -58
- package/internal/package.json +1 -1
- package/internal/stencil-private.d.ts +3 -3
- package/internal/stencil-public-compiler.d.ts +3 -3
- package/internal/testing/index.js +31 -15
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +66 -58
- package/mock-doc/index.d.ts +36 -30
- package/mock-doc/index.js +66 -58
- package/mock-doc/package.json +1 -1
- package/package.json +14 -17
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +4 -1
- package/sys/node/autoprefixer.js +2 -2
- package/sys/node/glob.js +1 -1
- package/sys/node/index.js +2 -2
- package/sys/node/node-fetch.js +10 -2
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +6 -3
- package/testing/mock-fetch.d.ts +4 -4
- package/testing/package.json +1 -1
package/compiler/stencil.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil Compiler v4.18.
|
|
2
|
+
Stencil Compiler v4.18.3 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -1466,11 +1466,11 @@ var require_source_map_consumer = __commonJS({
|
|
|
1466
1466
|
if (section.consumer._findSourceIndex(util.getArg(aArgs, "source")) === -1) {
|
|
1467
1467
|
continue;
|
|
1468
1468
|
}
|
|
1469
|
-
var
|
|
1470
|
-
if (
|
|
1469
|
+
var generatedPosition2 = section.consumer.generatedPositionFor(aArgs);
|
|
1470
|
+
if (generatedPosition2) {
|
|
1471
1471
|
var ret = {
|
|
1472
|
-
line:
|
|
1473
|
-
column:
|
|
1472
|
+
line: generatedPosition2.line + (section.generatedOffset.generatedLine - 1),
|
|
1473
|
+
column: generatedPosition2.column + (section.generatedOffset.generatedLine === generatedPosition2.line ? section.generatedOffset.generatedColumn - 1 : 0)
|
|
1474
1474
|
};
|
|
1475
1475
|
return ret;
|
|
1476
1476
|
}
|
|
@@ -2698,9 +2698,9 @@ var require_constants = __commonJS({
|
|
|
2698
2698
|
/**
|
|
2699
2699
|
* Create EXTGLOB_CHARS
|
|
2700
2700
|
*/
|
|
2701
|
-
extglobChars(
|
|
2701
|
+
extglobChars(chars3) {
|
|
2702
2702
|
return {
|
|
2703
|
-
"!": { type: "negate", open: "(?:(?!(?:", close: `))${
|
|
2703
|
+
"!": { type: "negate", open: "(?:(?!(?:", close: `))${chars3.STAR})` },
|
|
2704
2704
|
"?": { type: "qmark", open: "(?:", close: ")?" },
|
|
2705
2705
|
"+": { type: "plus", open: "(?:", close: ")+" },
|
|
2706
2706
|
"*": { type: "star", open: "(?:", close: ")*" },
|
|
@@ -3137,7 +3137,7 @@ var require_parse = __commonJS({
|
|
|
3137
3137
|
var syntaxError = (type, char) => {
|
|
3138
3138
|
return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
|
|
3139
3139
|
};
|
|
3140
|
-
var
|
|
3140
|
+
var parse5 = (input, options) => {
|
|
3141
3141
|
if (typeof input !== "string") {
|
|
3142
3142
|
throw new TypeError("Expected a string");
|
|
3143
3143
|
}
|
|
@@ -3286,7 +3286,7 @@ var require_parse = __commonJS({
|
|
|
3286
3286
|
output = token.close = `)$))${extglobStar}`;
|
|
3287
3287
|
}
|
|
3288
3288
|
if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
|
|
3289
|
-
const expression =
|
|
3289
|
+
const expression = parse5(rest, { ...options, fastpaths: false }).output;
|
|
3290
3290
|
output = token.close = `)${expression})${extglobStar})`;
|
|
3291
3291
|
}
|
|
3292
3292
|
if (token.prev.type === "bos") {
|
|
@@ -3298,7 +3298,7 @@ var require_parse = __commonJS({
|
|
|
3298
3298
|
};
|
|
3299
3299
|
if (opts.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(input)) {
|
|
3300
3300
|
let backslashes = false;
|
|
3301
|
-
let output = input.replace(REGEX_SPECIAL_CHARS_BACKREF, (m, esc,
|
|
3301
|
+
let output = input.replace(REGEX_SPECIAL_CHARS_BACKREF, (m, esc, chars3, first, rest, index2) => {
|
|
3302
3302
|
if (first === "\\") {
|
|
3303
3303
|
backslashes = true;
|
|
3304
3304
|
return m;
|
|
@@ -3310,10 +3310,10 @@ var require_parse = __commonJS({
|
|
|
3310
3310
|
if (index2 === 0) {
|
|
3311
3311
|
return qmarkNoDot + (rest ? QMARK.repeat(rest.length) : "");
|
|
3312
3312
|
}
|
|
3313
|
-
return QMARK.repeat(
|
|
3313
|
+
return QMARK.repeat(chars3.length);
|
|
3314
3314
|
}
|
|
3315
3315
|
if (first === ".") {
|
|
3316
|
-
return DOT_LITERAL.repeat(
|
|
3316
|
+
return DOT_LITERAL.repeat(chars3.length);
|
|
3317
3317
|
}
|
|
3318
3318
|
if (first === "*") {
|
|
3319
3319
|
if (esc) {
|
|
@@ -3811,7 +3811,7 @@ var require_parse = __commonJS({
|
|
|
3811
3811
|
}
|
|
3812
3812
|
return state;
|
|
3813
3813
|
};
|
|
3814
|
-
|
|
3814
|
+
parse5.fastpaths = (input, options) => {
|
|
3815
3815
|
const opts = { ...options };
|
|
3816
3816
|
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
|
|
3817
3817
|
const len = input.length;
|
|
@@ -3877,7 +3877,7 @@ var require_parse = __commonJS({
|
|
|
3877
3877
|
}
|
|
3878
3878
|
return source;
|
|
3879
3879
|
};
|
|
3880
|
-
module2.exports =
|
|
3880
|
+
module2.exports = parse5;
|
|
3881
3881
|
}
|
|
3882
3882
|
});
|
|
3883
3883
|
|
|
@@ -3887,7 +3887,7 @@ var require_picomatch = __commonJS({
|
|
|
3887
3887
|
"use strict";
|
|
3888
3888
|
var path6 = require("path");
|
|
3889
3889
|
var scan = require_scan();
|
|
3890
|
-
var
|
|
3890
|
+
var parse5 = require_parse();
|
|
3891
3891
|
var utils = require_utils();
|
|
3892
3892
|
var constants = require_constants();
|
|
3893
3893
|
var isObject4 = (val) => val && typeof val === "object" && !Array.isArray(val);
|
|
@@ -3975,7 +3975,7 @@ var require_picomatch = __commonJS({
|
|
|
3975
3975
|
picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
|
|
3976
3976
|
picomatch.parse = (pattern, options) => {
|
|
3977
3977
|
if (Array.isArray(pattern)) return pattern.map((p) => picomatch.parse(p, options));
|
|
3978
|
-
return
|
|
3978
|
+
return parse5(pattern, { ...options, fastpaths: false });
|
|
3979
3979
|
};
|
|
3980
3980
|
picomatch.scan = (input, options) => scan(input, options);
|
|
3981
3981
|
picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
|
|
@@ -4001,10 +4001,10 @@ var require_picomatch = __commonJS({
|
|
|
4001
4001
|
}
|
|
4002
4002
|
let parsed = { negated: false, fastpaths: true };
|
|
4003
4003
|
if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
|
|
4004
|
-
parsed.output =
|
|
4004
|
+
parsed.output = parse5.fastpaths(input, options);
|
|
4005
4005
|
}
|
|
4006
4006
|
if (!parsed.output) {
|
|
4007
|
-
parsed =
|
|
4007
|
+
parsed = parse5(input, options);
|
|
4008
4008
|
}
|
|
4009
4009
|
return picomatch.compileRe(parsed, options, returnOutput, returnState);
|
|
4010
4010
|
};
|
|
@@ -4066,7 +4066,7 @@ var require_cjs = __commonJS({
|
|
|
4066
4066
|
}
|
|
4067
4067
|
}
|
|
4068
4068
|
}
|
|
4069
|
-
function
|
|
4069
|
+
function remove4(parent, prop, index3) {
|
|
4070
4070
|
if (parent) {
|
|
4071
4071
|
if (index3 !== null) {
|
|
4072
4072
|
parent[prop].splice(index3, 1);
|
|
@@ -4090,7 +4090,7 @@ var require_cjs = __commonJS({
|
|
|
4090
4090
|
replace2(parent, prop, index3, node);
|
|
4091
4091
|
}
|
|
4092
4092
|
if (should_remove) {
|
|
4093
|
-
|
|
4093
|
+
remove4(parent, prop, index3);
|
|
4094
4094
|
}
|
|
4095
4095
|
const skipped = should_skip;
|
|
4096
4096
|
const removed = should_remove;
|
|
@@ -4127,7 +4127,7 @@ var require_cjs = __commonJS({
|
|
|
4127
4127
|
replace2(parent, prop, index3, node);
|
|
4128
4128
|
}
|
|
4129
4129
|
if (should_remove) {
|
|
4130
|
-
|
|
4130
|
+
remove4(parent, prop, index3);
|
|
4131
4131
|
}
|
|
4132
4132
|
const removed = should_remove;
|
|
4133
4133
|
replacement = _replacement;
|
|
@@ -4670,10 +4670,10 @@ var require_sourcemap_codec_umd = __commonJS({
|
|
|
4670
4670
|
typeof exports2 === "object" && typeof module2 !== "undefined" ? factory(exports2) : typeof define === "function" && define.amd ? define(["exports"], factory) : (global2 = global2 || self, factory(global2.sourcemapCodec = {}));
|
|
4671
4671
|
})(exports2, function(exports3) {
|
|
4672
4672
|
"use strict";
|
|
4673
|
-
var
|
|
4674
|
-
var
|
|
4675
|
-
for (var i = 0; i <
|
|
4676
|
-
|
|
4673
|
+
var charToInteger2 = {};
|
|
4674
|
+
var chars3 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
|
|
4675
|
+
for (var i = 0; i < chars3.length; i++) {
|
|
4676
|
+
charToInteger2[chars3.charCodeAt(i)] = i;
|
|
4677
4677
|
}
|
|
4678
4678
|
function decode3(mappings) {
|
|
4679
4679
|
var decoded = [];
|
|
@@ -4698,7 +4698,7 @@ var require_sourcemap_codec_umd = __commonJS({
|
|
|
4698
4698
|
line = [];
|
|
4699
4699
|
segment[0] = 0;
|
|
4700
4700
|
} else {
|
|
4701
|
-
var integer =
|
|
4701
|
+
var integer = charToInteger2[c];
|
|
4702
4702
|
if (integer === void 0) {
|
|
4703
4703
|
throw new Error("Invalid character (" + String.fromCharCode(c) + ")");
|
|
4704
4704
|
}
|
|
@@ -4731,7 +4731,7 @@ var require_sourcemap_codec_umd = __commonJS({
|
|
|
4731
4731
|
else if (j === 1)
|
|
4732
4732
|
line.push([segment[0]]);
|
|
4733
4733
|
}
|
|
4734
|
-
function
|
|
4734
|
+
function encode3(decoded) {
|
|
4735
4735
|
var sourceFileIndex = 0;
|
|
4736
4736
|
var sourceCodeLine = 0;
|
|
4737
4737
|
var sourceCodeColumn = 0;
|
|
@@ -4747,16 +4747,16 @@ var require_sourcemap_codec_umd = __commonJS({
|
|
|
4747
4747
|
var lineMappings = [];
|
|
4748
4748
|
for (var _i = 0, line_1 = line; _i < line_1.length; _i++) {
|
|
4749
4749
|
var segment = line_1[_i];
|
|
4750
|
-
var segmentMappings =
|
|
4750
|
+
var segmentMappings = encodeInteger3(segment[0] - generatedCodeColumn);
|
|
4751
4751
|
generatedCodeColumn = segment[0];
|
|
4752
4752
|
if (segment.length > 1) {
|
|
4753
|
-
segmentMappings +=
|
|
4753
|
+
segmentMappings += encodeInteger3(segment[1] - sourceFileIndex) + encodeInteger3(segment[2] - sourceCodeLine) + encodeInteger3(segment[3] - sourceCodeColumn);
|
|
4754
4754
|
sourceFileIndex = segment[1];
|
|
4755
4755
|
sourceCodeLine = segment[2];
|
|
4756
4756
|
sourceCodeColumn = segment[3];
|
|
4757
4757
|
}
|
|
4758
4758
|
if (segment.length === 5) {
|
|
4759
|
-
segmentMappings +=
|
|
4759
|
+
segmentMappings += encodeInteger3(segment[4] - nameIndex);
|
|
4760
4760
|
nameIndex = segment[4];
|
|
4761
4761
|
}
|
|
4762
4762
|
lineMappings.push(segmentMappings);
|
|
@@ -4765,7 +4765,7 @@ var require_sourcemap_codec_umd = __commonJS({
|
|
|
4765
4765
|
}
|
|
4766
4766
|
return mappings;
|
|
4767
4767
|
}
|
|
4768
|
-
function
|
|
4768
|
+
function encodeInteger3(num) {
|
|
4769
4769
|
var result2 = "";
|
|
4770
4770
|
num = num < 0 ? -num << 1 | 1 : num << 1;
|
|
4771
4771
|
do {
|
|
@@ -4774,12 +4774,12 @@ var require_sourcemap_codec_umd = __commonJS({
|
|
|
4774
4774
|
if (num > 0) {
|
|
4775
4775
|
clamped |= 32;
|
|
4776
4776
|
}
|
|
4777
|
-
result2 +=
|
|
4777
|
+
result2 += chars3[clamped];
|
|
4778
4778
|
} while (num > 0);
|
|
4779
4779
|
return result2;
|
|
4780
4780
|
}
|
|
4781
4781
|
exports3.decode = decode3;
|
|
4782
|
-
exports3.encode =
|
|
4782
|
+
exports3.encode = encode3;
|
|
4783
4783
|
Object.defineProperty(exports3, "__esModule", { value: true });
|
|
4784
4784
|
});
|
|
4785
4785
|
}
|
|
@@ -4819,7 +4819,7 @@ var require_magic_string_cjs = __commonJS({
|
|
|
4819
4819
|
Chunk4.prototype.appendRight = function appendRight3(content) {
|
|
4820
4820
|
this.intro = this.intro + content;
|
|
4821
4821
|
};
|
|
4822
|
-
Chunk4.prototype.clone = function
|
|
4822
|
+
Chunk4.prototype.clone = function clone5() {
|
|
4823
4823
|
var chunk = new Chunk4(this.start, this.end, this.original);
|
|
4824
4824
|
chunk.intro = this.intro;
|
|
4825
4825
|
chunk.outro = this.outro;
|
|
@@ -5023,9 +5023,9 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5023
5023
|
this.rawSegments = this.raw[this.generatedCodeLine] = [];
|
|
5024
5024
|
this.pending = null;
|
|
5025
5025
|
};
|
|
5026
|
-
Mappings4.prototype.addEdit = function addEdit2(
|
|
5026
|
+
Mappings4.prototype.addEdit = function addEdit2(sourceIndex2, content, loc, nameIndex) {
|
|
5027
5027
|
if (content.length) {
|
|
5028
|
-
var segment = [this.generatedCodeColumn,
|
|
5028
|
+
var segment = [this.generatedCodeColumn, sourceIndex2, loc.line, loc.column];
|
|
5029
5029
|
if (nameIndex >= 0) {
|
|
5030
5030
|
segment.push(nameIndex);
|
|
5031
5031
|
}
|
|
@@ -5036,12 +5036,12 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5036
5036
|
this.advance(content);
|
|
5037
5037
|
this.pending = null;
|
|
5038
5038
|
};
|
|
5039
|
-
Mappings4.prototype.addUneditedChunk = function addUneditedChunk2(
|
|
5039
|
+
Mappings4.prototype.addUneditedChunk = function addUneditedChunk2(sourceIndex2, chunk, original, loc, sourcemapLocations) {
|
|
5040
5040
|
var originalCharIndex = chunk.start;
|
|
5041
5041
|
var first = true;
|
|
5042
5042
|
while (originalCharIndex < chunk.end) {
|
|
5043
5043
|
if (this.hires || first || sourcemapLocations.has(originalCharIndex)) {
|
|
5044
|
-
this.rawSegments.push([this.generatedCodeColumn,
|
|
5044
|
+
this.rawSegments.push([this.generatedCodeColumn, sourceIndex2, loc.line, loc.column]);
|
|
5045
5045
|
}
|
|
5046
5046
|
if (original[originalCharIndex] === "\n") {
|
|
5047
5047
|
loc.line += 1;
|
|
@@ -5136,7 +5136,7 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5136
5136
|
}
|
|
5137
5137
|
return this;
|
|
5138
5138
|
};
|
|
5139
|
-
MagicString4.prototype.clone = function
|
|
5139
|
+
MagicString4.prototype.clone = function clone5() {
|
|
5140
5140
|
var cloned = new MagicString4(this.original, { filename: this.filename });
|
|
5141
5141
|
var originalChunk = this.firstChunk;
|
|
5142
5142
|
var clonedChunk = cloned.firstChunk = cloned.lastSearchedChunk = originalChunk.clone();
|
|
@@ -5164,7 +5164,7 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5164
5164
|
MagicString4.prototype.generateDecodedMap = function generateDecodedMap3(options) {
|
|
5165
5165
|
var this$1$1 = this;
|
|
5166
5166
|
options = options || {};
|
|
5167
|
-
var
|
|
5167
|
+
var sourceIndex2 = 0;
|
|
5168
5168
|
var names = Object.keys(this.storedNames);
|
|
5169
5169
|
var mappings = new Mappings4(options.hires);
|
|
5170
5170
|
var locate2 = getLocator3(this.original);
|
|
@@ -5178,13 +5178,13 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5178
5178
|
}
|
|
5179
5179
|
if (chunk.edited) {
|
|
5180
5180
|
mappings.addEdit(
|
|
5181
|
-
|
|
5181
|
+
sourceIndex2,
|
|
5182
5182
|
chunk.content,
|
|
5183
5183
|
loc,
|
|
5184
5184
|
chunk.storeName ? names.indexOf(chunk.original) : -1
|
|
5185
5185
|
);
|
|
5186
5186
|
} else {
|
|
5187
|
-
mappings.addUneditedChunk(
|
|
5187
|
+
mappings.addUneditedChunk(sourceIndex2, chunk, this$1$1.original, loc, this$1$1.sourcemapLocations);
|
|
5188
5188
|
}
|
|
5189
5189
|
if (chunk.outro.length) {
|
|
5190
5190
|
mappings.advance(chunk.outro);
|
|
@@ -5271,7 +5271,7 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5271
5271
|
this.outro = this.outro.replace(pattern, replacer);
|
|
5272
5272
|
return this;
|
|
5273
5273
|
};
|
|
5274
|
-
MagicString4.prototype.insert = function
|
|
5274
|
+
MagicString4.prototype.insert = function insert4() {
|
|
5275
5275
|
throw new Error(
|
|
5276
5276
|
"magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)"
|
|
5277
5277
|
);
|
|
@@ -5426,7 +5426,7 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5426
5426
|
}
|
|
5427
5427
|
return this;
|
|
5428
5428
|
};
|
|
5429
|
-
MagicString4.prototype.remove = function
|
|
5429
|
+
MagicString4.prototype.remove = function remove4(start, end) {
|
|
5430
5430
|
while (start < 0) {
|
|
5431
5431
|
start += this.original.length;
|
|
5432
5432
|
}
|
|
@@ -5553,10 +5553,10 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5553
5553
|
return result2;
|
|
5554
5554
|
};
|
|
5555
5555
|
MagicString4.prototype.snip = function snip2(start, end) {
|
|
5556
|
-
var
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
return
|
|
5556
|
+
var clone5 = this.clone();
|
|
5557
|
+
clone5.remove(0, start);
|
|
5558
|
+
clone5.remove(end, clone5.original.length);
|
|
5559
|
+
return clone5;
|
|
5560
5560
|
};
|
|
5561
5561
|
MagicString4.prototype._split = function _split2(index2) {
|
|
5562
5562
|
if (this.byStart[index2] || this.byEnd[index2]) {
|
|
@@ -5729,7 +5729,7 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5729
5729
|
});
|
|
5730
5730
|
return this;
|
|
5731
5731
|
};
|
|
5732
|
-
Bundle3.prototype.clone = function
|
|
5732
|
+
Bundle3.prototype.clone = function clone5() {
|
|
5733
5733
|
var bundle = new Bundle3({
|
|
5734
5734
|
intro: this.intro,
|
|
5735
5735
|
separator: this.separator
|
|
@@ -5762,7 +5762,7 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5762
5762
|
if (i > 0) {
|
|
5763
5763
|
mappings.advance(this$1$1.separator);
|
|
5764
5764
|
}
|
|
5765
|
-
var
|
|
5765
|
+
var sourceIndex2 = source.filename ? this$1$1.uniqueSourceIndexByFilename[source.filename] : -1;
|
|
5766
5766
|
var magicString = source.content;
|
|
5767
5767
|
var locate2 = getLocator3(magicString.original);
|
|
5768
5768
|
if (magicString.intro) {
|
|
@@ -5776,14 +5776,14 @@ var require_magic_string_cjs = __commonJS({
|
|
|
5776
5776
|
if (source.filename) {
|
|
5777
5777
|
if (chunk.edited) {
|
|
5778
5778
|
mappings.addEdit(
|
|
5779
|
-
|
|
5779
|
+
sourceIndex2,
|
|
5780
5780
|
chunk.content,
|
|
5781
5781
|
loc,
|
|
5782
5782
|
chunk.storeName ? names.indexOf(chunk.original) : -1
|
|
5783
5783
|
);
|
|
5784
5784
|
} else {
|
|
5785
5785
|
mappings.addUneditedChunk(
|
|
5786
|
-
|
|
5786
|
+
sourceIndex2,
|
|
5787
5787
|
chunk,
|
|
5788
5788
|
magicString.original,
|
|
5789
5789
|
loc,
|
|
@@ -6073,7 +6073,7 @@ var require_path_parse = __commonJS({
|
|
|
6073
6073
|
var require_node_modules_paths = __commonJS({
|
|
6074
6074
|
"node_modules/resolve/lib/node-modules-paths.js"(exports2, module2) {
|
|
6075
6075
|
var path6 = require("path");
|
|
6076
|
-
var
|
|
6076
|
+
var parse5 = path6.parse || require_path_parse();
|
|
6077
6077
|
var getNodeModulesDirs = function getNodeModulesDirs2(absoluteStart, modules) {
|
|
6078
6078
|
var prefix = "/";
|
|
6079
6079
|
if (/^([A-Za-z]:)/.test(absoluteStart)) {
|
|
@@ -6082,10 +6082,10 @@ var require_node_modules_paths = __commonJS({
|
|
|
6082
6082
|
prefix = "\\\\";
|
|
6083
6083
|
}
|
|
6084
6084
|
var paths = [absoluteStart];
|
|
6085
|
-
var parsed =
|
|
6085
|
+
var parsed = parse5(absoluteStart);
|
|
6086
6086
|
while (parsed.dir !== paths[paths.length - 1]) {
|
|
6087
6087
|
paths.push(parsed.dir);
|
|
6088
|
-
parsed =
|
|
6088
|
+
parsed = parse5(parsed.dir);
|
|
6089
6089
|
}
|
|
6090
6090
|
return paths.reduce(function(dirs, aPath) {
|
|
6091
6091
|
return dirs.concat(modules.map(function(moduleDir) {
|
|
@@ -6512,7 +6512,7 @@ var require_async = __commonJS({
|
|
|
6512
6512
|
}
|
|
6513
6513
|
return dirs;
|
|
6514
6514
|
};
|
|
6515
|
-
module2.exports = function
|
|
6515
|
+
module2.exports = function resolve9(x, options, callback) {
|
|
6516
6516
|
var cb = callback;
|
|
6517
6517
|
var opts = options;
|
|
6518
6518
|
if (typeof options === "function") {
|
|
@@ -7145,7 +7145,7 @@ var require_dist = __commonJS({
|
|
|
7145
7145
|
var estreeWalker = require_estree_walker();
|
|
7146
7146
|
var MagicString4 = require_magic_string_cjs();
|
|
7147
7147
|
var isReference = require_is_reference();
|
|
7148
|
-
var
|
|
7148
|
+
var resolve9 = require_resolve();
|
|
7149
7149
|
function _interopDefaultLegacy(e) {
|
|
7150
7150
|
return e && typeof e === "object" && "default" in e ? e : { "default": e };
|
|
7151
7151
|
}
|
|
@@ -7156,9 +7156,9 @@ var require_dist = __commonJS({
|
|
|
7156
7156
|
var peerDependencies = {
|
|
7157
7157
|
rollup: "^2.38.3"
|
|
7158
7158
|
};
|
|
7159
|
-
function tryParse(
|
|
7159
|
+
function tryParse(parse5, code, id) {
|
|
7160
7160
|
try {
|
|
7161
|
-
return
|
|
7161
|
+
return parse5(code, { allowReturnOutsideFunction: true });
|
|
7162
7162
|
} catch (err2) {
|
|
7163
7163
|
err2.message += ` in ${id}`;
|
|
7164
7164
|
throw err2;
|
|
@@ -7170,8 +7170,8 @@ var require_dist = __commonJS({
|
|
|
7170
7170
|
const firstpass = ignoreGlobal ? firstpassNoGlobal : firstpassGlobal;
|
|
7171
7171
|
return firstpass.test(code);
|
|
7172
7172
|
}
|
|
7173
|
-
function analyzeTopLevelStatements(
|
|
7174
|
-
const ast = tryParse(
|
|
7173
|
+
function analyzeTopLevelStatements(parse5, code, id) {
|
|
7174
|
+
const ast = tryParse(parse5, code, id);
|
|
7175
7175
|
let isEsModule = false;
|
|
7176
7176
|
let hasDefaultExport = false;
|
|
7177
7177
|
let hasNamedExports = false;
|
|
@@ -7551,9 +7551,9 @@ commonjsRegisterOrShort(${JSON.stringify(
|
|
|
7551
7551
|
function getCommonJSMetaPromise(commonJSMetaPromises, id) {
|
|
7552
7552
|
let commonJSMetaPromise = commonJSMetaPromises.get(id);
|
|
7553
7553
|
if (commonJSMetaPromise) return commonJSMetaPromise.promise;
|
|
7554
|
-
const promise = new Promise((
|
|
7554
|
+
const promise = new Promise((resolve10) => {
|
|
7555
7555
|
commonJSMetaPromise = {
|
|
7556
|
-
resolve:
|
|
7556
|
+
resolve: resolve10,
|
|
7557
7557
|
promise: null
|
|
7558
7558
|
};
|
|
7559
7559
|
commonJSMetaPromises.set(id, commonJSMetaPromise);
|
|
@@ -7939,7 +7939,7 @@ ${exportDeclarations.join("\n")}`;
|
|
|
7939
7939
|
function hasDynamicModuleForPath(source, id, dynamicRequireModuleSet) {
|
|
7940
7940
|
if (!/^(?:\.{0,2}[/\\]|[A-Za-z]:[/\\])/.test(source)) {
|
|
7941
7941
|
try {
|
|
7942
|
-
const resolvedPath = normalizePathSlashes(
|
|
7942
|
+
const resolvedPath = normalizePathSlashes(resolve9.sync(source, { basedir: path6.dirname(id) }));
|
|
7943
7943
|
if (dynamicRequireModuleSet.has(resolvedPath)) {
|
|
7944
7944
|
return true;
|
|
7945
7945
|
}
|
|
@@ -8041,8 +8041,8 @@ ${exportDeclarations.join("\n")}`;
|
|
|
8041
8041
|
}
|
|
8042
8042
|
var exportsPattern = /^(?:module\.)?exports(?:\.([a-zA-Z_$][a-zA-Z_$0-9]*))?$/;
|
|
8043
8043
|
var functionType = /^(?:FunctionDeclaration|FunctionExpression|ArrowFunctionExpression)$/;
|
|
8044
|
-
function transformCommonjs(
|
|
8045
|
-
const ast = astCache || tryParse(
|
|
8044
|
+
function transformCommonjs(parse5, code, id, isEsModule, ignoreGlobal, ignoreRequire, ignoreDynamicRequires, getIgnoreTryCatchRequireStatementMode, sourceMap, isDynamicRequireModulesEnabled, dynamicRequireModuleSet, disableWrap, commonDir, astCache, defaultIsModuleExports) {
|
|
8045
|
+
const ast = astCache || tryParse(parse5, code, id);
|
|
8046
8046
|
const magicString = new MagicString__default["default"](code);
|
|
8047
8047
|
const uses = {
|
|
8048
8048
|
module: false,
|
|
@@ -8726,7 +8726,7 @@ var require_is_module = __commonJS({
|
|
|
8726
8726
|
});
|
|
8727
8727
|
|
|
8728
8728
|
// node_modules/rollup/dist/es/shared/rollup.js
|
|
8729
|
-
function
|
|
8729
|
+
function decode2(mappings) {
|
|
8730
8730
|
var decoded = [];
|
|
8731
8731
|
var line = [];
|
|
8732
8732
|
var segment = [
|
|
@@ -10956,7 +10956,7 @@ function decodedSourcemap(map2) {
|
|
|
10956
10956
|
}
|
|
10957
10957
|
let mappings;
|
|
10958
10958
|
if (typeof map2.mappings === "string") {
|
|
10959
|
-
mappings =
|
|
10959
|
+
mappings = decode2(map2.mappings);
|
|
10960
10960
|
} else {
|
|
10961
10961
|
mappings = map2.mappings;
|
|
10962
10962
|
}
|
|
@@ -12529,9 +12529,9 @@ var init_rollup = __esm({
|
|
|
12529
12529
|
this.rawSegments = this.raw[this.generatedCodeLine] = [];
|
|
12530
12530
|
this.pending = null;
|
|
12531
12531
|
};
|
|
12532
|
-
Mappings2.prototype.addEdit = function addEdit(
|
|
12532
|
+
Mappings2.prototype.addEdit = function addEdit(sourceIndex2, content, loc, nameIndex) {
|
|
12533
12533
|
if (content.length) {
|
|
12534
|
-
var segment = [this.generatedCodeColumn,
|
|
12534
|
+
var segment = [this.generatedCodeColumn, sourceIndex2, loc.line, loc.column];
|
|
12535
12535
|
if (nameIndex >= 0) {
|
|
12536
12536
|
segment.push(nameIndex);
|
|
12537
12537
|
}
|
|
@@ -12542,12 +12542,12 @@ var init_rollup = __esm({
|
|
|
12542
12542
|
this.advance(content);
|
|
12543
12543
|
this.pending = null;
|
|
12544
12544
|
};
|
|
12545
|
-
Mappings2.prototype.addUneditedChunk = function addUneditedChunk(
|
|
12545
|
+
Mappings2.prototype.addUneditedChunk = function addUneditedChunk(sourceIndex2, chunk, original, loc, sourcemapLocations) {
|
|
12546
12546
|
var originalCharIndex = chunk.start;
|
|
12547
12547
|
var first = true;
|
|
12548
12548
|
while (originalCharIndex < chunk.end) {
|
|
12549
12549
|
if (this.hires || first || sourcemapLocations.has(originalCharIndex)) {
|
|
12550
|
-
this.rawSegments.push([this.generatedCodeColumn,
|
|
12550
|
+
this.rawSegments.push([this.generatedCodeColumn, sourceIndex2, loc.line, loc.column]);
|
|
12551
12551
|
}
|
|
12552
12552
|
if (original[originalCharIndex] === "\n") {
|
|
12553
12553
|
loc.line += 1;
|
|
@@ -12670,7 +12670,7 @@ var init_rollup = __esm({
|
|
|
12670
12670
|
MagicString2.prototype.generateDecodedMap = function generateDecodedMap(options) {
|
|
12671
12671
|
var this$1$1 = this;
|
|
12672
12672
|
options = options || {};
|
|
12673
|
-
var
|
|
12673
|
+
var sourceIndex2 = 0;
|
|
12674
12674
|
var names = Object.keys(this.storedNames);
|
|
12675
12675
|
var mappings = new Mappings2(options.hires);
|
|
12676
12676
|
var locate2 = getLocator$1(this.original);
|
|
@@ -12684,13 +12684,13 @@ var init_rollup = __esm({
|
|
|
12684
12684
|
}
|
|
12685
12685
|
if (chunk.edited) {
|
|
12686
12686
|
mappings.addEdit(
|
|
12687
|
-
|
|
12687
|
+
sourceIndex2,
|
|
12688
12688
|
chunk.content,
|
|
12689
12689
|
loc,
|
|
12690
12690
|
chunk.storeName ? names.indexOf(chunk.original) : -1
|
|
12691
12691
|
);
|
|
12692
12692
|
} else {
|
|
12693
|
-
mappings.addUneditedChunk(
|
|
12693
|
+
mappings.addUneditedChunk(sourceIndex2, chunk, this$1$1.original, loc, this$1$1.sourcemapLocations);
|
|
12694
12694
|
}
|
|
12695
12695
|
if (chunk.outro.length) {
|
|
12696
12696
|
mappings.advance(chunk.outro);
|
|
@@ -13052,10 +13052,10 @@ var init_rollup = __esm({
|
|
|
13052
13052
|
return result2;
|
|
13053
13053
|
};
|
|
13054
13054
|
MagicString2.prototype.snip = function snip(start, end) {
|
|
13055
|
-
var
|
|
13056
|
-
|
|
13057
|
-
|
|
13058
|
-
return
|
|
13055
|
+
var clone5 = this.clone();
|
|
13056
|
+
clone5.remove(0, start);
|
|
13057
|
+
clone5.remove(end, clone5.original.length);
|
|
13058
|
+
return clone5;
|
|
13059
13059
|
};
|
|
13060
13060
|
MagicString2.prototype._split = function _split(index2) {
|
|
13061
13061
|
if (this.byStart[index2] || this.byEnd[index2]) {
|
|
@@ -13259,7 +13259,7 @@ var init_rollup = __esm({
|
|
|
13259
13259
|
if (i > 0) {
|
|
13260
13260
|
mappings.advance(this$1$1.separator);
|
|
13261
13261
|
}
|
|
13262
|
-
var
|
|
13262
|
+
var sourceIndex2 = source.filename ? this$1$1.uniqueSourceIndexByFilename[source.filename] : -1;
|
|
13263
13263
|
var magicString = source.content;
|
|
13264
13264
|
var locate2 = getLocator$1(magicString.original);
|
|
13265
13265
|
if (magicString.intro) {
|
|
@@ -13273,14 +13273,14 @@ var init_rollup = __esm({
|
|
|
13273
13273
|
if (source.filename) {
|
|
13274
13274
|
if (chunk.edited) {
|
|
13275
13275
|
mappings.addEdit(
|
|
13276
|
-
|
|
13276
|
+
sourceIndex2,
|
|
13277
13277
|
chunk.content,
|
|
13278
13278
|
loc,
|
|
13279
13279
|
chunk.storeName ? names.indexOf(chunk.original) : -1
|
|
13280
13280
|
);
|
|
13281
13281
|
} else {
|
|
13282
13282
|
mappings.addUneditedChunk(
|
|
13283
|
-
|
|
13283
|
+
sourceIndex2,
|
|
13284
13284
|
chunk,
|
|
13285
13285
|
magicString.original,
|
|
13286
13286
|
loc,
|
|
@@ -18669,14 +18669,14 @@ var init_rollup = __esm({
|
|
|
18669
18669
|
}
|
|
18670
18670
|
case "amd": {
|
|
18671
18671
|
const _ = options.compact ? "" : " ";
|
|
18672
|
-
const
|
|
18672
|
+
const resolve9 = options.compact ? "c" : "resolve";
|
|
18673
18673
|
const reject = options.compact ? "e" : "reject";
|
|
18674
18674
|
const helper = getInteropHelper(resolution, exportMode, options.interop);
|
|
18675
|
-
const resolveNamespace = helper ? `function${_}(m)${_}{${_}${
|
|
18675
|
+
const resolveNamespace = helper ? `function${_}(m)${_}{${_}${resolve9}(/*#__PURE__*/${helper}(m));${_}}` : resolve9;
|
|
18676
18676
|
return {
|
|
18677
18677
|
helper,
|
|
18678
18678
|
mechanism: {
|
|
18679
|
-
left: `new Promise(function${_}(${
|
|
18679
|
+
left: `new Promise(function${_}(${resolve9},${_}${reject})${_}{${_}require([`,
|
|
18680
18680
|
right: `],${_}${resolveNamespace},${_}${reject})${_}})`
|
|
18681
18681
|
}
|
|
18682
18682
|
};
|
|
@@ -20872,21 +20872,21 @@ var init_rollup = __esm({
|
|
|
20872
20872
|
continue;
|
|
20873
20873
|
const traced = source.traceSegment(segment[2], segment[3], segment.length === 5 ? this.names[segment[4]] : "");
|
|
20874
20874
|
if (traced) {
|
|
20875
|
-
let
|
|
20876
|
-
if (
|
|
20877
|
-
|
|
20875
|
+
let sourceIndex2 = sources.lastIndexOf(traced.source.filename);
|
|
20876
|
+
if (sourceIndex2 === -1) {
|
|
20877
|
+
sourceIndex2 = sources.length;
|
|
20878
20878
|
sources.push(traced.source.filename);
|
|
20879
|
-
sourcesContent[
|
|
20880
|
-
} else if (sourcesContent[
|
|
20881
|
-
sourcesContent[
|
|
20882
|
-
} else if (traced.source.content != null && sourcesContent[
|
|
20879
|
+
sourcesContent[sourceIndex2] = traced.source.content;
|
|
20880
|
+
} else if (sourcesContent[sourceIndex2] == null) {
|
|
20881
|
+
sourcesContent[sourceIndex2] = traced.source.content;
|
|
20882
|
+
} else if (traced.source.content != null && sourcesContent[sourceIndex2] !== traced.source.content) {
|
|
20883
20883
|
return error({
|
|
20884
20884
|
message: `Multiple conflicting contents for sourcemap source ${traced.source.filename}`
|
|
20885
20885
|
});
|
|
20886
20886
|
}
|
|
20887
20887
|
const tracedSegment = [
|
|
20888
20888
|
segment[0],
|
|
20889
|
-
|
|
20889
|
+
sourceIndex2,
|
|
20890
20890
|
traced.line,
|
|
20891
20891
|
traced.column
|
|
20892
20892
|
];
|
|
@@ -26793,8 +26793,8 @@ ${next}` : out;
|
|
|
26793
26793
|
this.workerCount = 0;
|
|
26794
26794
|
}
|
|
26795
26795
|
run(task) {
|
|
26796
|
-
return new Promise((
|
|
26797
|
-
this.queue.push({ reject, resolve:
|
|
26796
|
+
return new Promise((resolve9, reject) => {
|
|
26797
|
+
this.queue.push({ reject, resolve: resolve9, task });
|
|
26798
26798
|
this.work();
|
|
26799
26799
|
});
|
|
26800
26800
|
}
|
|
@@ -26804,10 +26804,10 @@ ${next}` : out;
|
|
|
26804
26804
|
this.workerCount++;
|
|
26805
26805
|
let entry;
|
|
26806
26806
|
while (entry = this.queue.shift()) {
|
|
26807
|
-
const { reject, resolve:
|
|
26807
|
+
const { reject, resolve: resolve9, task } = entry;
|
|
26808
26808
|
try {
|
|
26809
26809
|
const result2 = await task();
|
|
26810
|
-
|
|
26810
|
+
resolve9(result2);
|
|
26811
26811
|
} catch (err2) {
|
|
26812
26812
|
reject(err2);
|
|
26813
26813
|
}
|
|
@@ -28549,18 +28549,18 @@ var ts = (() => {
|
|
|
28549
28549
|
function createSortedArray() {
|
|
28550
28550
|
return [];
|
|
28551
28551
|
}
|
|
28552
|
-
function insertSorted(array,
|
|
28552
|
+
function insertSorted(array, insert4, compare, allowDuplicates) {
|
|
28553
28553
|
if (array.length === 0) {
|
|
28554
|
-
array.push(
|
|
28554
|
+
array.push(insert4);
|
|
28555
28555
|
return true;
|
|
28556
28556
|
}
|
|
28557
|
-
const insertIndex = binarySearch2(array,
|
|
28557
|
+
const insertIndex = binarySearch2(array, insert4, identity, compare);
|
|
28558
28558
|
if (insertIndex < 0) {
|
|
28559
|
-
array.splice(~insertIndex, 0,
|
|
28559
|
+
array.splice(~insertIndex, 0, insert4);
|
|
28560
28560
|
return true;
|
|
28561
28561
|
}
|
|
28562
28562
|
if (allowDuplicates) {
|
|
28563
|
-
array.splice(insertIndex, 0,
|
|
28563
|
+
array.splice(insertIndex, 0, insert4);
|
|
28564
28564
|
return true;
|
|
28565
28565
|
}
|
|
28566
28566
|
return false;
|
|
@@ -28946,7 +28946,7 @@ var ts = (() => {
|
|
|
28946
28946
|
}
|
|
28947
28947
|
return result2;
|
|
28948
28948
|
}
|
|
28949
|
-
function
|
|
28949
|
+
function clone5(object) {
|
|
28950
28950
|
const result2 = {};
|
|
28951
28951
|
for (const id in object) {
|
|
28952
28952
|
if (hasOwnProperty2.call(object, id)) {
|
|
@@ -29168,7 +29168,7 @@ var ts = (() => {
|
|
|
29168
29168
|
function tryCast(value, test) {
|
|
29169
29169
|
return value !== void 0 && test(value) ? value : void 0;
|
|
29170
29170
|
}
|
|
29171
|
-
function
|
|
29171
|
+
function cast4(value, test) {
|
|
29172
29172
|
if (value !== void 0 && test(value))
|
|
29173
29173
|
return value;
|
|
29174
29174
|
return Debug.fail(`Invalid cast. The supplied value ${value} did not pass the test '${Debug.getFunctionName(test)}'.`);
|
|
@@ -48778,27 +48778,27 @@ ${lanes.join("\n")}
|
|
|
48778
48778
|
parenthesizeConditionOfConditionalExpression: identity,
|
|
48779
48779
|
parenthesizeBranchOfConditionalExpression: identity,
|
|
48780
48780
|
parenthesizeExpressionOfExportDefault: identity,
|
|
48781
|
-
parenthesizeExpressionOfNew: (expression) =>
|
|
48782
|
-
parenthesizeLeftSideOfAccess: (expression) =>
|
|
48783
|
-
parenthesizeOperandOfPostfixUnary: (operand) =>
|
|
48784
|
-
parenthesizeOperandOfPrefixUnary: (operand) =>
|
|
48785
|
-
parenthesizeExpressionsOfCommaDelimitedList: (nodes) =>
|
|
48781
|
+
parenthesizeExpressionOfNew: (expression) => cast4(expression, isLeftHandSideExpression),
|
|
48782
|
+
parenthesizeLeftSideOfAccess: (expression) => cast4(expression, isLeftHandSideExpression),
|
|
48783
|
+
parenthesizeOperandOfPostfixUnary: (operand) => cast4(operand, isLeftHandSideExpression),
|
|
48784
|
+
parenthesizeOperandOfPrefixUnary: (operand) => cast4(operand, isUnaryExpression),
|
|
48785
|
+
parenthesizeExpressionsOfCommaDelimitedList: (nodes) => cast4(nodes, isNodeArray),
|
|
48786
48786
|
parenthesizeExpressionForDisallowedComma: identity,
|
|
48787
48787
|
parenthesizeExpressionOfExpressionStatement: identity,
|
|
48788
48788
|
parenthesizeConciseBodyOfArrowFunction: identity,
|
|
48789
48789
|
parenthesizeCheckTypeOfConditionalType: identity,
|
|
48790
48790
|
parenthesizeExtendsTypeOfConditionalType: identity,
|
|
48791
|
-
parenthesizeConstituentTypesOfUnionType: (nodes) =>
|
|
48791
|
+
parenthesizeConstituentTypesOfUnionType: (nodes) => cast4(nodes, isNodeArray),
|
|
48792
48792
|
parenthesizeConstituentTypeOfUnionType: identity,
|
|
48793
|
-
parenthesizeConstituentTypesOfIntersectionType: (nodes) =>
|
|
48793
|
+
parenthesizeConstituentTypesOfIntersectionType: (nodes) => cast4(nodes, isNodeArray),
|
|
48794
48794
|
parenthesizeConstituentTypeOfIntersectionType: identity,
|
|
48795
48795
|
parenthesizeOperandOfTypeOperator: identity,
|
|
48796
48796
|
parenthesizeOperandOfReadonlyTypeOperator: identity,
|
|
48797
48797
|
parenthesizeNonArrayTypeOfPostfixType: identity,
|
|
48798
|
-
parenthesizeElementTypesOfTupleType: (nodes) =>
|
|
48798
|
+
parenthesizeElementTypesOfTupleType: (nodes) => cast4(nodes, isNodeArray),
|
|
48799
48799
|
parenthesizeElementTypeOfTupleType: identity,
|
|
48800
48800
|
parenthesizeTypeOfOptionalType: identity,
|
|
48801
|
-
parenthesizeTypeArguments: (nodes) => nodes &&
|
|
48801
|
+
parenthesizeTypeArguments: (nodes) => nodes && cast4(nodes, isNodeArray),
|
|
48802
48802
|
parenthesizeLeadingTypeArgument: identity
|
|
48803
48803
|
};
|
|
48804
48804
|
}
|
|
@@ -48883,7 +48883,7 @@ ${lanes.join("\n")}
|
|
|
48883
48883
|
element
|
|
48884
48884
|
) : expression;
|
|
48885
48885
|
}
|
|
48886
|
-
return
|
|
48886
|
+
return cast4(element, isExpression);
|
|
48887
48887
|
}
|
|
48888
48888
|
function convertToObjectAssignmentElement(element) {
|
|
48889
48889
|
if (isBindingElement(element)) {
|
|
@@ -48898,7 +48898,7 @@ ${lanes.join("\n")}
|
|
|
48898
48898
|
Debug.assertNode(element.name, isIdentifier);
|
|
48899
48899
|
return setOriginalNode(setTextRange(factory2.createShorthandPropertyAssignment(element.name, element.initializer), element), element);
|
|
48900
48900
|
}
|
|
48901
|
-
return
|
|
48901
|
+
return cast4(element, isObjectLiteralElementLike);
|
|
48902
48902
|
}
|
|
48903
48903
|
function convertToAssignmentPattern(node) {
|
|
48904
48904
|
switch (node.kind) {
|
|
@@ -48920,7 +48920,7 @@ ${lanes.join("\n")}
|
|
|
48920
48920
|
node
|
|
48921
48921
|
);
|
|
48922
48922
|
}
|
|
48923
|
-
return
|
|
48923
|
+
return cast4(node, isObjectLiteralExpression);
|
|
48924
48924
|
}
|
|
48925
48925
|
function convertToArrayAssignmentPattern(node) {
|
|
48926
48926
|
if (isArrayBindingPattern(node)) {
|
|
@@ -48932,13 +48932,13 @@ ${lanes.join("\n")}
|
|
|
48932
48932
|
node
|
|
48933
48933
|
);
|
|
48934
48934
|
}
|
|
48935
|
-
return
|
|
48935
|
+
return cast4(node, isArrayLiteralExpression);
|
|
48936
48936
|
}
|
|
48937
48937
|
function convertToAssignmentElementTarget(node) {
|
|
48938
48938
|
if (isBindingPattern(node)) {
|
|
48939
48939
|
return convertToAssignmentPattern(node);
|
|
48940
48940
|
}
|
|
48941
|
-
return
|
|
48941
|
+
return cast4(node, isExpression);
|
|
48942
48942
|
}
|
|
48943
48943
|
}
|
|
48944
48944
|
var nullNodeConverters;
|
|
@@ -51101,7 +51101,7 @@ ${lanes.join("\n")}
|
|
|
51101
51101
|
}
|
|
51102
51102
|
function updatePropertyAccessExpression(node, expression, name) {
|
|
51103
51103
|
if (isPropertyAccessChain(node)) {
|
|
51104
|
-
return updatePropertyAccessChain(node, expression, node.questionDotToken,
|
|
51104
|
+
return updatePropertyAccessChain(node, expression, node.questionDotToken, cast4(name, isIdentifier));
|
|
51105
51105
|
}
|
|
51106
51106
|
return node.expression !== expression || node.name !== name ? update(createPropertyAccessExpression(expression, name), node) : node;
|
|
51107
51107
|
}
|
|
@@ -67581,7 +67581,7 @@ ${lanes.join("\n")}
|
|
|
67581
67581
|
return { buildOptions, watchOptions, projects, errors };
|
|
67582
67582
|
}
|
|
67583
67583
|
function getDiagnosticText(message, ...args) {
|
|
67584
|
-
return
|
|
67584
|
+
return cast4(createCompilerDiagnostic(message, ...args).messageText, isString3);
|
|
67585
67585
|
}
|
|
67586
67586
|
function getParsedCommandLineOfConfigFile(configFileName, optionsToExtend, host, extendedConfigCache, watchOptionsToExtend, extraFileExtensions) {
|
|
67587
67587
|
const configFileText = tryReadFile(configFileName, (fileName) => host.readFile(fileName));
|
|
@@ -76012,7 +76012,7 @@ ${lanes.join("\n")}
|
|
|
76012
76012
|
);
|
|
76013
76013
|
addLateBoundAssignmentDeclarationToSymbol(node, sym);
|
|
76014
76014
|
} else {
|
|
76015
|
-
bindStaticPropertyAssignment(
|
|
76015
|
+
bindStaticPropertyAssignment(cast4(node.left, isBindableStaticNameExpression));
|
|
76016
76016
|
}
|
|
76017
76017
|
}
|
|
76018
76018
|
function bindStaticPropertyAssignment(node) {
|
|
@@ -83874,7 +83874,7 @@ ${lanes.join("\n")}
|
|
|
83874
83874
|
modifiers,
|
|
83875
83875
|
/*asteriskToken*/
|
|
83876
83876
|
void 0,
|
|
83877
|
-
(options == null ? void 0 : options.name) ?
|
|
83877
|
+
(options == null ? void 0 : options.name) ? cast4(options.name, isIdentifier) : factory.createIdentifier(""),
|
|
83878
83878
|
typeParameters,
|
|
83879
83879
|
parameters,
|
|
83880
83880
|
returnTypeNode,
|
|
@@ -83884,7 +83884,7 @@ ${lanes.join("\n")}
|
|
|
83884
83884
|
modifiers,
|
|
83885
83885
|
/*asteriskToken*/
|
|
83886
83886
|
void 0,
|
|
83887
|
-
(options == null ? void 0 : options.name) ?
|
|
83887
|
+
(options == null ? void 0 : options.name) ? cast4(options.name, isIdentifier) : factory.createIdentifier(""),
|
|
83888
83888
|
typeParameters,
|
|
83889
83889
|
parameters,
|
|
83890
83890
|
returnTypeNode,
|
|
@@ -85082,7 +85082,7 @@ ${lanes.join("\n")}
|
|
|
85082
85082
|
void 0,
|
|
85083
85083
|
/*isTypeOnly*/
|
|
85084
85084
|
false,
|
|
85085
|
-
factory.createNamedExports(flatMap(exports2, (e) =>
|
|
85085
|
+
factory.createNamedExports(flatMap(exports2, (e) => cast4(e.exportClause, isNamedExports).elements)),
|
|
85086
85086
|
/*moduleSpecifier*/
|
|
85087
85087
|
void 0
|
|
85088
85088
|
)
|
|
@@ -85101,7 +85101,7 @@ ${lanes.join("\n")}
|
|
|
85101
85101
|
void 0,
|
|
85102
85102
|
/*isTypeOnly*/
|
|
85103
85103
|
false,
|
|
85104
|
-
factory.createNamedExports(flatMap(group2, (e) =>
|
|
85104
|
+
factory.createNamedExports(flatMap(group2, (e) => cast4(e.exportClause, isNamedExports).elements)),
|
|
85105
85105
|
group2[0].moduleSpecifier
|
|
85106
85106
|
)
|
|
85107
85107
|
];
|
|
@@ -89081,9 +89081,9 @@ ${lanes.join("\n")}
|
|
|
89081
89081
|
if (baseTypes.length) {
|
|
89082
89082
|
if (source.symbol && members === getMembersOfSymbol(source.symbol)) {
|
|
89083
89083
|
const symbolTable = createSymbolTable(source.declaredProperties);
|
|
89084
|
-
const
|
|
89085
|
-
if (
|
|
89086
|
-
symbolTable.set("__index",
|
|
89084
|
+
const sourceIndex2 = getIndexSymbol(source.symbol);
|
|
89085
|
+
if (sourceIndex2) {
|
|
89086
|
+
symbolTable.set("__index", sourceIndex2);
|
|
89087
89087
|
}
|
|
89088
89088
|
members = symbolTable;
|
|
89089
89089
|
}
|
|
@@ -92775,8 +92775,8 @@ ${lanes.join("\n")}
|
|
|
92775
92775
|
i--;
|
|
92776
92776
|
const t = types3[i];
|
|
92777
92777
|
const flags = t.flags;
|
|
92778
|
-
const
|
|
92779
|
-
if (
|
|
92778
|
+
const remove4 = flags & (128 | 134217728 | 268435456) && includes & 4 || flags & 256 && includes & 8 || flags & 2048 && includes & 64 || flags & 8192 && includes & 4096 || reduceVoidUndefined && flags & 32768 && includes & 16384 || isFreshLiteralType(t) && containsType(types3, t.regularType);
|
|
92779
|
+
if (remove4) {
|
|
92780
92780
|
orderedRemoveItemAt(types3, i);
|
|
92781
92781
|
}
|
|
92782
92782
|
}
|
|
@@ -93042,8 +93042,8 @@ ${lanes.join("\n")}
|
|
|
93042
93042
|
while (i > 0) {
|
|
93043
93043
|
i--;
|
|
93044
93044
|
const t = types3[i];
|
|
93045
|
-
const
|
|
93046
|
-
if (
|
|
93045
|
+
const remove4 = t.flags & 4 && includes & (128 | 134217728 | 268435456) || t.flags & 8 && includes & 256 || t.flags & 64 && includes & 2048 || t.flags & 4096 && includes & 8192 || t.flags & 16384 && includes & 32768 || isEmptyAnonymousObjectType(t) && includes & 470302716;
|
|
93046
|
+
if (remove4) {
|
|
93047
93047
|
orderedRemoveItemAt(types3, i);
|
|
93048
93048
|
}
|
|
93049
93049
|
}
|
|
@@ -100846,8 +100846,8 @@ ${lanes.join("\n")}
|
|
|
100846
100846
|
const targetSignatures = getSignaturesOfType(target, kind);
|
|
100847
100847
|
const targetLen = targetSignatures.length;
|
|
100848
100848
|
for (let i = 0; i < targetLen; i++) {
|
|
100849
|
-
const
|
|
100850
|
-
inferFromSignature(getBaseSignature(sourceSignatures[
|
|
100849
|
+
const sourceIndex2 = Math.max(sourceLen - targetLen + i, 0);
|
|
100850
|
+
inferFromSignature(getBaseSignature(sourceSignatures[sourceIndex2]), getErasedSignature(targetSignatures[i]));
|
|
100851
100851
|
}
|
|
100852
100852
|
}
|
|
100853
100853
|
}
|
|
@@ -104555,7 +104555,7 @@ ${lanes.join("\n")}
|
|
|
104555
104555
|
if (!decl2) {
|
|
104556
104556
|
return void 0;
|
|
104557
104557
|
}
|
|
104558
|
-
const lhs =
|
|
104558
|
+
const lhs = cast4(binaryExpression.left, isAccessExpression);
|
|
104559
104559
|
const overallAnnotation = getEffectiveTypeAnnotationNode(decl2);
|
|
104560
104560
|
if (overallAnnotation) {
|
|
104561
104561
|
return getTypeFromTypeNode(overallAnnotation);
|
|
@@ -104638,7 +104638,7 @@ ${lanes.join("\n")}
|
|
|
104638
104638
|
}
|
|
104639
104639
|
}
|
|
104640
104640
|
}
|
|
104641
|
-
const thisAccess =
|
|
104641
|
+
const thisAccess = cast4(binaryExpression.left, isAccessExpression);
|
|
104642
104642
|
if (!isObjectLiteralMethod(getThisContainer(
|
|
104643
104643
|
thisAccess.expression,
|
|
104644
104644
|
/*includeArrowFunctions*/
|
|
@@ -115177,7 +115177,7 @@ ${lanes.join("\n")}
|
|
|
115177
115177
|
return idText(name);
|
|
115178
115178
|
case 207:
|
|
115179
115179
|
case 206:
|
|
115180
|
-
return bindingNameText(
|
|
115180
|
+
return bindingNameText(cast4(first(name.elements), isBindingElement).name);
|
|
115181
115181
|
default:
|
|
115182
115182
|
return Debug.assertNever(name);
|
|
115183
115183
|
}
|
|
@@ -119772,18 +119772,18 @@ ${lanes.join("\n")}
|
|
|
119772
119772
|
return checkDestructuringAssignment(expr, iteratedType || errorType);
|
|
119773
119773
|
}
|
|
119774
119774
|
if (expr.parent.kind === 303) {
|
|
119775
|
-
const node2 =
|
|
119775
|
+
const node2 = cast4(expr.parent.parent, isObjectLiteralExpression);
|
|
119776
119776
|
const typeOfParentObjectLiteral = getTypeOfAssignmentPattern(node2) || errorType;
|
|
119777
119777
|
const propertyIndex = indexOfNode(node2.properties, expr.parent);
|
|
119778
119778
|
return checkObjectLiteralDestructuringPropertyAssignment(node2, typeOfParentObjectLiteral, propertyIndex);
|
|
119779
119779
|
}
|
|
119780
|
-
const node =
|
|
119780
|
+
const node = cast4(expr.parent, isArrayLiteralExpression);
|
|
119781
119781
|
const typeOfArrayLiteral = getTypeOfAssignmentPattern(node) || errorType;
|
|
119782
119782
|
const elementType = checkIteratedTypeOrElementType(65, typeOfArrayLiteral, undefinedType, expr.parent) || errorType;
|
|
119783
119783
|
return checkArrayLiteralDestructuringElementAssignment(node, typeOfArrayLiteral, node.elements.indexOf(expr), elementType);
|
|
119784
119784
|
}
|
|
119785
119785
|
function getPropertySymbolOfDestructuringAssignment(location) {
|
|
119786
|
-
const typeOfObjectLiteral = getTypeOfAssignmentPattern(
|
|
119786
|
+
const typeOfObjectLiteral = getTypeOfAssignmentPattern(cast4(location.parent.parent, isAssignmentPattern));
|
|
119787
119787
|
return typeOfObjectLiteral && getPropertyOfType(typeOfObjectLiteral, location.escapedText);
|
|
119788
119788
|
}
|
|
119789
119789
|
function getRegularTypeOfExpression(expr) {
|
|
@@ -124646,25 +124646,25 @@ ${lanes.join("\n")}
|
|
|
124646
124646
|
/*isAbsolutePathAnUrl*/
|
|
124647
124647
|
true
|
|
124648
124648
|
);
|
|
124649
|
-
let
|
|
124650
|
-
if (
|
|
124651
|
-
|
|
124649
|
+
let sourceIndex2 = sourceToSourceIndexMap.get(source);
|
|
124650
|
+
if (sourceIndex2 === void 0) {
|
|
124651
|
+
sourceIndex2 = sources.length;
|
|
124652
124652
|
sources.push(source);
|
|
124653
124653
|
rawSources.push(fileName);
|
|
124654
|
-
sourceToSourceIndexMap.set(source,
|
|
124654
|
+
sourceToSourceIndexMap.set(source, sourceIndex2);
|
|
124655
124655
|
}
|
|
124656
124656
|
exit();
|
|
124657
|
-
return
|
|
124657
|
+
return sourceIndex2;
|
|
124658
124658
|
}
|
|
124659
|
-
function setSourceContent2(
|
|
124659
|
+
function setSourceContent2(sourceIndex2, content) {
|
|
124660
124660
|
enter();
|
|
124661
124661
|
if (content !== null) {
|
|
124662
124662
|
if (!sourcesContent)
|
|
124663
124663
|
sourcesContent = [];
|
|
124664
|
-
while (sourcesContent.length <
|
|
124664
|
+
while (sourcesContent.length < sourceIndex2) {
|
|
124665
124665
|
sourcesContent.push(null);
|
|
124666
124666
|
}
|
|
124667
|
-
sourcesContent[
|
|
124667
|
+
sourcesContent[sourceIndex2] = content;
|
|
124668
124668
|
}
|
|
124669
124669
|
exit();
|
|
124670
124670
|
}
|
|
@@ -124684,17 +124684,17 @@ ${lanes.join("\n")}
|
|
|
124684
124684
|
function isNewGeneratedPosition(generatedLine, generatedCharacter) {
|
|
124685
124685
|
return !hasPending || pendingGeneratedLine !== generatedLine || pendingGeneratedCharacter !== generatedCharacter;
|
|
124686
124686
|
}
|
|
124687
|
-
function isBacktrackingSourcePosition(
|
|
124688
|
-
return
|
|
124687
|
+
function isBacktrackingSourcePosition(sourceIndex2, sourceLine, sourceCharacter) {
|
|
124688
|
+
return sourceIndex2 !== void 0 && sourceLine !== void 0 && sourceCharacter !== void 0 && pendingSourceIndex === sourceIndex2 && (pendingSourceLine > sourceLine || pendingSourceLine === sourceLine && pendingSourceCharacter > sourceCharacter);
|
|
124689
124689
|
}
|
|
124690
|
-
function addMapping(generatedLine, generatedCharacter,
|
|
124690
|
+
function addMapping(generatedLine, generatedCharacter, sourceIndex2, sourceLine, sourceCharacter, nameIndex) {
|
|
124691
124691
|
Debug.assert(generatedLine >= pendingGeneratedLine, "generatedLine cannot backtrack");
|
|
124692
124692
|
Debug.assert(generatedCharacter >= 0, "generatedCharacter cannot be negative");
|
|
124693
|
-
Debug.assert(
|
|
124693
|
+
Debug.assert(sourceIndex2 === void 0 || sourceIndex2 >= 0, "sourceIndex cannot be negative");
|
|
124694
124694
|
Debug.assert(sourceLine === void 0 || sourceLine >= 0, "sourceLine cannot be negative");
|
|
124695
124695
|
Debug.assert(sourceCharacter === void 0 || sourceCharacter >= 0, "sourceCharacter cannot be negative");
|
|
124696
124696
|
enter();
|
|
124697
|
-
if (isNewGeneratedPosition(generatedLine, generatedCharacter) || isBacktrackingSourcePosition(
|
|
124697
|
+
if (isNewGeneratedPosition(generatedLine, generatedCharacter) || isBacktrackingSourcePosition(sourceIndex2, sourceLine, sourceCharacter)) {
|
|
124698
124698
|
commitPendingMapping();
|
|
124699
124699
|
pendingGeneratedLine = generatedLine;
|
|
124700
124700
|
pendingGeneratedCharacter = generatedCharacter;
|
|
@@ -124702,8 +124702,8 @@ ${lanes.join("\n")}
|
|
|
124702
124702
|
hasPendingName = false;
|
|
124703
124703
|
hasPending = true;
|
|
124704
124704
|
}
|
|
124705
|
-
if (
|
|
124706
|
-
pendingSourceIndex =
|
|
124705
|
+
if (sourceIndex2 !== void 0 && sourceLine !== void 0 && sourceCharacter !== void 0) {
|
|
124706
|
+
pendingSourceIndex = sourceIndex2;
|
|
124707
124707
|
pendingSourceLine = sourceLine;
|
|
124708
124708
|
pendingSourceCharacter = sourceCharacter;
|
|
124709
124709
|
hasPendingSource = true;
|
|
@@ -124884,7 +124884,7 @@ ${lanes.join("\n")}
|
|
|
124884
124884
|
let pos = 0;
|
|
124885
124885
|
let generatedLine = 0;
|
|
124886
124886
|
let generatedCharacter = 0;
|
|
124887
|
-
let
|
|
124887
|
+
let sourceIndex2 = 0;
|
|
124888
124888
|
let sourceLine = 0;
|
|
124889
124889
|
let sourceCharacter = 0;
|
|
124890
124890
|
let nameIndex = 0;
|
|
@@ -124926,10 +124926,10 @@ ${lanes.join("\n")}
|
|
|
124926
124926
|
return setErrorAndStopIterating("Invalid generatedCharacter found");
|
|
124927
124927
|
if (!isSourceMappingSegmentEnd()) {
|
|
124928
124928
|
hasSource = true;
|
|
124929
|
-
|
|
124929
|
+
sourceIndex2 += base64VLQFormatDecode();
|
|
124930
124930
|
if (hasReportedError())
|
|
124931
124931
|
return stopIterating();
|
|
124932
|
-
if (
|
|
124932
|
+
if (sourceIndex2 < 0)
|
|
124933
124933
|
return setErrorAndStopIterating("Invalid sourceIndex found");
|
|
124934
124934
|
if (isSourceMappingSegmentEnd())
|
|
124935
124935
|
return setErrorAndStopIterating("Unsupported Format: No entries after sourceIndex");
|
|
@@ -124968,7 +124968,7 @@ ${lanes.join("\n")}
|
|
|
124968
124968
|
return {
|
|
124969
124969
|
generatedLine,
|
|
124970
124970
|
generatedCharacter,
|
|
124971
|
-
sourceIndex: hasSource ?
|
|
124971
|
+
sourceIndex: hasSource ? sourceIndex2 : void 0,
|
|
124972
124972
|
sourceLine: hasSource ? sourceLine : void 0,
|
|
124973
124973
|
sourceCharacter: hasSource ? sourceCharacter : void 0,
|
|
124974
124974
|
nameIndex: hasName ? nameIndex : void 0
|
|
@@ -125062,7 +125062,7 @@ ${lanes.join("\n")}
|
|
|
125062
125062
|
getGeneratedPosition
|
|
125063
125063
|
};
|
|
125064
125064
|
function processMapping(mapping) {
|
|
125065
|
-
const
|
|
125065
|
+
const generatedPosition2 = generatedFile !== void 0 ? getPositionOfLineAndCharacter(
|
|
125066
125066
|
generatedFile,
|
|
125067
125067
|
mapping.generatedLine,
|
|
125068
125068
|
mapping.generatedCharacter,
|
|
@@ -125083,7 +125083,7 @@ ${lanes.join("\n")}
|
|
|
125083
125083
|
) : -1;
|
|
125084
125084
|
}
|
|
125085
125085
|
return {
|
|
125086
|
-
generatedPosition,
|
|
125086
|
+
generatedPosition: generatedPosition2,
|
|
125087
125087
|
source,
|
|
125088
125088
|
sourceIndex: mapping.sourceIndex,
|
|
125089
125089
|
sourcePosition,
|
|
@@ -125105,7 +125105,7 @@ ${lanes.join("\n")}
|
|
|
125105
125105
|
}
|
|
125106
125106
|
return decodedMappings2;
|
|
125107
125107
|
}
|
|
125108
|
-
function getSourceMappings(
|
|
125108
|
+
function getSourceMappings(sourceIndex2) {
|
|
125109
125109
|
if (sourceMappings === void 0) {
|
|
125110
125110
|
const lists = [];
|
|
125111
125111
|
for (const mapping of getDecodedMappings()) {
|
|
@@ -125118,7 +125118,7 @@ ${lanes.join("\n")}
|
|
|
125118
125118
|
}
|
|
125119
125119
|
sourceMappings = lists.map((list) => sortAndDeduplicate(list, compareSourcePositions, sameMappedPosition));
|
|
125120
125120
|
}
|
|
125121
|
-
return sourceMappings[
|
|
125121
|
+
return sourceMappings[sourceIndex2];
|
|
125122
125122
|
}
|
|
125123
125123
|
function getGeneratedMappings() {
|
|
125124
125124
|
if (generatedMappings === void 0) {
|
|
@@ -125131,10 +125131,10 @@ ${lanes.join("\n")}
|
|
|
125131
125131
|
return generatedMappings;
|
|
125132
125132
|
}
|
|
125133
125133
|
function getGeneratedPosition(loc) {
|
|
125134
|
-
const
|
|
125135
|
-
if (
|
|
125134
|
+
const sourceIndex2 = sourceToSourceIndexMap.get(host.getCanonicalFileName(loc.fileName));
|
|
125135
|
+
if (sourceIndex2 === void 0)
|
|
125136
125136
|
return loc;
|
|
125137
|
-
const sourceMappings2 = getSourceMappings(
|
|
125137
|
+
const sourceMappings2 = getSourceMappings(sourceIndex2);
|
|
125138
125138
|
if (!some(sourceMappings2))
|
|
125139
125139
|
return loc;
|
|
125140
125140
|
let targetIndex = binarySearchKey(sourceMappings2, loc.pos, getSourcePositionOfMapping, compareValues);
|
|
@@ -125142,7 +125142,7 @@ ${lanes.join("\n")}
|
|
|
125142
125142
|
targetIndex = ~targetIndex;
|
|
125143
125143
|
}
|
|
125144
125144
|
const mapping = sourceMappings2[targetIndex];
|
|
125145
|
-
if (mapping === void 0 || mapping.sourceIndex !==
|
|
125145
|
+
if (mapping === void 0 || mapping.sourceIndex !== sourceIndex2) {
|
|
125146
125146
|
return loc;
|
|
125147
125147
|
}
|
|
125148
125148
|
return { fileName: generatedAbsoluteFilePath, pos: mapping.generatedPosition };
|
|
@@ -125350,7 +125350,7 @@ ${lanes.join("\n")}
|
|
|
125350
125350
|
}
|
|
125351
125351
|
return { externalImports, exportSpecifiers, exportEquals, hasExportStarsToExportValues, exportedBindings, exportedNames, externalHelpersImportDeclaration };
|
|
125352
125352
|
function addExportedNamesForExportDeclaration(node) {
|
|
125353
|
-
for (const specifier of
|
|
125353
|
+
for (const specifier of cast4(node.exportClause, isNamedExports).elements) {
|
|
125354
125354
|
if (!uniqueExports.get(idText(specifier.name))) {
|
|
125355
125355
|
const name = specifier.propertyName || specifier.name;
|
|
125356
125356
|
if (!node.moduleSpecifier) {
|
|
@@ -126315,7 +126315,7 @@ ${lanes.join("\n")}
|
|
|
126315
126315
|
}
|
|
126316
126316
|
const { factory: factory2 } = context;
|
|
126317
126317
|
const innerExpression = skipOuterExpressions(expression);
|
|
126318
|
-
const updatedExpression = isClassExpression(innerExpression) ?
|
|
126318
|
+
const updatedExpression = isClassExpression(innerExpression) ? cast4(injectClassNamedEvaluationHelperBlockIfMissing(context, innerExpression, assignedName), isClassExpression) : context.getEmitHelperFactory().createSetFunctionNameHelper(innerExpression, assignedName);
|
|
126319
126319
|
return factory2.restoreOuterExpressions(expression, updatedExpression);
|
|
126320
126320
|
}
|
|
126321
126321
|
function transformNamedEvaluationOfPropertyAssignment(context, node, ignoreEmptyStringLiteral, assignedNameText) {
|
|
@@ -136132,7 +136132,7 @@ ${lanes.join("\n")}
|
|
|
136132
136132
|
Debug.assertNotNode(chain, isNonNullChain);
|
|
136133
136133
|
const links = [chain];
|
|
136134
136134
|
while (!chain.questionDotToken && !isTaggedTemplateExpression(chain)) {
|
|
136135
|
-
chain =
|
|
136135
|
+
chain = cast4(skipPartiallyEmittedExpressions(chain.expression), isOptionalChain);
|
|
136136
136136
|
Debug.assertNotNode(chain, isNonNullChain);
|
|
136137
136137
|
links.unshift(chain);
|
|
136138
136138
|
}
|
|
@@ -141329,7 +141329,7 @@ ${lanes.join("\n")}
|
|
|
141329
141329
|
);
|
|
141330
141330
|
}
|
|
141331
141331
|
function visitTypeScriptClassWrapper(node) {
|
|
141332
|
-
const body =
|
|
141332
|
+
const body = cast4(cast4(skipOuterExpressions(node.expression), isArrowFunction).body, isBlock);
|
|
141333
141333
|
const isVariableStatementWithInitializer = (stmt) => isVariableStatement(stmt) && !!first(stmt.declarationList.declarations).initializer;
|
|
141334
141334
|
const savedConvertedLoopState = convertedLoopState;
|
|
141335
141335
|
convertedLoopState = void 0;
|
|
@@ -141337,15 +141337,15 @@ ${lanes.join("\n")}
|
|
|
141337
141337
|
convertedLoopState = savedConvertedLoopState;
|
|
141338
141338
|
const classStatements = filter2(bodyStatements, isVariableStatementWithInitializer);
|
|
141339
141339
|
const remainingStatements = filter2(bodyStatements, (stmt) => !isVariableStatementWithInitializer(stmt));
|
|
141340
|
-
const varStatement =
|
|
141340
|
+
const varStatement = cast4(first(classStatements), isVariableStatement);
|
|
141341
141341
|
const variable = varStatement.declarationList.declarations[0];
|
|
141342
141342
|
const initializer = skipOuterExpressions(variable.initializer);
|
|
141343
141343
|
let aliasAssignment = tryCast(initializer, isAssignmentExpression);
|
|
141344
141344
|
if (!aliasAssignment && isBinaryExpression(initializer) && initializer.operatorToken.kind === 28) {
|
|
141345
141345
|
aliasAssignment = tryCast(initializer.left, isAssignmentExpression);
|
|
141346
141346
|
}
|
|
141347
|
-
const call =
|
|
141348
|
-
const func =
|
|
141347
|
+
const call = cast4(aliasAssignment ? skipOuterExpressions(aliasAssignment.right) : initializer, isCallExpression);
|
|
141348
|
+
const func = cast4(skipOuterExpressions(call.expression), isFunctionExpression);
|
|
141349
141349
|
const funcStatements = func.body.statements;
|
|
141350
141350
|
let classBodyStart = 0;
|
|
141351
141351
|
let classBodyEnd = -1;
|
|
@@ -141362,7 +141362,7 @@ ${lanes.join("\n")}
|
|
|
141362
141362
|
factory2.createExpressionStatement(
|
|
141363
141363
|
factory2.createAssignment(
|
|
141364
141364
|
aliasAssignment.left,
|
|
141365
|
-
|
|
141365
|
+
cast4(variable.name, isIdentifier)
|
|
141366
141366
|
)
|
|
141367
141367
|
)
|
|
141368
141368
|
);
|
|
@@ -144866,7 +144866,7 @@ ${lanes.join("\n")}
|
|
|
144866
144866
|
}
|
|
144867
144867
|
}
|
|
144868
144868
|
function createImportCallExpressionAMD(arg, containsLexicalThis) {
|
|
144869
|
-
const
|
|
144869
|
+
const resolve9 = factory2.createUniqueName("resolve");
|
|
144870
144870
|
const reject = factory2.createUniqueName("reject");
|
|
144871
144871
|
const parameters = [
|
|
144872
144872
|
factory2.createParameterDeclaration(
|
|
@@ -144875,7 +144875,7 @@ ${lanes.join("\n")}
|
|
|
144875
144875
|
/*dotDotDotToken*/
|
|
144876
144876
|
void 0,
|
|
144877
144877
|
/*name*/
|
|
144878
|
-
|
|
144878
|
+
resolve9
|
|
144879
144879
|
),
|
|
144880
144880
|
factory2.createParameterDeclaration(
|
|
144881
144881
|
/*modifiers*/
|
|
@@ -144892,7 +144892,7 @@ ${lanes.join("\n")}
|
|
|
144892
144892
|
factory2.createIdentifier("require"),
|
|
144893
144893
|
/*typeArguments*/
|
|
144894
144894
|
void 0,
|
|
144895
|
-
[factory2.createArrayLiteralExpression([arg || factory2.createOmittedExpression()]),
|
|
144895
|
+
[factory2.createArrayLiteralExpression([arg || factory2.createOmittedExpression()]), resolve9, reject]
|
|
144896
144896
|
)
|
|
144897
144897
|
)
|
|
144898
144898
|
]);
|
|
@@ -151566,19 +151566,19 @@ ${lanes.join("\n")}
|
|
|
151566
151566
|
}
|
|
151567
151567
|
}
|
|
151568
151568
|
if (hint === 0)
|
|
151569
|
-
return emitSourceFile(
|
|
151569
|
+
return emitSourceFile(cast4(node, isSourceFile));
|
|
151570
151570
|
if (hint === 2)
|
|
151571
|
-
return emitIdentifier(
|
|
151571
|
+
return emitIdentifier(cast4(node, isIdentifier));
|
|
151572
151572
|
if (hint === 6)
|
|
151573
151573
|
return emitLiteral(
|
|
151574
|
-
|
|
151574
|
+
cast4(node, isStringLiteral),
|
|
151575
151575
|
/*jsxAttributeEscape*/
|
|
151576
151576
|
true
|
|
151577
151577
|
);
|
|
151578
151578
|
if (hint === 3)
|
|
151579
|
-
return emitMappedTypeParameter(
|
|
151579
|
+
return emitMappedTypeParameter(cast4(node, isTypeParameterDeclaration));
|
|
151580
151580
|
if (hint === 7)
|
|
151581
|
-
return emitImportTypeNodeAttributes(
|
|
151581
|
+
return emitImportTypeNodeAttributes(cast4(node, isImportAttributes));
|
|
151582
151582
|
if (hint === 5) {
|
|
151583
151583
|
Debug.assertNode(node, isEmptyStatement);
|
|
151584
151584
|
return emitEmptyStatement(
|
|
@@ -152133,7 +152133,7 @@ ${lanes.join("\n")}
|
|
|
152133
152133
|
const pos = getTextPosWithWriteLine();
|
|
152134
152134
|
writeUnparsedNode(unparsed);
|
|
152135
152135
|
if (bundleFileInfo) {
|
|
152136
|
-
const section =
|
|
152136
|
+
const section = clone5(unparsed.section);
|
|
152137
152137
|
section.pos = pos;
|
|
152138
152138
|
section.end = writer.getTextPos();
|
|
152139
152139
|
bundleFileInfo.sections.push(section);
|
|
@@ -152895,7 +152895,7 @@ ${lanes.join("\n")}
|
|
|
152895
152895
|
let pipelinePhase = getPipelinePhase(0, 1, next);
|
|
152896
152896
|
if (pipelinePhase === pipelineEmitWithSubstitution) {
|
|
152897
152897
|
Debug.assertIsDefined(lastSubstitution);
|
|
152898
|
-
next = parenthesizerRule(
|
|
152898
|
+
next = parenthesizerRule(cast4(lastSubstitution, isExpression));
|
|
152899
152899
|
pipelinePhase = getNextPipelinePhase(1, 1, next);
|
|
152900
152900
|
lastSubstitution = void 0;
|
|
152901
152901
|
}
|
|
@@ -155993,9 +155993,9 @@ ${lanes.join("\n")}
|
|
|
155993
155993
|
mostRecentlyAddedSourceMapSource = source;
|
|
155994
155994
|
mostRecentlyAddedSourceMapSourceIndex = sourceMapSourceIndex;
|
|
155995
155995
|
}
|
|
155996
|
-
function resetSourceMapSource(source,
|
|
155996
|
+
function resetSourceMapSource(source, sourceIndex2) {
|
|
155997
155997
|
sourceMapSource = source;
|
|
155998
|
-
sourceMapSourceIndex =
|
|
155998
|
+
sourceMapSourceIndex = sourceIndex2;
|
|
155999
155999
|
}
|
|
156000
156000
|
function isJsonSourceMapSource(sourceFile) {
|
|
156001
156001
|
return fileExtensionIs(
|
|
@@ -169389,7 +169389,7 @@ ${lanes.join("\n")}
|
|
|
169389
169389
|
return false;
|
|
169390
169390
|
}
|
|
169391
169391
|
function cloneCompilerOptions(options) {
|
|
169392
|
-
const result2 =
|
|
169392
|
+
const result2 = clone5(options);
|
|
169393
169393
|
setConfigFileInOptions(result2, options && options.configFile);
|
|
169394
169394
|
return result2;
|
|
169395
169395
|
}
|
|
@@ -169671,7 +169671,7 @@ ${lanes.join("\n")}
|
|
|
169671
169671
|
}
|
|
169672
169672
|
function getTypeKeywordOfTypeOnlyImport(importClause, sourceFile) {
|
|
169673
169673
|
Debug.assert(importClause.isTypeOnly);
|
|
169674
|
-
return
|
|
169674
|
+
return cast4(importClause.getChildAt(0, sourceFile), isTypeKeywordToken);
|
|
169675
169675
|
}
|
|
169676
169676
|
function textSpansEqual(a, b) {
|
|
169677
169677
|
return !!a && !!b && a.start === b.start && a.length === b.length;
|
|
@@ -170713,7 +170713,7 @@ ${lanes.join("\n")}
|
|
|
170713
170713
|
if (index2 >= 0) {
|
|
170714
170714
|
const diagnostic = sortedFileDiagnostics[index2];
|
|
170715
170715
|
Debug.assertEqual(diagnostic.file, node.getSourceFile(), "Diagnostics proided to 'findDiagnosticForNode' must be from a single SourceFile");
|
|
170716
|
-
return
|
|
170716
|
+
return cast4(diagnostic, isDiagnosticWithLocation);
|
|
170717
170717
|
}
|
|
170718
170718
|
}
|
|
170719
170719
|
function getDiagnosticsWithinSpan(span, sortedFileDiagnostics) {
|
|
@@ -172811,7 +172811,7 @@ ${lanes.join("\n")}
|
|
|
172811
172811
|
return void 0;
|
|
172812
172812
|
}
|
|
172813
172813
|
const keywords2 = [];
|
|
172814
|
-
forEachReturnStatement(
|
|
172814
|
+
forEachReturnStatement(cast4(func.body, isBlock), (returnStatement2) => {
|
|
172815
172815
|
keywords2.push(findChildOfKind(returnStatement2, 107, sourceFile));
|
|
172816
172816
|
});
|
|
172817
172817
|
forEach(aggregateOwnedThrowStatements(func.body), (throwStatement) => {
|
|
@@ -176261,7 +176261,7 @@ ${lanes.join("\n")}
|
|
|
176261
176261
|
);
|
|
176262
176262
|
const template = factory.createJSDocTemplateTag(
|
|
176263
176263
|
factory.createIdentifier("template"),
|
|
176264
|
-
constraint &&
|
|
176264
|
+
constraint && cast4(constraint, isJSDocTypeExpression),
|
|
176265
176265
|
[parameter]
|
|
176266
176266
|
);
|
|
176267
176267
|
templates.push(template);
|
|
@@ -176461,7 +176461,7 @@ ${lanes.join("\n")}
|
|
|
176461
176461
|
return { error: getLocaleSpecificMessage(Diagnostics.Could_not_find_variable_to_inline) };
|
|
176462
176462
|
}
|
|
176463
176463
|
function isDeclarationExported(declaration) {
|
|
176464
|
-
const variableStatement =
|
|
176464
|
+
const variableStatement = cast4(declaration.parent.parent, isVariableStatement);
|
|
176465
176465
|
return some(variableStatement.modifiers, isExportModifier);
|
|
176466
176466
|
}
|
|
176467
176467
|
function getReferenceNodes(declaration, checker, file) {
|
|
@@ -177282,7 +177282,7 @@ ${lanes.join("\n")}
|
|
|
177282
177282
|
return d.parent.parent;
|
|
177283
177283
|
case 208:
|
|
177284
177284
|
return getTopLevelDeclarationStatement(
|
|
177285
|
-
|
|
177285
|
+
cast4(d.parent.parent, (p) => isVariableDeclaration(p) || isBindingElement(p))
|
|
177286
177286
|
);
|
|
177287
177287
|
default:
|
|
177288
177288
|
return d;
|
|
@@ -177524,7 +177524,7 @@ ${lanes.join("\n")}
|
|
|
177524
177524
|
function forEachTopLevelDeclarationInBindingName(name, cb) {
|
|
177525
177525
|
switch (name.kind) {
|
|
177526
177526
|
case 80:
|
|
177527
|
-
return cb(
|
|
177527
|
+
return cb(cast4(name.parent, (x) => isVariableDeclaration(x) || isBindingElement(x)));
|
|
177528
177528
|
case 207:
|
|
177529
177529
|
case 206:
|
|
177530
177530
|
return firstDefined(name.elements, (em) => isOmittedExpression(em) ? void 0 : forEachTopLevelDeclarationInBindingName(em.name, cb));
|
|
@@ -184918,7 +184918,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
184918
184918
|
return flatMap(registrations, (f) => map2(f.getCodeActions(context), removeFixIdIfFixAllUnavailable(f, diagnostics)));
|
|
184919
184919
|
}
|
|
184920
184920
|
function getAllFixes(context) {
|
|
184921
|
-
return fixIdToRegistration.get(
|
|
184921
|
+
return fixIdToRegistration.get(cast4(context.fixId, isString3)).getAllCodeActions(context);
|
|
184922
184922
|
}
|
|
184923
184923
|
function createCombinedCodeActions(changes, commands) {
|
|
184924
184924
|
return { changes, commands };
|
|
@@ -187998,10 +187998,10 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
187998
187998
|
function getInfo5(sourceFile, pos) {
|
|
187999
187999
|
const token = getTokenAtPosition(sourceFile, pos);
|
|
188000
188000
|
if (isIdentifier(token)) {
|
|
188001
|
-
const propertySignature =
|
|
188001
|
+
const propertySignature = cast4(token.parent.parent, isPropertySignature);
|
|
188002
188002
|
const propertyName = token.getText(sourceFile);
|
|
188003
188003
|
return {
|
|
188004
|
-
container:
|
|
188004
|
+
container: cast4(propertySignature.parent, isTypeLiteralNode),
|
|
188005
188005
|
typeNode: propertySignature.type,
|
|
188006
188006
|
constraint: propertyName,
|
|
188007
188007
|
name: propertyName === "K" ? "P" : "K"
|
|
@@ -189080,7 +189080,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
189080
189080
|
}
|
|
189081
189081
|
function getModuleSpecifierText(promotedDeclaration) {
|
|
189082
189082
|
var _a, _b;
|
|
189083
|
-
return promotedDeclaration.kind === 271 ? ((_b = tryCast((_a = tryCast(promotedDeclaration.moduleReference, isExternalModuleReference)) == null ? void 0 : _a.expression, isStringLiteralLike)) == null ? void 0 : _b.text) || promotedDeclaration.moduleReference.getText() :
|
|
189083
|
+
return promotedDeclaration.kind === 271 ? ((_b = tryCast((_a = tryCast(promotedDeclaration.moduleReference, isExternalModuleReference)) == null ? void 0 : _a.expression, isStringLiteralLike)) == null ? void 0 : _b.text) || promotedDeclaration.moduleReference.getText() : cast4(promotedDeclaration.parent.moduleSpecifier, isStringLiteral).text;
|
|
189084
189084
|
}
|
|
189085
189085
|
function promoteFromTypeOnly(changes, aliasDeclaration, program, sourceFile, preferences) {
|
|
189086
189086
|
var _a;
|
|
@@ -189768,7 +189768,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
189768
189768
|
);
|
|
189769
189769
|
}
|
|
189770
189770
|
function getPropertyAccessExpression(sourceFile, pos) {
|
|
189771
|
-
return
|
|
189771
|
+
return cast4(getTokenAtPosition(sourceFile, pos).parent, isPropertyAccessExpression);
|
|
189772
189772
|
}
|
|
189773
189773
|
var fixId18, errorCodes21;
|
|
189774
189774
|
var init_fixNoPropertyAccessFromIndexSignature = __esm2({
|
|
@@ -191196,7 +191196,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
191196
191196
|
}
|
|
191197
191197
|
});
|
|
191198
191198
|
function addMissingNewOperator(changes, sourceFile, span) {
|
|
191199
|
-
const call =
|
|
191199
|
+
const call = cast4(findAncestorMatchingSpan2(sourceFile, span), isCallExpression);
|
|
191200
191200
|
const newExpression = factory.createNewExpression(call.expression, call.typeArguments, call.arguments);
|
|
191201
191201
|
changes.replaceNode(sourceFile, call, newExpression);
|
|
191202
191202
|
}
|
|
@@ -191545,7 +191545,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
191545
191545
|
});
|
|
191546
191546
|
function getClass2(sourceFile, pos) {
|
|
191547
191547
|
const token = getTokenAtPosition(sourceFile, pos);
|
|
191548
|
-
return
|
|
191548
|
+
return cast4(token.parent, isClassLike);
|
|
191549
191549
|
}
|
|
191550
191550
|
function addMissingMembers(classDeclaration, sourceFile, context, changeTracker, preferences) {
|
|
191551
191551
|
const extendsNode = getEffectiveBaseTypeNode(classDeclaration);
|
|
@@ -191827,7 +191827,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
191827
191827
|
changes.replaceNode(sourceFile, node, factory.createPropertyAssignment(node.name, node.objectAssignmentInitializer));
|
|
191828
191828
|
}
|
|
191829
191829
|
function getProperty2(sourceFile, pos) {
|
|
191830
|
-
return
|
|
191830
|
+
return cast4(getTokenAtPosition(sourceFile, pos).parent, isShorthandPropertyAssignment);
|
|
191831
191831
|
}
|
|
191832
191832
|
var fixId29, errorCodes36;
|
|
191833
191833
|
var init_fixPropertyAssignment = __esm2({
|
|
@@ -192170,7 +192170,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
192170
192170
|
return createCodeFixAction(fixName3, changes, diag2, fixIdDelete, Diagnostics.Delete_all_unused_declarations);
|
|
192171
192171
|
}
|
|
192172
192172
|
function deleteTypeParameters(changes, sourceFile, token) {
|
|
192173
|
-
changes.delete(sourceFile, Debug.checkDefined(
|
|
192173
|
+
changes.delete(sourceFile, Debug.checkDefined(cast4(token.parent, isDeclarationWithTypeParameterChildren).typeParameters, "The type parameter to delete should exist"));
|
|
192174
192174
|
}
|
|
192175
192175
|
function isImport(token) {
|
|
192176
192176
|
return token.kind === 102 || token.kind === 80 && (token.parent.kind === 276 || token.parent.kind === 273);
|
|
@@ -192209,7 +192209,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
192209
192209
|
if (errorCode === Diagnostics.Property_0_is_declared_but_its_value_is_never_read.code)
|
|
192210
192210
|
return;
|
|
192211
192211
|
if (token.kind === 140) {
|
|
192212
|
-
token =
|
|
192212
|
+
token = cast4(token.parent, isInferTypeNode).typeParameter.name;
|
|
192213
192213
|
}
|
|
192214
192214
|
if (isIdentifier(token) && canPrefix(token)) {
|
|
192215
192215
|
changes.replaceNode(sourceFile, token, factory.createIdentifier(`_${token.text}`));
|
|
@@ -192405,7 +192405,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
192405
192405
|
const result2 = [];
|
|
192406
192406
|
if (token.kind === 140) {
|
|
192407
192407
|
const changes = ts_textChanges_exports.ChangeTracker.with(context, (t) => changeInferToUnknown(t, sourceFile, token));
|
|
192408
|
-
const name =
|
|
192408
|
+
const name = cast4(token.parent, isInferTypeNode).typeParameter.name.text;
|
|
192409
192409
|
result2.push(createCodeFixAction(fixName3, changes, [Diagnostics.Replace_infer_0_with_unknown, name], fixIdInfer, Diagnostics.Replace_all_unused_infer_with_unknown));
|
|
192410
192410
|
} else {
|
|
192411
192411
|
const deletion = ts_textChanges_exports.ChangeTracker.with(context, (t) => tryDeleteDeclaration(
|
|
@@ -192577,7 +192577,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
192577
192577
|
});
|
|
192578
192578
|
function doChange28(changes, sourceFile, start) {
|
|
192579
192579
|
const token = getTokenAtPosition(sourceFile, start);
|
|
192580
|
-
const labeledStatement =
|
|
192580
|
+
const labeledStatement = cast4(token.parent, isLabeledStatement);
|
|
192581
192581
|
const pos = token.getStart(sourceFile);
|
|
192582
192582
|
const statementPos = labeledStatement.statement.getStart(sourceFile);
|
|
192583
192583
|
const end = positionsAreOnSameLine(pos, statementPos, sourceFile) ? statementPos : skipTrivia(
|
|
@@ -192954,7 +192954,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
192954
192954
|
/*comment*/
|
|
192955
192955
|
void 0
|
|
192956
192956
|
);
|
|
192957
|
-
changes.addJSDocTags(sourceFile,
|
|
192957
|
+
changes.addJSDocTags(sourceFile, cast4(parent2.parent.parent, isExpressionStatement), [typeTag]);
|
|
192958
192958
|
}
|
|
192959
192959
|
importAdder.writeFixes(changes);
|
|
192960
192960
|
return parent2;
|
|
@@ -192984,7 +192984,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
192984
192984
|
}
|
|
192985
192985
|
case Diagnostics.Rest_parameter_0_implicitly_has_an_any_type.code:
|
|
192986
192986
|
if (markSeen(containingFunction)) {
|
|
192987
|
-
const param =
|
|
192987
|
+
const param = cast4(parent2, isParameter);
|
|
192988
192988
|
annotateParameters(changes, importAdder, sourceFile, param, containingFunction, program, host, cancellationToken);
|
|
192989
192989
|
declaration = param;
|
|
192990
192990
|
}
|
|
@@ -194954,7 +194954,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
194954
194954
|
} else if (isPropertyAssignment(declaration)) {
|
|
194955
194955
|
updatePropertyAssignmentDeclaration(changeTracker, file, declaration, fieldName);
|
|
194956
194956
|
} else {
|
|
194957
|
-
changeTracker.replaceNode(file, declaration, factory.updateParameterDeclaration(declaration, modifiers, declaration.dotDotDotToken,
|
|
194957
|
+
changeTracker.replaceNode(file, declaration, factory.updateParameterDeclaration(declaration, modifiers, declaration.dotDotDotToken, cast4(fieldName, isIdentifier), declaration.questionToken, declaration.type, declaration.initializer));
|
|
194958
194958
|
}
|
|
194959
194959
|
}
|
|
194960
194960
|
function insertAccessor(changeTracker, file, accessor, declaration, container) {
|
|
@@ -195314,7 +195314,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
195314
195314
|
)) {
|
|
195315
195315
|
Debug.failBadSyntaxKind(parent2);
|
|
195316
195316
|
}
|
|
195317
|
-
const decl =
|
|
195317
|
+
const decl = cast4(parent2.parent, isVariableDeclaration);
|
|
195318
195318
|
const defaultImportName = tryCast(decl.name, isIdentifier);
|
|
195319
195319
|
const namedImports = isObjectBindingPattern(decl.name) ? tryCreateNamedImportsFromObjectBindingPattern(decl.name) : void 0;
|
|
195320
195320
|
if (defaultImportName || namedImports) {
|
|
@@ -195322,7 +195322,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
195322
195322
|
allowSyntheticDefaults: getAllowSyntheticDefaultImports(program.getCompilerOptions()),
|
|
195323
195323
|
defaultImportName,
|
|
195324
195324
|
namedImports,
|
|
195325
|
-
statement:
|
|
195325
|
+
statement: cast4(decl.parent.parent, isVariableStatement),
|
|
195326
195326
|
required: first(parent2.arguments)
|
|
195327
195327
|
};
|
|
195328
195328
|
}
|
|
@@ -195577,7 +195577,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
195577
195577
|
const mappedTypeParameter = factory.createTypeParameterDeclaration(
|
|
195578
195578
|
/*modifiers*/
|
|
195579
195579
|
void 0,
|
|
195580
|
-
|
|
195580
|
+
cast4(parameter.name, isIdentifier),
|
|
195581
195581
|
parameter.type
|
|
195582
195582
|
);
|
|
195583
195583
|
const mappedIntersectionType = factory.createMappedTypeNode(
|
|
@@ -199689,7 +199689,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
199689
199689
|
case 358:
|
|
199690
199690
|
return tryCast(location.parent, isObjectTypeDeclaration);
|
|
199691
199691
|
case 1:
|
|
199692
|
-
const cls = tryCast(lastOrUndefined(
|
|
199692
|
+
const cls = tryCast(lastOrUndefined(cast4(location.parent, isSourceFile).statements), isObjectTypeDeclaration);
|
|
199693
199693
|
if (cls && !findChildOfKind(cls, 20, sourceFile)) {
|
|
199694
199694
|
return cls;
|
|
199695
199695
|
}
|
|
@@ -201518,7 +201518,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
201518
201518
|
default:
|
|
201519
201519
|
return void 0;
|
|
201520
201520
|
}
|
|
201521
|
-
const sym = useLhsSymbol ? checker.getSymbolAtLocation(getNameOfAccessExpression(
|
|
201521
|
+
const sym = useLhsSymbol ? checker.getSymbolAtLocation(getNameOfAccessExpression(cast4(node2.left, isAccessExpression))) : symbol;
|
|
201522
201522
|
return sym && exportInfo(sym, kind);
|
|
201523
201523
|
}
|
|
201524
201524
|
}
|
|
@@ -201628,7 +201628,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
201628
201628
|
parent2.kind === 268
|
|
201629
201629
|
/* ModuleBlock */
|
|
201630
201630
|
);
|
|
201631
|
-
return
|
|
201631
|
+
return cast4(parent2.parent, isAmbientModuleDeclaration);
|
|
201632
201632
|
}
|
|
201633
201633
|
function isAmbientModuleDeclaration(node) {
|
|
201634
201634
|
return node.kind === 267 && node.name.kind === 11;
|
|
@@ -202367,7 +202367,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
202367
202367
|
if (reference.kind === "import") {
|
|
202368
202368
|
const parent2 = reference.literal.parent;
|
|
202369
202369
|
if (isLiteralTypeNode(parent2)) {
|
|
202370
|
-
const importType =
|
|
202370
|
+
const importType = cast4(parent2.parent, isImportTypeNode);
|
|
202371
202371
|
if (excludeImportTypeOfExportEquals && !importType.qualifier) {
|
|
202372
202372
|
return void 0;
|
|
202373
202373
|
}
|
|
@@ -203528,7 +203528,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
203528
203528
|
if (res)
|
|
203529
203529
|
return res;
|
|
203530
203530
|
if (symbol.valueDeclaration && isParameterPropertyDeclaration(symbol.valueDeclaration, symbol.valueDeclaration.parent)) {
|
|
203531
|
-
const paramProps = checker.getSymbolsOfParameterPropertyDeclaration(
|
|
203531
|
+
const paramProps = checker.getSymbolsOfParameterPropertyDeclaration(cast4(symbol.valueDeclaration, isParameter), symbol.name);
|
|
203532
203532
|
Debug.assert(paramProps.length === 2 && !!(paramProps[0].flags & 1) && !!(paramProps[1].flags & 4));
|
|
203533
203533
|
return fromRoot(symbol.flags & 1 ? paramProps[1] : paramProps[0]);
|
|
203534
203534
|
}
|
|
@@ -208924,7 +208924,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
208924
208924
|
function getTextPos() {
|
|
208925
208925
|
return writer.getTextPos();
|
|
208926
208926
|
}
|
|
208927
|
-
function
|
|
208927
|
+
function getLine3() {
|
|
208928
208928
|
return writer.getLine();
|
|
208929
208929
|
}
|
|
208930
208930
|
function getColumn() {
|
|
@@ -208965,7 +208965,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
208965
208965
|
rawWrite,
|
|
208966
208966
|
writeLiteral,
|
|
208967
208967
|
getTextPos,
|
|
208968
|
-
getLine:
|
|
208968
|
+
getLine: getLine3,
|
|
208969
208969
|
getColumn,
|
|
208970
208970
|
getIndent: getIndent2,
|
|
208971
208971
|
isAtStartOfLine,
|
|
@@ -209216,28 +209216,28 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
209216
209216
|
insertNodesAtTopOfFile(sourceFile, newNodes, blankLineBetween) {
|
|
209217
209217
|
this.insertAtTopOfFile(sourceFile, newNodes, blankLineBetween);
|
|
209218
209218
|
}
|
|
209219
|
-
insertAtTopOfFile(sourceFile,
|
|
209219
|
+
insertAtTopOfFile(sourceFile, insert4, blankLineBetween) {
|
|
209220
209220
|
const pos = getInsertionPositionAtSourceFileTop(sourceFile);
|
|
209221
209221
|
const options = {
|
|
209222
209222
|
prefix: pos === 0 ? void 0 : this.newLineCharacter,
|
|
209223
209223
|
suffix: (isLineBreak(sourceFile.text.charCodeAt(pos)) ? "" : this.newLineCharacter) + (blankLineBetween ? this.newLineCharacter : "")
|
|
209224
209224
|
};
|
|
209225
|
-
if (isArray4(
|
|
209226
|
-
this.insertNodesAt(sourceFile, pos,
|
|
209225
|
+
if (isArray4(insert4)) {
|
|
209226
|
+
this.insertNodesAt(sourceFile, pos, insert4, options);
|
|
209227
209227
|
} else {
|
|
209228
|
-
this.insertNodeAt(sourceFile, pos,
|
|
209228
|
+
this.insertNodeAt(sourceFile, pos, insert4, options);
|
|
209229
209229
|
}
|
|
209230
209230
|
}
|
|
209231
209231
|
insertNodesAtEndOfFile(sourceFile, newNodes, blankLineBetween) {
|
|
209232
209232
|
this.insertAtEndOfFile(sourceFile, newNodes, blankLineBetween);
|
|
209233
209233
|
}
|
|
209234
|
-
insertAtEndOfFile(sourceFile,
|
|
209234
|
+
insertAtEndOfFile(sourceFile, insert4, blankLineBetween) {
|
|
209235
209235
|
const pos = sourceFile.end + 1;
|
|
209236
209236
|
const options = {
|
|
209237
209237
|
prefix: this.newLineCharacter,
|
|
209238
209238
|
suffix: this.newLineCharacter + (blankLineBetween ? this.newLineCharacter : "")
|
|
209239
209239
|
};
|
|
209240
|
-
this.insertNodesAt(sourceFile, pos,
|
|
209240
|
+
this.insertNodesAt(sourceFile, pos, insert4, options);
|
|
209241
209241
|
}
|
|
209242
209242
|
insertStatementsInNewFile(fileName, statements, oldFile) {
|
|
209243
209243
|
if (!this.newFileChanges) {
|
|
@@ -212262,9 +212262,9 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
212262
212262
|
);
|
|
212263
212263
|
}
|
|
212264
212264
|
function formatOnSemicolon(position, sourceFile, formatContext) {
|
|
212265
|
-
const
|
|
212265
|
+
const semicolon2 = findImmediatelyPrecedingTokenOfKind(position, 27, sourceFile);
|
|
212266
212266
|
return formatNodeLines(
|
|
212267
|
-
findOutermostNodeWithinListLevel(
|
|
212267
|
+
findOutermostNodeWithinListLevel(semicolon2),
|
|
212268
212268
|
sourceFile,
|
|
212269
212269
|
formatContext,
|
|
212270
212270
|
3
|
|
@@ -214612,15 +214612,15 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
214612
214612
|
const base2 = getBaseFileName(configFilePath);
|
|
214613
214613
|
return base2 === "tsconfig.json" || base2 === "jsconfig.json" ? base2 : void 0;
|
|
214614
214614
|
}
|
|
214615
|
-
function removeSorted(array,
|
|
214615
|
+
function removeSorted(array, remove4, compare) {
|
|
214616
214616
|
if (!array || array.length === 0) {
|
|
214617
214617
|
return;
|
|
214618
214618
|
}
|
|
214619
|
-
if (array[0] ===
|
|
214619
|
+
if (array[0] === remove4) {
|
|
214620
214620
|
array.splice(0, 1);
|
|
214621
214621
|
return;
|
|
214622
214622
|
}
|
|
214623
|
-
const removeIndex = binarySearch2(array,
|
|
214623
|
+
const removeIndex = binarySearch2(array, remove4, identity, compare);
|
|
214624
214624
|
if (removeIndex >= 0) {
|
|
214625
214625
|
array.splice(removeIndex, 1);
|
|
214626
214626
|
}
|
|
@@ -224436,7 +224436,7 @@ Project '${project.projectName}' (${ProjectKind[project.projectKind]}) ${counter
|
|
|
224436
224436
|
const useDisplayParts = !!this.getPreferences(file).displayPartsForJSDoc;
|
|
224437
224437
|
const result2 = mapDefined(args.entryNames, (entryName) => {
|
|
224438
224438
|
const { name, source, data: data2 } = typeof entryName === "string" ? { name: entryName, source: void 0, data: void 0 } : entryName;
|
|
224439
|
-
return project.getLanguageService().getCompletionEntryDetails(file, position, name, formattingOptions, source, this.getPreferences(file), data2 ?
|
|
224439
|
+
return project.getLanguageService().getCompletionEntryDetails(file, position, name, formattingOptions, source, this.getPreferences(file), data2 ? cast4(data2, isCompletionEntryData) : void 0);
|
|
224440
224440
|
});
|
|
224441
224441
|
return fullResult ? useDisplayParts ? result2 : result2.map((details) => ({ ...details, tags: this.mapJSDocTagInfo(
|
|
224442
224442
|
details.tags,
|
|
@@ -226055,9 +226055,9 @@ ${e.message}`;
|
|
|
226055
226055
|
installPackage(options) {
|
|
226056
226056
|
this.packageInstallId++;
|
|
226057
226057
|
const request = { kind: "installPackage", ...options, id: this.packageInstallId };
|
|
226058
|
-
const promise = new Promise((
|
|
226058
|
+
const promise = new Promise((resolve9, reject) => {
|
|
226059
226059
|
var _a;
|
|
226060
|
-
((_a = this.packageInstalledPromise) != null ? _a : this.packageInstalledPromise = /* @__PURE__ */ new Map()).set(this.packageInstallId, { resolve:
|
|
226060
|
+
((_a = this.packageInstalledPromise) != null ? _a : this.packageInstalledPromise = /* @__PURE__ */ new Map()).set(this.packageInstallId, { resolve: resolve9, reject });
|
|
226061
226061
|
});
|
|
226062
226062
|
this.installer.send(request);
|
|
226063
226063
|
return promise;
|
|
@@ -226563,7 +226563,7 @@ ${e.message}`;
|
|
|
226563
226563
|
canWatchAtTypes: () => canWatchAtTypes,
|
|
226564
226564
|
canWatchDirectoryOrFile: () => canWatchDirectoryOrFile,
|
|
226565
226565
|
cartesianProduct: () => cartesianProduct,
|
|
226566
|
-
cast: () =>
|
|
226566
|
+
cast: () => cast4,
|
|
226567
226567
|
chainBundle: () => chainBundle,
|
|
226568
226568
|
chainDiagnosticMessages: () => chainDiagnosticMessages,
|
|
226569
226569
|
changeAnyExtension: () => changeAnyExtension,
|
|
@@ -226589,7 +226589,7 @@ ${e.message}`;
|
|
|
226589
226589
|
clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher,
|
|
226590
226590
|
climbPastPropertyAccess: () => climbPastPropertyAccess,
|
|
226591
226591
|
climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess,
|
|
226592
|
-
clone: () =>
|
|
226592
|
+
clone: () => clone5,
|
|
226593
226593
|
cloneCompilerOptions: () => cloneCompilerOptions,
|
|
226594
226594
|
closeFileWatcher: () => closeFileWatcher,
|
|
226595
226595
|
closeFileWatcherOf: () => closeFileWatcherOf,
|
|
@@ -228980,7 +228980,7 @@ ${e.message}`;
|
|
|
228980
228980
|
canWatchAtTypes: () => canWatchAtTypes,
|
|
228981
228981
|
canWatchDirectoryOrFile: () => canWatchDirectoryOrFile,
|
|
228982
228982
|
cartesianProduct: () => cartesianProduct,
|
|
228983
|
-
cast: () =>
|
|
228983
|
+
cast: () => cast4,
|
|
228984
228984
|
chainBundle: () => chainBundle,
|
|
228985
228985
|
chainDiagnosticMessages: () => chainDiagnosticMessages,
|
|
228986
228986
|
changeAnyExtension: () => changeAnyExtension,
|
|
@@ -229006,7 +229006,7 @@ ${e.message}`;
|
|
|
229006
229006
|
clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher,
|
|
229007
229007
|
climbPastPropertyAccess: () => climbPastPropertyAccess,
|
|
229008
229008
|
climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess,
|
|
229009
|
-
clone: () =>
|
|
229009
|
+
clone: () => clone5,
|
|
229010
229010
|
cloneCompilerOptions: () => cloneCompilerOptions,
|
|
229011
229011
|
closeFileWatcher: () => closeFileWatcher,
|
|
229012
229012
|
closeFileWatcherOf: () => closeFileWatcherOf,
|
|
@@ -231091,7 +231091,7 @@ ${e.message}`;
|
|
|
231091
231091
|
var typescript_5_4_5_bundle_cache_min_default = ts;
|
|
231092
231092
|
|
|
231093
231093
|
// src/version.ts
|
|
231094
|
-
var buildId = "
|
|
231094
|
+
var buildId = "1716921701";
|
|
231095
231095
|
var minfyJsId = "terser5.31.0_7";
|
|
231096
231096
|
var optimizeCssId = "autoprefixer10.4.19_postcss8.4.38_7";
|
|
231097
231097
|
var parse5Version = "7.1.2";
|
|
@@ -231099,8 +231099,8 @@ var rollupVersion = "2.56.3";
|
|
|
231099
231099
|
var jqueryVersion = "4.0.0-pre";
|
|
231100
231100
|
var terserVersion = "5.31.0";
|
|
231101
231101
|
var typescriptVersion = "5.4.5";
|
|
231102
|
-
var vermoji = "\
|
|
231103
|
-
var version = "4.18.
|
|
231102
|
+
var vermoji = "\u{1F604}";
|
|
231103
|
+
var version = "4.18.3";
|
|
231104
231104
|
var versions = {
|
|
231105
231105
|
stencil: version,
|
|
231106
231106
|
parse5: parse5Version,
|
|
@@ -231396,7 +231396,7 @@ var isPromise = (v) => !!v && (typeof v === "object" || typeof v === "function")
|
|
|
231396
231396
|
|
|
231397
231397
|
// src/utils/is-glob.ts
|
|
231398
231398
|
var isGlob = (str) => {
|
|
231399
|
-
const
|
|
231399
|
+
const chars3 = { "{": "}", "(": ")", "[": "]" };
|
|
231400
231400
|
const regex = /\\(.)|(^!|\*|[\].+)]\?|\[[^\\\]]+\]|\{[^\\}]+\}|\(\?[:!=][^\\)]+\)|\([^|]+\|[^\\)]+\))/;
|
|
231401
231401
|
if (str === "") {
|
|
231402
231402
|
return false;
|
|
@@ -231406,7 +231406,7 @@ var isGlob = (str) => {
|
|
|
231406
231406
|
if (match2[2]) return true;
|
|
231407
231407
|
let idx = match2.index + match2[0].length;
|
|
231408
231408
|
const open = match2[1];
|
|
231409
|
-
const close = open ?
|
|
231409
|
+
const close = open ? chars3[open] : null;
|
|
231410
231410
|
if (open && close) {
|
|
231411
231411
|
const n3 = str.indexOf(close, idx);
|
|
231412
231412
|
if (n3 !== -1) {
|
|
@@ -235910,6 +235910,78 @@ var td = typeof TextDecoder !== "undefined" ? /* @__PURE__ */ new TextDecoder()
|
|
|
235910
235910
|
return out;
|
|
235911
235911
|
}
|
|
235912
235912
|
};
|
|
235913
|
+
function decode(mappings) {
|
|
235914
|
+
const state = new Int32Array(5);
|
|
235915
|
+
const decoded = [];
|
|
235916
|
+
let index2 = 0;
|
|
235917
|
+
do {
|
|
235918
|
+
const semi = indexOf(mappings, index2);
|
|
235919
|
+
const line = [];
|
|
235920
|
+
let sorted = true;
|
|
235921
|
+
let lastCol = 0;
|
|
235922
|
+
state[0] = 0;
|
|
235923
|
+
for (let i = index2; i < semi; i++) {
|
|
235924
|
+
let seg;
|
|
235925
|
+
i = decodeInteger(mappings, i, state, 0);
|
|
235926
|
+
const col = state[0];
|
|
235927
|
+
if (col < lastCol)
|
|
235928
|
+
sorted = false;
|
|
235929
|
+
lastCol = col;
|
|
235930
|
+
if (hasMoreVlq(mappings, i, semi)) {
|
|
235931
|
+
i = decodeInteger(mappings, i, state, 1);
|
|
235932
|
+
i = decodeInteger(mappings, i, state, 2);
|
|
235933
|
+
i = decodeInteger(mappings, i, state, 3);
|
|
235934
|
+
if (hasMoreVlq(mappings, i, semi)) {
|
|
235935
|
+
i = decodeInteger(mappings, i, state, 4);
|
|
235936
|
+
seg = [col, state[1], state[2], state[3], state[4]];
|
|
235937
|
+
} else {
|
|
235938
|
+
seg = [col, state[1], state[2], state[3]];
|
|
235939
|
+
}
|
|
235940
|
+
} else {
|
|
235941
|
+
seg = [col];
|
|
235942
|
+
}
|
|
235943
|
+
line.push(seg);
|
|
235944
|
+
}
|
|
235945
|
+
if (!sorted)
|
|
235946
|
+
sort(line);
|
|
235947
|
+
decoded.push(line);
|
|
235948
|
+
index2 = semi + 1;
|
|
235949
|
+
} while (index2 <= mappings.length);
|
|
235950
|
+
return decoded;
|
|
235951
|
+
}
|
|
235952
|
+
function indexOf(mappings, index2) {
|
|
235953
|
+
const idx = mappings.indexOf(";", index2);
|
|
235954
|
+
return idx === -1 ? mappings.length : idx;
|
|
235955
|
+
}
|
|
235956
|
+
function decodeInteger(mappings, pos, state, j) {
|
|
235957
|
+
let value = 0;
|
|
235958
|
+
let shift = 0;
|
|
235959
|
+
let integer = 0;
|
|
235960
|
+
do {
|
|
235961
|
+
const c = mappings.charCodeAt(pos++);
|
|
235962
|
+
integer = charToInt[c];
|
|
235963
|
+
value |= (integer & 31) << shift;
|
|
235964
|
+
shift += 5;
|
|
235965
|
+
} while (integer & 32);
|
|
235966
|
+
const shouldNegate = value & 1;
|
|
235967
|
+
value >>>= 1;
|
|
235968
|
+
if (shouldNegate) {
|
|
235969
|
+
value = -2147483648 | -value;
|
|
235970
|
+
}
|
|
235971
|
+
state[j] += value;
|
|
235972
|
+
return pos;
|
|
235973
|
+
}
|
|
235974
|
+
function hasMoreVlq(mappings, i, length3) {
|
|
235975
|
+
if (i >= length3)
|
|
235976
|
+
return false;
|
|
235977
|
+
return mappings.charCodeAt(i) !== comma;
|
|
235978
|
+
}
|
|
235979
|
+
function sort(line) {
|
|
235980
|
+
line.sort(sortComparator);
|
|
235981
|
+
}
|
|
235982
|
+
function sortComparator(a, b) {
|
|
235983
|
+
return a[0] - b[0];
|
|
235984
|
+
}
|
|
235913
235985
|
function encode(decoded) {
|
|
235914
235986
|
const state = new Int32Array(5);
|
|
235915
235987
|
const bufLength = 1024 * 16;
|
|
@@ -236211,13 +236283,13 @@ var Mappings = class {
|
|
|
236211
236283
|
this.rawSegments = this.raw[this.generatedCodeLine] = [];
|
|
236212
236284
|
this.pending = null;
|
|
236213
236285
|
}
|
|
236214
|
-
addEdit(
|
|
236286
|
+
addEdit(sourceIndex2, content, loc, nameIndex) {
|
|
236215
236287
|
if (content.length) {
|
|
236216
236288
|
const contentLengthMinusOne = content.length - 1;
|
|
236217
236289
|
let contentLineEnd = content.indexOf("\n", 0);
|
|
236218
236290
|
let previousContentLineEnd = -1;
|
|
236219
236291
|
while (contentLineEnd >= 0 && contentLengthMinusOne > contentLineEnd) {
|
|
236220
|
-
const segment2 = [this.generatedCodeColumn,
|
|
236292
|
+
const segment2 = [this.generatedCodeColumn, sourceIndex2, loc.line, loc.column];
|
|
236221
236293
|
if (nameIndex >= 0) {
|
|
236222
236294
|
segment2.push(nameIndex);
|
|
236223
236295
|
}
|
|
@@ -236228,7 +236300,7 @@ var Mappings = class {
|
|
|
236228
236300
|
previousContentLineEnd = contentLineEnd;
|
|
236229
236301
|
contentLineEnd = content.indexOf("\n", contentLineEnd + 1);
|
|
236230
236302
|
}
|
|
236231
|
-
const segment = [this.generatedCodeColumn,
|
|
236303
|
+
const segment = [this.generatedCodeColumn, sourceIndex2, loc.line, loc.column];
|
|
236232
236304
|
if (nameIndex >= 0) {
|
|
236233
236305
|
segment.push(nameIndex);
|
|
236234
236306
|
}
|
|
@@ -236240,13 +236312,13 @@ var Mappings = class {
|
|
|
236240
236312
|
}
|
|
236241
236313
|
this.pending = null;
|
|
236242
236314
|
}
|
|
236243
|
-
addUneditedChunk(
|
|
236315
|
+
addUneditedChunk(sourceIndex2, chunk, original, loc, sourcemapLocations) {
|
|
236244
236316
|
let originalCharIndex = chunk.start;
|
|
236245
236317
|
let first = true;
|
|
236246
236318
|
let charInHiresBoundary = false;
|
|
236247
236319
|
while (originalCharIndex < chunk.end) {
|
|
236248
236320
|
if (this.hires || first || sourcemapLocations.has(originalCharIndex)) {
|
|
236249
|
-
const segment = [this.generatedCodeColumn,
|
|
236321
|
+
const segment = [this.generatedCodeColumn, sourceIndex2, loc.line, loc.column];
|
|
236250
236322
|
if (this.hires === "boundary") {
|
|
236251
236323
|
if (wordRegex.test(original[originalCharIndex])) {
|
|
236252
236324
|
if (!charInHiresBoundary) {
|
|
@@ -236375,7 +236447,7 @@ var MagicString = class _MagicString {
|
|
|
236375
236447
|
}
|
|
236376
236448
|
generateDecodedMap(options) {
|
|
236377
236449
|
options = options || {};
|
|
236378
|
-
const
|
|
236450
|
+
const sourceIndex2 = 0;
|
|
236379
236451
|
const names = Object.keys(this.storedNames);
|
|
236380
236452
|
const mappings = new Mappings(options.hires);
|
|
236381
236453
|
const locate2 = getLocator(this.original);
|
|
@@ -236387,13 +236459,13 @@ var MagicString = class _MagicString {
|
|
|
236387
236459
|
if (chunk.intro.length) mappings.advance(chunk.intro);
|
|
236388
236460
|
if (chunk.edited) {
|
|
236389
236461
|
mappings.addEdit(
|
|
236390
|
-
|
|
236462
|
+
sourceIndex2,
|
|
236391
236463
|
chunk.content,
|
|
236392
236464
|
loc,
|
|
236393
236465
|
chunk.storeName ? names.indexOf(chunk.original) : -1
|
|
236394
236466
|
);
|
|
236395
236467
|
} else {
|
|
236396
|
-
mappings.addUneditedChunk(
|
|
236468
|
+
mappings.addUneditedChunk(sourceIndex2, chunk, this.original, loc, this.sourcemapLocations);
|
|
236397
236469
|
}
|
|
236398
236470
|
if (chunk.outro.length) mappings.advance(chunk.outro);
|
|
236399
236471
|
});
|
|
@@ -236405,7 +236477,7 @@ var MagicString = class _MagicString {
|
|
|
236405
236477
|
sourcesContent: options.includeContent ? [this.original] : void 0,
|
|
236406
236478
|
names,
|
|
236407
236479
|
mappings: mappings.raw,
|
|
236408
|
-
x_google_ignoreList: this.ignoreList ? [
|
|
236480
|
+
x_google_ignoreList: this.ignoreList ? [sourceIndex2] : void 0
|
|
236409
236481
|
};
|
|
236410
236482
|
}
|
|
236411
236483
|
generateMap(options) {
|
|
@@ -236725,10 +236797,10 @@ var MagicString = class _MagicString {
|
|
|
236725
236797
|
}
|
|
236726
236798
|
// TODO deprecate this? not really very useful
|
|
236727
236799
|
snip(start, end) {
|
|
236728
|
-
const
|
|
236729
|
-
|
|
236730
|
-
|
|
236731
|
-
return
|
|
236800
|
+
const clone5 = this.clone();
|
|
236801
|
+
clone5.remove(0, start);
|
|
236802
|
+
clone5.remove(end, clone5.original.length);
|
|
236803
|
+
return clone5;
|
|
236732
236804
|
}
|
|
236733
236805
|
_split(index2) {
|
|
236734
236806
|
if (this.byStart[index2] || this.byEnd[index2]) return;
|
|
@@ -238983,162 +239055,10 @@ var userIndexPlugin = (config, compilerCtx) => {
|
|
|
238983
239055
|
// src/compiler/optimize/optimize-module.ts
|
|
238984
239056
|
var import_merge_source_map = __toESM(require_merge_source_map());
|
|
238985
239057
|
|
|
238986
|
-
// node_modules/@jridgewell/
|
|
238987
|
-
var comma2 = ",".charCodeAt(0);
|
|
238988
|
-
var semicolon2 = ";".charCodeAt(0);
|
|
238989
|
-
var chars3 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
|
238990
|
-
var intToChar2 = new Uint8Array(64);
|
|
238991
|
-
var charToInteger2 = new Uint8Array(128);
|
|
238992
|
-
for (let i = 0; i < chars3.length; i++) {
|
|
238993
|
-
const c = chars3.charCodeAt(i);
|
|
238994
|
-
charToInteger2[c] = i;
|
|
238995
|
-
intToChar2[i] = c;
|
|
238996
|
-
}
|
|
238997
|
-
var td2 = typeof TextDecoder !== "undefined" ? new TextDecoder() : typeof Buffer !== "undefined" ? {
|
|
238998
|
-
decode(buf) {
|
|
238999
|
-
const out = Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength);
|
|
239000
|
-
return out.toString();
|
|
239001
|
-
}
|
|
239002
|
-
} : {
|
|
239003
|
-
decode(buf) {
|
|
239004
|
-
let out = "";
|
|
239005
|
-
for (let i = 0; i < buf.length; i++) {
|
|
239006
|
-
out += String.fromCharCode(buf[i]);
|
|
239007
|
-
}
|
|
239008
|
-
return out;
|
|
239009
|
-
}
|
|
239010
|
-
};
|
|
239011
|
-
function decode2(mappings) {
|
|
239012
|
-
const state = new Int32Array(5);
|
|
239013
|
-
const decoded = [];
|
|
239014
|
-
let line = [];
|
|
239015
|
-
let sorted = true;
|
|
239016
|
-
let lastCol = 0;
|
|
239017
|
-
for (let i = 0; i < mappings.length; ) {
|
|
239018
|
-
const c = mappings.charCodeAt(i);
|
|
239019
|
-
if (c === comma2) {
|
|
239020
|
-
i++;
|
|
239021
|
-
} else if (c === semicolon2) {
|
|
239022
|
-
state[0] = lastCol = 0;
|
|
239023
|
-
if (!sorted)
|
|
239024
|
-
sort(line);
|
|
239025
|
-
sorted = true;
|
|
239026
|
-
decoded.push(line);
|
|
239027
|
-
line = [];
|
|
239028
|
-
i++;
|
|
239029
|
-
} else {
|
|
239030
|
-
i = decodeInteger(mappings, i, state, 0);
|
|
239031
|
-
const col = state[0];
|
|
239032
|
-
if (col < lastCol)
|
|
239033
|
-
sorted = false;
|
|
239034
|
-
lastCol = col;
|
|
239035
|
-
if (!hasMoreSegments(mappings, i)) {
|
|
239036
|
-
line.push([col]);
|
|
239037
|
-
continue;
|
|
239038
|
-
}
|
|
239039
|
-
i = decodeInteger(mappings, i, state, 1);
|
|
239040
|
-
i = decodeInteger(mappings, i, state, 2);
|
|
239041
|
-
i = decodeInteger(mappings, i, state, 3);
|
|
239042
|
-
if (!hasMoreSegments(mappings, i)) {
|
|
239043
|
-
line.push([col, state[1], state[2], state[3]]);
|
|
239044
|
-
continue;
|
|
239045
|
-
}
|
|
239046
|
-
i = decodeInteger(mappings, i, state, 4);
|
|
239047
|
-
line.push([col, state[1], state[2], state[3], state[4]]);
|
|
239048
|
-
}
|
|
239049
|
-
}
|
|
239050
|
-
if (!sorted)
|
|
239051
|
-
sort(line);
|
|
239052
|
-
decoded.push(line);
|
|
239053
|
-
return decoded;
|
|
239054
|
-
}
|
|
239055
|
-
function decodeInteger(mappings, pos, state, j) {
|
|
239056
|
-
let value = 0;
|
|
239057
|
-
let shift = 0;
|
|
239058
|
-
let integer = 0;
|
|
239059
|
-
do {
|
|
239060
|
-
const c = mappings.charCodeAt(pos++);
|
|
239061
|
-
integer = charToInteger2[c];
|
|
239062
|
-
value |= (integer & 31) << shift;
|
|
239063
|
-
shift += 5;
|
|
239064
|
-
} while (integer & 32);
|
|
239065
|
-
const shouldNegate = value & 1;
|
|
239066
|
-
value >>>= 1;
|
|
239067
|
-
if (shouldNegate) {
|
|
239068
|
-
value = -2147483648 | -value;
|
|
239069
|
-
}
|
|
239070
|
-
state[j] += value;
|
|
239071
|
-
return pos;
|
|
239072
|
-
}
|
|
239073
|
-
function hasMoreSegments(mappings, i) {
|
|
239074
|
-
if (i >= mappings.length)
|
|
239075
|
-
return false;
|
|
239076
|
-
const c = mappings.charCodeAt(i);
|
|
239077
|
-
if (c === comma2 || c === semicolon2)
|
|
239078
|
-
return false;
|
|
239079
|
-
return true;
|
|
239080
|
-
}
|
|
239081
|
-
function sort(line) {
|
|
239082
|
-
line.sort(sortComparator$1);
|
|
239083
|
-
}
|
|
239084
|
-
function sortComparator$1(a, b) {
|
|
239085
|
-
return a[0] - b[0];
|
|
239086
|
-
}
|
|
239087
|
-
function encode3(decoded) {
|
|
239088
|
-
const state = new Int32Array(5);
|
|
239089
|
-
let buf = new Uint8Array(1024);
|
|
239090
|
-
let pos = 0;
|
|
239091
|
-
for (let i = 0; i < decoded.length; i++) {
|
|
239092
|
-
const line = decoded[i];
|
|
239093
|
-
if (i > 0) {
|
|
239094
|
-
buf = reserve(buf, pos, 1);
|
|
239095
|
-
buf[pos++] = semicolon2;
|
|
239096
|
-
}
|
|
239097
|
-
if (line.length === 0)
|
|
239098
|
-
continue;
|
|
239099
|
-
state[0] = 0;
|
|
239100
|
-
for (let j = 0; j < line.length; j++) {
|
|
239101
|
-
const segment = line[j];
|
|
239102
|
-
buf = reserve(buf, pos, 36);
|
|
239103
|
-
if (j > 0)
|
|
239104
|
-
buf[pos++] = comma2;
|
|
239105
|
-
pos = encodeInteger3(buf, pos, state, segment, 0);
|
|
239106
|
-
if (segment.length === 1)
|
|
239107
|
-
continue;
|
|
239108
|
-
pos = encodeInteger3(buf, pos, state, segment, 1);
|
|
239109
|
-
pos = encodeInteger3(buf, pos, state, segment, 2);
|
|
239110
|
-
pos = encodeInteger3(buf, pos, state, segment, 3);
|
|
239111
|
-
if (segment.length === 4)
|
|
239112
|
-
continue;
|
|
239113
|
-
pos = encodeInteger3(buf, pos, state, segment, 4);
|
|
239114
|
-
}
|
|
239115
|
-
}
|
|
239116
|
-
return td2.decode(buf.subarray(0, pos));
|
|
239117
|
-
}
|
|
239118
|
-
function reserve(buf, pos, count) {
|
|
239119
|
-
if (buf.length > pos + count)
|
|
239120
|
-
return buf;
|
|
239121
|
-
const swap = new Uint8Array(buf.length * 2);
|
|
239122
|
-
swap.set(buf);
|
|
239123
|
-
return swap;
|
|
239124
|
-
}
|
|
239125
|
-
function encodeInteger3(buf, pos, state, segment, j) {
|
|
239126
|
-
const next = segment[j];
|
|
239127
|
-
let num = next - state[j];
|
|
239128
|
-
state[j] = next;
|
|
239129
|
-
num = num < 0 ? -num << 1 | 1 : num << 1;
|
|
239130
|
-
do {
|
|
239131
|
-
let clamped = num & 31;
|
|
239132
|
-
num >>>= 5;
|
|
239133
|
-
if (num > 0)
|
|
239134
|
-
clamped |= 32;
|
|
239135
|
-
buf[pos++] = intToChar2[clamped];
|
|
239136
|
-
} while (num > 0);
|
|
239137
|
-
return pos;
|
|
239138
|
-
}
|
|
239058
|
+
// node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs
|
|
239139
239059
|
var schemeRegex = /^[\w+.-]+:\/\//;
|
|
239140
|
-
var urlRegex = /^([\w+.-]+:)\/\/([^@/#?]*@)?([^:/#?]*)(:\d+)?(\/[^#?]*)?/;
|
|
239141
|
-
var fileRegex = /^file:(?:\/\/((?![a-z]:)[
|
|
239060
|
+
var urlRegex = /^([\w+.-]+:)\/\/([^@/#?]*@)?([^:/#?]*)(:\d+)?(\/[^#?]*)?(\?[^#]*)?(#.*)?/;
|
|
239061
|
+
var fileRegex = /^file:(?:\/\/((?![a-z]:)[^/#?]*)?)?(\/?[^#?]*)(\?[^#]*)?(#.*)?/i;
|
|
239142
239062
|
function isAbsoluteUrl(input) {
|
|
239143
239063
|
return schemeRegex.test(input);
|
|
239144
239064
|
}
|
|
@@ -239151,35 +239071,42 @@ function isAbsolutePath(input) {
|
|
|
239151
239071
|
function isFileUrl(input) {
|
|
239152
239072
|
return input.startsWith("file:");
|
|
239153
239073
|
}
|
|
239074
|
+
function isRelative2(input) {
|
|
239075
|
+
return /^[.?#]/.test(input);
|
|
239076
|
+
}
|
|
239154
239077
|
function parseAbsoluteUrl(input) {
|
|
239155
239078
|
const match2 = urlRegex.exec(input);
|
|
239156
|
-
return makeUrl(match2[1], match2[2] || "", match2[3], match2[4] || "", match2[5] || "/");
|
|
239079
|
+
return makeUrl(match2[1], match2[2] || "", match2[3], match2[4] || "", match2[5] || "/", match2[6] || "", match2[7] || "");
|
|
239157
239080
|
}
|
|
239158
239081
|
function parseFileUrl(input) {
|
|
239159
239082
|
const match2 = fileRegex.exec(input);
|
|
239160
239083
|
const path6 = match2[2];
|
|
239161
|
-
return makeUrl("file:", "", match2[1] || "", "", isAbsolutePath(path6) ? path6 : "/" + path6);
|
|
239084
|
+
return makeUrl("file:", "", match2[1] || "", "", isAbsolutePath(path6) ? path6 : "/" + path6, match2[3] || "", match2[4] || "");
|
|
239162
239085
|
}
|
|
239163
|
-
function makeUrl(scheme, user, host, port, path6) {
|
|
239086
|
+
function makeUrl(scheme, user, host, port, path6, query, hash) {
|
|
239164
239087
|
return {
|
|
239165
239088
|
scheme,
|
|
239166
239089
|
user,
|
|
239167
239090
|
host,
|
|
239168
239091
|
port,
|
|
239169
239092
|
path: path6,
|
|
239170
|
-
|
|
239093
|
+
query,
|
|
239094
|
+
hash,
|
|
239095
|
+
type: 7
|
|
239171
239096
|
};
|
|
239172
239097
|
}
|
|
239173
239098
|
function parseUrl(input) {
|
|
239174
239099
|
if (isSchemeRelativeUrl(input)) {
|
|
239175
239100
|
const url2 = parseAbsoluteUrl("http:" + input);
|
|
239176
239101
|
url2.scheme = "";
|
|
239102
|
+
url2.type = 6;
|
|
239177
239103
|
return url2;
|
|
239178
239104
|
}
|
|
239179
239105
|
if (isAbsolutePath(input)) {
|
|
239180
239106
|
const url2 = parseAbsoluteUrl("http://foo.com" + input);
|
|
239181
239107
|
url2.scheme = "";
|
|
239182
239108
|
url2.host = "";
|
|
239109
|
+
url2.type = 5;
|
|
239183
239110
|
return url2;
|
|
239184
239111
|
}
|
|
239185
239112
|
if (isFileUrl(input))
|
|
@@ -239189,7 +239116,7 @@ function parseUrl(input) {
|
|
|
239189
239116
|
const url = parseAbsoluteUrl("http://foo.com/" + input);
|
|
239190
239117
|
url.scheme = "";
|
|
239191
239118
|
url.host = "";
|
|
239192
|
-
url.
|
|
239119
|
+
url.type = input ? input.startsWith("?") ? 3 : input.startsWith("#") ? 2 : 4 : 1;
|
|
239193
239120
|
return url;
|
|
239194
239121
|
}
|
|
239195
239122
|
function stripPathFilename(path6) {
|
|
@@ -239199,18 +239126,15 @@ function stripPathFilename(path6) {
|
|
|
239199
239126
|
return path6.slice(0, index2 + 1);
|
|
239200
239127
|
}
|
|
239201
239128
|
function mergePaths(url, base2) {
|
|
239202
|
-
|
|
239203
|
-
return;
|
|
239204
|
-
normalizePath4(base2);
|
|
239129
|
+
normalizePath4(base2, base2.type);
|
|
239205
239130
|
if (url.path === "/") {
|
|
239206
239131
|
url.path = base2.path;
|
|
239207
239132
|
} else {
|
|
239208
239133
|
url.path = stripPathFilename(base2.path) + url.path;
|
|
239209
239134
|
}
|
|
239210
|
-
url.relativePath = base2.relativePath;
|
|
239211
239135
|
}
|
|
239212
|
-
function normalizePath4(url) {
|
|
239213
|
-
const
|
|
239136
|
+
function normalizePath4(url, type) {
|
|
239137
|
+
const rel = type <= 4;
|
|
239214
239138
|
const pieces = url.path.split("/");
|
|
239215
239139
|
let pointer = 1;
|
|
239216
239140
|
let positive = 0;
|
|
@@ -239229,7 +239153,7 @@ function normalizePath4(url) {
|
|
|
239229
239153
|
addTrailingSlash = true;
|
|
239230
239154
|
positive--;
|
|
239231
239155
|
pointer--;
|
|
239232
|
-
} else if (
|
|
239156
|
+
} else if (rel) {
|
|
239233
239157
|
pieces[pointer++] = piece;
|
|
239234
239158
|
}
|
|
239235
239159
|
continue;
|
|
@@ -239246,36 +239170,59 @@ function normalizePath4(url) {
|
|
|
239246
239170
|
}
|
|
239247
239171
|
url.path = path6;
|
|
239248
239172
|
}
|
|
239249
|
-
function
|
|
239173
|
+
function resolve7(input, base2) {
|
|
239250
239174
|
if (!input && !base2)
|
|
239251
239175
|
return "";
|
|
239252
239176
|
const url = parseUrl(input);
|
|
239253
|
-
|
|
239177
|
+
let inputType = url.type;
|
|
239178
|
+
if (base2 && inputType !== 7) {
|
|
239254
239179
|
const baseUrl = parseUrl(base2);
|
|
239255
|
-
|
|
239256
|
-
|
|
239257
|
-
|
|
239258
|
-
|
|
239259
|
-
|
|
239180
|
+
const baseType = baseUrl.type;
|
|
239181
|
+
switch (inputType) {
|
|
239182
|
+
case 1:
|
|
239183
|
+
url.hash = baseUrl.hash;
|
|
239184
|
+
case 2:
|
|
239185
|
+
url.query = baseUrl.query;
|
|
239186
|
+
case 3:
|
|
239187
|
+
case 4:
|
|
239188
|
+
mergePaths(url, baseUrl);
|
|
239189
|
+
case 5:
|
|
239190
|
+
url.user = baseUrl.user;
|
|
239191
|
+
url.host = baseUrl.host;
|
|
239192
|
+
url.port = baseUrl.port;
|
|
239193
|
+
case 6:
|
|
239194
|
+
url.scheme = baseUrl.scheme;
|
|
239260
239195
|
}
|
|
239261
|
-
|
|
239196
|
+
if (baseType > inputType)
|
|
239197
|
+
inputType = baseType;
|
|
239262
239198
|
}
|
|
239263
|
-
normalizePath4(url);
|
|
239264
|
-
|
|
239265
|
-
|
|
239266
|
-
|
|
239267
|
-
|
|
239268
|
-
|
|
239269
|
-
|
|
239199
|
+
normalizePath4(url, inputType);
|
|
239200
|
+
const queryHash = url.query + url.hash;
|
|
239201
|
+
switch (inputType) {
|
|
239202
|
+
case 2:
|
|
239203
|
+
case 3:
|
|
239204
|
+
return queryHash;
|
|
239205
|
+
case 4: {
|
|
239206
|
+
const path6 = url.path.slice(1);
|
|
239207
|
+
if (!path6)
|
|
239208
|
+
return queryHash || ".";
|
|
239209
|
+
if (isRelative2(base2 || input) && !isRelative2(path6)) {
|
|
239210
|
+
return "./" + path6 + queryHash;
|
|
239211
|
+
}
|
|
239212
|
+
return path6 + queryHash;
|
|
239213
|
+
}
|
|
239214
|
+
case 5:
|
|
239215
|
+
return url.path + queryHash;
|
|
239216
|
+
default:
|
|
239217
|
+
return url.scheme + "//" + url.user + url.host + url.port + url.path + queryHash;
|
|
239270
239218
|
}
|
|
239271
|
-
if (!url.scheme && !url.host)
|
|
239272
|
-
return url.path;
|
|
239273
|
-
return `${url.scheme}//${url.user}${url.host}${url.port}${url.path}`;
|
|
239274
239219
|
}
|
|
239275
|
-
|
|
239220
|
+
|
|
239221
|
+
// node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs
|
|
239222
|
+
function resolve8(input, base2) {
|
|
239276
239223
|
if (base2 && !base2.endsWith("/"))
|
|
239277
239224
|
base2 += "/";
|
|
239278
|
-
return
|
|
239225
|
+
return resolve7(input, base2);
|
|
239279
239226
|
}
|
|
239280
239227
|
function stripFilename(path6) {
|
|
239281
239228
|
if (!path6)
|
|
@@ -239283,11 +239230,13 @@ function stripFilename(path6) {
|
|
|
239283
239230
|
const index2 = path6.lastIndexOf("/");
|
|
239284
239231
|
return path6.slice(0, index2 + 1);
|
|
239285
239232
|
}
|
|
239286
|
-
var COLUMN
|
|
239287
|
-
var SOURCES_INDEX
|
|
239288
|
-
var SOURCE_LINE
|
|
239289
|
-
var SOURCE_COLUMN
|
|
239290
|
-
var NAMES_INDEX
|
|
239233
|
+
var COLUMN = 0;
|
|
239234
|
+
var SOURCES_INDEX = 1;
|
|
239235
|
+
var SOURCE_LINE = 2;
|
|
239236
|
+
var SOURCE_COLUMN = 3;
|
|
239237
|
+
var NAMES_INDEX = 4;
|
|
239238
|
+
var REV_GENERATED_LINE = 1;
|
|
239239
|
+
var REV_GENERATED_COLUMN = 2;
|
|
239291
239240
|
function maybeSort(mappings, owned) {
|
|
239292
239241
|
const unsortedIndex = nextUnsortedSegmentLine(mappings, 0);
|
|
239293
239242
|
if (unsortedIndex === mappings.length)
|
|
@@ -239308,7 +239257,7 @@ function nextUnsortedSegmentLine(mappings, start) {
|
|
|
239308
239257
|
}
|
|
239309
239258
|
function isSorted(line) {
|
|
239310
239259
|
for (let j = 1; j < line.length; j++) {
|
|
239311
|
-
if (line[j][COLUMN
|
|
239260
|
+
if (line[j][COLUMN] < line[j - 1][COLUMN]) {
|
|
239312
239261
|
return false;
|
|
239313
239262
|
}
|
|
239314
239263
|
}
|
|
@@ -239317,16 +239266,16 @@ function isSorted(line) {
|
|
|
239317
239266
|
function sortSegments(line, owned) {
|
|
239318
239267
|
if (!owned)
|
|
239319
239268
|
line = line.slice();
|
|
239320
|
-
return line.sort(
|
|
239269
|
+
return line.sort(sortComparator2);
|
|
239321
239270
|
}
|
|
239322
|
-
function
|
|
239323
|
-
return a[COLUMN
|
|
239271
|
+
function sortComparator2(a, b) {
|
|
239272
|
+
return a[COLUMN] - b[COLUMN];
|
|
239324
239273
|
}
|
|
239325
239274
|
var found = false;
|
|
239326
239275
|
function binarySearch(haystack, needle, low, high) {
|
|
239327
239276
|
while (low <= high) {
|
|
239328
239277
|
const mid = low + (high - low >> 1);
|
|
239329
|
-
const cmp = haystack[mid][COLUMN
|
|
239278
|
+
const cmp = haystack[mid][COLUMN] - needle;
|
|
239330
239279
|
if (cmp === 0) {
|
|
239331
239280
|
found = true;
|
|
239332
239281
|
return mid;
|
|
@@ -239341,15 +239290,15 @@ function binarySearch(haystack, needle, low, high) {
|
|
|
239341
239290
|
return low - 1;
|
|
239342
239291
|
}
|
|
239343
239292
|
function upperBound(haystack, needle, index2) {
|
|
239344
|
-
for (let i = index2 + 1; i < haystack.length; i
|
|
239345
|
-
if (haystack[i][COLUMN
|
|
239293
|
+
for (let i = index2 + 1; i < haystack.length; index2 = i++) {
|
|
239294
|
+
if (haystack[i][COLUMN] !== needle)
|
|
239346
239295
|
break;
|
|
239347
239296
|
}
|
|
239348
239297
|
return index2;
|
|
239349
239298
|
}
|
|
239350
239299
|
function lowerBound(haystack, needle, index2) {
|
|
239351
|
-
for (let i = index2 - 1; i >= 0; i
|
|
239352
|
-
if (haystack[i][COLUMN
|
|
239300
|
+
for (let i = index2 - 1; i >= 0; index2 = i--) {
|
|
239301
|
+
if (haystack[i][COLUMN] !== needle)
|
|
239353
239302
|
break;
|
|
239354
239303
|
}
|
|
239355
239304
|
return index2;
|
|
@@ -239367,7 +239316,7 @@ function memoizedBinarySearch(haystack, needle, state, key) {
|
|
|
239367
239316
|
let high = haystack.length - 1;
|
|
239368
239317
|
if (key === lastKey) {
|
|
239369
239318
|
if (needle === lastNeedle) {
|
|
239370
|
-
found = lastIndex !== -1 && haystack[lastIndex][COLUMN
|
|
239319
|
+
found = lastIndex !== -1 && haystack[lastIndex][COLUMN] === needle;
|
|
239371
239320
|
return lastIndex;
|
|
239372
239321
|
}
|
|
239373
239322
|
if (needle >= lastNeedle) {
|
|
@@ -239380,68 +239329,118 @@ function memoizedBinarySearch(haystack, needle, state, key) {
|
|
|
239380
239329
|
state.lastNeedle = needle;
|
|
239381
239330
|
return state.lastIndex = binarySearch(haystack, needle, low, high);
|
|
239382
239331
|
}
|
|
239332
|
+
function buildBySources(decoded, memos) {
|
|
239333
|
+
const sources = memos.map(buildNullArray);
|
|
239334
|
+
for (let i = 0; i < decoded.length; i++) {
|
|
239335
|
+
const line = decoded[i];
|
|
239336
|
+
for (let j = 0; j < line.length; j++) {
|
|
239337
|
+
const seg = line[j];
|
|
239338
|
+
if (seg.length === 1)
|
|
239339
|
+
continue;
|
|
239340
|
+
const sourceIndex2 = seg[SOURCES_INDEX];
|
|
239341
|
+
const sourceLine = seg[SOURCE_LINE];
|
|
239342
|
+
const sourceColumn = seg[SOURCE_COLUMN];
|
|
239343
|
+
const originalSource = sources[sourceIndex2];
|
|
239344
|
+
const originalLine = originalSource[sourceLine] || (originalSource[sourceLine] = []);
|
|
239345
|
+
const memo = memos[sourceIndex2];
|
|
239346
|
+
let index2 = upperBound(originalLine, sourceColumn, memoizedBinarySearch(originalLine, sourceColumn, memo, sourceLine));
|
|
239347
|
+
memo.lastIndex = ++index2;
|
|
239348
|
+
insert2(originalLine, index2, [sourceColumn, i, seg[COLUMN]]);
|
|
239349
|
+
}
|
|
239350
|
+
}
|
|
239351
|
+
return sources;
|
|
239352
|
+
}
|
|
239353
|
+
function insert2(array, index2, value) {
|
|
239354
|
+
for (let i = array.length; i > index2; i--) {
|
|
239355
|
+
array[i] = array[i - 1];
|
|
239356
|
+
}
|
|
239357
|
+
array[index2] = value;
|
|
239358
|
+
}
|
|
239359
|
+
function buildNullArray() {
|
|
239360
|
+
return { __proto__: null };
|
|
239361
|
+
}
|
|
239383
239362
|
var AnyMap = function(map2, mapUrl) {
|
|
239384
|
-
const parsed =
|
|
239385
|
-
if (!("sections" in parsed))
|
|
239363
|
+
const parsed = parse3(map2);
|
|
239364
|
+
if (!("sections" in parsed)) {
|
|
239386
239365
|
return new TraceMap(parsed, mapUrl);
|
|
239366
|
+
}
|
|
239387
239367
|
const mappings = [];
|
|
239388
239368
|
const sources = [];
|
|
239389
239369
|
const sourcesContent = [];
|
|
239390
239370
|
const names = [];
|
|
239391
|
-
const
|
|
239392
|
-
|
|
239393
|
-
for (; i < sections.length - 1; i++) {
|
|
239394
|
-
const no = sections[i + 1].offset;
|
|
239395
|
-
addSection(sections[i], mapUrl, mappings, sources, sourcesContent, names, no.line, no.column);
|
|
239396
|
-
}
|
|
239397
|
-
if (sections.length > 0) {
|
|
239398
|
-
addSection(sections[i], mapUrl, mappings, sources, sourcesContent, names, Infinity, Infinity);
|
|
239399
|
-
}
|
|
239371
|
+
const ignoreList = [];
|
|
239372
|
+
recurse(parsed, mapUrl, mappings, sources, sourcesContent, names, ignoreList, 0, 0, Infinity, Infinity);
|
|
239400
239373
|
const joined = {
|
|
239401
239374
|
version: 3,
|
|
239402
239375
|
file: parsed.file,
|
|
239403
239376
|
names,
|
|
239404
239377
|
sources,
|
|
239405
239378
|
sourcesContent,
|
|
239406
|
-
mappings
|
|
239379
|
+
mappings,
|
|
239380
|
+
ignoreList
|
|
239407
239381
|
};
|
|
239408
239382
|
return presortedDecodedMap(joined);
|
|
239409
239383
|
};
|
|
239410
|
-
function
|
|
239411
|
-
|
|
239412
|
-
|
|
239384
|
+
function parse3(map2) {
|
|
239385
|
+
return typeof map2 === "string" ? JSON.parse(map2) : map2;
|
|
239386
|
+
}
|
|
239387
|
+
function recurse(input, mapUrl, mappings, sources, sourcesContent, names, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
239388
|
+
const { sections } = input;
|
|
239389
|
+
for (let i = 0; i < sections.length; i++) {
|
|
239390
|
+
const { map: map2, offset: offset2 } = sections[i];
|
|
239391
|
+
let sl = stopLine;
|
|
239392
|
+
let sc = stopColumn;
|
|
239393
|
+
if (i + 1 < sections.length) {
|
|
239394
|
+
const nextOffset = sections[i + 1].offset;
|
|
239395
|
+
sl = Math.min(stopLine, lineOffset + nextOffset.line);
|
|
239396
|
+
if (sl === stopLine) {
|
|
239397
|
+
sc = Math.min(stopColumn, columnOffset + nextOffset.column);
|
|
239398
|
+
} else if (sl < stopLine) {
|
|
239399
|
+
sc = columnOffset + nextOffset.column;
|
|
239400
|
+
}
|
|
239401
|
+
}
|
|
239402
|
+
addSection(map2, mapUrl, mappings, sources, sourcesContent, names, ignoreList, lineOffset + offset2.line, columnOffset + offset2.column, sl, sc);
|
|
239403
|
+
}
|
|
239404
|
+
}
|
|
239405
|
+
function addSection(input, mapUrl, mappings, sources, sourcesContent, names, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
239406
|
+
const parsed = parse3(input);
|
|
239407
|
+
if ("sections" in parsed)
|
|
239408
|
+
return recurse(...arguments);
|
|
239409
|
+
const map2 = new TraceMap(parsed, mapUrl);
|
|
239413
239410
|
const sourcesOffset = sources.length;
|
|
239414
239411
|
const namesOffset = names.length;
|
|
239415
239412
|
const decoded = decodedMappings(map2);
|
|
239416
|
-
const { resolvedSources } = map2;
|
|
239413
|
+
const { resolvedSources, sourcesContent: contents, ignoreList: ignores } = map2;
|
|
239417
239414
|
append3(sources, resolvedSources);
|
|
239418
|
-
append3(sourcesContent, map2.sourcesContent || fillSourcesContent(resolvedSources.length));
|
|
239419
239415
|
append3(names, map2.names);
|
|
239420
|
-
|
|
239421
|
-
|
|
239422
|
-
|
|
239423
|
-
|
|
239424
|
-
|
|
239425
|
-
|
|
239426
|
-
|
|
239416
|
+
if (contents)
|
|
239417
|
+
append3(sourcesContent, contents);
|
|
239418
|
+
else
|
|
239419
|
+
for (let i = 0; i < resolvedSources.length; i++)
|
|
239420
|
+
sourcesContent.push(null);
|
|
239421
|
+
if (ignores)
|
|
239422
|
+
for (let i = 0; i < ignores.length; i++)
|
|
239423
|
+
ignoreList.push(ignores[i] + sourcesOffset);
|
|
239424
|
+
for (let i = 0; i < decoded.length; i++) {
|
|
239425
|
+
const lineI = lineOffset + i;
|
|
239426
|
+
if (lineI > stopLine)
|
|
239427
|
+
return;
|
|
239428
|
+
const out = getLine(mappings, lineI);
|
|
239427
239429
|
const cOffset = i === 0 ? columnOffset : 0;
|
|
239430
|
+
const line = decoded[i];
|
|
239428
239431
|
for (let j = 0; j < line.length; j++) {
|
|
239429
239432
|
const seg = line[j];
|
|
239430
|
-
const column = cOffset + seg[COLUMN
|
|
239431
|
-
if (
|
|
239432
|
-
|
|
239433
|
+
const column = cOffset + seg[COLUMN];
|
|
239434
|
+
if (lineI === stopLine && column >= stopColumn)
|
|
239435
|
+
return;
|
|
239433
239436
|
if (seg.length === 1) {
|
|
239434
239437
|
out.push([column]);
|
|
239435
239438
|
continue;
|
|
239436
239439
|
}
|
|
239437
|
-
const sourcesIndex = sourcesOffset + seg[SOURCES_INDEX
|
|
239438
|
-
const sourceLine = seg[SOURCE_LINE
|
|
239439
|
-
const sourceColumn = seg[SOURCE_COLUMN
|
|
239440
|
-
|
|
239441
|
-
out.push([column, sourcesIndex, sourceLine, sourceColumn]);
|
|
239442
|
-
continue;
|
|
239443
|
-
}
|
|
239444
|
-
out.push([column, sourcesIndex, sourceLine, sourceColumn, namesOffset + seg[NAMES_INDEX$1]]);
|
|
239440
|
+
const sourcesIndex = sourcesOffset + seg[SOURCES_INDEX];
|
|
239441
|
+
const sourceLine = seg[SOURCE_LINE];
|
|
239442
|
+
const sourceColumn = seg[SOURCE_COLUMN];
|
|
239443
|
+
out.push(seg.length === 4 ? [column, sourcesIndex, sourceLine, sourceColumn] : [column, sourcesIndex, sourceLine, sourceColumn, namesOffset + seg[NAMES_INDEX]]);
|
|
239445
239444
|
}
|
|
239446
239445
|
}
|
|
239447
239446
|
}
|
|
@@ -239449,51 +239448,31 @@ function append3(arr, other) {
|
|
|
239449
239448
|
for (let i = 0; i < other.length; i++)
|
|
239450
239449
|
arr.push(other[i]);
|
|
239451
239450
|
}
|
|
239452
|
-
function
|
|
239453
|
-
|
|
239454
|
-
|
|
239455
|
-
|
|
239456
|
-
return sourcesContent;
|
|
239451
|
+
function getLine(arr, index2) {
|
|
239452
|
+
for (let i = arr.length; i <= index2; i++)
|
|
239453
|
+
arr[i] = [];
|
|
239454
|
+
return arr[index2];
|
|
239457
239455
|
}
|
|
239458
|
-
var INVALID_ORIGINAL_MAPPING = Object.freeze({
|
|
239459
|
-
source: null,
|
|
239460
|
-
line: null,
|
|
239461
|
-
column: null,
|
|
239462
|
-
name: null
|
|
239463
|
-
});
|
|
239464
|
-
Object.freeze({
|
|
239465
|
-
line: null,
|
|
239466
|
-
column: null
|
|
239467
|
-
});
|
|
239468
239456
|
var LINE_GTR_ZERO = "`line` must be greater than 0 (lines start at line 1)";
|
|
239469
239457
|
var COL_GTR_EQ_ZERO = "`column` must be greater than or equal to 0 (columns start at column 0)";
|
|
239470
239458
|
var LEAST_UPPER_BOUND = -1;
|
|
239471
239459
|
var GREATEST_LOWER_BOUND = 1;
|
|
239472
|
-
var
|
|
239473
|
-
var originalPositionFor;
|
|
239474
|
-
var presortedDecodedMap;
|
|
239475
|
-
var TraceMap = class _TraceMap {
|
|
239460
|
+
var TraceMap = class {
|
|
239476
239461
|
constructor(map2, mapUrl) {
|
|
239477
|
-
this._decodedMemo = memoizedState();
|
|
239478
|
-
this._bySources = void 0;
|
|
239479
|
-
this._bySourceMemos = void 0;
|
|
239480
239462
|
const isString3 = typeof map2 === "string";
|
|
239481
|
-
if (!isString3 && map2.
|
|
239463
|
+
if (!isString3 && map2._decodedMemo)
|
|
239482
239464
|
return map2;
|
|
239483
239465
|
const parsed = isString3 ? JSON.parse(map2) : map2;
|
|
239484
239466
|
const { version: version3, file, names, sourceRoot, sources, sourcesContent } = parsed;
|
|
239485
239467
|
this.version = version3;
|
|
239486
239468
|
this.file = file;
|
|
239487
|
-
this.names = names;
|
|
239469
|
+
this.names = names || [];
|
|
239488
239470
|
this.sourceRoot = sourceRoot;
|
|
239489
239471
|
this.sources = sources;
|
|
239490
239472
|
this.sourcesContent = sourcesContent;
|
|
239491
|
-
|
|
239492
|
-
|
|
239493
|
-
|
|
239494
|
-
} else {
|
|
239495
|
-
this.resolvedSources = sources.map((s) => s || "");
|
|
239496
|
-
}
|
|
239473
|
+
this.ignoreList = parsed.ignoreList || parsed.x_google_ignoreList || void 0;
|
|
239474
|
+
const from = resolve8(sourceRoot || "", stripFilename(mapUrl));
|
|
239475
|
+
this.resolvedSources = sources.map((s) => resolve8(s || "", from));
|
|
239497
239476
|
const { mappings } = parsed;
|
|
239498
239477
|
if (typeof mappings === "string") {
|
|
239499
239478
|
this._encoded = mappings;
|
|
@@ -239502,42 +239481,119 @@ var TraceMap = class _TraceMap {
|
|
|
239502
239481
|
this._encoded = void 0;
|
|
239503
239482
|
this._decoded = maybeSort(mappings, isString3);
|
|
239504
239483
|
}
|
|
239484
|
+
this._decodedMemo = memoizedState();
|
|
239485
|
+
this._bySources = void 0;
|
|
239486
|
+
this._bySourceMemos = void 0;
|
|
239505
239487
|
}
|
|
239506
239488
|
};
|
|
239507
|
-
(
|
|
239508
|
-
|
|
239509
|
-
|
|
239510
|
-
|
|
239511
|
-
|
|
239512
|
-
|
|
239513
|
-
|
|
239514
|
-
|
|
239515
|
-
|
|
239516
|
-
|
|
239517
|
-
|
|
239518
|
-
|
|
239519
|
-
|
|
239520
|
-
|
|
239521
|
-
|
|
239522
|
-
|
|
239523
|
-
|
|
239524
|
-
|
|
239525
|
-
|
|
239526
|
-
|
|
239527
|
-
|
|
239528
|
-
|
|
239529
|
-
|
|
239530
|
-
|
|
239531
|
-
|
|
239532
|
-
|
|
239533
|
-
|
|
239534
|
-
|
|
239535
|
-
|
|
239536
|
-
|
|
239537
|
-
|
|
239538
|
-
|
|
239489
|
+
function cast(map2) {
|
|
239490
|
+
return map2;
|
|
239491
|
+
}
|
|
239492
|
+
function encodedMappings(map2) {
|
|
239493
|
+
var _a;
|
|
239494
|
+
var _b;
|
|
239495
|
+
return (_a = (_b = cast(map2))._encoded) !== null && _a !== void 0 ? _a : _b._encoded = encode(cast(map2)._decoded);
|
|
239496
|
+
}
|
|
239497
|
+
function decodedMappings(map2) {
|
|
239498
|
+
var _a;
|
|
239499
|
+
return (_a = cast(map2))._decoded || (_a._decoded = decode(cast(map2)._encoded));
|
|
239500
|
+
}
|
|
239501
|
+
function originalPositionFor(map2, needle) {
|
|
239502
|
+
let { line, column, bias } = needle;
|
|
239503
|
+
line--;
|
|
239504
|
+
if (line < 0)
|
|
239505
|
+
throw new Error(LINE_GTR_ZERO);
|
|
239506
|
+
if (column < 0)
|
|
239507
|
+
throw new Error(COL_GTR_EQ_ZERO);
|
|
239508
|
+
const decoded = decodedMappings(map2);
|
|
239509
|
+
if (line >= decoded.length)
|
|
239510
|
+
return OMapping(null, null, null, null);
|
|
239511
|
+
const segments = decoded[line];
|
|
239512
|
+
const index2 = traceSegmentInternal(segments, cast(map2)._decodedMemo, line, column, bias || GREATEST_LOWER_BOUND);
|
|
239513
|
+
if (index2 === -1)
|
|
239514
|
+
return OMapping(null, null, null, null);
|
|
239515
|
+
const segment = segments[index2];
|
|
239516
|
+
if (segment.length === 1)
|
|
239517
|
+
return OMapping(null, null, null, null);
|
|
239518
|
+
const { names, resolvedSources } = map2;
|
|
239519
|
+
return OMapping(resolvedSources[segment[SOURCES_INDEX]], segment[SOURCE_LINE] + 1, segment[SOURCE_COLUMN], segment.length === 5 ? names[segment[NAMES_INDEX]] : null);
|
|
239520
|
+
}
|
|
239521
|
+
function generatedPositionFor(map2, needle) {
|
|
239522
|
+
const { source, line, column, bias } = needle;
|
|
239523
|
+
return generatedPosition(map2, source, line, column, bias || GREATEST_LOWER_BOUND, false);
|
|
239524
|
+
}
|
|
239525
|
+
function allGeneratedPositionsFor(map2, needle) {
|
|
239526
|
+
const { source, line, column, bias } = needle;
|
|
239527
|
+
return generatedPosition(map2, source, line, column, bias || LEAST_UPPER_BOUND, true);
|
|
239528
|
+
}
|
|
239529
|
+
function eachMapping(map2, cb) {
|
|
239530
|
+
const decoded = decodedMappings(map2);
|
|
239531
|
+
const { names, resolvedSources } = map2;
|
|
239532
|
+
for (let i = 0; i < decoded.length; i++) {
|
|
239533
|
+
const line = decoded[i];
|
|
239534
|
+
for (let j = 0; j < line.length; j++) {
|
|
239535
|
+
const seg = line[j];
|
|
239536
|
+
const generatedLine = i + 1;
|
|
239537
|
+
const generatedColumn = seg[0];
|
|
239538
|
+
let source = null;
|
|
239539
|
+
let originalLine = null;
|
|
239540
|
+
let originalColumn = null;
|
|
239541
|
+
let name = null;
|
|
239542
|
+
if (seg.length !== 1) {
|
|
239543
|
+
source = resolvedSources[seg[1]];
|
|
239544
|
+
originalLine = seg[2] + 1;
|
|
239545
|
+
originalColumn = seg[3];
|
|
239546
|
+
}
|
|
239547
|
+
if (seg.length === 5)
|
|
239548
|
+
name = names[seg[4]];
|
|
239549
|
+
cb({
|
|
239550
|
+
generatedLine,
|
|
239551
|
+
generatedColumn,
|
|
239552
|
+
source,
|
|
239553
|
+
originalLine,
|
|
239554
|
+
originalColumn,
|
|
239555
|
+
name
|
|
239556
|
+
});
|
|
239557
|
+
}
|
|
239558
|
+
}
|
|
239559
|
+
}
|
|
239560
|
+
function sourceIndex(map2, source) {
|
|
239561
|
+
const { sources, resolvedSources } = map2;
|
|
239562
|
+
let index2 = sources.indexOf(source);
|
|
239563
|
+
if (index2 === -1)
|
|
239564
|
+
index2 = resolvedSources.indexOf(source);
|
|
239565
|
+
return index2;
|
|
239566
|
+
}
|
|
239567
|
+
function sourceContentFor(map2, source) {
|
|
239568
|
+
const { sourcesContent } = map2;
|
|
239569
|
+
if (sourcesContent == null)
|
|
239570
|
+
return null;
|
|
239571
|
+
const index2 = sourceIndex(map2, source);
|
|
239572
|
+
return index2 === -1 ? null : sourcesContent[index2];
|
|
239573
|
+
}
|
|
239574
|
+
function presortedDecodedMap(map2, mapUrl) {
|
|
239575
|
+
const tracer = new TraceMap(clone4(map2, []), mapUrl);
|
|
239576
|
+
cast(tracer)._decoded = map2.mappings;
|
|
239577
|
+
return tracer;
|
|
239578
|
+
}
|
|
239579
|
+
function clone4(map2, mappings) {
|
|
239580
|
+
return {
|
|
239581
|
+
version: map2.version,
|
|
239582
|
+
file: map2.file,
|
|
239583
|
+
names: map2.names,
|
|
239584
|
+
sourceRoot: map2.sourceRoot,
|
|
239585
|
+
sources: map2.sources,
|
|
239586
|
+
sourcesContent: map2.sourcesContent,
|
|
239587
|
+
mappings,
|
|
239588
|
+
ignoreList: map2.ignoreList || map2.x_google_ignoreList
|
|
239539
239589
|
};
|
|
239540
|
-
}
|
|
239590
|
+
}
|
|
239591
|
+
function OMapping(source, line, column, name) {
|
|
239592
|
+
return { source, line, column, name };
|
|
239593
|
+
}
|
|
239594
|
+
function GMapping(line, column) {
|
|
239595
|
+
return { line, column };
|
|
239596
|
+
}
|
|
239541
239597
|
function traceSegmentInternal(segments, memo, line, column, bias) {
|
|
239542
239598
|
let index2 = memoizedBinarySearch(segments, column, memo, line);
|
|
239543
239599
|
if (found) {
|
|
@@ -239545,38 +239601,82 @@ function traceSegmentInternal(segments, memo, line, column, bias) {
|
|
|
239545
239601
|
} else if (bias === LEAST_UPPER_BOUND)
|
|
239546
239602
|
index2++;
|
|
239547
239603
|
if (index2 === -1 || index2 === segments.length)
|
|
239548
|
-
return
|
|
239549
|
-
return
|
|
239604
|
+
return -1;
|
|
239605
|
+
return index2;
|
|
239550
239606
|
}
|
|
239551
|
-
|
|
239552
|
-
|
|
239607
|
+
function sliceGeneratedPositions(segments, memo, line, column, bias) {
|
|
239608
|
+
let min = traceSegmentInternal(segments, memo, line, column, GREATEST_LOWER_BOUND);
|
|
239609
|
+
if (!found && bias === LEAST_UPPER_BOUND)
|
|
239610
|
+
min++;
|
|
239611
|
+
if (min === -1 || min === segments.length)
|
|
239612
|
+
return [];
|
|
239613
|
+
const matchedColumn = found ? column : segments[min][COLUMN];
|
|
239614
|
+
if (!found)
|
|
239615
|
+
min = lowerBound(segments, matchedColumn, min);
|
|
239616
|
+
const max = upperBound(segments, matchedColumn, min);
|
|
239617
|
+
const result2 = [];
|
|
239618
|
+
for (; min <= max; min++) {
|
|
239619
|
+
const segment = segments[min];
|
|
239620
|
+
result2.push(GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN]));
|
|
239621
|
+
}
|
|
239622
|
+
return result2;
|
|
239623
|
+
}
|
|
239624
|
+
function generatedPosition(map2, source, line, column, bias, all) {
|
|
239625
|
+
var _a;
|
|
239626
|
+
line--;
|
|
239627
|
+
if (line < 0)
|
|
239628
|
+
throw new Error(LINE_GTR_ZERO);
|
|
239629
|
+
if (column < 0)
|
|
239630
|
+
throw new Error(COL_GTR_EQ_ZERO);
|
|
239631
|
+
const { sources, resolvedSources } = map2;
|
|
239632
|
+
let sourceIndex2 = sources.indexOf(source);
|
|
239633
|
+
if (sourceIndex2 === -1)
|
|
239634
|
+
sourceIndex2 = resolvedSources.indexOf(source);
|
|
239635
|
+
if (sourceIndex2 === -1)
|
|
239636
|
+
return all ? [] : GMapping(null, null);
|
|
239637
|
+
const generated = (_a = cast(map2))._bySources || (_a._bySources = buildBySources(decodedMappings(map2), cast(map2)._bySourceMemos = sources.map(memoizedState)));
|
|
239638
|
+
const segments = generated[sourceIndex2][line];
|
|
239639
|
+
if (segments == null)
|
|
239640
|
+
return all ? [] : GMapping(null, null);
|
|
239641
|
+
const memo = cast(map2)._bySourceMemos[sourceIndex2];
|
|
239642
|
+
if (all)
|
|
239643
|
+
return sliceGeneratedPositions(segments, memo, line, column, bias);
|
|
239644
|
+
const index2 = traceSegmentInternal(segments, memo, line, column, bias);
|
|
239645
|
+
if (index2 === -1)
|
|
239646
|
+
return GMapping(null, null);
|
|
239647
|
+
const segment = segments[index2];
|
|
239648
|
+
return GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN]);
|
|
239649
|
+
}
|
|
239650
|
+
|
|
239651
|
+
// node_modules/@jridgewell/set-array/dist/set-array.mjs
|
|
239553
239652
|
var SetArray = class {
|
|
239554
239653
|
constructor() {
|
|
239555
239654
|
this._indexes = { __proto__: null };
|
|
239556
239655
|
this.array = [];
|
|
239557
239656
|
}
|
|
239558
239657
|
};
|
|
239559
|
-
(
|
|
239560
|
-
|
|
239561
|
-
|
|
239562
|
-
|
|
239563
|
-
|
|
239564
|
-
|
|
239565
|
-
|
|
239566
|
-
|
|
239567
|
-
|
|
239568
|
-
|
|
239569
|
-
|
|
239570
|
-
|
|
239571
|
-
|
|
239572
|
-
|
|
239573
|
-
|
|
239658
|
+
function cast2(set) {
|
|
239659
|
+
return set;
|
|
239660
|
+
}
|
|
239661
|
+
function get(setarr, key) {
|
|
239662
|
+
return cast2(setarr)._indexes[key];
|
|
239663
|
+
}
|
|
239664
|
+
function put(setarr, key) {
|
|
239665
|
+
const index2 = get(setarr, key);
|
|
239666
|
+
if (index2 !== void 0)
|
|
239667
|
+
return index2;
|
|
239668
|
+
const { array, _indexes: indexes } = cast2(setarr);
|
|
239669
|
+
const length3 = array.push(key);
|
|
239670
|
+
return indexes[key] = length3 - 1;
|
|
239671
|
+
}
|
|
239672
|
+
|
|
239673
|
+
// node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs
|
|
239674
|
+
var COLUMN2 = 0;
|
|
239675
|
+
var SOURCES_INDEX2 = 1;
|
|
239676
|
+
var SOURCE_LINE2 = 2;
|
|
239677
|
+
var SOURCE_COLUMN2 = 3;
|
|
239678
|
+
var NAMES_INDEX2 = 4;
|
|
239574
239679
|
var NO_NAME = -1;
|
|
239575
|
-
var maybeAddMapping;
|
|
239576
|
-
var setSourceContent;
|
|
239577
|
-
var toDecodedMap;
|
|
239578
|
-
var toEncodedMap;
|
|
239579
|
-
var addSegmentInternal;
|
|
239580
239680
|
var GenMapping = class {
|
|
239581
239681
|
constructor({ file, sourceRoot } = {}) {
|
|
239582
239682
|
this._names = new SetArray();
|
|
@@ -239585,53 +239685,68 @@ var GenMapping = class {
|
|
|
239585
239685
|
this._mappings = [];
|
|
239586
239686
|
this.file = file;
|
|
239587
239687
|
this.sourceRoot = sourceRoot;
|
|
239688
|
+
this._ignoreList = new SetArray();
|
|
239588
239689
|
}
|
|
239589
239690
|
};
|
|
239590
|
-
(
|
|
239591
|
-
|
|
239592
|
-
|
|
239593
|
-
|
|
239594
|
-
|
|
239595
|
-
|
|
239596
|
-
|
|
239597
|
-
};
|
|
239598
|
-
|
|
239599
|
-
|
|
239600
|
-
|
|
239601
|
-
|
|
239602
|
-
|
|
239603
|
-
|
|
239604
|
-
|
|
239605
|
-
|
|
239606
|
-
|
|
239607
|
-
|
|
239608
|
-
|
|
239609
|
-
|
|
239610
|
-
|
|
239611
|
-
|
|
239612
|
-
|
|
239613
|
-
return Object.assign(Object.assign({}, decoded), { mappings: encode3(decoded.mappings) });
|
|
239691
|
+
function cast3(map2) {
|
|
239692
|
+
return map2;
|
|
239693
|
+
}
|
|
239694
|
+
var maybeAddMapping = (map2, mapping) => {
|
|
239695
|
+
return addMappingInternal(true, map2, mapping);
|
|
239696
|
+
};
|
|
239697
|
+
function setSourceContent(map2, source, content) {
|
|
239698
|
+
const { _sources: sources, _sourcesContent: sourcesContent } = cast3(map2);
|
|
239699
|
+
const index2 = put(sources, source);
|
|
239700
|
+
sourcesContent[index2] = content;
|
|
239701
|
+
}
|
|
239702
|
+
function toDecodedMap(map2) {
|
|
239703
|
+
const { _mappings: mappings, _sources: sources, _sourcesContent: sourcesContent, _names: names, _ignoreList: ignoreList } = cast3(map2);
|
|
239704
|
+
removeEmptyFinalLines(mappings);
|
|
239705
|
+
return {
|
|
239706
|
+
version: 3,
|
|
239707
|
+
file: map2.file || void 0,
|
|
239708
|
+
names: names.array,
|
|
239709
|
+
sourceRoot: map2.sourceRoot || void 0,
|
|
239710
|
+
sources: sources.array,
|
|
239711
|
+
sourcesContent,
|
|
239712
|
+
mappings,
|
|
239713
|
+
ignoreList: ignoreList.array
|
|
239614
239714
|
};
|
|
239615
|
-
|
|
239616
|
-
|
|
239617
|
-
|
|
239618
|
-
|
|
239619
|
-
|
|
239620
|
-
|
|
239621
|
-
|
|
239622
|
-
|
|
239623
|
-
|
|
239624
|
-
|
|
239625
|
-
|
|
239626
|
-
|
|
239627
|
-
|
|
239628
|
-
|
|
239715
|
+
}
|
|
239716
|
+
function toEncodedMap(map2) {
|
|
239717
|
+
const decoded = toDecodedMap(map2);
|
|
239718
|
+
return Object.assign(Object.assign({}, decoded), { mappings: encode(decoded.mappings) });
|
|
239719
|
+
}
|
|
239720
|
+
function fromMap(input) {
|
|
239721
|
+
const map2 = new TraceMap(input);
|
|
239722
|
+
const gen = new GenMapping({ file: map2.file, sourceRoot: map2.sourceRoot });
|
|
239723
|
+
putAll(cast3(gen)._names, map2.names);
|
|
239724
|
+
putAll(cast3(gen)._sources, map2.sources);
|
|
239725
|
+
cast3(gen)._sourcesContent = map2.sourcesContent || map2.sources.map(() => null);
|
|
239726
|
+
cast3(gen)._mappings = decodedMappings(map2);
|
|
239727
|
+
if (map2.ignoreList)
|
|
239728
|
+
putAll(cast3(gen)._ignoreList, map2.ignoreList);
|
|
239729
|
+
return gen;
|
|
239730
|
+
}
|
|
239731
|
+
function addSegmentInternal(skipable, map2, genLine, genColumn, source, sourceLine, sourceColumn, name, content) {
|
|
239732
|
+
const { _mappings: mappings, _sources: sources, _sourcesContent: sourcesContent, _names: names } = cast3(map2);
|
|
239733
|
+
const line = getLine2(mappings, genLine);
|
|
239734
|
+
const index2 = getColumnIndex(line, genColumn);
|
|
239735
|
+
if (!source) {
|
|
239736
|
+
if (skipable && skipSourceless(line, index2))
|
|
239629
239737
|
return;
|
|
239630
|
-
|
|
239631
|
-
|
|
239632
|
-
|
|
239633
|
-
|
|
239634
|
-
|
|
239738
|
+
return insert3(line, index2, [genColumn]);
|
|
239739
|
+
}
|
|
239740
|
+
const sourcesIndex = put(sources, source);
|
|
239741
|
+
const namesIndex = name ? put(names, name) : NO_NAME;
|
|
239742
|
+
if (sourcesIndex === sourcesContent.length)
|
|
239743
|
+
sourcesContent[sourcesIndex] = content !== null && content !== void 0 ? content : null;
|
|
239744
|
+
if (skipable && skipSource(line, index2, sourcesIndex, sourceLine, sourceColumn, namesIndex)) {
|
|
239745
|
+
return;
|
|
239746
|
+
}
|
|
239747
|
+
return insert3(line, index2, name ? [genColumn, sourcesIndex, sourceLine, sourceColumn, namesIndex] : [genColumn, sourcesIndex, sourceLine, sourceColumn]);
|
|
239748
|
+
}
|
|
239749
|
+
function getLine2(mappings, index2) {
|
|
239635
239750
|
for (let i = mappings.length; i <= index2; i++) {
|
|
239636
239751
|
mappings[i] = [];
|
|
239637
239752
|
}
|
|
@@ -239641,12 +239756,12 @@ function getColumnIndex(line, genColumn) {
|
|
|
239641
239756
|
let index2 = line.length;
|
|
239642
239757
|
for (let i = index2 - 1; i >= 0; index2 = i--) {
|
|
239643
239758
|
const current2 = line[i];
|
|
239644
|
-
if (genColumn >= current2[
|
|
239759
|
+
if (genColumn >= current2[COLUMN2])
|
|
239645
239760
|
break;
|
|
239646
239761
|
}
|
|
239647
239762
|
return index2;
|
|
239648
239763
|
}
|
|
239649
|
-
function
|
|
239764
|
+
function insert3(array, index2, value) {
|
|
239650
239765
|
for (let i = array.length; i > index2; i--) {
|
|
239651
239766
|
array[i] = array[i - 1];
|
|
239652
239767
|
}
|
|
@@ -239662,6 +239777,10 @@ function removeEmptyFinalLines(mappings) {
|
|
|
239662
239777
|
if (len < length3)
|
|
239663
239778
|
mappings.length = len;
|
|
239664
239779
|
}
|
|
239780
|
+
function putAll(setarr, array) {
|
|
239781
|
+
for (let i = 0; i < array.length; i++)
|
|
239782
|
+
put(setarr, array[i]);
|
|
239783
|
+
}
|
|
239665
239784
|
function skipSourceless(line, index2) {
|
|
239666
239785
|
if (index2 === 0)
|
|
239667
239786
|
return true;
|
|
@@ -239674,17 +239793,18 @@ function skipSource(line, index2, sourcesIndex, sourceLine, sourceColumn, namesI
|
|
|
239674
239793
|
const prev = line[index2 - 1];
|
|
239675
239794
|
if (prev.length === 1)
|
|
239676
239795
|
return false;
|
|
239677
|
-
return sourcesIndex === prev[
|
|
239796
|
+
return sourcesIndex === prev[SOURCES_INDEX2] && sourceLine === prev[SOURCE_LINE2] && sourceColumn === prev[SOURCE_COLUMN2] && namesIndex === (prev.length === 5 ? prev[NAMES_INDEX2] : NO_NAME);
|
|
239678
239797
|
}
|
|
239679
239798
|
function addMappingInternal(skipable, map2, mapping) {
|
|
239680
|
-
const { generated, source, original, name } = mapping;
|
|
239799
|
+
const { generated, source, original, name, content } = mapping;
|
|
239681
239800
|
if (!source) {
|
|
239682
|
-
return addSegmentInternal(skipable, map2, generated.line - 1, generated.column, null, null, null, null);
|
|
239801
|
+
return addSegmentInternal(skipable, map2, generated.line - 1, generated.column, null, null, null, null, null);
|
|
239683
239802
|
}
|
|
239684
|
-
|
|
239685
|
-
return addSegmentInternal(skipable, map2, generated.line - 1, generated.column, s, original.line - 1, original.column, name);
|
|
239803
|
+
return addSegmentInternal(skipable, map2, generated.line - 1, generated.column, source, original.line - 1, original.column, name, content);
|
|
239686
239804
|
}
|
|
239687
|
-
|
|
239805
|
+
|
|
239806
|
+
// node_modules/@jridgewell/source-map/dist/source-map.mjs
|
|
239807
|
+
var SourceMapConsumer = class _SourceMapConsumer {
|
|
239688
239808
|
constructor(map2, mapUrl) {
|
|
239689
239809
|
const trace = this._map = new AnyMap(map2, mapUrl);
|
|
239690
239810
|
this.file = trace.file;
|
|
@@ -239692,16 +239812,59 @@ var SourceMapConsumer = class {
|
|
|
239692
239812
|
this.sourceRoot = trace.sourceRoot;
|
|
239693
239813
|
this.sources = trace.resolvedSources;
|
|
239694
239814
|
this.sourcesContent = trace.sourcesContent;
|
|
239815
|
+
this.version = trace.version;
|
|
239816
|
+
}
|
|
239817
|
+
static fromSourceMap(map2, mapUrl) {
|
|
239818
|
+
if (map2.toDecodedMap) {
|
|
239819
|
+
return new _SourceMapConsumer(map2.toDecodedMap(), mapUrl);
|
|
239820
|
+
}
|
|
239821
|
+
return new _SourceMapConsumer(map2.toJSON(), mapUrl);
|
|
239822
|
+
}
|
|
239823
|
+
get mappings() {
|
|
239824
|
+
return encodedMappings(this._map);
|
|
239695
239825
|
}
|
|
239696
239826
|
originalPositionFor(needle) {
|
|
239697
239827
|
return originalPositionFor(this._map, needle);
|
|
239698
239828
|
}
|
|
239829
|
+
generatedPositionFor(originalPosition) {
|
|
239830
|
+
return generatedPositionFor(this._map, originalPosition);
|
|
239831
|
+
}
|
|
239832
|
+
allGeneratedPositionsFor(originalPosition) {
|
|
239833
|
+
return allGeneratedPositionsFor(this._map, originalPosition);
|
|
239834
|
+
}
|
|
239835
|
+
hasContentsOfAllSources() {
|
|
239836
|
+
if (!this.sourcesContent || this.sourcesContent.length !== this.sources.length) {
|
|
239837
|
+
return false;
|
|
239838
|
+
}
|
|
239839
|
+
for (const content of this.sourcesContent) {
|
|
239840
|
+
if (content == null) {
|
|
239841
|
+
return false;
|
|
239842
|
+
}
|
|
239843
|
+
}
|
|
239844
|
+
return true;
|
|
239845
|
+
}
|
|
239846
|
+
sourceContentFor(source, nullOnMissing) {
|
|
239847
|
+
const sourceContent = sourceContentFor(this._map, source);
|
|
239848
|
+
if (sourceContent != null) {
|
|
239849
|
+
return sourceContent;
|
|
239850
|
+
}
|
|
239851
|
+
if (nullOnMissing) {
|
|
239852
|
+
return null;
|
|
239853
|
+
}
|
|
239854
|
+
throw new Error(`"${source}" is not in the SourceMap.`);
|
|
239855
|
+
}
|
|
239856
|
+
eachMapping(callback, context) {
|
|
239857
|
+
eachMapping(this._map, context ? callback.bind(context) : callback);
|
|
239858
|
+
}
|
|
239699
239859
|
destroy() {
|
|
239700
239860
|
}
|
|
239701
239861
|
};
|
|
239702
|
-
var SourceMapGenerator = class {
|
|
239862
|
+
var SourceMapGenerator = class _SourceMapGenerator {
|
|
239703
239863
|
constructor(opts) {
|
|
239704
|
-
this._map = new GenMapping(opts);
|
|
239864
|
+
this._map = opts instanceof GenMapping ? opts : new GenMapping(opts);
|
|
239865
|
+
}
|
|
239866
|
+
static fromSourceMap(consumer) {
|
|
239867
|
+
return new _SourceMapGenerator(fromMap(consumer));
|
|
239705
239868
|
}
|
|
239706
239869
|
addMapping(mapping) {
|
|
239707
239870
|
maybeAddMapping(this._map, mapping);
|
|
@@ -239712,6 +239875,9 @@ var SourceMapGenerator = class {
|
|
|
239712
239875
|
toJSON() {
|
|
239713
239876
|
return toEncodedMap(this._map);
|
|
239714
239877
|
}
|
|
239878
|
+
toString() {
|
|
239879
|
+
return JSON.stringify(this.toJSON());
|
|
239880
|
+
}
|
|
239715
239881
|
toDecodedMap() {
|
|
239716
239882
|
return toDecodedMap(this._map);
|
|
239717
239883
|
}
|
|
@@ -239783,7 +239949,7 @@ function string_template(e, t) {
|
|
|
239783
239949
|
return t && t[n3];
|
|
239784
239950
|
});
|
|
239785
239951
|
}
|
|
239786
|
-
function
|
|
239952
|
+
function remove3(e, t) {
|
|
239787
239953
|
for (var n3 = e.length; --n3 >= 0; ) e[n3] === t && e.splice(n3, 1);
|
|
239788
239954
|
}
|
|
239789
239955
|
function mergeSort(e, t) {
|
|
@@ -240223,7 +240389,7 @@ var PRECEDENCE = function(e, t) {
|
|
|
240223
240389
|
return t;
|
|
240224
240390
|
}([["||"], ["??"], ["&&"], ["|"], ["^"], ["&"], ["==", "===", "!=", "!=="], ["<", ">", "<=", ">=", "in", "instanceof"], [">>", "<<", ">>>"], ["+", "-"], ["*", "/", "%"], ["**"]], {});
|
|
240225
240391
|
var ATOMIC_START_TOKEN = makePredicate(["atom", "num", "big_int", "string", "regexp", "name"]);
|
|
240226
|
-
function
|
|
240392
|
+
function parse4(e, t) {
|
|
240227
240393
|
const n3 = /* @__PURE__ */ new WeakMap();
|
|
240228
240394
|
t = defaults3(t, { bare_returns: false, ecma: null, expression: false, filename: null, html5_comments: true, module: false, shebang: true, strict: false, toplevel: null }, true);
|
|
240229
240395
|
var i = { input: "string" == typeof e ? tokenizer2(e, t.filename, t.html5_comments, t.shebang) : e, token: null, prev: null, peeked: null, in_function: 0, in_async: -1, in_generator: -1, in_directives: true, in_loop: 0, labels: [] };
|
|
@@ -241195,7 +241361,7 @@ var AST_Toplevel = DEFNODE("Toplevel", "globals", function(e) {
|
|
|
241195
241361
|
e && (this.globals = e.globals, this.variables = e.variables, this.uses_with = e.uses_with, this.uses_eval = e.uses_eval, this.parent_scope = e.parent_scope, this.enclosed = e.enclosed, this.cname = e.cname, this.body = e.body, this.block_scope = e.block_scope, this.start = e.start, this.end = e.end), this.flags = 0;
|
|
241196
241362
|
}, { $documentation: "The toplevel scope", $propdoc: { globals: "[Map/S] a map of name -> SymbolDef for all undeclared names" }, wrap_commonjs: function(e) {
|
|
241197
241363
|
var t = this.body, n3 = "(function(exports){'$ORIG';})(typeof " + e + "=='undefined'?(" + e + "={}):" + e + ");";
|
|
241198
|
-
return (n3 =
|
|
241364
|
+
return (n3 = parse4(n3)).transform(new TreeTransformer(function(e2) {
|
|
241199
241365
|
if (e2 instanceof AST_Directive && "$ORIG" == e2.value) return MAP.splice(t);
|
|
241200
241366
|
}));
|
|
241201
241367
|
}, wrap_enclose: function(e) {
|
|
@@ -241203,7 +241369,7 @@ var AST_Toplevel = DEFNODE("Toplevel", "globals", function(e) {
|
|
|
241203
241369
|
var t = e.indexOf(":");
|
|
241204
241370
|
t < 0 && (t = e.length);
|
|
241205
241371
|
var n3 = this.body;
|
|
241206
|
-
return
|
|
241372
|
+
return parse4(["(function(", e.slice(0, t), '){"$ORIG"})(', e.slice(t + 1), ")"].join("")).transform(new TreeTransformer(function(e2) {
|
|
241207
241373
|
if (e2 instanceof AST_Directive && "$ORIG" == e2.value) return MAP.splice(n3);
|
|
241208
241374
|
}));
|
|
241209
241375
|
} }, AST_Scope);
|
|
@@ -244827,7 +244993,7 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
244827
244993
|
var _3 = make_node(AST_Assign, t2, { operator: "=", logical: false, left: l2, right: t2.value });
|
|
244828
244994
|
a.get(o2.id) === t2 && a.set(o2.id, _3), D.push(_3.transform(f));
|
|
244829
244995
|
}
|
|
244830
|
-
return
|
|
244996
|
+
return remove3(c3, t2), void o2.eliminated++;
|
|
244831
244997
|
}
|
|
244832
244998
|
}
|
|
244833
244999
|
t2.value ? (D.length > 0 && (y.length > 0 ? (D.push(t2.value), t2.value = make_sequence(t2.value, D)) : g.push(make_node(AST_SimpleStatement, u2, { body: make_sequence(u2, D) })), D = []), y.push(t2)) : b.push(t2);
|
|
@@ -245243,11 +245409,11 @@ function tighten_body(e, t) {
|
|
|
245243
245409
|
if (s2 instanceof AST_If) {
|
|
245244
245410
|
let n5, i3;
|
|
245245
245411
|
if (n5 = aborts(s2.body), p2(n5) && (i3 = m2(s2.body, n5))) {
|
|
245246
|
-
n5.label &&
|
|
245412
|
+
n5.label && remove3(n5.label.thedef.references, n5), a = true, (s2 = s2.clone()).condition = s2.condition.negate(t2), s2.body = make_node(AST_BlockStatement, s2, { body: as_statement_array(s2.alternative).concat(d2()) }), s2.alternative = make_node(AST_BlockStatement, s2, { body: i3 }), e2[r2] = s2.transform(t2);
|
|
245247
245413
|
continue;
|
|
245248
245414
|
}
|
|
245249
245415
|
if (n5 = aborts(s2.alternative), p2(n5) && (i3 = m2(s2.alternative, n5))) {
|
|
245250
|
-
n5.label &&
|
|
245416
|
+
n5.label && remove3(n5.label.thedef.references, n5), a = true, (s2 = s2.clone()).body = make_node(AST_BlockStatement, s2.body, { body: as_statement_array(s2.body).concat(d2()) }), s2.alternative = make_node(AST_BlockStatement, s2.alternative, { body: i3 }), e2[r2] = s2.transform(t2);
|
|
245251
245417
|
continue;
|
|
245252
245418
|
}
|
|
245253
245419
|
}
|
|
@@ -245313,7 +245479,7 @@ function tighten_body(e, t) {
|
|
|
245313
245479
|
var u2 = e2[o2];
|
|
245314
245480
|
if (u2 instanceof AST_LoopControl) {
|
|
245315
245481
|
var c2 = t2.loopcontrol_target(u2);
|
|
245316
|
-
u2 instanceof AST_Break && !(c2 instanceof AST_IterationStatement) && loop_body(c2) === i2 || u2 instanceof AST_Continue && loop_body(c2) === i2 ? u2.label &&
|
|
245482
|
+
u2 instanceof AST_Break && !(c2 instanceof AST_IterationStatement) && loop_body(c2) === i2 || u2 instanceof AST_Continue && loop_body(c2) === i2 ? u2.label && remove3(u2.label.thedef.references, u2) : e2[r2++] = u2;
|
|
245317
245483
|
} else e2[r2++] = u2;
|
|
245318
245484
|
if (aborts(u2)) {
|
|
245319
245485
|
n4 = e2.slice(o2 + 1);
|
|
@@ -245778,7 +245944,7 @@ var Compressor = class extends TreeWalker {
|
|
|
245778
245944
|
constructor(e, { false_by_default: t = false, mangle_options: n3 = false }) {
|
|
245779
245945
|
super(), void 0 === e.defaults || e.defaults || (t = true), this.options = defaults3(e, { arguments: false, arrows: !t, booleans: !t, booleans_as_integers: false, collapse_vars: !t, comparisons: !t, computed_props: !t, conditionals: !t, dead_code: !t, defaults: true, directives: !t, drop_console: false, drop_debugger: !t, ecma: 5, evaluate: !t, expression: false, global_defs: false, hoist_funs: false, hoist_props: !t, hoist_vars: false, ie8: false, if_return: !t, inline: !t, join_vars: !t, keep_classnames: false, keep_fargs: true, keep_fnames: false, keep_infinity: false, lhs_constants: !t, loops: !t, module: false, negate_iife: !t, passes: 1, properties: !t, pure_getters: !t && "strict", pure_funcs: null, pure_new: false, reduce_funcs: !t, reduce_vars: !t, sequences: !t, side_effects: !t, switches: !t, top_retain: null, toplevel: !(!e || !e.top_retain), typeofs: !t, unsafe: false, unsafe_arrows: false, unsafe_comps: false, unsafe_Function: false, unsafe_math: false, unsafe_symbols: false, unsafe_methods: false, unsafe_proto: false, unsafe_regexp: false, unsafe_undefined: false, unused: !t, warnings: false }, true);
|
|
245780
245946
|
var i = this.options.global_defs;
|
|
245781
|
-
if ("object" == typeof i) for (var o in i) "@" === o[0] && HOP(i, o) && (i[o.slice(1)] =
|
|
245947
|
+
if ("object" == typeof i) for (var o in i) "@" === o[0] && HOP(i, o) && (i[o.slice(1)] = parse4(i[o], { expression: true }));
|
|
245782
245948
|
true === this.options.inline && (this.options.inline = 3);
|
|
245783
245949
|
var r = this.options.pure_funcs;
|
|
245784
245950
|
this.pure_funcs = "function" == typeof r ? r : r ? function(e2) {
|
|
@@ -246001,13 +246167,13 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246001
246167
|
var _, f, p = t.body[0].body;
|
|
246002
246168
|
if (p instanceof AST_Assign && "=" == p.operator && (_ = p.left) instanceof AST_Symbol && a.has(_.name)) {
|
|
246003
246169
|
if ((d = a.get(_.name)).value) break;
|
|
246004
|
-
d.value = p.right,
|
|
246170
|
+
d.value = p.right, remove3(l, d), l.push(d), t.body.splice(0, 1);
|
|
246005
246171
|
continue;
|
|
246006
246172
|
}
|
|
246007
246173
|
if (p instanceof AST_Sequence && (f = p.expressions[0]) instanceof AST_Assign && "=" == f.operator && (_ = f.left) instanceof AST_Symbol && a.has(_.name)) {
|
|
246008
246174
|
var d;
|
|
246009
246175
|
if ((d = a.get(_.name)).value) break;
|
|
246010
|
-
d.value = f.right,
|
|
246176
|
+
d.value = f.right, remove3(l, d), l.push(d), t.body[0].body = make_sequence(p, p.expressions.slice(1));
|
|
246011
246177
|
continue;
|
|
246012
246178
|
}
|
|
246013
246179
|
}
|
|
@@ -246392,7 +246558,7 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246392
246558
|
if (e.args.every((e2) => e2 instanceof AST_String)) try {
|
|
246393
246559
|
var y = "n(function(" + e.args.slice(0, -1).map(function(e2) {
|
|
246394
246560
|
return e2.value;
|
|
246395
|
-
}).join(",") + "){" + e.args[e.args.length - 1].value + "})", D =
|
|
246561
|
+
}).join(",") + "){" + e.args[e.args.length - 1].value + "})", D = parse4(y), v = t.mangle_options();
|
|
246396
246562
|
D.figure_out_scope(v);
|
|
246397
246563
|
var C2, k = new Compressor(t.options, { mangle_options: t._mangle_options });
|
|
246398
246564
|
return (D = D.transform(k)).figure_out_scope(v), D.compute_char_frequency(v), D.mangle_names(v), walk2(D, (e2) => {
|
|
@@ -247172,7 +247338,7 @@ function* minify_sync_or_async(e, t, n3) {
|
|
|
247172
247338
|
if (("string" == typeof e || t.parse.spidermonkey && !Array.isArray(e)) && (e = [e]), t.parse = t.parse || {}, t.parse.toplevel = null, t.parse.spidermonkey) t.parse.toplevel = AST_Node.from_mozilla_ast(Object.keys(e).reduce(function(t2, n4) {
|
|
247173
247339
|
return t2 ? (t2.body = t2.body.concat(e[n4].body), t2) : e[n4];
|
|
247174
247340
|
}, null));
|
|
247175
|
-
else for (var s in delete t.parse.spidermonkey, e) if (HOP(e, s) && (t.parse.filename = s, t.parse.toplevel =
|
|
247341
|
+
else for (var s in delete t.parse.spidermonkey, e) if (HOP(e, s) && (t.parse.filename = s, t.parse.toplevel = parse4(e[s], t.parse), t.sourceMap && "inline" == t.sourceMap.content)) {
|
|
247176
247342
|
if (Object.keys(e).length > 1) throw new Error("inline source map only works with singular input");
|
|
247177
247343
|
t.sourceMap.content = read_source_map(e[s]);
|
|
247178
247344
|
}
|
|
@@ -253433,8 +253599,8 @@ var createTable = (rows) => {
|
|
|
253433
253599
|
content.push(createBorder(th));
|
|
253434
253600
|
}
|
|
253435
253601
|
const tds = rows.filter((r) => !r.isHeader);
|
|
253436
|
-
tds.forEach((
|
|
253437
|
-
content.push(createRow(
|
|
253602
|
+
tds.forEach((td2) => {
|
|
253603
|
+
content.push(createRow(td2));
|
|
253438
253604
|
});
|
|
253439
253605
|
return content;
|
|
253440
253606
|
};
|
|
@@ -254549,11 +254715,11 @@ var generateComponentTypesFile = (config, buildCtx, areTypesInternal) => {
|
|
|
254549
254715
|
if ((0, import_path42.isAbsolute)(filePath)) {
|
|
254550
254716
|
importFilePath = normalizePath("./" + relative(config.srcDir, filePath)).replace(/\.(tsx|ts)$/, "");
|
|
254551
254717
|
}
|
|
254552
|
-
return `{ ${typeData.sort(sortImportNames).map((
|
|
254553
|
-
if (
|
|
254554
|
-
return `${
|
|
254718
|
+
return `{ ${typeData.sort(sortImportNames).map((td2) => {
|
|
254719
|
+
if (td2.localName === td2.importName) {
|
|
254720
|
+
return `${td2.importName}`;
|
|
254555
254721
|
} else {
|
|
254556
|
-
return `${
|
|
254722
|
+
return `${td2.localName} as ${td2.importName}`;
|
|
254557
254723
|
}
|
|
254558
254724
|
}).join(`, `)} } from "${importFilePath}";`;
|
|
254559
254725
|
});
|
|
@@ -258855,7 +259021,7 @@ var build = async (config, compilerCtx, buildCtx, tsBuilder) => {
|
|
|
258855
259021
|
|
|
258856
259022
|
// src/compiler/build/full-build.ts
|
|
258857
259023
|
var createFullBuild = async (config, compilerCtx) => {
|
|
258858
|
-
return new Promise((
|
|
259024
|
+
return new Promise((resolve9) => {
|
|
258859
259025
|
let tsWatchProgram = null;
|
|
258860
259026
|
compilerCtx.events.on("fileUpdate", (p) => {
|
|
258861
259027
|
config.logger.debug(`fileUpdate: ${p}`);
|
|
@@ -258872,7 +259038,7 @@ var createFullBuild = async (config, compilerCtx) => {
|
|
|
258872
259038
|
tsWatchProgram.close();
|
|
258873
259039
|
tsWatchProgram = null;
|
|
258874
259040
|
}
|
|
258875
|
-
|
|
259041
|
+
resolve9(result2);
|
|
258876
259042
|
}
|
|
258877
259043
|
};
|
|
258878
259044
|
createTsBuildProgram(config, onBuild).then((program) => {
|
|
@@ -259176,7 +259342,7 @@ var createWatchBuild = async (config, compilerCtx) => {
|
|
|
259176
259342
|
let isRebuild = false;
|
|
259177
259343
|
let tsWatchProgram;
|
|
259178
259344
|
let closeResolver;
|
|
259179
|
-
const watchWaiter = new Promise((
|
|
259345
|
+
const watchWaiter = new Promise((resolve9) => closeResolver = resolve9);
|
|
259180
259346
|
const dirsAdded = /* @__PURE__ */ new Set();
|
|
259181
259347
|
const dirsDeleted = /* @__PURE__ */ new Set();
|
|
259182
259348
|
const filesAdded = /* @__PURE__ */ new Set();
|
|
@@ -259720,7 +259886,7 @@ var createInMemoryFs = (sys) => {
|
|
|
259720
259886
|
}
|
|
259721
259887
|
return fileText;
|
|
259722
259888
|
};
|
|
259723
|
-
const
|
|
259889
|
+
const remove4 = async (itemPath) => {
|
|
259724
259890
|
const stats = await stat2(itemPath);
|
|
259725
259891
|
if (stats.isDirectory === true) {
|
|
259726
259892
|
await removeDir(itemPath);
|
|
@@ -260095,7 +260261,7 @@ var createInMemoryFs = (sys) => {
|
|
|
260095
260261
|
readFile: readFile3,
|
|
260096
260262
|
readFileSync,
|
|
260097
260263
|
readdir,
|
|
260098
|
-
remove:
|
|
260264
|
+
remove: remove4,
|
|
260099
260265
|
stat: stat2,
|
|
260100
260266
|
statSync,
|
|
260101
260267
|
sys,
|
|
@@ -262290,13 +262456,13 @@ var import_path65 = require("path");
|
|
|
262290
262456
|
|
|
262291
262457
|
// src/hydrate/runner/render-utils.ts
|
|
262292
262458
|
var createHydrateBuildId = () => {
|
|
262293
|
-
let
|
|
262459
|
+
let chars3 = "abcdefghijklmnopqrstuvwxyz";
|
|
262294
262460
|
let buildId2 = "";
|
|
262295
262461
|
while (buildId2.length < 8) {
|
|
262296
|
-
const char =
|
|
262462
|
+
const char = chars3[Math.floor(Math.random() * chars3.length)];
|
|
262297
262463
|
buildId2 += char;
|
|
262298
262464
|
if (buildId2.length === 1) {
|
|
262299
|
-
|
|
262465
|
+
chars3 += "0123456789";
|
|
262300
262466
|
}
|
|
262301
262467
|
}
|
|
262302
262468
|
return buildId2;
|
|
@@ -262828,8 +262994,8 @@ var runPrerenderOutputTarget = async (workerCtx, results, diagnostics, config, d
|
|
|
262828
262994
|
manager.templateId = await createPrerenderTemplate(config, templateData.html);
|
|
262829
262995
|
manager.staticSite = templateData.staticSite;
|
|
262830
262996
|
manager.componentGraphPath = await createComponentGraphPath(config, componentGraph, outputTarget);
|
|
262831
|
-
await new Promise((
|
|
262832
|
-
manager.resolve =
|
|
262997
|
+
await new Promise((resolve9) => {
|
|
262998
|
+
manager.resolve = resolve9;
|
|
262833
262999
|
config.sys.nextTick(() => drainPrerenderQueue(results, manager));
|
|
262834
263000
|
});
|
|
262835
263001
|
if (manager.isDebug) {
|