astro-vscode 2.0.0-next.9 → 2.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/astro.wasm +0 -0
- package/dist/node/client.js +1571 -1744
- package/dist/node/server.js +759 -912
- package/package.json +19 -3
- package/syntaxes/astro.tmLanguage.json +55 -1
- package/syntaxes/astro.tmLanguage.src.yaml +19 -1
package/dist/node/server.js
CHANGED
|
@@ -65,7 +65,7 @@ var require_package = __commonJS({
|
|
|
65
65
|
"../language-server/package.json"(exports2, module2) {
|
|
66
66
|
module2.exports = {
|
|
67
67
|
name: "@astrojs/language-server",
|
|
68
|
-
version: "2.0.0
|
|
68
|
+
version: "2.0.0",
|
|
69
69
|
author: "withastro",
|
|
70
70
|
license: "MIT",
|
|
71
71
|
repository: {
|
|
@@ -91,7 +91,7 @@ var require_package = __commonJS({
|
|
|
91
91
|
"test:match": "pnpm run test -g"
|
|
92
92
|
},
|
|
93
93
|
dependencies: {
|
|
94
|
-
"@astrojs/compiler": "^1.
|
|
94
|
+
"@astrojs/compiler": "^1.5.0",
|
|
95
95
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
96
96
|
"@volar/kit": "^1.6.9",
|
|
97
97
|
"@volar/language-core": "^1.6.9",
|
|
@@ -100,8 +100,6 @@ var require_package = __commonJS({
|
|
|
100
100
|
"@volar/source-map": "^1.6.9",
|
|
101
101
|
"fast-glob": "^3.2.12",
|
|
102
102
|
"muggle-string": "^0.3.1",
|
|
103
|
-
prettier: "^2.8.8",
|
|
104
|
-
"prettier-plugin-astro": "^0.9.1",
|
|
105
103
|
"volar-service-css": "^0.0.4",
|
|
106
104
|
"volar-service-emmet": "^0.0.4",
|
|
107
105
|
"volar-service-html": "^0.0.4",
|
|
@@ -125,6 +123,18 @@ var require_package = __commonJS({
|
|
|
125
123
|
typescript: "~5.0.4",
|
|
126
124
|
"vscode-languageserver-protocol": "^3.17.3",
|
|
127
125
|
"vscode-languageserver-textdocument": "^1.0.8"
|
|
126
|
+
},
|
|
127
|
+
peerDependencies: {
|
|
128
|
+
prettier: "^2.8.8",
|
|
129
|
+
"prettier-plugin-astro": "^0.10.0"
|
|
130
|
+
},
|
|
131
|
+
peerDependenciesMeta: {
|
|
132
|
+
prettier: {
|
|
133
|
+
optional: true
|
|
134
|
+
},
|
|
135
|
+
"prettier-plugin-astro": {
|
|
136
|
+
optional: true
|
|
137
|
+
}
|
|
128
138
|
}
|
|
129
139
|
};
|
|
130
140
|
}
|
|
@@ -1933,32 +1943,32 @@ var init_main = __esm({
|
|
|
1933
1943
|
"../../node_modules/.pnpm/vscode-languageserver-types@3.17.3/node_modules/vscode-languageserver-types/lib/esm/main.js"() {
|
|
1934
1944
|
"use strict";
|
|
1935
1945
|
(function(DocumentUri2) {
|
|
1936
|
-
function
|
|
1946
|
+
function is2(value) {
|
|
1937
1947
|
return typeof value === "string";
|
|
1938
1948
|
}
|
|
1939
|
-
DocumentUri2.is =
|
|
1949
|
+
DocumentUri2.is = is2;
|
|
1940
1950
|
})(DocumentUri || (DocumentUri = {}));
|
|
1941
1951
|
(function(URI4) {
|
|
1942
|
-
function
|
|
1952
|
+
function is2(value) {
|
|
1943
1953
|
return typeof value === "string";
|
|
1944
1954
|
}
|
|
1945
|
-
URI4.is =
|
|
1955
|
+
URI4.is = is2;
|
|
1946
1956
|
})(URI || (URI = {}));
|
|
1947
1957
|
(function(integer2) {
|
|
1948
1958
|
integer2.MIN_VALUE = -2147483648;
|
|
1949
1959
|
integer2.MAX_VALUE = 2147483647;
|
|
1950
|
-
function
|
|
1960
|
+
function is2(value) {
|
|
1951
1961
|
return typeof value === "number" && integer2.MIN_VALUE <= value && value <= integer2.MAX_VALUE;
|
|
1952
1962
|
}
|
|
1953
|
-
integer2.is =
|
|
1963
|
+
integer2.is = is2;
|
|
1954
1964
|
})(integer || (integer = {}));
|
|
1955
1965
|
(function(uinteger2) {
|
|
1956
1966
|
uinteger2.MIN_VALUE = 0;
|
|
1957
1967
|
uinteger2.MAX_VALUE = 2147483647;
|
|
1958
|
-
function
|
|
1968
|
+
function is2(value) {
|
|
1959
1969
|
return typeof value === "number" && uinteger2.MIN_VALUE <= value && value <= uinteger2.MAX_VALUE;
|
|
1960
1970
|
}
|
|
1961
|
-
uinteger2.is =
|
|
1971
|
+
uinteger2.is = is2;
|
|
1962
1972
|
})(uinteger || (uinteger = {}));
|
|
1963
1973
|
(function(Position2) {
|
|
1964
1974
|
function create(line, character) {
|
|
@@ -1971,11 +1981,11 @@ var init_main = __esm({
|
|
|
1971
1981
|
return { line, character };
|
|
1972
1982
|
}
|
|
1973
1983
|
Position2.create = create;
|
|
1974
|
-
function
|
|
1984
|
+
function is2(value) {
|
|
1975
1985
|
var candidate = value;
|
|
1976
1986
|
return Is.objectLiteral(candidate) && Is.uinteger(candidate.line) && Is.uinteger(candidate.character);
|
|
1977
1987
|
}
|
|
1978
|
-
Position2.is =
|
|
1988
|
+
Position2.is = is2;
|
|
1979
1989
|
})(Position || (Position = {}));
|
|
1980
1990
|
(function(Range2) {
|
|
1981
1991
|
function create(one, two, three, four) {
|
|
@@ -1988,33 +1998,33 @@ var init_main = __esm({
|
|
|
1988
1998
|
}
|
|
1989
1999
|
}
|
|
1990
2000
|
Range2.create = create;
|
|
1991
|
-
function
|
|
2001
|
+
function is2(value) {
|
|
1992
2002
|
var candidate = value;
|
|
1993
2003
|
return Is.objectLiteral(candidate) && Position.is(candidate.start) && Position.is(candidate.end);
|
|
1994
2004
|
}
|
|
1995
|
-
Range2.is =
|
|
2005
|
+
Range2.is = is2;
|
|
1996
2006
|
})(Range || (Range = {}));
|
|
1997
2007
|
(function(Location2) {
|
|
1998
2008
|
function create(uri, range) {
|
|
1999
2009
|
return { uri, range };
|
|
2000
2010
|
}
|
|
2001
2011
|
Location2.create = create;
|
|
2002
|
-
function
|
|
2012
|
+
function is2(value) {
|
|
2003
2013
|
var candidate = value;
|
|
2004
2014
|
return Is.objectLiteral(candidate) && Range.is(candidate.range) && (Is.string(candidate.uri) || Is.undefined(candidate.uri));
|
|
2005
2015
|
}
|
|
2006
|
-
Location2.is =
|
|
2016
|
+
Location2.is = is2;
|
|
2007
2017
|
})(Location || (Location = {}));
|
|
2008
2018
|
(function(LocationLink2) {
|
|
2009
2019
|
function create(targetUri, targetRange, targetSelectionRange, originSelectionRange) {
|
|
2010
2020
|
return { targetUri, targetRange, targetSelectionRange, originSelectionRange };
|
|
2011
2021
|
}
|
|
2012
2022
|
LocationLink2.create = create;
|
|
2013
|
-
function
|
|
2023
|
+
function is2(value) {
|
|
2014
2024
|
var candidate = value;
|
|
2015
2025
|
return Is.objectLiteral(candidate) && Range.is(candidate.targetRange) && Is.string(candidate.targetUri) && Range.is(candidate.targetSelectionRange) && (Range.is(candidate.originSelectionRange) || Is.undefined(candidate.originSelectionRange));
|
|
2016
2026
|
}
|
|
2017
|
-
LocationLink2.is =
|
|
2027
|
+
LocationLink2.is = is2;
|
|
2018
2028
|
})(LocationLink || (LocationLink = {}));
|
|
2019
2029
|
(function(Color2) {
|
|
2020
2030
|
function create(red, green, blue, alpha) {
|
|
@@ -2026,11 +2036,11 @@ var init_main = __esm({
|
|
|
2026
2036
|
};
|
|
2027
2037
|
}
|
|
2028
2038
|
Color2.create = create;
|
|
2029
|
-
function
|
|
2039
|
+
function is2(value) {
|
|
2030
2040
|
var candidate = value;
|
|
2031
2041
|
return Is.objectLiteral(candidate) && Is.numberRange(candidate.red, 0, 1) && Is.numberRange(candidate.green, 0, 1) && Is.numberRange(candidate.blue, 0, 1) && Is.numberRange(candidate.alpha, 0, 1);
|
|
2032
2042
|
}
|
|
2033
|
-
Color2.is =
|
|
2043
|
+
Color2.is = is2;
|
|
2034
2044
|
})(Color || (Color = {}));
|
|
2035
2045
|
(function(ColorInformation2) {
|
|
2036
2046
|
function create(range, color) {
|
|
@@ -2040,11 +2050,11 @@ var init_main = __esm({
|
|
|
2040
2050
|
};
|
|
2041
2051
|
}
|
|
2042
2052
|
ColorInformation2.create = create;
|
|
2043
|
-
function
|
|
2053
|
+
function is2(value) {
|
|
2044
2054
|
var candidate = value;
|
|
2045
2055
|
return Is.objectLiteral(candidate) && Range.is(candidate.range) && Color.is(candidate.color);
|
|
2046
2056
|
}
|
|
2047
|
-
ColorInformation2.is =
|
|
2057
|
+
ColorInformation2.is = is2;
|
|
2048
2058
|
})(ColorInformation || (ColorInformation = {}));
|
|
2049
2059
|
(function(ColorPresentation2) {
|
|
2050
2060
|
function create(label, textEdit, additionalTextEdits) {
|
|
@@ -2055,11 +2065,11 @@ var init_main = __esm({
|
|
|
2055
2065
|
};
|
|
2056
2066
|
}
|
|
2057
2067
|
ColorPresentation2.create = create;
|
|
2058
|
-
function
|
|
2068
|
+
function is2(value) {
|
|
2059
2069
|
var candidate = value;
|
|
2060
2070
|
return Is.objectLiteral(candidate) && Is.string(candidate.label) && (Is.undefined(candidate.textEdit) || TextEdit.is(candidate)) && (Is.undefined(candidate.additionalTextEdits) || Is.typedArray(candidate.additionalTextEdits, TextEdit.is));
|
|
2061
2071
|
}
|
|
2062
|
-
ColorPresentation2.is =
|
|
2072
|
+
ColorPresentation2.is = is2;
|
|
2063
2073
|
})(ColorPresentation || (ColorPresentation = {}));
|
|
2064
2074
|
(function(FoldingRangeKind2) {
|
|
2065
2075
|
FoldingRangeKind2.Comment = "comment";
|
|
@@ -2087,11 +2097,11 @@ var init_main = __esm({
|
|
|
2087
2097
|
return result;
|
|
2088
2098
|
}
|
|
2089
2099
|
FoldingRange2.create = create;
|
|
2090
|
-
function
|
|
2100
|
+
function is2(value) {
|
|
2091
2101
|
var candidate = value;
|
|
2092
2102
|
return Is.objectLiteral(candidate) && Is.uinteger(candidate.startLine) && Is.uinteger(candidate.startLine) && (Is.undefined(candidate.startCharacter) || Is.uinteger(candidate.startCharacter)) && (Is.undefined(candidate.endCharacter) || Is.uinteger(candidate.endCharacter)) && (Is.undefined(candidate.kind) || Is.string(candidate.kind));
|
|
2093
2103
|
}
|
|
2094
|
-
FoldingRange2.is =
|
|
2104
|
+
FoldingRange2.is = is2;
|
|
2095
2105
|
})(FoldingRange || (FoldingRange = {}));
|
|
2096
2106
|
(function(DiagnosticRelatedInformation2) {
|
|
2097
2107
|
function create(location, message) {
|
|
@@ -2101,11 +2111,11 @@ var init_main = __esm({
|
|
|
2101
2111
|
};
|
|
2102
2112
|
}
|
|
2103
2113
|
DiagnosticRelatedInformation2.create = create;
|
|
2104
|
-
function
|
|
2114
|
+
function is2(value) {
|
|
2105
2115
|
var candidate = value;
|
|
2106
2116
|
return Is.defined(candidate) && Location.is(candidate.location) && Is.string(candidate.message);
|
|
2107
2117
|
}
|
|
2108
|
-
DiagnosticRelatedInformation2.is =
|
|
2118
|
+
DiagnosticRelatedInformation2.is = is2;
|
|
2109
2119
|
})(DiagnosticRelatedInformation || (DiagnosticRelatedInformation = {}));
|
|
2110
2120
|
(function(DiagnosticSeverity2) {
|
|
2111
2121
|
DiagnosticSeverity2.Error = 1;
|
|
@@ -2118,11 +2128,11 @@ var init_main = __esm({
|
|
|
2118
2128
|
DiagnosticTag2.Deprecated = 2;
|
|
2119
2129
|
})(DiagnosticTag || (DiagnosticTag = {}));
|
|
2120
2130
|
(function(CodeDescription2) {
|
|
2121
|
-
function
|
|
2131
|
+
function is2(value) {
|
|
2122
2132
|
var candidate = value;
|
|
2123
2133
|
return Is.objectLiteral(candidate) && Is.string(candidate.href);
|
|
2124
2134
|
}
|
|
2125
|
-
CodeDescription2.is =
|
|
2135
|
+
CodeDescription2.is = is2;
|
|
2126
2136
|
})(CodeDescription || (CodeDescription = {}));
|
|
2127
2137
|
(function(Diagnostic2) {
|
|
2128
2138
|
function create(range, message, severity, code, source, relatedInformation) {
|
|
@@ -2142,12 +2152,12 @@ var init_main = __esm({
|
|
|
2142
2152
|
return result;
|
|
2143
2153
|
}
|
|
2144
2154
|
Diagnostic2.create = create;
|
|
2145
|
-
function
|
|
2155
|
+
function is2(value) {
|
|
2146
2156
|
var _a4;
|
|
2147
2157
|
var candidate = value;
|
|
2148
2158
|
return Is.defined(candidate) && Range.is(candidate.range) && Is.string(candidate.message) && (Is.number(candidate.severity) || Is.undefined(candidate.severity)) && (Is.integer(candidate.code) || Is.string(candidate.code) || Is.undefined(candidate.code)) && (Is.undefined(candidate.codeDescription) || Is.string((_a4 = candidate.codeDescription) === null || _a4 === void 0 ? void 0 : _a4.href)) && (Is.string(candidate.source) || Is.undefined(candidate.source)) && (Is.undefined(candidate.relatedInformation) || Is.typedArray(candidate.relatedInformation, DiagnosticRelatedInformation.is));
|
|
2149
2159
|
}
|
|
2150
|
-
Diagnostic2.is =
|
|
2160
|
+
Diagnostic2.is = is2;
|
|
2151
2161
|
})(Diagnostic || (Diagnostic = {}));
|
|
2152
2162
|
(function(Command2) {
|
|
2153
2163
|
function create(title, command) {
|
|
@@ -2162,11 +2172,11 @@ var init_main = __esm({
|
|
|
2162
2172
|
return result;
|
|
2163
2173
|
}
|
|
2164
2174
|
Command2.create = create;
|
|
2165
|
-
function
|
|
2175
|
+
function is2(value) {
|
|
2166
2176
|
var candidate = value;
|
|
2167
2177
|
return Is.defined(candidate) && Is.string(candidate.title) && Is.string(candidate.command);
|
|
2168
2178
|
}
|
|
2169
|
-
Command2.is =
|
|
2179
|
+
Command2.is = is2;
|
|
2170
2180
|
})(Command || (Command = {}));
|
|
2171
2181
|
(function(TextEdit2) {
|
|
2172
2182
|
function replace(range, newText) {
|
|
@@ -2181,11 +2191,11 @@ var init_main = __esm({
|
|
|
2181
2191
|
return { range, newText: "" };
|
|
2182
2192
|
}
|
|
2183
2193
|
TextEdit2.del = del;
|
|
2184
|
-
function
|
|
2194
|
+
function is2(value) {
|
|
2185
2195
|
var candidate = value;
|
|
2186
2196
|
return Is.objectLiteral(candidate) && Is.string(candidate.newText) && Range.is(candidate.range);
|
|
2187
2197
|
}
|
|
2188
|
-
TextEdit2.is =
|
|
2198
|
+
TextEdit2.is = is2;
|
|
2189
2199
|
})(TextEdit || (TextEdit = {}));
|
|
2190
2200
|
(function(ChangeAnnotation2) {
|
|
2191
2201
|
function create(label, needsConfirmation, description) {
|
|
@@ -2199,18 +2209,18 @@ var init_main = __esm({
|
|
|
2199
2209
|
return result;
|
|
2200
2210
|
}
|
|
2201
2211
|
ChangeAnnotation2.create = create;
|
|
2202
|
-
function
|
|
2212
|
+
function is2(value) {
|
|
2203
2213
|
var candidate = value;
|
|
2204
2214
|
return Is.objectLiteral(candidate) && Is.string(candidate.label) && (Is.boolean(candidate.needsConfirmation) || candidate.needsConfirmation === void 0) && (Is.string(candidate.description) || candidate.description === void 0);
|
|
2205
2215
|
}
|
|
2206
|
-
ChangeAnnotation2.is =
|
|
2216
|
+
ChangeAnnotation2.is = is2;
|
|
2207
2217
|
})(ChangeAnnotation || (ChangeAnnotation = {}));
|
|
2208
2218
|
(function(ChangeAnnotationIdentifier2) {
|
|
2209
|
-
function
|
|
2219
|
+
function is2(value) {
|
|
2210
2220
|
var candidate = value;
|
|
2211
2221
|
return Is.string(candidate);
|
|
2212
2222
|
}
|
|
2213
|
-
ChangeAnnotationIdentifier2.is =
|
|
2223
|
+
ChangeAnnotationIdentifier2.is = is2;
|
|
2214
2224
|
})(ChangeAnnotationIdentifier || (ChangeAnnotationIdentifier = {}));
|
|
2215
2225
|
(function(AnnotatedTextEdit2) {
|
|
2216
2226
|
function replace(range, newText, annotation) {
|
|
@@ -2225,22 +2235,22 @@ var init_main = __esm({
|
|
|
2225
2235
|
return { range, newText: "", annotationId: annotation };
|
|
2226
2236
|
}
|
|
2227
2237
|
AnnotatedTextEdit2.del = del;
|
|
2228
|
-
function
|
|
2238
|
+
function is2(value) {
|
|
2229
2239
|
var candidate = value;
|
|
2230
2240
|
return TextEdit.is(candidate) && (ChangeAnnotation.is(candidate.annotationId) || ChangeAnnotationIdentifier.is(candidate.annotationId));
|
|
2231
2241
|
}
|
|
2232
|
-
AnnotatedTextEdit2.is =
|
|
2242
|
+
AnnotatedTextEdit2.is = is2;
|
|
2233
2243
|
})(AnnotatedTextEdit || (AnnotatedTextEdit = {}));
|
|
2234
2244
|
(function(TextDocumentEdit2) {
|
|
2235
2245
|
function create(textDocument, edits) {
|
|
2236
2246
|
return { textDocument, edits };
|
|
2237
2247
|
}
|
|
2238
2248
|
TextDocumentEdit2.create = create;
|
|
2239
|
-
function
|
|
2249
|
+
function is2(value) {
|
|
2240
2250
|
var candidate = value;
|
|
2241
2251
|
return Is.defined(candidate) && OptionalVersionedTextDocumentIdentifier.is(candidate.textDocument) && Array.isArray(candidate.edits);
|
|
2242
2252
|
}
|
|
2243
|
-
TextDocumentEdit2.is =
|
|
2253
|
+
TextDocumentEdit2.is = is2;
|
|
2244
2254
|
})(TextDocumentEdit || (TextDocumentEdit = {}));
|
|
2245
2255
|
(function(CreateFile2) {
|
|
2246
2256
|
function create(uri, options, annotation) {
|
|
@@ -2257,11 +2267,11 @@ var init_main = __esm({
|
|
|
2257
2267
|
return result;
|
|
2258
2268
|
}
|
|
2259
2269
|
CreateFile2.create = create;
|
|
2260
|
-
function
|
|
2270
|
+
function is2(value) {
|
|
2261
2271
|
var candidate = value;
|
|
2262
2272
|
return candidate && candidate.kind === "create" && Is.string(candidate.uri) && (candidate.options === void 0 || (candidate.options.overwrite === void 0 || Is.boolean(candidate.options.overwrite)) && (candidate.options.ignoreIfExists === void 0 || Is.boolean(candidate.options.ignoreIfExists))) && (candidate.annotationId === void 0 || ChangeAnnotationIdentifier.is(candidate.annotationId));
|
|
2263
2273
|
}
|
|
2264
|
-
CreateFile2.is =
|
|
2274
|
+
CreateFile2.is = is2;
|
|
2265
2275
|
})(CreateFile || (CreateFile = {}));
|
|
2266
2276
|
(function(RenameFile2) {
|
|
2267
2277
|
function create(oldUri, newUri, options, annotation) {
|
|
@@ -2279,11 +2289,11 @@ var init_main = __esm({
|
|
|
2279
2289
|
return result;
|
|
2280
2290
|
}
|
|
2281
2291
|
RenameFile2.create = create;
|
|
2282
|
-
function
|
|
2292
|
+
function is2(value) {
|
|
2283
2293
|
var candidate = value;
|
|
2284
2294
|
return candidate && candidate.kind === "rename" && Is.string(candidate.oldUri) && Is.string(candidate.newUri) && (candidate.options === void 0 || (candidate.options.overwrite === void 0 || Is.boolean(candidate.options.overwrite)) && (candidate.options.ignoreIfExists === void 0 || Is.boolean(candidate.options.ignoreIfExists))) && (candidate.annotationId === void 0 || ChangeAnnotationIdentifier.is(candidate.annotationId));
|
|
2285
2295
|
}
|
|
2286
|
-
RenameFile2.is =
|
|
2296
|
+
RenameFile2.is = is2;
|
|
2287
2297
|
})(RenameFile || (RenameFile = {}));
|
|
2288
2298
|
(function(DeleteFile2) {
|
|
2289
2299
|
function create(uri, options, annotation) {
|
|
@@ -2300,14 +2310,14 @@ var init_main = __esm({
|
|
|
2300
2310
|
return result;
|
|
2301
2311
|
}
|
|
2302
2312
|
DeleteFile2.create = create;
|
|
2303
|
-
function
|
|
2313
|
+
function is2(value) {
|
|
2304
2314
|
var candidate = value;
|
|
2305
2315
|
return candidate && candidate.kind === "delete" && Is.string(candidate.uri) && (candidate.options === void 0 || (candidate.options.recursive === void 0 || Is.boolean(candidate.options.recursive)) && (candidate.options.ignoreIfNotExists === void 0 || Is.boolean(candidate.options.ignoreIfNotExists))) && (candidate.annotationId === void 0 || ChangeAnnotationIdentifier.is(candidate.annotationId));
|
|
2306
2316
|
}
|
|
2307
|
-
DeleteFile2.is =
|
|
2317
|
+
DeleteFile2.is = is2;
|
|
2308
2318
|
})(DeleteFile || (DeleteFile = {}));
|
|
2309
2319
|
(function(WorkspaceEdit2) {
|
|
2310
|
-
function
|
|
2320
|
+
function is2(value) {
|
|
2311
2321
|
var candidate = value;
|
|
2312
2322
|
return candidate && (candidate.changes !== void 0 || candidate.documentChanges !== void 0) && (candidate.documentChanges === void 0 || candidate.documentChanges.every(function(change) {
|
|
2313
2323
|
if (Is.string(change.kind)) {
|
|
@@ -2317,7 +2327,7 @@ var init_main = __esm({
|
|
|
2317
2327
|
}
|
|
2318
2328
|
}));
|
|
2319
2329
|
}
|
|
2320
|
-
WorkspaceEdit2.is =
|
|
2330
|
+
WorkspaceEdit2.is = is2;
|
|
2321
2331
|
})(WorkspaceEdit || (WorkspaceEdit = {}));
|
|
2322
2332
|
TextEditChangeImpl = /** @class */
|
|
2323
2333
|
function() {
|
|
@@ -2606,60 +2616,60 @@ var init_main = __esm({
|
|
|
2606
2616
|
return { uri };
|
|
2607
2617
|
}
|
|
2608
2618
|
TextDocumentIdentifier2.create = create;
|
|
2609
|
-
function
|
|
2619
|
+
function is2(value) {
|
|
2610
2620
|
var candidate = value;
|
|
2611
2621
|
return Is.defined(candidate) && Is.string(candidate.uri);
|
|
2612
2622
|
}
|
|
2613
|
-
TextDocumentIdentifier2.is =
|
|
2623
|
+
TextDocumentIdentifier2.is = is2;
|
|
2614
2624
|
})(TextDocumentIdentifier || (TextDocumentIdentifier = {}));
|
|
2615
2625
|
(function(VersionedTextDocumentIdentifier2) {
|
|
2616
2626
|
function create(uri, version) {
|
|
2617
2627
|
return { uri, version };
|
|
2618
2628
|
}
|
|
2619
2629
|
VersionedTextDocumentIdentifier2.create = create;
|
|
2620
|
-
function
|
|
2630
|
+
function is2(value) {
|
|
2621
2631
|
var candidate = value;
|
|
2622
2632
|
return Is.defined(candidate) && Is.string(candidate.uri) && Is.integer(candidate.version);
|
|
2623
2633
|
}
|
|
2624
|
-
VersionedTextDocumentIdentifier2.is =
|
|
2634
|
+
VersionedTextDocumentIdentifier2.is = is2;
|
|
2625
2635
|
})(VersionedTextDocumentIdentifier || (VersionedTextDocumentIdentifier = {}));
|
|
2626
2636
|
(function(OptionalVersionedTextDocumentIdentifier2) {
|
|
2627
2637
|
function create(uri, version) {
|
|
2628
2638
|
return { uri, version };
|
|
2629
2639
|
}
|
|
2630
2640
|
OptionalVersionedTextDocumentIdentifier2.create = create;
|
|
2631
|
-
function
|
|
2641
|
+
function is2(value) {
|
|
2632
2642
|
var candidate = value;
|
|
2633
2643
|
return Is.defined(candidate) && Is.string(candidate.uri) && (candidate.version === null || Is.integer(candidate.version));
|
|
2634
2644
|
}
|
|
2635
|
-
OptionalVersionedTextDocumentIdentifier2.is =
|
|
2645
|
+
OptionalVersionedTextDocumentIdentifier2.is = is2;
|
|
2636
2646
|
})(OptionalVersionedTextDocumentIdentifier || (OptionalVersionedTextDocumentIdentifier = {}));
|
|
2637
2647
|
(function(TextDocumentItem2) {
|
|
2638
2648
|
function create(uri, languageId, version, text) {
|
|
2639
2649
|
return { uri, languageId, version, text };
|
|
2640
2650
|
}
|
|
2641
2651
|
TextDocumentItem2.create = create;
|
|
2642
|
-
function
|
|
2652
|
+
function is2(value) {
|
|
2643
2653
|
var candidate = value;
|
|
2644
2654
|
return Is.defined(candidate) && Is.string(candidate.uri) && Is.string(candidate.languageId) && Is.integer(candidate.version) && Is.string(candidate.text);
|
|
2645
2655
|
}
|
|
2646
|
-
TextDocumentItem2.is =
|
|
2656
|
+
TextDocumentItem2.is = is2;
|
|
2647
2657
|
})(TextDocumentItem || (TextDocumentItem = {}));
|
|
2648
2658
|
(function(MarkupKind2) {
|
|
2649
2659
|
MarkupKind2.PlainText = "plaintext";
|
|
2650
2660
|
MarkupKind2.Markdown = "markdown";
|
|
2651
|
-
function
|
|
2661
|
+
function is2(value) {
|
|
2652
2662
|
var candidate = value;
|
|
2653
2663
|
return candidate === MarkupKind2.PlainText || candidate === MarkupKind2.Markdown;
|
|
2654
2664
|
}
|
|
2655
|
-
MarkupKind2.is =
|
|
2665
|
+
MarkupKind2.is = is2;
|
|
2656
2666
|
})(MarkupKind || (MarkupKind = {}));
|
|
2657
2667
|
(function(MarkupContent2) {
|
|
2658
|
-
function
|
|
2668
|
+
function is2(value) {
|
|
2659
2669
|
var candidate = value;
|
|
2660
2670
|
return Is.objectLiteral(value) && MarkupKind.is(candidate.kind) && Is.string(candidate.value);
|
|
2661
2671
|
}
|
|
2662
|
-
MarkupContent2.is =
|
|
2672
|
+
MarkupContent2.is = is2;
|
|
2663
2673
|
})(MarkupContent || (MarkupContent = {}));
|
|
2664
2674
|
(function(CompletionItemKind2) {
|
|
2665
2675
|
CompletionItemKind2.Text = 1;
|
|
@@ -2700,22 +2710,22 @@ var init_main = __esm({
|
|
|
2700
2710
|
return { newText, insert, replace };
|
|
2701
2711
|
}
|
|
2702
2712
|
InsertReplaceEdit2.create = create;
|
|
2703
|
-
function
|
|
2713
|
+
function is2(value) {
|
|
2704
2714
|
var candidate = value;
|
|
2705
2715
|
return candidate && Is.string(candidate.newText) && Range.is(candidate.insert) && Range.is(candidate.replace);
|
|
2706
2716
|
}
|
|
2707
|
-
InsertReplaceEdit2.is =
|
|
2717
|
+
InsertReplaceEdit2.is = is2;
|
|
2708
2718
|
})(InsertReplaceEdit || (InsertReplaceEdit = {}));
|
|
2709
2719
|
(function(InsertTextMode2) {
|
|
2710
2720
|
InsertTextMode2.asIs = 1;
|
|
2711
2721
|
InsertTextMode2.adjustIndentation = 2;
|
|
2712
2722
|
})(InsertTextMode || (InsertTextMode = {}));
|
|
2713
2723
|
(function(CompletionItemLabelDetails2) {
|
|
2714
|
-
function
|
|
2724
|
+
function is2(value) {
|
|
2715
2725
|
var candidate = value;
|
|
2716
2726
|
return candidate && (Is.string(candidate.detail) || candidate.detail === void 0) && (Is.string(candidate.description) || candidate.description === void 0);
|
|
2717
2727
|
}
|
|
2718
|
-
CompletionItemLabelDetails2.is =
|
|
2728
|
+
CompletionItemLabelDetails2.is = is2;
|
|
2719
2729
|
})(CompletionItemLabelDetails || (CompletionItemLabelDetails = {}));
|
|
2720
2730
|
(function(CompletionItem2) {
|
|
2721
2731
|
function create(label) {
|
|
@@ -2734,18 +2744,18 @@ var init_main = __esm({
|
|
|
2734
2744
|
return plainText.replace(/[\\`*_{}[\]()#+\-.!]/g, "\\$&");
|
|
2735
2745
|
}
|
|
2736
2746
|
MarkedString2.fromPlainText = fromPlainText;
|
|
2737
|
-
function
|
|
2747
|
+
function is2(value) {
|
|
2738
2748
|
var candidate = value;
|
|
2739
2749
|
return Is.string(candidate) || Is.objectLiteral(candidate) && Is.string(candidate.language) && Is.string(candidate.value);
|
|
2740
2750
|
}
|
|
2741
|
-
MarkedString2.is =
|
|
2751
|
+
MarkedString2.is = is2;
|
|
2742
2752
|
})(MarkedString || (MarkedString = {}));
|
|
2743
2753
|
(function(Hover2) {
|
|
2744
|
-
function
|
|
2754
|
+
function is2(value) {
|
|
2745
2755
|
var candidate = value;
|
|
2746
2756
|
return !!candidate && Is.objectLiteral(candidate) && (MarkupContent.is(candidate.contents) || MarkedString.is(candidate.contents) || Is.typedArray(candidate.contents, MarkedString.is)) && (value.range === void 0 || Range.is(value.range));
|
|
2747
2757
|
}
|
|
2748
|
-
Hover2.is =
|
|
2758
|
+
Hover2.is = is2;
|
|
2749
2759
|
})(Hover || (Hover = {}));
|
|
2750
2760
|
(function(ParameterInformation2) {
|
|
2751
2761
|
function create(label, documentation) {
|
|
@@ -2853,11 +2863,11 @@ var init_main = __esm({
|
|
|
2853
2863
|
return result;
|
|
2854
2864
|
}
|
|
2855
2865
|
DocumentSymbol2.create = create;
|
|
2856
|
-
function
|
|
2866
|
+
function is2(value) {
|
|
2857
2867
|
var candidate = value;
|
|
2858
2868
|
return candidate && Is.string(candidate.name) && Is.number(candidate.kind) && Range.is(candidate.range) && Range.is(candidate.selectionRange) && (candidate.detail === void 0 || Is.string(candidate.detail)) && (candidate.deprecated === void 0 || Is.boolean(candidate.deprecated)) && (candidate.children === void 0 || Array.isArray(candidate.children)) && (candidate.tags === void 0 || Array.isArray(candidate.tags));
|
|
2859
2869
|
}
|
|
2860
|
-
DocumentSymbol2.is =
|
|
2870
|
+
DocumentSymbol2.is = is2;
|
|
2861
2871
|
})(DocumentSymbol || (DocumentSymbol = {}));
|
|
2862
2872
|
(function(CodeActionKind2) {
|
|
2863
2873
|
CodeActionKind2.Empty = "";
|
|
@@ -2886,11 +2896,11 @@ var init_main = __esm({
|
|
|
2886
2896
|
return result;
|
|
2887
2897
|
}
|
|
2888
2898
|
CodeActionContext2.create = create;
|
|
2889
|
-
function
|
|
2899
|
+
function is2(value) {
|
|
2890
2900
|
var candidate = value;
|
|
2891
2901
|
return Is.defined(candidate) && Is.typedArray(candidate.diagnostics, Diagnostic.is) && (candidate.only === void 0 || Is.typedArray(candidate.only, Is.string)) && (candidate.triggerKind === void 0 || candidate.triggerKind === CodeActionTriggerKind.Invoked || candidate.triggerKind === CodeActionTriggerKind.Automatic);
|
|
2892
2902
|
}
|
|
2893
|
-
CodeActionContext2.is =
|
|
2903
|
+
CodeActionContext2.is = is2;
|
|
2894
2904
|
})(CodeActionContext || (CodeActionContext = {}));
|
|
2895
2905
|
(function(CodeAction2) {
|
|
2896
2906
|
function create(title, kindOrCommandOrEdit, kind) {
|
|
@@ -2910,11 +2920,11 @@ var init_main = __esm({
|
|
|
2910
2920
|
return result;
|
|
2911
2921
|
}
|
|
2912
2922
|
CodeAction2.create = create;
|
|
2913
|
-
function
|
|
2923
|
+
function is2(value) {
|
|
2914
2924
|
var candidate = value;
|
|
2915
2925
|
return candidate && Is.string(candidate.title) && (candidate.diagnostics === void 0 || Is.typedArray(candidate.diagnostics, Diagnostic.is)) && (candidate.kind === void 0 || Is.string(candidate.kind)) && (candidate.edit !== void 0 || candidate.command !== void 0) && (candidate.command === void 0 || Command.is(candidate.command)) && (candidate.isPreferred === void 0 || Is.boolean(candidate.isPreferred)) && (candidate.edit === void 0 || WorkspaceEdit.is(candidate.edit));
|
|
2916
2926
|
}
|
|
2917
|
-
CodeAction2.is =
|
|
2927
|
+
CodeAction2.is = is2;
|
|
2918
2928
|
})(CodeAction || (CodeAction = {}));
|
|
2919
2929
|
(function(CodeLens2) {
|
|
2920
2930
|
function create(range, data) {
|
|
@@ -2925,44 +2935,44 @@ var init_main = __esm({
|
|
|
2925
2935
|
return result;
|
|
2926
2936
|
}
|
|
2927
2937
|
CodeLens2.create = create;
|
|
2928
|
-
function
|
|
2938
|
+
function is2(value) {
|
|
2929
2939
|
var candidate = value;
|
|
2930
2940
|
return Is.defined(candidate) && Range.is(candidate.range) && (Is.undefined(candidate.command) || Command.is(candidate.command));
|
|
2931
2941
|
}
|
|
2932
|
-
CodeLens2.is =
|
|
2942
|
+
CodeLens2.is = is2;
|
|
2933
2943
|
})(CodeLens || (CodeLens = {}));
|
|
2934
2944
|
(function(FormattingOptions2) {
|
|
2935
2945
|
function create(tabSize, insertSpaces) {
|
|
2936
2946
|
return { tabSize, insertSpaces };
|
|
2937
2947
|
}
|
|
2938
2948
|
FormattingOptions2.create = create;
|
|
2939
|
-
function
|
|
2949
|
+
function is2(value) {
|
|
2940
2950
|
var candidate = value;
|
|
2941
2951
|
return Is.defined(candidate) && Is.uinteger(candidate.tabSize) && Is.boolean(candidate.insertSpaces);
|
|
2942
2952
|
}
|
|
2943
|
-
FormattingOptions2.is =
|
|
2953
|
+
FormattingOptions2.is = is2;
|
|
2944
2954
|
})(FormattingOptions || (FormattingOptions = {}));
|
|
2945
2955
|
(function(DocumentLink2) {
|
|
2946
2956
|
function create(range, target, data) {
|
|
2947
2957
|
return { range, target, data };
|
|
2948
2958
|
}
|
|
2949
2959
|
DocumentLink2.create = create;
|
|
2950
|
-
function
|
|
2960
|
+
function is2(value) {
|
|
2951
2961
|
var candidate = value;
|
|
2952
2962
|
return Is.defined(candidate) && Range.is(candidate.range) && (Is.undefined(candidate.target) || Is.string(candidate.target));
|
|
2953
2963
|
}
|
|
2954
|
-
DocumentLink2.is =
|
|
2964
|
+
DocumentLink2.is = is2;
|
|
2955
2965
|
})(DocumentLink || (DocumentLink = {}));
|
|
2956
2966
|
(function(SelectionRange2) {
|
|
2957
2967
|
function create(range, parent) {
|
|
2958
2968
|
return { range, parent };
|
|
2959
2969
|
}
|
|
2960
2970
|
SelectionRange2.create = create;
|
|
2961
|
-
function
|
|
2971
|
+
function is2(value) {
|
|
2962
2972
|
var candidate = value;
|
|
2963
2973
|
return Is.objectLiteral(candidate) && Range.is(candidate.range) && (candidate.parent === void 0 || SelectionRange2.is(candidate.parent));
|
|
2964
2974
|
}
|
|
2965
|
-
SelectionRange2.is =
|
|
2975
|
+
SelectionRange2.is = is2;
|
|
2966
2976
|
})(SelectionRange || (SelectionRange = {}));
|
|
2967
2977
|
(function(SemanticTokenTypes2) {
|
|
2968
2978
|
SemanticTokenTypes2["namespace"] = "namespace";
|
|
@@ -3002,74 +3012,74 @@ var init_main = __esm({
|
|
|
3002
3012
|
SemanticTokenModifiers2["defaultLibrary"] = "defaultLibrary";
|
|
3003
3013
|
})(SemanticTokenModifiers || (SemanticTokenModifiers = {}));
|
|
3004
3014
|
(function(SemanticTokens2) {
|
|
3005
|
-
function
|
|
3015
|
+
function is2(value) {
|
|
3006
3016
|
var candidate = value;
|
|
3007
3017
|
return Is.objectLiteral(candidate) && (candidate.resultId === void 0 || typeof candidate.resultId === "string") && Array.isArray(candidate.data) && (candidate.data.length === 0 || typeof candidate.data[0] === "number");
|
|
3008
3018
|
}
|
|
3009
|
-
SemanticTokens2.is =
|
|
3019
|
+
SemanticTokens2.is = is2;
|
|
3010
3020
|
})(SemanticTokens || (SemanticTokens = {}));
|
|
3011
3021
|
(function(InlineValueText2) {
|
|
3012
3022
|
function create(range, text) {
|
|
3013
3023
|
return { range, text };
|
|
3014
3024
|
}
|
|
3015
3025
|
InlineValueText2.create = create;
|
|
3016
|
-
function
|
|
3026
|
+
function is2(value) {
|
|
3017
3027
|
var candidate = value;
|
|
3018
3028
|
return candidate !== void 0 && candidate !== null && Range.is(candidate.range) && Is.string(candidate.text);
|
|
3019
3029
|
}
|
|
3020
|
-
InlineValueText2.is =
|
|
3030
|
+
InlineValueText2.is = is2;
|
|
3021
3031
|
})(InlineValueText || (InlineValueText = {}));
|
|
3022
3032
|
(function(InlineValueVariableLookup2) {
|
|
3023
3033
|
function create(range, variableName, caseSensitiveLookup) {
|
|
3024
3034
|
return { range, variableName, caseSensitiveLookup };
|
|
3025
3035
|
}
|
|
3026
3036
|
InlineValueVariableLookup2.create = create;
|
|
3027
|
-
function
|
|
3037
|
+
function is2(value) {
|
|
3028
3038
|
var candidate = value;
|
|
3029
3039
|
return candidate !== void 0 && candidate !== null && Range.is(candidate.range) && Is.boolean(candidate.caseSensitiveLookup) && (Is.string(candidate.variableName) || candidate.variableName === void 0);
|
|
3030
3040
|
}
|
|
3031
|
-
InlineValueVariableLookup2.is =
|
|
3041
|
+
InlineValueVariableLookup2.is = is2;
|
|
3032
3042
|
})(InlineValueVariableLookup || (InlineValueVariableLookup = {}));
|
|
3033
3043
|
(function(InlineValueEvaluatableExpression2) {
|
|
3034
3044
|
function create(range, expression) {
|
|
3035
3045
|
return { range, expression };
|
|
3036
3046
|
}
|
|
3037
3047
|
InlineValueEvaluatableExpression2.create = create;
|
|
3038
|
-
function
|
|
3048
|
+
function is2(value) {
|
|
3039
3049
|
var candidate = value;
|
|
3040
3050
|
return candidate !== void 0 && candidate !== null && Range.is(candidate.range) && (Is.string(candidate.expression) || candidate.expression === void 0);
|
|
3041
3051
|
}
|
|
3042
|
-
InlineValueEvaluatableExpression2.is =
|
|
3052
|
+
InlineValueEvaluatableExpression2.is = is2;
|
|
3043
3053
|
})(InlineValueEvaluatableExpression || (InlineValueEvaluatableExpression = {}));
|
|
3044
3054
|
(function(InlineValueContext2) {
|
|
3045
3055
|
function create(frameId, stoppedLocation) {
|
|
3046
3056
|
return { frameId, stoppedLocation };
|
|
3047
3057
|
}
|
|
3048
3058
|
InlineValueContext2.create = create;
|
|
3049
|
-
function
|
|
3059
|
+
function is2(value) {
|
|
3050
3060
|
var candidate = value;
|
|
3051
3061
|
return Is.defined(candidate) && Range.is(value.stoppedLocation);
|
|
3052
3062
|
}
|
|
3053
|
-
InlineValueContext2.is =
|
|
3063
|
+
InlineValueContext2.is = is2;
|
|
3054
3064
|
})(InlineValueContext || (InlineValueContext = {}));
|
|
3055
3065
|
(function(InlayHintKind3) {
|
|
3056
3066
|
InlayHintKind3.Type = 1;
|
|
3057
3067
|
InlayHintKind3.Parameter = 2;
|
|
3058
|
-
function
|
|
3068
|
+
function is2(value) {
|
|
3059
3069
|
return value === 1 || value === 2;
|
|
3060
3070
|
}
|
|
3061
|
-
InlayHintKind3.is =
|
|
3071
|
+
InlayHintKind3.is = is2;
|
|
3062
3072
|
})(InlayHintKind2 || (InlayHintKind2 = {}));
|
|
3063
3073
|
(function(InlayHintLabelPart2) {
|
|
3064
3074
|
function create(value) {
|
|
3065
3075
|
return { value };
|
|
3066
3076
|
}
|
|
3067
3077
|
InlayHintLabelPart2.create = create;
|
|
3068
|
-
function
|
|
3078
|
+
function is2(value) {
|
|
3069
3079
|
var candidate = value;
|
|
3070
3080
|
return Is.objectLiteral(candidate) && (candidate.tooltip === void 0 || Is.string(candidate.tooltip) || MarkupContent.is(candidate.tooltip)) && (candidate.location === void 0 || Location.is(candidate.location)) && (candidate.command === void 0 || Command.is(candidate.command));
|
|
3071
3081
|
}
|
|
3072
|
-
InlayHintLabelPart2.is =
|
|
3082
|
+
InlayHintLabelPart2.is = is2;
|
|
3073
3083
|
})(InlayHintLabelPart || (InlayHintLabelPart = {}));
|
|
3074
3084
|
(function(InlayHint2) {
|
|
3075
3085
|
function create(position, label, kind) {
|
|
@@ -3080,18 +3090,18 @@ var init_main = __esm({
|
|
|
3080
3090
|
return result;
|
|
3081
3091
|
}
|
|
3082
3092
|
InlayHint2.create = create;
|
|
3083
|
-
function
|
|
3093
|
+
function is2(value) {
|
|
3084
3094
|
var candidate = value;
|
|
3085
3095
|
return Is.objectLiteral(candidate) && Position.is(candidate.position) && (Is.string(candidate.label) || Is.typedArray(candidate.label, InlayHintLabelPart.is)) && (candidate.kind === void 0 || InlayHintKind2.is(candidate.kind)) && candidate.textEdits === void 0 || Is.typedArray(candidate.textEdits, TextEdit.is) && (candidate.tooltip === void 0 || Is.string(candidate.tooltip) || MarkupContent.is(candidate.tooltip)) && (candidate.paddingLeft === void 0 || Is.boolean(candidate.paddingLeft)) && (candidate.paddingRight === void 0 || Is.boolean(candidate.paddingRight));
|
|
3086
3096
|
}
|
|
3087
|
-
InlayHint2.is =
|
|
3097
|
+
InlayHint2.is = is2;
|
|
3088
3098
|
})(InlayHint || (InlayHint = {}));
|
|
3089
3099
|
(function(WorkspaceFolder2) {
|
|
3090
|
-
function
|
|
3100
|
+
function is2(value) {
|
|
3091
3101
|
var candidate = value;
|
|
3092
3102
|
return Is.objectLiteral(candidate) && URI.is(candidate.uri) && Is.string(candidate.name);
|
|
3093
3103
|
}
|
|
3094
|
-
WorkspaceFolder2.is =
|
|
3104
|
+
WorkspaceFolder2.is = is2;
|
|
3095
3105
|
})(WorkspaceFolder || (WorkspaceFolder = {}));
|
|
3096
3106
|
EOL = ["\n", "\r\n", "\r"];
|
|
3097
3107
|
(function(TextDocument3) {
|
|
@@ -3099,11 +3109,11 @@ var init_main = __esm({
|
|
|
3099
3109
|
return new FullTextDocument(uri, languageId, version, content);
|
|
3100
3110
|
}
|
|
3101
3111
|
TextDocument3.create = create;
|
|
3102
|
-
function
|
|
3112
|
+
function is2(value) {
|
|
3103
3113
|
var candidate = value;
|
|
3104
3114
|
return Is.defined(candidate) && Is.string(candidate.uri) && (Is.undefined(candidate.languageId) || Is.string(candidate.languageId)) && Is.uinteger(candidate.lineCount) && Is.func(candidate.getText) && Is.func(candidate.positionAt) && Is.func(candidate.offsetAt) ? true : false;
|
|
3105
3115
|
}
|
|
3106
|
-
TextDocument3.is =
|
|
3116
|
+
TextDocument3.is = is2;
|
|
3107
3117
|
function applyEdits3(document2, edits) {
|
|
3108
3118
|
var text = document2.getText();
|
|
3109
3119
|
var sortedEdits = mergeSort2(edits, function(a2, b) {
|
|
@@ -18300,7 +18310,7 @@ var require_messages = __commonJS({
|
|
|
18300
18310
|
"use strict";
|
|
18301
18311
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
18302
18312
|
exports2.Message = exports2.NotificationType9 = exports2.NotificationType8 = exports2.NotificationType7 = exports2.NotificationType6 = exports2.NotificationType5 = exports2.NotificationType4 = exports2.NotificationType3 = exports2.NotificationType2 = exports2.NotificationType1 = exports2.NotificationType0 = exports2.NotificationType = exports2.RequestType9 = exports2.RequestType8 = exports2.RequestType7 = exports2.RequestType6 = exports2.RequestType5 = exports2.RequestType4 = exports2.RequestType3 = exports2.RequestType2 = exports2.RequestType1 = exports2.RequestType = exports2.RequestType0 = exports2.AbstractMessageSignature = exports2.ParameterStructures = exports2.ResponseError = exports2.ErrorCodes = void 0;
|
|
18303
|
-
var
|
|
18313
|
+
var is2 = require_is2();
|
|
18304
18314
|
var ErrorCodes;
|
|
18305
18315
|
(function(ErrorCodes2) {
|
|
18306
18316
|
ErrorCodes2.ParseError = -32700;
|
|
@@ -18322,7 +18332,7 @@ var require_messages = __commonJS({
|
|
|
18322
18332
|
var ResponseError = class extends Error {
|
|
18323
18333
|
constructor(code, message, data) {
|
|
18324
18334
|
super(message);
|
|
18325
|
-
this.code =
|
|
18335
|
+
this.code = is2.number(code) ? code : ErrorCodes.UnknownErrorCode;
|
|
18326
18336
|
this.data = data;
|
|
18327
18337
|
Object.setPrototypeOf(this, ResponseError.prototype);
|
|
18328
18338
|
}
|
|
@@ -18515,17 +18525,17 @@ var require_messages = __commonJS({
|
|
|
18515
18525
|
(function(Message2) {
|
|
18516
18526
|
function isRequest(message) {
|
|
18517
18527
|
const candidate = message;
|
|
18518
|
-
return candidate &&
|
|
18528
|
+
return candidate && is2.string(candidate.method) && (is2.string(candidate.id) || is2.number(candidate.id));
|
|
18519
18529
|
}
|
|
18520
18530
|
Message2.isRequest = isRequest;
|
|
18521
18531
|
function isNotification(message) {
|
|
18522
18532
|
const candidate = message;
|
|
18523
|
-
return candidate &&
|
|
18533
|
+
return candidate && is2.string(candidate.method) && message.id === void 0;
|
|
18524
18534
|
}
|
|
18525
18535
|
Message2.isNotification = isNotification;
|
|
18526
18536
|
function isResponse(message) {
|
|
18527
18537
|
const candidate = message;
|
|
18528
|
-
return candidate && (candidate.result !== void 0 || !!candidate.error) && (
|
|
18538
|
+
return candidate && (candidate.result !== void 0 || !!candidate.error) && (is2.string(candidate.id) || is2.number(candidate.id) || candidate.id === null);
|
|
18529
18539
|
}
|
|
18530
18540
|
Message2.isResponse = isResponse;
|
|
18531
18541
|
})(Message = exports2.Message || (exports2.Message = {}));
|
|
@@ -19093,11 +19103,11 @@ var require_cancellation = __commonJS({
|
|
|
19093
19103
|
isCancellationRequested: true,
|
|
19094
19104
|
onCancellationRequested: events_1.Event.None
|
|
19095
19105
|
});
|
|
19096
|
-
function
|
|
19106
|
+
function is2(value) {
|
|
19097
19107
|
const candidate = value;
|
|
19098
19108
|
return candidate && (candidate === CancellationToken2.None || candidate === CancellationToken2.Cancelled || Is2.boolean(candidate.isCancellationRequested) && !!candidate.onCancellationRequested);
|
|
19099
19109
|
}
|
|
19100
|
-
CancellationToken2.is =
|
|
19110
|
+
CancellationToken2.is = is2;
|
|
19101
19111
|
})(CancellationToken = exports2.CancellationToken || (exports2.CancellationToken = {}));
|
|
19102
19112
|
var shortcutEvent = Object.freeze(function(callback, context) {
|
|
19103
19113
|
const handle = (0, ral_1.default)().timer.setTimeout(callback.bind(context), 0);
|
|
@@ -19321,11 +19331,11 @@ var require_messageReader = __commonJS({
|
|
|
19321
19331
|
var semaphore_1 = require_semaphore();
|
|
19322
19332
|
var MessageReader;
|
|
19323
19333
|
(function(MessageReader2) {
|
|
19324
|
-
function
|
|
19334
|
+
function is2(value) {
|
|
19325
19335
|
let candidate = value;
|
|
19326
19336
|
return candidate && Is2.func(candidate.listen) && Is2.func(candidate.dispose) && Is2.func(candidate.onError) && Is2.func(candidate.onClose) && Is2.func(candidate.onPartialMessage);
|
|
19327
19337
|
}
|
|
19328
|
-
MessageReader2.is =
|
|
19338
|
+
MessageReader2.is = is2;
|
|
19329
19339
|
})(MessageReader = exports2.MessageReader || (exports2.MessageReader = {}));
|
|
19330
19340
|
var AbstractMessageReader = class {
|
|
19331
19341
|
constructor() {
|
|
@@ -19507,11 +19517,11 @@ var require_messageWriter = __commonJS({
|
|
|
19507
19517
|
var CRLF = "\r\n";
|
|
19508
19518
|
var MessageWriter;
|
|
19509
19519
|
(function(MessageWriter2) {
|
|
19510
|
-
function
|
|
19520
|
+
function is2(value) {
|
|
19511
19521
|
let candidate = value;
|
|
19512
19522
|
return candidate && Is2.func(candidate.dispose) && Is2.func(candidate.onClose) && Is2.func(candidate.onError) && Is2.func(candidate.write);
|
|
19513
19523
|
}
|
|
19514
|
-
MessageWriter2.is =
|
|
19524
|
+
MessageWriter2.is = is2;
|
|
19515
19525
|
})(MessageWriter = exports2.MessageWriter || (exports2.MessageWriter = {}));
|
|
19516
19526
|
var AbstractMessageWriter = class {
|
|
19517
19527
|
constructor() {
|
|
@@ -19772,10 +19782,10 @@ var require_connection = __commonJS({
|
|
|
19772
19782
|
})(CancelNotification || (CancelNotification = {}));
|
|
19773
19783
|
var ProgressToken;
|
|
19774
19784
|
(function(ProgressToken2) {
|
|
19775
|
-
function
|
|
19785
|
+
function is2(value) {
|
|
19776
19786
|
return typeof value === "string" || typeof value === "number";
|
|
19777
19787
|
}
|
|
19778
|
-
ProgressToken2.is =
|
|
19788
|
+
ProgressToken2.is = is2;
|
|
19779
19789
|
})(ProgressToken = exports2.ProgressToken || (exports2.ProgressToken = {}));
|
|
19780
19790
|
var ProgressNotification;
|
|
19781
19791
|
(function(ProgressNotification2) {
|
|
@@ -19788,10 +19798,10 @@ var require_connection = __commonJS({
|
|
|
19788
19798
|
exports2.ProgressType = ProgressType;
|
|
19789
19799
|
var StarRequestHandler;
|
|
19790
19800
|
(function(StarRequestHandler2) {
|
|
19791
|
-
function
|
|
19801
|
+
function is2(value) {
|
|
19792
19802
|
return Is2.func(value);
|
|
19793
19803
|
}
|
|
19794
|
-
StarRequestHandler2.is =
|
|
19804
|
+
StarRequestHandler2.is = is2;
|
|
19795
19805
|
})(StarRequestHandler || (StarRequestHandler = {}));
|
|
19796
19806
|
exports2.NullLogger = Object.freeze({
|
|
19797
19807
|
error: () => {
|
|
@@ -19896,27 +19906,27 @@ var require_connection = __commonJS({
|
|
|
19896
19906
|
exports2.ConnectionError = ConnectionError;
|
|
19897
19907
|
var ConnectionStrategy;
|
|
19898
19908
|
(function(ConnectionStrategy2) {
|
|
19899
|
-
function
|
|
19909
|
+
function is2(value) {
|
|
19900
19910
|
const candidate = value;
|
|
19901
19911
|
return candidate && Is2.func(candidate.cancelUndispatched);
|
|
19902
19912
|
}
|
|
19903
|
-
ConnectionStrategy2.is =
|
|
19913
|
+
ConnectionStrategy2.is = is2;
|
|
19904
19914
|
})(ConnectionStrategy = exports2.ConnectionStrategy || (exports2.ConnectionStrategy = {}));
|
|
19905
19915
|
var IdCancellationReceiverStrategy;
|
|
19906
19916
|
(function(IdCancellationReceiverStrategy2) {
|
|
19907
|
-
function
|
|
19917
|
+
function is2(value) {
|
|
19908
19918
|
const candidate = value;
|
|
19909
19919
|
return candidate && (candidate.kind === void 0 || candidate.kind === "id") && Is2.func(candidate.createCancellationTokenSource) && (candidate.dispose === void 0 || Is2.func(candidate.dispose));
|
|
19910
19920
|
}
|
|
19911
|
-
IdCancellationReceiverStrategy2.is =
|
|
19921
|
+
IdCancellationReceiverStrategy2.is = is2;
|
|
19912
19922
|
})(IdCancellationReceiverStrategy = exports2.IdCancellationReceiverStrategy || (exports2.IdCancellationReceiverStrategy = {}));
|
|
19913
19923
|
var RequestCancellationReceiverStrategy;
|
|
19914
19924
|
(function(RequestCancellationReceiverStrategy2) {
|
|
19915
|
-
function
|
|
19925
|
+
function is2(value) {
|
|
19916
19926
|
const candidate = value;
|
|
19917
19927
|
return candidate && candidate.kind === "request" && Is2.func(candidate.createCancellationTokenSource) && (candidate.dispose === void 0 || Is2.func(candidate.dispose));
|
|
19918
19928
|
}
|
|
19919
|
-
RequestCancellationReceiverStrategy2.is =
|
|
19929
|
+
RequestCancellationReceiverStrategy2.is = is2;
|
|
19920
19930
|
})(RequestCancellationReceiverStrategy = exports2.RequestCancellationReceiverStrategy || (exports2.RequestCancellationReceiverStrategy = {}));
|
|
19921
19931
|
var CancellationReceiverStrategy;
|
|
19922
19932
|
(function(CancellationReceiverStrategy2) {
|
|
@@ -19925,10 +19935,10 @@ var require_connection = __commonJS({
|
|
|
19925
19935
|
return new cancellation_1.CancellationTokenSource();
|
|
19926
19936
|
}
|
|
19927
19937
|
});
|
|
19928
|
-
function
|
|
19938
|
+
function is2(value) {
|
|
19929
19939
|
return IdCancellationReceiverStrategy.is(value) || RequestCancellationReceiverStrategy.is(value);
|
|
19930
19940
|
}
|
|
19931
|
-
CancellationReceiverStrategy2.is =
|
|
19941
|
+
CancellationReceiverStrategy2.is = is2;
|
|
19932
19942
|
})(CancellationReceiverStrategy = exports2.CancellationReceiverStrategy || (exports2.CancellationReceiverStrategy = {}));
|
|
19933
19943
|
var CancellationSenderStrategy;
|
|
19934
19944
|
(function(CancellationSenderStrategy2) {
|
|
@@ -19939,11 +19949,11 @@ var require_connection = __commonJS({
|
|
|
19939
19949
|
cleanup(_) {
|
|
19940
19950
|
}
|
|
19941
19951
|
});
|
|
19942
|
-
function
|
|
19952
|
+
function is2(value) {
|
|
19943
19953
|
const candidate = value;
|
|
19944
19954
|
return candidate && Is2.func(candidate.sendCancellation) && Is2.func(candidate.cleanup);
|
|
19945
19955
|
}
|
|
19946
|
-
CancellationSenderStrategy2.is =
|
|
19956
|
+
CancellationSenderStrategy2.is = is2;
|
|
19947
19957
|
})(CancellationSenderStrategy = exports2.CancellationSenderStrategy || (exports2.CancellationSenderStrategy = {}));
|
|
19948
19958
|
var CancellationStrategy;
|
|
19949
19959
|
(function(CancellationStrategy2) {
|
|
@@ -19951,27 +19961,27 @@ var require_connection = __commonJS({
|
|
|
19951
19961
|
receiver: CancellationReceiverStrategy.Message,
|
|
19952
19962
|
sender: CancellationSenderStrategy.Message
|
|
19953
19963
|
});
|
|
19954
|
-
function
|
|
19964
|
+
function is2(value) {
|
|
19955
19965
|
const candidate = value;
|
|
19956
19966
|
return candidate && CancellationReceiverStrategy.is(candidate.receiver) && CancellationSenderStrategy.is(candidate.sender);
|
|
19957
19967
|
}
|
|
19958
|
-
CancellationStrategy2.is =
|
|
19968
|
+
CancellationStrategy2.is = is2;
|
|
19959
19969
|
})(CancellationStrategy = exports2.CancellationStrategy || (exports2.CancellationStrategy = {}));
|
|
19960
19970
|
var MessageStrategy;
|
|
19961
19971
|
(function(MessageStrategy2) {
|
|
19962
|
-
function
|
|
19972
|
+
function is2(value) {
|
|
19963
19973
|
const candidate = value;
|
|
19964
19974
|
return candidate && Is2.func(candidate.handleMessage);
|
|
19965
19975
|
}
|
|
19966
|
-
MessageStrategy2.is =
|
|
19976
|
+
MessageStrategy2.is = is2;
|
|
19967
19977
|
})(MessageStrategy = exports2.MessageStrategy || (exports2.MessageStrategy = {}));
|
|
19968
19978
|
var ConnectionOptions;
|
|
19969
19979
|
(function(ConnectionOptions2) {
|
|
19970
|
-
function
|
|
19980
|
+
function is2(value) {
|
|
19971
19981
|
const candidate = value;
|
|
19972
19982
|
return candidate && (CancellationStrategy.is(candidate.cancellationStrategy) || ConnectionStrategy.is(candidate.connectionStrategy) || MessageStrategy.is(candidate.messageStrategy));
|
|
19973
19983
|
}
|
|
19974
|
-
ConnectionOptions2.is =
|
|
19984
|
+
ConnectionOptions2.is = is2;
|
|
19975
19985
|
})(ConnectionOptions = exports2.ConnectionOptions || (exports2.ConnectionOptions = {}));
|
|
19976
19986
|
var ConnectionState;
|
|
19977
19987
|
(function(ConnectionState2) {
|
|
@@ -21754,10 +21764,10 @@ var require_protocol_progress = __commonJS({
|
|
|
21754
21764
|
var WorkDoneProgress;
|
|
21755
21765
|
(function(WorkDoneProgress2) {
|
|
21756
21766
|
WorkDoneProgress2.type = new vscode_jsonrpc_1.ProgressType();
|
|
21757
|
-
function
|
|
21767
|
+
function is2(value) {
|
|
21758
21768
|
return value === WorkDoneProgress2.type;
|
|
21759
21769
|
}
|
|
21760
|
-
WorkDoneProgress2.is =
|
|
21770
|
+
WorkDoneProgress2.is = is2;
|
|
21761
21771
|
})(WorkDoneProgress = exports2.WorkDoneProgress || (exports2.WorkDoneProgress = {}));
|
|
21762
21772
|
var WorkDoneProgressCreateRequest;
|
|
21763
21773
|
(function(WorkDoneProgressCreateRequest2) {
|
|
@@ -22050,11 +22060,11 @@ var require_protocol_diagnostic = __commonJS({
|
|
|
22050
22060
|
var messages_1 = require_messages2();
|
|
22051
22061
|
var DiagnosticServerCancellationData;
|
|
22052
22062
|
(function(DiagnosticServerCancellationData2) {
|
|
22053
|
-
function
|
|
22063
|
+
function is2(value) {
|
|
22054
22064
|
const candidate = value;
|
|
22055
22065
|
return candidate && Is2.boolean(candidate.retriggerRequest);
|
|
22056
22066
|
}
|
|
22057
|
-
DiagnosticServerCancellationData2.is =
|
|
22067
|
+
DiagnosticServerCancellationData2.is = is2;
|
|
22058
22068
|
})(DiagnosticServerCancellationData = exports2.DiagnosticServerCancellationData || (exports2.DiagnosticServerCancellationData = {}));
|
|
22059
22069
|
var DocumentDiagnosticReportKind;
|
|
22060
22070
|
(function(DocumentDiagnosticReportKind2) {
|
|
@@ -22097,10 +22107,10 @@ var require_protocol_notebook = __commonJS({
|
|
|
22097
22107
|
(function(NotebookCellKind2) {
|
|
22098
22108
|
NotebookCellKind2.Markup = 1;
|
|
22099
22109
|
NotebookCellKind2.Code = 2;
|
|
22100
|
-
function
|
|
22110
|
+
function is2(value) {
|
|
22101
22111
|
return value === 1 || value === 2;
|
|
22102
22112
|
}
|
|
22103
|
-
NotebookCellKind2.is =
|
|
22113
|
+
NotebookCellKind2.is = is2;
|
|
22104
22114
|
})(NotebookCellKind = exports2.NotebookCellKind || (exports2.NotebookCellKind = {}));
|
|
22105
22115
|
var ExecutionSummary;
|
|
22106
22116
|
(function(ExecutionSummary2) {
|
|
@@ -22112,11 +22122,11 @@ var require_protocol_notebook = __commonJS({
|
|
|
22112
22122
|
return result;
|
|
22113
22123
|
}
|
|
22114
22124
|
ExecutionSummary2.create = create;
|
|
22115
|
-
function
|
|
22125
|
+
function is2(value) {
|
|
22116
22126
|
const candidate = value;
|
|
22117
22127
|
return Is2.objectLiteral(candidate) && vscode_languageserver_types_1.uinteger.is(candidate.executionOrder) && (candidate.success === void 0 || Is2.boolean(candidate.success));
|
|
22118
22128
|
}
|
|
22119
|
-
ExecutionSummary2.is =
|
|
22129
|
+
ExecutionSummary2.is = is2;
|
|
22120
22130
|
function equals(one, other) {
|
|
22121
22131
|
if (one === other) {
|
|
22122
22132
|
return true;
|
|
@@ -22134,11 +22144,11 @@ var require_protocol_notebook = __commonJS({
|
|
|
22134
22144
|
return { kind, document: document2 };
|
|
22135
22145
|
}
|
|
22136
22146
|
NotebookCell2.create = create;
|
|
22137
|
-
function
|
|
22147
|
+
function is2(value) {
|
|
22138
22148
|
const candidate = value;
|
|
22139
22149
|
return Is2.objectLiteral(candidate) && NotebookCellKind.is(candidate.kind) && vscode_languageserver_types_1.DocumentUri.is(candidate.document) && (candidate.metadata === void 0 || Is2.objectLiteral(candidate.metadata));
|
|
22140
22150
|
}
|
|
22141
|
-
NotebookCell2.is =
|
|
22151
|
+
NotebookCell2.is = is2;
|
|
22142
22152
|
function diff(one, two) {
|
|
22143
22153
|
const result = /* @__PURE__ */ new Set();
|
|
22144
22154
|
if (one.document !== two.document) {
|
|
@@ -22214,11 +22224,11 @@ var require_protocol_notebook = __commonJS({
|
|
|
22214
22224
|
return { uri, notebookType, version, cells };
|
|
22215
22225
|
}
|
|
22216
22226
|
NotebookDocument2.create = create;
|
|
22217
|
-
function
|
|
22227
|
+
function is2(value) {
|
|
22218
22228
|
const candidate = value;
|
|
22219
22229
|
return Is2.objectLiteral(candidate) && Is2.string(candidate.uri) && vscode_languageserver_types_1.integer.is(candidate.version) && Is2.typedArray(candidate.cells, NotebookCell.is);
|
|
22220
22230
|
}
|
|
22221
|
-
NotebookDocument2.is =
|
|
22231
|
+
NotebookDocument2.is = is2;
|
|
22222
22232
|
})(NotebookDocument = exports2.NotebookDocument || (exports2.NotebookDocument = {}));
|
|
22223
22233
|
var NotebookDocumentSyncRegistrationType;
|
|
22224
22234
|
(function(NotebookDocumentSyncRegistrationType2) {
|
|
@@ -22235,11 +22245,11 @@ var require_protocol_notebook = __commonJS({
|
|
|
22235
22245
|
})(DidOpenNotebookDocumentNotification = exports2.DidOpenNotebookDocumentNotification || (exports2.DidOpenNotebookDocumentNotification = {}));
|
|
22236
22246
|
var NotebookCellArrayChange;
|
|
22237
22247
|
(function(NotebookCellArrayChange2) {
|
|
22238
|
-
function
|
|
22248
|
+
function is2(value) {
|
|
22239
22249
|
const candidate = value;
|
|
22240
22250
|
return Is2.objectLiteral(candidate) && vscode_languageserver_types_1.uinteger.is(candidate.start) && vscode_languageserver_types_1.uinteger.is(candidate.deleteCount) && (candidate.cells === void 0 || Is2.typedArray(candidate.cells, NotebookCell.is));
|
|
22241
22251
|
}
|
|
22242
|
-
NotebookCellArrayChange2.is =
|
|
22252
|
+
NotebookCellArrayChange2.is = is2;
|
|
22243
22253
|
function create(start, deleteCount, cells) {
|
|
22244
22254
|
const result = { start, deleteCount };
|
|
22245
22255
|
if (cells !== void 0) {
|
|
@@ -22477,31 +22487,31 @@ var require_protocol = __commonJS({
|
|
|
22477
22487
|
} });
|
|
22478
22488
|
var TextDocumentFilter;
|
|
22479
22489
|
(function(TextDocumentFilter2) {
|
|
22480
|
-
function
|
|
22490
|
+
function is2(value) {
|
|
22481
22491
|
const candidate = value;
|
|
22482
22492
|
return Is2.string(candidate.language) || Is2.string(candidate.scheme) || Is2.string(candidate.pattern);
|
|
22483
22493
|
}
|
|
22484
|
-
TextDocumentFilter2.is =
|
|
22494
|
+
TextDocumentFilter2.is = is2;
|
|
22485
22495
|
})(TextDocumentFilter = exports2.TextDocumentFilter || (exports2.TextDocumentFilter = {}));
|
|
22486
22496
|
var NotebookDocumentFilter;
|
|
22487
22497
|
(function(NotebookDocumentFilter2) {
|
|
22488
|
-
function
|
|
22498
|
+
function is2(value) {
|
|
22489
22499
|
const candidate = value;
|
|
22490
22500
|
return Is2.objectLiteral(candidate) && (Is2.string(candidate.notebookType) || Is2.string(candidate.scheme) || Is2.string(candidate.pattern));
|
|
22491
22501
|
}
|
|
22492
|
-
NotebookDocumentFilter2.is =
|
|
22502
|
+
NotebookDocumentFilter2.is = is2;
|
|
22493
22503
|
})(NotebookDocumentFilter = exports2.NotebookDocumentFilter || (exports2.NotebookDocumentFilter = {}));
|
|
22494
22504
|
var NotebookCellTextDocumentFilter;
|
|
22495
22505
|
(function(NotebookCellTextDocumentFilter2) {
|
|
22496
|
-
function
|
|
22506
|
+
function is2(value) {
|
|
22497
22507
|
const candidate = value;
|
|
22498
22508
|
return Is2.objectLiteral(candidate) && (Is2.string(candidate.notebook) || NotebookDocumentFilter.is(candidate.notebook)) && (candidate.language === void 0 || Is2.string(candidate.language));
|
|
22499
22509
|
}
|
|
22500
|
-
NotebookCellTextDocumentFilter2.is =
|
|
22510
|
+
NotebookCellTextDocumentFilter2.is = is2;
|
|
22501
22511
|
})(NotebookCellTextDocumentFilter = exports2.NotebookCellTextDocumentFilter || (exports2.NotebookCellTextDocumentFilter = {}));
|
|
22502
22512
|
var DocumentSelector;
|
|
22503
22513
|
(function(DocumentSelector2) {
|
|
22504
|
-
function
|
|
22514
|
+
function is2(value) {
|
|
22505
22515
|
if (!Array.isArray(value)) {
|
|
22506
22516
|
return false;
|
|
22507
22517
|
}
|
|
@@ -22512,7 +22522,7 @@ var require_protocol = __commonJS({
|
|
|
22512
22522
|
}
|
|
22513
22523
|
return true;
|
|
22514
22524
|
}
|
|
22515
|
-
DocumentSelector2.is =
|
|
22525
|
+
DocumentSelector2.is = is2;
|
|
22516
22526
|
})(DocumentSelector = exports2.DocumentSelector || (exports2.DocumentSelector = {}));
|
|
22517
22527
|
var RegistrationRequest;
|
|
22518
22528
|
(function(RegistrationRequest2) {
|
|
@@ -22555,19 +22565,19 @@ var require_protocol = __commonJS({
|
|
|
22555
22565
|
})(StaticRegistrationOptions = exports2.StaticRegistrationOptions || (exports2.StaticRegistrationOptions = {}));
|
|
22556
22566
|
var TextDocumentRegistrationOptions;
|
|
22557
22567
|
(function(TextDocumentRegistrationOptions2) {
|
|
22558
|
-
function
|
|
22568
|
+
function is2(value) {
|
|
22559
22569
|
const candidate = value;
|
|
22560
22570
|
return candidate && (candidate.documentSelector === null || DocumentSelector.is(candidate.documentSelector));
|
|
22561
22571
|
}
|
|
22562
|
-
TextDocumentRegistrationOptions2.is =
|
|
22572
|
+
TextDocumentRegistrationOptions2.is = is2;
|
|
22563
22573
|
})(TextDocumentRegistrationOptions = exports2.TextDocumentRegistrationOptions || (exports2.TextDocumentRegistrationOptions = {}));
|
|
22564
22574
|
var WorkDoneProgressOptions;
|
|
22565
22575
|
(function(WorkDoneProgressOptions2) {
|
|
22566
|
-
function
|
|
22576
|
+
function is2(value) {
|
|
22567
22577
|
const candidate = value;
|
|
22568
22578
|
return Is2.objectLiteral(candidate) && (candidate.workDoneProgress === void 0 || Is2.boolean(candidate.workDoneProgress));
|
|
22569
22579
|
}
|
|
22570
|
-
WorkDoneProgressOptions2.is =
|
|
22580
|
+
WorkDoneProgressOptions2.is = is2;
|
|
22571
22581
|
function hasWorkDoneProgress(value) {
|
|
22572
22582
|
const candidate = value;
|
|
22573
22583
|
return candidate && Is2.boolean(candidate.workDoneProgress);
|
|
@@ -22714,11 +22724,11 @@ var require_protocol = __commonJS({
|
|
|
22714
22724
|
})(FileChangeType = exports2.FileChangeType || (exports2.FileChangeType = {}));
|
|
22715
22725
|
var RelativePattern;
|
|
22716
22726
|
(function(RelativePattern2) {
|
|
22717
|
-
function
|
|
22727
|
+
function is2(value) {
|
|
22718
22728
|
const candidate = value;
|
|
22719
22729
|
return Is2.objectLiteral(candidate) && (vscode_languageserver_types_1.URI.is(candidate.baseUri) || vscode_languageserver_types_1.WorkspaceFolder.is(candidate.baseUri)) && Is2.string(candidate.pattern);
|
|
22720
22730
|
}
|
|
22721
|
-
RelativePattern2.is =
|
|
22731
|
+
RelativePattern2.is = is2;
|
|
22722
22732
|
})(RelativePattern = exports2.RelativePattern || (exports2.RelativePattern = {}));
|
|
22723
22733
|
var WatchKind;
|
|
22724
22734
|
(function(WatchKind2) {
|
|
@@ -23071,13 +23081,13 @@ var require_uuid = __commonJS({
|
|
|
23071
23081
|
return _UUIDPattern.test(value);
|
|
23072
23082
|
}
|
|
23073
23083
|
exports2.isUUID = isUUID;
|
|
23074
|
-
function
|
|
23084
|
+
function parse6(value) {
|
|
23075
23085
|
if (!isUUID(value)) {
|
|
23076
23086
|
throw new Error("invalid uuid");
|
|
23077
23087
|
}
|
|
23078
23088
|
return new ValueUUID(value);
|
|
23079
23089
|
}
|
|
23080
|
-
exports2.parse =
|
|
23090
|
+
exports2.parse = parse6;
|
|
23081
23091
|
function generateUuid() {
|
|
23082
23092
|
return v4().asHex();
|
|
23083
23093
|
}
|
|
@@ -26821,7 +26831,7 @@ var require_semver = __commonJS({
|
|
|
26821
26831
|
var require_parse = __commonJS({
|
|
26822
26832
|
"../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/parse.js"(exports2, module2) {
|
|
26823
26833
|
var SemVer = require_semver();
|
|
26824
|
-
var
|
|
26834
|
+
var parse6 = (version, options, throwErrors = false) => {
|
|
26825
26835
|
if (version instanceof SemVer) {
|
|
26826
26836
|
return version;
|
|
26827
26837
|
}
|
|
@@ -26834,16 +26844,16 @@ var require_parse = __commonJS({
|
|
|
26834
26844
|
throw er;
|
|
26835
26845
|
}
|
|
26836
26846
|
};
|
|
26837
|
-
module2.exports =
|
|
26847
|
+
module2.exports = parse6;
|
|
26838
26848
|
}
|
|
26839
26849
|
});
|
|
26840
26850
|
|
|
26841
26851
|
// ../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/valid.js
|
|
26842
26852
|
var require_valid = __commonJS({
|
|
26843
26853
|
"../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/valid.js"(exports2, module2) {
|
|
26844
|
-
var
|
|
26854
|
+
var parse6 = require_parse();
|
|
26845
26855
|
var valid = (version, options) => {
|
|
26846
|
-
const v =
|
|
26856
|
+
const v = parse6(version, options);
|
|
26847
26857
|
return v ? v.version : null;
|
|
26848
26858
|
};
|
|
26849
26859
|
module2.exports = valid;
|
|
@@ -26853,9 +26863,9 @@ var require_valid = __commonJS({
|
|
|
26853
26863
|
// ../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/clean.js
|
|
26854
26864
|
var require_clean = __commonJS({
|
|
26855
26865
|
"../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/clean.js"(exports2, module2) {
|
|
26856
|
-
var
|
|
26866
|
+
var parse6 = require_parse();
|
|
26857
26867
|
var clean = (version, options) => {
|
|
26858
|
-
const s =
|
|
26868
|
+
const s = parse6(version.trim().replace(/^[=v]+/, ""), options);
|
|
26859
26869
|
return s ? s.version : null;
|
|
26860
26870
|
};
|
|
26861
26871
|
module2.exports = clean;
|
|
@@ -26888,10 +26898,10 @@ var require_inc = __commonJS({
|
|
|
26888
26898
|
// ../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/diff.js
|
|
26889
26899
|
var require_diff = __commonJS({
|
|
26890
26900
|
"../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/diff.js"(exports2, module2) {
|
|
26891
|
-
var
|
|
26901
|
+
var parse6 = require_parse();
|
|
26892
26902
|
var diff = (version1, version2) => {
|
|
26893
|
-
const v1 =
|
|
26894
|
-
const v2 =
|
|
26903
|
+
const v1 = parse6(version1, null, true);
|
|
26904
|
+
const v2 = parse6(version2, null, true);
|
|
26895
26905
|
const comparison = v1.compare(v2);
|
|
26896
26906
|
if (comparison === 0) {
|
|
26897
26907
|
return null;
|
|
@@ -26955,9 +26965,9 @@ var require_patch = __commonJS({
|
|
|
26955
26965
|
// ../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/prerelease.js
|
|
26956
26966
|
var require_prerelease = __commonJS({
|
|
26957
26967
|
"../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/prerelease.js"(exports2, module2) {
|
|
26958
|
-
var
|
|
26968
|
+
var parse6 = require_parse();
|
|
26959
26969
|
var prerelease = (version, options) => {
|
|
26960
|
-
const parsed =
|
|
26970
|
+
const parsed = parse6(version, options);
|
|
26961
26971
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
26962
26972
|
};
|
|
26963
26973
|
module2.exports = prerelease;
|
|
@@ -27129,7 +27139,7 @@ var require_cmp = __commonJS({
|
|
|
27129
27139
|
var require_coerce = __commonJS({
|
|
27130
27140
|
"../../node_modules/.pnpm/semver@7.5.1/node_modules/semver/functions/coerce.js"(exports2, module2) {
|
|
27131
27141
|
var SemVer = require_semver();
|
|
27132
|
-
var
|
|
27142
|
+
var parse6 = require_parse();
|
|
27133
27143
|
var { re, t: t15 } = require_re();
|
|
27134
27144
|
var coerce = (version, options) => {
|
|
27135
27145
|
if (version instanceof SemVer) {
|
|
@@ -27158,7 +27168,7 @@ var require_coerce = __commonJS({
|
|
|
27158
27168
|
if (match === null) {
|
|
27159
27169
|
return null;
|
|
27160
27170
|
}
|
|
27161
|
-
return
|
|
27171
|
+
return parse6(`${match[2]}.${match[3] || "0"}.${match[4] || "0"}`, options);
|
|
27162
27172
|
};
|
|
27163
27173
|
module2.exports = coerce;
|
|
27164
27174
|
}
|
|
@@ -28758,7 +28768,7 @@ var require_semver2 = __commonJS({
|
|
|
28758
28768
|
var constants = require_constants();
|
|
28759
28769
|
var SemVer = require_semver();
|
|
28760
28770
|
var identifiers = require_identifiers();
|
|
28761
|
-
var
|
|
28771
|
+
var parse6 = require_parse();
|
|
28762
28772
|
var valid = require_valid();
|
|
28763
28773
|
var clean = require_clean();
|
|
28764
28774
|
var inc = require_inc();
|
|
@@ -28796,7 +28806,7 @@ var require_semver2 = __commonJS({
|
|
|
28796
28806
|
var simplifyRange = require_simplify();
|
|
28797
28807
|
var subset = require_subset();
|
|
28798
28808
|
module2.exports = {
|
|
28799
|
-
parse:
|
|
28809
|
+
parse: parse6,
|
|
28800
28810
|
valid,
|
|
28801
28811
|
clean,
|
|
28802
28812
|
inc,
|
|
@@ -76474,7 +76484,7 @@ function getLocation(text, position) {
|
|
|
76474
76484
|
}
|
|
76475
76485
|
};
|
|
76476
76486
|
}
|
|
76477
|
-
function
|
|
76487
|
+
function parse2(text, errors, options) {
|
|
76478
76488
|
if (errors === void 0) {
|
|
76479
76489
|
errors = [];
|
|
76480
76490
|
}
|
|
@@ -77186,7 +77196,7 @@ __export(main_exports3, {
|
|
|
77186
77196
|
getNodePath: () => getNodePath3,
|
|
77187
77197
|
getNodeValue: () => getNodeValue2,
|
|
77188
77198
|
modify: () => modify,
|
|
77189
|
-
parse: () =>
|
|
77199
|
+
parse: () => parse3,
|
|
77190
77200
|
parseTree: () => parseTree2,
|
|
77191
77201
|
printParseErrorCode: () => printParseErrorCode,
|
|
77192
77202
|
stripComments: () => stripComments2,
|
|
@@ -77241,7 +77251,7 @@ function applyEdits(text, edits) {
|
|
|
77241
77251
|
}
|
|
77242
77252
|
return text;
|
|
77243
77253
|
}
|
|
77244
|
-
var createScanner3, getLocation2,
|
|
77254
|
+
var createScanner3, getLocation2, parse3, parseTree2, findNodeAtLocation2, findNodeAtOffset2, getNodePath3, getNodeValue2, visit2, stripComments2;
|
|
77245
77255
|
var init_main3 = __esm({
|
|
77246
77256
|
"../../node_modules/.pnpm/jsonc-parser@2.3.1/node_modules/jsonc-parser/lib/esm/main.js"() {
|
|
77247
77257
|
"use strict";
|
|
@@ -77251,7 +77261,7 @@ var init_main3 = __esm({
|
|
|
77251
77261
|
init_parser();
|
|
77252
77262
|
createScanner3 = createScanner2;
|
|
77253
77263
|
getLocation2 = getLocation;
|
|
77254
|
-
|
|
77264
|
+
parse3 = parse2;
|
|
77255
77265
|
parseTree2 = parseTree;
|
|
77256
77266
|
findNodeAtLocation2 = findNodeAtLocation;
|
|
77257
77267
|
findNodeAtOffset2 = findNodeAtOffset;
|
|
@@ -80625,7 +80635,7 @@ ${"-".repeat(err.pos)}^`;
|
|
|
80625
80635
|
function uniqueClass(item, ix, arr) {
|
|
80626
80636
|
return !!item && arr.indexOf(item) === ix;
|
|
80627
80637
|
}
|
|
80628
|
-
function
|
|
80638
|
+
function walk2(abbr, visitor, state) {
|
|
80629
80639
|
const callback = (ctx, index, items) => {
|
|
80630
80640
|
const { parent, current } = state;
|
|
80631
80641
|
state.parent = current;
|
|
@@ -80852,7 +80862,7 @@ ${"-".repeat(err.pos)}^`;
|
|
|
80852
80862
|
function html(abbr, config) {
|
|
80853
80863
|
const state = createWalkState(config);
|
|
80854
80864
|
state.comment = createCommentState(config);
|
|
80855
|
-
|
|
80865
|
+
walk2(abbr, element$1, state);
|
|
80856
80866
|
return state.out.value;
|
|
80857
80867
|
}
|
|
80858
80868
|
function element$1(node, index, items, state, next2) {
|
|
@@ -81037,7 +81047,7 @@ ${"-".repeat(err.pos)}^`;
|
|
|
81037
81047
|
function indentFormat(abbr, config, options) {
|
|
81038
81048
|
const state = createWalkState(config);
|
|
81039
81049
|
state.options = options || {};
|
|
81040
|
-
|
|
81050
|
+
walk2(abbr, element, state);
|
|
81041
81051
|
return state.out.value;
|
|
81042
81052
|
}
|
|
81043
81053
|
function element(node, index, items, state, next2) {
|
|
@@ -81515,7 +81525,7 @@ ${"-".repeat(err.pos)}^`;
|
|
|
81515
81525
|
return config.options["stylesheet.jsonDoubleQuotes"] ? '"' : "'";
|
|
81516
81526
|
}
|
|
81517
81527
|
var gradientName = "lg";
|
|
81518
|
-
function
|
|
81528
|
+
function parse6(abbr, config) {
|
|
81519
81529
|
var _a4;
|
|
81520
81530
|
const snippets = ((_a4 = config.cache) === null || _a4 === void 0 ? void 0 : _a4.stylesheetSnippets) || convertSnippets(config.snippets);
|
|
81521
81531
|
if (config.cache) {
|
|
@@ -82742,7 +82752,7 @@ ${"-".repeat(err.pos)}^`;
|
|
|
82742
82752
|
return stringify(parse$1(abbr, config), config);
|
|
82743
82753
|
}
|
|
82744
82754
|
function stylesheet(abbr, config) {
|
|
82745
|
-
return css(
|
|
82755
|
+
return css(parse6(abbr, config), config);
|
|
82746
82756
|
}
|
|
82747
82757
|
exports2.CSSAbbreviationScope = CSSAbbreviationScope;
|
|
82748
82758
|
exports2.default = expandAbbreviation;
|
|
@@ -82750,7 +82760,7 @@ ${"-".repeat(err.pos)}^`;
|
|
|
82750
82760
|
exports2.markup = markup;
|
|
82751
82761
|
exports2.markupAbbreviation = parseAbbreviation;
|
|
82752
82762
|
exports2.parseMarkup = parse$1;
|
|
82753
|
-
exports2.parseStylesheet =
|
|
82763
|
+
exports2.parseStylesheet = parse6;
|
|
82754
82764
|
exports2.parseStylesheetSnippets = convertSnippets;
|
|
82755
82765
|
exports2.resolveConfig = resolveConfig;
|
|
82756
82766
|
exports2.stringifyMarkup = stringify;
|
|
@@ -90070,7 +90080,7 @@ ${ctx}
|
|
|
90070
90080
|
};
|
|
90071
90081
|
}
|
|
90072
90082
|
};
|
|
90073
|
-
function
|
|
90083
|
+
function parse6(src) {
|
|
90074
90084
|
const cr = [];
|
|
90075
90085
|
if (src.indexOf("\r") !== -1) {
|
|
90076
90086
|
src = src.replace(/\r\n?/g, (match, offset2) => {
|
|
@@ -90104,7 +90114,7 @@ ${ctx}
|
|
|
90104
90114
|
documents.toString = () => documents.join("...\n");
|
|
90105
90115
|
return documents;
|
|
90106
90116
|
}
|
|
90107
|
-
exports22.parse =
|
|
90117
|
+
exports22.parse = parse6;
|
|
90108
90118
|
}
|
|
90109
90119
|
});
|
|
90110
90120
|
var require_resolveSeq_d03cb037 = __commonJS2({
|
|
@@ -93596,7 +93606,7 @@ ${cbNode.commentBefore}` : cb;
|
|
|
93596
93606
|
}
|
|
93597
93607
|
return doc;
|
|
93598
93608
|
}
|
|
93599
|
-
function
|
|
93609
|
+
function parse6(src, options) {
|
|
93600
93610
|
const doc = parseDocument(src, options);
|
|
93601
93611
|
doc.warnings.forEach((warning) => warnings.warn(warning));
|
|
93602
93612
|
if (doc.errors.length > 0)
|
|
@@ -93612,7 +93622,7 @@ ${cbNode.commentBefore}` : cb;
|
|
|
93612
93622
|
createNode,
|
|
93613
93623
|
defaultOptions: Document$1.defaultOptions,
|
|
93614
93624
|
Document: Document2,
|
|
93615
|
-
parse:
|
|
93625
|
+
parse: parse6,
|
|
93616
93626
|
parseAllDocuments,
|
|
93617
93627
|
parseCST: parseCst.parse,
|
|
93618
93628
|
parseDocument,
|
|
@@ -96331,7 +96341,7 @@ var require_parser_babel = __commonJS({
|
|
|
96331
96341
|
constructor(t15) {
|
|
96332
96342
|
this.var = /* @__PURE__ */ new Set(), this.lexical = /* @__PURE__ */ new Set(), this.functions = /* @__PURE__ */ new Set(), this.flags = t15;
|
|
96333
96343
|
}
|
|
96334
|
-
},
|
|
96344
|
+
}, is2 = class {
|
|
96335
96345
|
constructor(t15, r) {
|
|
96336
96346
|
this.parser = void 0, this.scopeStack = [], this.inModule = void 0, this.undefinedExports = /* @__PURE__ */ new Map(), this.parser = t15, this.inModule = r;
|
|
96337
96347
|
}
|
|
@@ -96424,7 +96434,7 @@ var require_parser_babel = __commonJS({
|
|
|
96424
96434
|
constructor() {
|
|
96425
96435
|
super(...arguments), this.declareFunctions = /* @__PURE__ */ new Set();
|
|
96426
96436
|
}
|
|
96427
|
-
}, El = class extends
|
|
96437
|
+
}, El = class extends is2 {
|
|
96428
96438
|
createScope(t15) {
|
|
96429
96439
|
return new vl(t15);
|
|
96430
96440
|
}
|
|
@@ -99080,7 +99090,7 @@ var require_parser_babel = __commonJS({
|
|
|
99080
99090
|
constructor() {
|
|
99081
99091
|
super(...arguments), this.types = /* @__PURE__ */ new Set(), this.enums = /* @__PURE__ */ new Set(), this.constEnums = /* @__PURE__ */ new Set(), this.classes = /* @__PURE__ */ new Set(), this.exportOnlyBindings = /* @__PURE__ */ new Set();
|
|
99082
99092
|
}
|
|
99083
|
-
}, rh = class extends
|
|
99093
|
+
}, rh = class extends is2 {
|
|
99084
99094
|
constructor() {
|
|
99085
99095
|
super(...arguments), this.importsStack = [];
|
|
99086
99096
|
}
|
|
@@ -102770,7 +102780,7 @@ var require_parser_babel = __commonJS({
|
|
|
102770
102780
|
t15 = p(t15), super(t15, r), this.options = t15, this.initializeScopes(), this.plugins = Eh(this.options.plugins), this.filename = t15.sourceFilename;
|
|
102771
102781
|
}
|
|
102772
102782
|
getScopeHandler() {
|
|
102773
|
-
return
|
|
102783
|
+
return is2;
|
|
102774
102784
|
}
|
|
102775
102785
|
parse() {
|
|
102776
102786
|
this.enterInitialScopes();
|
|
@@ -104019,7 +104029,7 @@ var require_parser_flow = __commonJS({
|
|
|
104019
104029
|
Lt(), function(j0) {
|
|
104020
104030
|
"use strict";
|
|
104021
104031
|
var ur = "member_property_expression", hr = 8483, le = 12538, Ve = "children", Le = "predicate_expression", Fn = "??", gn = "Identifier", et = 64311, at = 192, Zt = 11710, Ut = 122654, kn = 110947, Qt = 67591, rf = "!", hn = "directive", Mn = 163, ut = "block", On = 126553, ru = 12735, E7 = 68096, Ct = "params", Ss = 93071, In = 122, Jc = 72767, Ai = 181, vi = "for_statement", Rt = 128, S7 = "start", ov = 43867, xU = "_method", R_ = 70414, cv = ">", ef = "catch_body", j_ = 120121, aU = "the end of an expression statement (`;`)", G_ = 124907, oU = 1027, v4 = 126558, nf = "jsx_fragment", M_ = 42527, B_ = "decorators", q_ = 82943, U_ = 71039, H_ = 110882, X_ = 67514, cU = 8472, sU = "update", Y_ = 12783, V_ = 12438, z_ = 12352, K_ = 8511, W_ = 42961, F2 = "method", l4 = 120713, tf = 8191, uf = "function_param", J_ = 67871, g7 = "throw", $_ = 11507, ff = "class_extends", Z_ = 43470, xf = "object_key_literal", Q_ = 71903, ry = 65437, af = "jsx_child", ey = 43311, b4 = 119995, ny = 67637, p4 = 68116, ty = 66204, uy = 65470, vU = "<<=", iy = "e", fy = 67391, m4 = 11631, _4 = 69956, sv = "tparams", xy = 66735, ay = 64217, oy = 43697, lU = "Invalid binary/octal ", cy = -43, sy = 43255, y4 = "do", vy = 43301, of = "binding_pattern", ly = 120487, cf = "jsx_attribute_value_literal", d4 = "package", sf = "interface_declaration", by = 72750, py = 119892, bU = "tail", pU = -53, vf = 111, mU = 180, my = 119807, _y = 71959, _U = 8206, yy = 65613, $c = "type", dy = 55215, hy = -42, lf = "export_default_declaration_decl", h4 = 72970, yU = "filtered_out", ky = 70416, dU = 229, bf = "function_this_param", hU = "module", k4 = "try", wy = 70143, Ey = 125183, Sy = 70412, h0 = "@])", pf = "binary", kU = "infinity", w4 = "private", gy = 65500, E4 = "has_unknown_members", mf = "pattern_array_rest_element", wU = "Property", gs = "implements", Fy = 12548, EU = 211, _f2 = "if_alternate_statement", Ty = 124903, Oy = 43395, vv = "src/parser/type_parser.ml", Iy = 66915, S4 = 126552, Ay = 120712, g4 = 126555, Ny = 120596, o7 = "raw", F7 = 112, yf = "class_declaration", df = "statement", Cy = 126624, Py = 71235, hf = "meta_property", Dy = 44002, Ly = 8467, kf = "class_property_value", Ry = 8318, wf = "optional_call", jy = 43761, Zc = "kind", Ef = "class_identifier", Gy = 69955, My = 66378, By = 120512, qy = 68220, Ht = 110, Uy = 123583, T2 = "declare", Sf = "typeof_member_identifier", gf = "catch_clause", Hy = 11742, Xy = 70831, F4 = 8468, Ff = "for_in_assignment_pattern", SU = -32, Tf = "object_", Yy = 43262, Vy = "mixins", Of = "type_param", gU = "visit_trailing_comment", zy = 71839, O2 = "boolean", If = "call", FU = "expected *", Ky = 43010, Wy = 241, Au = "expression", I2 = "column", Jy = 43595, $y = 43258, Zy = 191456, Af = "member_type_identifier", A2 = 117, Qy = 43754, T4 = 126544, TU = "Assert_failure", rd = 66517, ed = 42964, Nf = "enum_number_member", OU = "a string", nd = 65855, td = 119993, ud = "opaque", IU = 870530776, id = 67711, fd = 66994, Cf = "enum_symbol_body", AU = 185, NU = 219, O4 = "filter", xd = 43615, I4 = 126560, ad = 19903, t1 = "get", od = 64316, CU = `Fatal error: exception %s
|
|
104022
|
-
`, A4 = "exported", PU = ">=", Wu = "return", N4 = "members", C4 = 256, cd = 66962, sd = 64279, vd = 67829, DU = "Enum `", LU = "&&=", Pf = "object_property", ld = 67589, Df = "pattern_object_property", Lf = "template_literal_element", bd = 69551, Ni = 127343600, P4 = 70452, Rf = "class_element", pd = "ENOENT", md = 71131, RU = 200, _d = 120137, yd = 94098, D4 = 72349, jU = 1328, jf = "function_identifier", dd = 126543, Gf = "jsx_attribute_name", hd = 43487, kr = "@[<2>{ ", GU = "ENOTEMPTY", kd = 65908, wd = 72191, L4 = 120513, Ed = 92909, MU = "bound", Sd = 162, BU = 172, R4 = 120070, Mf = "enum_number_body", Bf = "update_expression", qf = "spread_element", Uf = "for_in_left_declaration", j4 = 64319, N2 = "%d", gd = 12703, G4 = 11687, qU = "@,))@]", Fd = 42239, Hf = "type_cast", Td = 42508, Xf = "class_implements_interface", Od = 67640, Id = 605857695, UU = "Cygwin", HU = "buffer.ml", Ad = 124908, XU = "handler", Nd = 66207, Cd = 66963, M4 = 11558, YU = "-=", Pn = 113, Pd = 113775, VU = "collect_comments", B4 = 126540, lv = "set", Yf = "assignment_pattern", Nu = "right", Vf = "object_key_identifier", q4 = 120133, Dd = "Invalid number ", Ld = 42963, U4 = 12539, Rd = 68023, jd = 43798, ni = 100, zf = "pattern_literal", Kf = "generic_type", zU = "*", Gd = 42783, Md = 42890, Bd = 230, H4 = "else", qd = 70851, Ud = 69289, KU = "the start of a statement", X4 = "properties", Hd = 43696, Xd = 110959, Wf = "declare_function", Y4 = 120597, Jf = "object_indexer_property_type", Yd = 70492, Vd = 2048, C2 = "arguments", Xr = "comments", zd = 43042, Qc = 107, Kd = 110575, WU = 161, Wd = 67431, V4 = "line", P2 = "declaration", eu = "static", $f = "pattern_identifier", Jd = 69958, JU = "the", $d = "Unix.Unix_error", Zd = 43814, rs = "annot", Qd = 65786, rh = 66303, eh = 64967, nh = 64255, th = 8584, z4 = 120655, $U = "Stack_overflow", uh = 43700, Zf = "syntax_opt", ZU = "/static/", Qf = "comprehension", ih = 253, QU = "Not_found", rH = "+=", eH = 235, fh = 68680, xh = 66954, ah = 64324, oh = 72966, nH = 174, tH = -1053382366, ch = "rest", rx = "pattern_array_element", ex = "jsx_attribute_value_expression", K4 = 65595, nx = "pattern_array_e", uH = 243, sh = 43711, vh = "rmdir", W4 = "symbol", lh = 69926, J4 = "*dummy method*", bh = 43741, T7 = "typeParameters", D2 = "const", iH = 1026, fH = 149, ph = 12341, mh = 72847, _h = 66993, xH = 202, Ci = "false", Xt = 106, yh = 120076, dh = 186, Pi = 128, hh = 125124, kh = "Fatal error: exception ", $4 = 67593, wh = 69297, Eh = 44031, aH = 234, Sh = 92927, gh = 68095, Ju = 8231, tx = "object_key_computed", ux = "labeled_statement", ix = "function_param_pattern", Z4 = 126590, Fh = 65481, Th = 43442, oH = "collect_comments_opt", fx = "variable_declarator", bv = "_", Oh = "compare: functional value", Ih = 67967, pv = "computed", xx = "object_property_type", mt = "id", Ah = 126562, u1 = 114, cH = "comment_bounds", Nh = 70853, Ch = 69247, ax = "class_private_field", Ph = 42237, Dh = 72329, sH = "Invalid_argument", Lh = 113770, Q4 = 94031, Rh = 120092, ox = "declare_class", jh = 67839, Gh = 72250, vH = "%ni", Mh = 92879, lH = "prototype", Fs = "`.", cx = 8287, r8 = 65344, Bh = "&", O7 = "debugger", sx = "type_identifier_reference", bH = "Internal Error: Found private field in object props", vx = "sequence", lx = "call_type_args", pH = 238, qh = 12348, mH = "++", Uh = 68863, Hh = 72001, Xh = 70084, Yh = "label", mv = -45, bx = "jsx_opening_attribute", Vh = 43583, e8 = "%F", zh = 43784, Kh = 113791, px = "call_arguments", n8 = 126503, Wh = 43743, $u = "0", Jh = 119967, t82 = 126538, mx = "new_", _v = 449540197, $h = 64109, Zh = 68466, Qh = 177983, wt = 248, _x = "program", Xe = "@,]@]", rk = 68031, yx = "function_type", dx = "type_", u8 = 8484, ek = 67382, nk = 42537, tk = 226, uk = 66559, ik = 42993, fk = 64274, i8 = 71236, xk = 120069, ak = 72105, ok = 126570, ck = "object", sk = 42959, I7 = "break", hx = "for_of_statement", vk = 43695, f8 = 126551, lk = 66955, x8 = 126520, bk = 66499, L2 = 1024, pk = 67455, mk = 43018, _H = 198, a8 = 126522, kx = "function_declaration", _k = 73064, wx = "await", yk = 92728, dk = 70418, hk = 68119, Ex = "function_rest_param", kk = 42653, o8 = 11703, li = "left", c8 = 70449, wk = 184, Sx = "declare_type_alias", gx = 16777215, s8 = 70302, yH = "/=", dH = "|=", Ek = 55242, Sk = 126583, gk = 124927, Fk = 124895, Tk = 72959, Ok = 65497, hH = "Invalid legacy octal ", es = "typeof", Ik = "explicit_type", Fx = "statement_list", Ak = 65495, Tx = "class_method", v8 = 8526, l8 = 244, Nk = 67861, b8 = 119994, p8 = "enum", kH = 2147483647, Ck = 69762, wH = 208, R2 = "in", Pk = 11702, m8 = 67638, EH = ", characters ", Dk = 70753, yv = "super", Lk = 92783, Rk = 8304, _8 = 126504, Ox = "import_specifier", jk = 68324, Gk = 101589, Mk = 67646, Ix = "expression_or_spread", Bk = 74879, qk = 43792, y8 = 43260, Uk = 93052, SH = "{", Hk = 65574, Xk = 125258, dv = 224, Ax = "jsx_element_name_member_expression", j2 = "instanceof", Yk = 69599, Vk = 43560, Nx = "function_expression", d8 = 223, zk = 72242, Kk = 11498, Wk = 126467, Jk = 73112, gH = 140, h8 = 70107, $k = 13311, Cx = "jsx_children", k8 = 126548, Zk = 63743, w8 = 43471, Px = "jsx_expression", Qk = 69864, rw = 71998, ew = 72e3, E8 = 126591, S8 = 12592, Dx = "type_params", nw = 126578, g8 = 126537, wr = "{ ", tw = 123627, Lx = "jsx_spread_attribute", Pe = "@,", uw = 70161, iw = 187, F8 = 126500, Rx = "label_identifier", fw = 42606, jx = "number_literal_type", T8 = 42999, xw = 64310, FH = -594953737, aw = 122623, O8 = "hasUnknownMembers", Gx = "array", TH = "^=", Mx = "enum_string_member", ow = 65536, cw = 65615, ns = "void", sw = 65135, Z0 = ")", OH = 138, vw = 70002, G2 = "let", lw = 70271, bw = "nan", W = "@[%s =@ ", pw = 194559, mw = 110579, Bx = "binding_type_identifier", _w = 42735, IH = 57343, Zu = "/", qx = "for_in_statement_lhs", yw = 43503, dw = 8516, hw = 66938, kw = "ENOTDIR", AH = "TypeParameterInstantiation", ww = 69749, Ew = 65381, Sw = 83526, hv = "number", gw = 12447, NH = 154, I8 = 70286, Fw = 72160, Tw = 43493, CH = 206, Ux = "enum_member_identifier", A8 = 70280, M2 = "function", N8 = 70162, Ow = 255, Iw = 67702, Aw = 66771, Nw = 70312, PH = "|", Cw = 93759, DH = "End_of_file", Pw = 43709, i1 = "new", LH = "Failure", B2 = "local", Dw = 101631, C8 = 8489, P8 = "with", Hx = "enum_declaration", Lw = 218, Rw = 70457, D8 = 8488, Xx = "member", L8 = 64325, jw = 247, Gw = 70448, Mw = 69967, R8 = 126535, Bw = 71934, Yx = "import_named_specifier", qw = 65312, Uw = 126619, Vx = "type_annotation", RH = 56320, Hw = 131071, Xw = 120770, Yw = 67002, zx = "with_", Kx = "statement_fork_point", jH = "finalizer", Vw = 12320, GH = "elements", Wx = "literal", zw = 68607, Kw = 8507, j8 = "each", MH = "Sys_error", Ww = 123535, Jw = 130, Jx = "bigint_literal_type", $w = 64829, G8 = 11727, Zw = 120538, $x = "member_private_name", Zx = "type_alias", BH = "Printexc.handle_uncaught_exception", M8 = 126556, Qx = "tagged_template", ra = "pattern_object_property_literal_key", Qw = 43881, B8 = 72192, rE = 67826, eE = 124910, nE = 66511, ts = "int_of_string", tE = 43249, nr = "None", qH = "FunctionTypeParam", ti = "name", uE = 70285, c7 = 103, iE = 120744, ea = 12288, na = "intersection_type", fE = 11679, q8 = 11559, UH = "callee", xE = 71295, aE = 70018, oE = 11567, cE = 42954, HH = "*-/", Qu = "predicate", ta = "expression_statement", XH = "regexp", sE = 65479, YH = 132, vE = 11389, Bu = "optional", VH = -602162310, z = "@]", lE = 120003, bE = 72249, zH = "Unexpected ", pE = 73008, U8 = "finally", ua = "toplevel_statement_list", KH = "end", mE = 178207, WH = "&=", _E = 70301, JH = "%Li", yE = 72161, dE = 69746, hE = 70460, kE = 12799, H8 = 65535, wE = "loc", EE = 69375, SE = 43518, $H = 205, gE = 65487, ia = "while_", FE = 183983, fa = "typeof_expression", TE = -673950933, OE = 42559, ZH = "||", IE = 124926, AE = 55291, xa = "jsx_element_name_identifier", aa = 8239, X8 = "mixed", QH = 136, NE = -253313196, CE = 11734, Y8 = 67827, PE = 68287, DE = 119976, rX = "**", J = " =", V8 = 888960333, LE = 124902, oa = "tuple_type", eX = 227, RE = 70726, jE = 73111, z8 = 126602, GE = 126529, ca = "object_property_value_type", C0 = "%a", nX = ", ", tX = "<=", ME = 69423, uX = 199, K8 = 11695, BE = 12294, W8 = 11711, qE = 67583, iX = 710, J8 = 126584, UE = 68295, HE = 72703, XE = "prefix", fX = -80, $8 = 69415, YE = 11492, q2 = "class", Z8 = 65575, A7 = "continue", VE = 65663, xX = 2047, Q8 = 68120, zE = 71086, KE = 19967, Di = 782176664, WE = 120779, r3 = 8486, bi = " ", aX = "||=", oX = "Undefined_recursive_module", JE = 66863, cX = "RestElement", e3 = 126634, $E = 66377, ZE = 74751, sa = "jsx_element_name_namespaced", QE = 43334, rS = 66815, N7 = "typeAnnotation", eS = 120126, va = "array_element", n3 = 64285, sX = 189, vX = "**=", Yr = "()", nS = 8543, la = "declare_module", ba = "export_batch_specifier", lX = "%i", bX = ">>>=", tS = 68029, pX = "importKind", C7 = "extends", uS = 64296, t32 = 43259, iS = 71679, fS = 64913, xS = 119969, aS = 94175, oS = 72440, u3 = 65141, pa = "function_", cS = 43071, sS = 42888, vS = 69807, ou = "variance", us = 123, ma = "import_default_specifier", mX = ">>>", lS = 43764, pi = "pattern", bS = 71947, pS = 70655, kv = "consequent", _X = 4096, mS = 183, _S = 68447, yS = 65473, is = 255, dS = 73648, _a4 = "call_type_arg", ya = 8238, hS = 68899, kS = 93026, Ye = "@[<2>[", wS = 110588, da = "comment", yX = 191, ha = "switch_case", dX = 175, ES = 71942, ka = "do_while", wv = "constructor", SS = 43587, gS = 43586, wu = "yield", FS = 67462, hX = "fd ", TS = -61, OS = "target", i3 = 72272, U2 = "var", kX = "impltype", f3 = 70108, H2 = "0o", IS = 119972, AS = 92991, x3 = 70441, a3 = 8450, NS = 120074, CS = 66717, wa = "interface_type", o3 = 43880, An = "%B", PS = 111355, Ev = 5760, DS = 11630, c3 = 126499, LS = "of", wX = ">>", EX = "Popping lex mode from empty stack", s3 = 120629, fs = 108, RS = 43002, SX = "%=", v3 = 126539, jS = 126502, Ea = "template_literal", GS = "src/parser/statement_parser.ml", MS = ": Not a directory", gX = "b", BS = 67461, qS = 11519, FX = "src/parser/flow_lexer.ml", TX = "Out_of_memory", US = 120570, Sa = 12287, HS = 126534, XS = "index out of bounds", YS = 73029, l3 = "_bigarr02", b3 = 126571, OX = "))", ga = "for_statement_init", IX = "supertype", Fa = "class_property", p3 = "}", f1 = "this", Ta = "declare_module_exports", AX = "@", Oa = "union_type", Li = 65535, Ia = "variance_opt", VS = 94032, NX = 222, zS = 42124, Aa = "this_expression", Na = "jsx_element", CX = "typeArguments", KS = 65019, WS = 125251, JS = 64111, $S = 8471, Ca = "typeof_qualified_identifier", ZS = 70497, PX = "EnumDefaultedMember", Pa = 8202, QS = 66927, P7 = "switch", rg = 69634, Da = "unary_expression", eg = 71215, DX = 126, ng = 67679, tg = 65597, LX = 207, ug = 120686, m3 = 72163, ig = 67001, fg = 42962, xg = 64262, X2 = 124, La = 65279, ag = 126495, RX = 169, og = 71944, jX = -10, _3 = "alternate", cg = 92975, sg = 65489, Y2 = 252, vg = 67807, lg = 43187, bg = 68850, y3 = "export", pg = 66383, GX = "===", Ra = ".", ja = "type_args", MX = 147, mg = 92159, BX = 240, Ga = "jsx_element_name", _g = 72283, yg = 171, x1 = 116, dg = 110587, d3 = 70279, hg = 75075, kg = 65338, Ma = "function_params", wg = 126627, qX = 213, h3 = 73065, Eg = 71352, k3 = 119970, Sg = 70005, gg = 12295, w3 = 120771, Fg = 71494, Tg = 11557, Og = 42191, UX = "flags", Ig = 68437, Ag = 70730, Ba = "optional_indexed_access", qa = "pattern_object_p", Ng = 42785, Ua = "nullable_type", Bn = "value", Cg = 12343, Pg = 68415, Dg = 11694, HX = 221, Lg = 11726, Ha = "syntax", Rg = 119964, XX = "&&", jg = 68497, Gg = 73097, xs = "null", E3 = 126523, Mg = 120084, Bg = 126601, qg = 8454, Ug = "expressions", Hg = 72144, V2 = '"', Zr = "(@[", YX = 1022, VX = 231, Xg = 170, S3 = 12448, Yg = 68786, g3 = "<", zX = 931, KX = "(", WX = 196, JX = 2048, F3 = "an identifier", T3 = 69959, Vg = 68799, $X = "leadingComments", zg = 72969, Kg = 182, Wg = 100351, Xa = "enum_defaulted_member", Jg = 69839, $g = 94026, Zg = 209, ZX = ">>=", Qg = 131, O3 = 12336, s7 = "empty", QX = 331416730, rY = 204, rF = 70479, eF = 69487, nF = 101640, tF = 43123, eY = "([^/]+)", I3 = 8319, nY = 165, Ya = "object_type_property_setter", tY = 909, uF = 15, iF = 12591, br = 125, fF = 92735, uY = "cases", xF = 183969, a1 = "bigint", iY = "Division_by_zero", aF = 67071, oF = 12329, A3 = 120004, cF = 69414, N3 = "if", sF = 126519, vF = "immediately within another function.", lF = 55238, bF = 126498, fY = "qualification", pF = 66256, Er = "@ }@]", z2 = 118, C3 = 11565, P3 = 120122, Va = "pattern_object_rest_property", mF = 74862, D3 = "'", _F2 = -26065557, yF = 124911, Sv = 119, D7 = 104, za = "assignment", dF = 8457, K2 = "from", hF = 64321, kF = 113817, wF = 65629, EF = 42655, Ri = 102, SF = 43137, gF = 11502, o0 = ";@ ", L7 = 101, Ka = "pattern_array_element_pattern", Wn = "body", Wa = "jsx_member_expression", FF = 65547, Ja = "jsx_attribute_value", $a = "jsx_namespaced_name", L3 = 72967, TF = 126550, gv = 254, OF = 43807, IF = 43738, R3 = 126589, j3 = 8455, G3 = 126628, AF = 11670, xY = "*=", M3 = 120134, Za = "conditional", aY = " : flags Open_text and Open_binary are not compatible", B3 = 119965, NF = 69890, CF = 72817, PF = 164, DF = 43822, q3 = 69744, oY = "\\\\", LF = 43638, RF = 93047, jF = "AssignmentPattern", U3 = 64322, GF = 123190, cY = 188, Qa = "object_spread_property_type", MF = 70783, BF = 113663, sY = 160, H3 = 42622, X3 = 43823, ji = "init", Fv = 109, qF = 66503, Y3 = "proto", UF = 74649, ro = "optional_member", HF = 40981, XF = 120654, v = "@ ", eo = "enum_boolean_body", no = "export_named_specifier", to = "declare_interface", YF = 70451, uo = "pattern_object_property_computed_key", V3 = -97, z3 = 120539, K3 = 64317, VF = 12543, io = "export_named_declaration_specifier", zF = 43359, W3 = 126530, J3 = 72713, KF = 113800, vY = 195, WF = 72367, JF = 72103, $F = 70278, fo = "if_consequent_statement", W2 = -85, $3 = 126496, xo = "try_catch", ao = "computed_key", oo = "class_", ZF = 173823, co = "pattern_object_property_identifier_key", lY = "f", so = "arrow_function", Z3 = 8485, QF = 126546, vo = "enum_boolean_member", rT = 94177, J2 = "delete", eT = 232, bY = "blocks", lo = "pattern_array_rest_element_pattern", nT = 78894, Q3 = 66512, tT = 94111, Tv = "string", Ts = "test", uT = 69572, iT = 66463, fT = 66335, xT = 72348, aT = 73061, o1 = ":", bo = "enum_body", oT = 110590, po = "function_this_param_type", cT = 215, sT = 77823, pY = "minus", mY = 201, vT = 119980, mo = "private_name", _o = "object_key", yo = "function_param_type", _Y = "<<", lT = 11718, c1 = "as", yY = "delegate", Gi = "true", bT = 67413, r6 = 70854, pT = 73439, mT = 43776, _T = 71723, yT = 11505, dT = 214, hT = 120628, kT = 43513, ho = "jsx_attribute_name_namespaced", e6 = 120127, n6 = "Map.bal", t62 = "any", dY = "@[", hY = "camlinternalMod.ml", u6 = 126559, qu = "import", i6 = 70404, ko = "jsx_spread_child", wT = 233, ET = 67897, ST = 119974, Uu = 8233, gT = 68405, f6 = 239, kY = "attributes", wY = 173, wo = "object_internal_slot_property_type", FT = 71351, TT = 242, OT = 67643, x6 = "shorthand", Eo = "for_in_statement", IT = 126463, AT = 71338, NT = 69445, CT = 65370, PT = 73055, DT = 167, LT = 64911, So = "pattern_object_property_pattern", EY = 212, SY = 197, a6 = 126579, RT = 64286, jT = "explicitType", GT = 67669, MT = 43866, gY = "Sys_blocked_io", o6 = "catch", BT = 123197, qT = 64466, UT = 65140, HT = 73030, XT = 69404, c6 = "protected", FY = 8204, YT = 67504, VT = 193, $2 = 246, zT = 43713, s6 = 120571, go = "array_type", TY = "%u", Fo = "export_default_declaration", To = "class_expression", OY = "quasi", Yt = "%S", KT = 8525, v6 = 126515, WT = 120485, l6 = 43519, b6 = 120745, p6 = 94178, JT = 126588, zn = 127, $T = 66855, IY = "@{", AY = "visit_leading_comment", ZT = 67742, NY = " : flags Open_rdonly and Open_wronly are not compatible", QT = 120144, m6 = "returnType", s1 = -744106340, v1 = 240, Oo = "-", _6 = 8469, Os = "async", y6 = 126521, rO = 72095, d6 = 216, CY = " : file already exists", eO = 178205, nO = 8449, h6 = 94179, tO = 42774, k6 = "case", uO = 66965, iO = 66431, PY = 190, Io = "declare_export_declaration", Z2 = "targs", Ao = "type_identifier", fO = 64284, xO = 43013, w6 = 43815, No = "function_body_any", aO = 66966, E6 = 120687, oO = 66939, cO = 66978, DY = 168, S6 = "public", sO = 68115, vO = 43712, g6 = 65598, F6 = 126547, lO = 110591, Co = "indexed_access", LY = 12520, r7 = "interface", RY = `(Program not linked with -g, cannot print stack backtrace)
|
|
104032
|
+
`, A4 = "exported", PU = ">=", Wu = "return", N4 = "members", C4 = 256, cd = 66962, sd = 64279, vd = 67829, DU = "Enum `", LU = "&&=", Pf = "object_property", ld = 67589, Df = "pattern_object_property", Lf = "template_literal_element", bd = 69551, Ni = 127343600, P4 = 70452, Rf = "class_element", pd = "ENOENT", md = 71131, RU = 200, _d = 120137, yd = 94098, D4 = 72349, jU = 1328, jf = "function_identifier", dd = 126543, Gf = "jsx_attribute_name", hd = 43487, kr = "@[<2>{ ", GU = "ENOTEMPTY", kd = 65908, wd = 72191, L4 = 120513, Ed = 92909, MU = "bound", Sd = 162, BU = 172, R4 = 120070, Mf = "enum_number_body", Bf = "update_expression", qf = "spread_element", Uf = "for_in_left_declaration", j4 = 64319, N2 = "%d", gd = 12703, G4 = 11687, qU = "@,))@]", Fd = 42239, Hf = "type_cast", Td = 42508, Xf = "class_implements_interface", Od = 67640, Id = 605857695, UU = "Cygwin", HU = "buffer.ml", Ad = 124908, XU = "handler", Nd = 66207, Cd = 66963, M4 = 11558, YU = "-=", Pn = 113, Pd = 113775, VU = "collect_comments", B4 = 126540, lv = "set", Yf = "assignment_pattern", Nu = "right", Vf = "object_key_identifier", q4 = 120133, Dd = "Invalid number ", Ld = 42963, U4 = 12539, Rd = 68023, jd = 43798, ni = 100, zf = "pattern_literal", Kf = "generic_type", zU = "*", Gd = 42783, Md = 42890, Bd = 230, H4 = "else", qd = 70851, Ud = 69289, KU = "the start of a statement", X4 = "properties", Hd = 43696, Xd = 110959, Wf = "declare_function", Y4 = 120597, Jf = "object_indexer_property_type", Yd = 70492, Vd = 2048, C2 = "arguments", Xr = "comments", zd = 43042, Qc = 107, Kd = 110575, WU = 161, Wd = 67431, V4 = "line", P2 = "declaration", eu = "static", $f = "pattern_identifier", Jd = 69958, JU = "the", $d = "Unix.Unix_error", Zd = 43814, rs = "annot", Qd = 65786, rh = 66303, eh = 64967, nh = 64255, th = 8584, z4 = 120655, $U = "Stack_overflow", uh = 43700, Zf = "syntax_opt", ZU = "/static/", Qf = "comprehension", ih = 253, QU = "Not_found", rH = "+=", eH = 235, fh = 68680, xh = 66954, ah = 64324, oh = 72966, nH = 174, tH = -1053382366, ch = "rest", rx = "pattern_array_element", ex = "jsx_attribute_value_expression", K4 = 65595, nx = "pattern_array_e", uH = 243, sh = 43711, vh = "rmdir", W4 = "symbol", lh = 69926, J4 = "*dummy method*", bh = 43741, T7 = "typeParameters", D2 = "const", iH = 1026, fH = 149, ph = 12341, mh = 72847, _h = 66993, xH = 202, Ci = "false", Xt = 106, yh = 120076, dh = 186, Pi = 128, hh = 125124, kh = "Fatal error: exception ", $4 = 67593, wh = 69297, Eh = 44031, aH = 234, Sh = 92927, gh = 68095, Ju = 8231, tx = "object_key_computed", ux = "labeled_statement", ix = "function_param_pattern", Z4 = 126590, Fh = 65481, Th = 43442, oH = "collect_comments_opt", fx = "variable_declarator", bv = "_", Oh = "compare: functional value", Ih = 67967, pv = "computed", xx = "object_property_type", mt = "id", Ah = 126562, u1 = 114, cH = "comment_bounds", Nh = 70853, Ch = 69247, ax = "class_private_field", Ph = 42237, Dh = 72329, sH = "Invalid_argument", Lh = 113770, Q4 = 94031, Rh = 120092, ox = "declare_class", jh = 67839, Gh = 72250, vH = "%ni", Mh = 92879, lH = "prototype", Fs = "`.", cx = 8287, r8 = 65344, Bh = "&", O7 = "debugger", sx = "type_identifier_reference", bH = "Internal Error: Found private field in object props", vx = "sequence", lx = "call_type_args", pH = 238, qh = 12348, mH = "++", Uh = 68863, Hh = 72001, Xh = 70084, Yh = "label", mv = -45, bx = "jsx_opening_attribute", Vh = 43583, e8 = "%F", zh = 43784, Kh = 113791, px = "call_arguments", n8 = 126503, Wh = 43743, $u = "0", Jh = 119967, t82 = 126538, mx = "new_", _v = 449540197, $h = 64109, Zh = 68466, Qh = 177983, wt = 248, _x = "program", Xe = "@,]@]", rk = 68031, yx = "function_type", dx = "type_", u8 = 8484, ek = 67382, nk = 42537, tk = 226, uk = 66559, ik = 42993, fk = 64274, i8 = 71236, xk = 120069, ak = 72105, ok = 126570, ck = "object", sk = 42959, I7 = "break", hx = "for_of_statement", vk = 43695, f8 = 126551, lk = 66955, x8 = 126520, bk = 66499, L2 = 1024, pk = 67455, mk = 43018, _H = 198, a8 = 126522, kx = "function_declaration", _k = 73064, wx = "await", yk = 92728, dk = 70418, hk = 68119, Ex = "function_rest_param", kk = 42653, o8 = 11703, li = "left", c8 = 70449, wk = 184, Sx = "declare_type_alias", gx = 16777215, s8 = 70302, yH = "/=", dH = "|=", Ek = 55242, Sk = 126583, gk = 124927, Fk = 124895, Tk = 72959, Ok = 65497, hH = "Invalid legacy octal ", es = "typeof", Ik = "explicit_type", Fx = "statement_list", Ak = 65495, Tx = "class_method", v8 = 8526, l8 = 244, Nk = 67861, b8 = 119994, p8 = "enum", kH = 2147483647, Ck = 69762, wH = 208, R2 = "in", Pk = 11702, m8 = 67638, EH = ", characters ", Dk = 70753, yv = "super", Lk = 92783, Rk = 8304, _8 = 126504, Ox = "import_specifier", jk = 68324, Gk = 101589, Mk = 67646, Ix = "expression_or_spread", Bk = 74879, qk = 43792, y8 = 43260, Uk = 93052, SH = "{", Hk = 65574, Xk = 125258, dv = 224, Ax = "jsx_element_name_member_expression", j2 = "instanceof", Yk = 69599, Vk = 43560, Nx = "function_expression", d8 = 223, zk = 72242, Kk = 11498, Wk = 126467, Jk = 73112, gH = 140, h8 = 70107, $k = 13311, Cx = "jsx_children", k8 = 126548, Zk = 63743, w8 = 43471, Px = "jsx_expression", Qk = 69864, rw = 71998, ew = 72e3, E8 = 126591, S8 = 12592, Dx = "type_params", nw = 126578, g8 = 126537, wr = "{ ", tw = 123627, Lx = "jsx_spread_attribute", Pe = "@,", uw = 70161, iw = 187, F8 = 126500, Rx = "label_identifier", fw = 42606, jx = "number_literal_type", T8 = 42999, xw = 64310, FH = -594953737, aw = 122623, O8 = "hasUnknownMembers", Gx = "array", TH = "^=", Mx = "enum_string_member", ow = 65536, cw = 65615, ns = "void", sw = 65135, Z0 = ")", OH = 138, vw = 70002, G2 = "let", lw = 70271, bw = "nan", W = "@[%s =@ ", pw = 194559, mw = 110579, Bx = "binding_type_identifier", _w = 42735, IH = 57343, Zu = "/", qx = "for_in_statement_lhs", yw = 43503, dw = 8516, hw = 66938, kw = "ENOTDIR", AH = "TypeParameterInstantiation", ww = 69749, Ew = 65381, Sw = 83526, hv = "number", gw = 12447, NH = 154, I8 = 70286, Fw = 72160, Tw = 43493, CH = 206, Ux = "enum_member_identifier", A8 = 70280, M2 = "function", N8 = 70162, Ow = 255, Iw = 67702, Aw = 66771, Nw = 70312, PH = "|", Cw = 93759, DH = "End_of_file", Pw = 43709, i1 = "new", LH = "Failure", B2 = "local", Dw = 101631, C8 = 8489, P8 = "with", Hx = "enum_declaration", Lw = 218, Rw = 70457, D8 = 8488, Xx = "member", L8 = 64325, jw = 247, Gw = 70448, Mw = 69967, R8 = 126535, Bw = 71934, Yx = "import_named_specifier", qw = 65312, Uw = 126619, Vx = "type_annotation", RH = 56320, Hw = 131071, Xw = 120770, Yw = 67002, zx = "with_", Kx = "statement_fork_point", jH = "finalizer", Vw = 12320, GH = "elements", Wx = "literal", zw = 68607, Kw = 8507, j8 = "each", MH = "Sys_error", Ww = 123535, Jw = 130, Jx = "bigint_literal_type", $w = 64829, G8 = 11727, Zw = 120538, $x = "member_private_name", Zx = "type_alias", BH = "Printexc.handle_uncaught_exception", M8 = 126556, Qx = "tagged_template", ra = "pattern_object_property_literal_key", Qw = 43881, B8 = 72192, rE = 67826, eE = 124910, nE = 66511, ts = "int_of_string", tE = 43249, nr = "None", qH = "FunctionTypeParam", ti = "name", uE = 70285, c7 = 103, iE = 120744, ea = 12288, na = "intersection_type", fE = 11679, q8 = 11559, UH = "callee", xE = 71295, aE = 70018, oE = 11567, cE = 42954, HH = "*-/", Qu = "predicate", ta = "expression_statement", XH = "regexp", sE = 65479, YH = 132, vE = 11389, Bu = "optional", VH = -602162310, z = "@]", lE = 120003, bE = 72249, zH = "Unexpected ", pE = 73008, U8 = "finally", ua = "toplevel_statement_list", KH = "end", mE = 178207, WH = "&=", _E = 70301, JH = "%Li", yE = 72161, dE = 69746, hE = 70460, kE = 12799, H8 = 65535, wE = "loc", EE = 69375, SE = 43518, $H = 205, gE = 65487, ia = "while_", FE = 183983, fa = "typeof_expression", TE = -673950933, OE = 42559, ZH = "||", IE = 124926, AE = 55291, xa = "jsx_element_name_identifier", aa = 8239, X8 = "mixed", QH = 136, NE = -253313196, CE = 11734, Y8 = 67827, PE = 68287, DE = 119976, rX = "**", J = " =", V8 = 888960333, LE = 124902, oa = "tuple_type", eX = 227, RE = 70726, jE = 73111, z8 = 126602, GE = 126529, ca = "object_property_value_type", C0 = "%a", nX = ", ", tX = "<=", ME = 69423, uX = 199, K8 = 11695, BE = 12294, W8 = 11711, qE = 67583, iX = 710, J8 = 126584, UE = 68295, HE = 72703, XE = "prefix", fX = -80, $8 = 69415, YE = 11492, q2 = "class", Z8 = 65575, A7 = "continue", VE = 65663, xX = 2047, Q8 = 68120, zE = 71086, KE = 19967, Di = 782176664, WE = 120779, r3 = 8486, bi = " ", aX = "||=", oX = "Undefined_recursive_module", JE = 66863, cX = "RestElement", e3 = 126634, $E = 66377, ZE = 74751, sa = "jsx_element_name_namespaced", QE = 43334, rS = 66815, N7 = "typeAnnotation", eS = 120126, va = "array_element", n3 = 64285, sX = 189, vX = "**=", Yr = "()", nS = 8543, la = "declare_module", ba = "export_batch_specifier", lX = "%i", bX = ">>>=", tS = 68029, pX = "importKind", C7 = "extends", uS = 64296, t32 = 43259, iS = 71679, fS = 64913, xS = 119969, aS = 94175, oS = 72440, u3 = 65141, pa = "function_", cS = 43071, sS = 42888, vS = 69807, ou = "variance", us = 123, ma = "import_default_specifier", mX = ">>>", lS = 43764, pi = "pattern", bS = 71947, pS = 70655, kv = "consequent", _X = 4096, mS = 183, _S = 68447, yS = 65473, is2 = 255, dS = 73648, _a4 = "call_type_arg", ya = 8238, hS = 68899, kS = 93026, Ye = "@[<2>[", wS = 110588, da = "comment", yX = 191, ha = "switch_case", dX = 175, ES = 71942, ka = "do_while", wv = "constructor", SS = 43587, gS = 43586, wu = "yield", FS = 67462, hX = "fd ", TS = -61, OS = "target", i3 = 72272, U2 = "var", kX = "impltype", f3 = 70108, H2 = "0o", IS = 119972, AS = 92991, x3 = 70441, a3 = 8450, NS = 120074, CS = 66717, wa = "interface_type", o3 = 43880, An = "%B", PS = 111355, Ev = 5760, DS = 11630, c3 = 126499, LS = "of", wX = ">>", EX = "Popping lex mode from empty stack", s3 = 120629, fs = 108, RS = 43002, SX = "%=", v3 = 126539, jS = 126502, Ea = "template_literal", GS = "src/parser/statement_parser.ml", MS = ": Not a directory", gX = "b", BS = 67461, qS = 11519, FX = "src/parser/flow_lexer.ml", TX = "Out_of_memory", US = 120570, Sa = 12287, HS = 126534, XS = "index out of bounds", YS = 73029, l3 = "_bigarr02", b3 = 126571, OX = "))", ga = "for_statement_init", IX = "supertype", Fa = "class_property", p3 = "}", f1 = "this", Ta = "declare_module_exports", AX = "@", Oa = "union_type", Li = 65535, Ia = "variance_opt", VS = 94032, NX = 222, zS = 42124, Aa = "this_expression", Na = "jsx_element", CX = "typeArguments", KS = 65019, WS = 125251, JS = 64111, $S = 8471, Ca = "typeof_qualified_identifier", ZS = 70497, PX = "EnumDefaultedMember", Pa = 8202, QS = 66927, P7 = "switch", rg = 69634, Da = "unary_expression", eg = 71215, DX = 126, ng = 67679, tg = 65597, LX = 207, ug = 120686, m3 = 72163, ig = 67001, fg = 42962, xg = 64262, X2 = 124, La = 65279, ag = 126495, RX = 169, og = 71944, jX = -10, _3 = "alternate", cg = 92975, sg = 65489, Y2 = 252, vg = 67807, lg = 43187, bg = 68850, y3 = "export", pg = 66383, GX = "===", Ra = ".", ja = "type_args", MX = 147, mg = 92159, BX = 240, Ga = "jsx_element_name", _g = 72283, yg = 171, x1 = 116, dg = 110587, d3 = 70279, hg = 75075, kg = 65338, Ma = "function_params", wg = 126627, qX = 213, h3 = 73065, Eg = 71352, k3 = 119970, Sg = 70005, gg = 12295, w3 = 120771, Fg = 71494, Tg = 11557, Og = 42191, UX = "flags", Ig = 68437, Ag = 70730, Ba = "optional_indexed_access", qa = "pattern_object_p", Ng = 42785, Ua = "nullable_type", Bn = "value", Cg = 12343, Pg = 68415, Dg = 11694, HX = 221, Lg = 11726, Ha = "syntax", Rg = 119964, XX = "&&", jg = 68497, Gg = 73097, xs = "null", E3 = 126523, Mg = 120084, Bg = 126601, qg = 8454, Ug = "expressions", Hg = 72144, V2 = '"', Zr = "(@[", YX = 1022, VX = 231, Xg = 170, S3 = 12448, Yg = 68786, g3 = "<", zX = 931, KX = "(", WX = 196, JX = 2048, F3 = "an identifier", T3 = 69959, Vg = 68799, $X = "leadingComments", zg = 72969, Kg = 182, Wg = 100351, Xa = "enum_defaulted_member", Jg = 69839, $g = 94026, Zg = 209, ZX = ">>=", Qg = 131, O3 = 12336, s7 = "empty", QX = 331416730, rY = 204, rF = 70479, eF = 69487, nF = 101640, tF = 43123, eY = "([^/]+)", I3 = 8319, nY = 165, Ya = "object_type_property_setter", tY = 909, uF = 15, iF = 12591, br = 125, fF = 92735, uY = "cases", xF = 183969, a1 = "bigint", iY = "Division_by_zero", aF = 67071, oF = 12329, A3 = 120004, cF = 69414, N3 = "if", sF = 126519, vF = "immediately within another function.", lF = 55238, bF = 126498, fY = "qualification", pF = 66256, Er = "@ }@]", z2 = 118, C3 = 11565, P3 = 120122, Va = "pattern_object_rest_property", mF = 74862, D3 = "'", _F2 = -26065557, yF = 124911, Sv = 119, D7 = 104, za = "assignment", dF = 8457, K2 = "from", hF = 64321, kF = 113817, wF = 65629, EF = 42655, Ri = 102, SF = 43137, gF = 11502, o0 = ";@ ", L7 = 101, Ka = "pattern_array_element_pattern", Wn = "body", Wa = "jsx_member_expression", FF = 65547, Ja = "jsx_attribute_value", $a = "jsx_namespaced_name", L3 = 72967, TF = 126550, gv = 254, OF = 43807, IF = 43738, R3 = 126589, j3 = 8455, G3 = 126628, AF = 11670, xY = "*=", M3 = 120134, Za = "conditional", aY = " : flags Open_text and Open_binary are not compatible", B3 = 119965, NF = 69890, CF = 72817, PF = 164, DF = 43822, q3 = 69744, oY = "\\\\", LF = 43638, RF = 93047, jF = "AssignmentPattern", U3 = 64322, GF = 123190, cY = 188, Qa = "object_spread_property_type", MF = 70783, BF = 113663, sY = 160, H3 = 42622, X3 = 43823, ji = "init", Fv = 109, qF = 66503, Y3 = "proto", UF = 74649, ro = "optional_member", HF = 40981, XF = 120654, v = "@ ", eo = "enum_boolean_body", no = "export_named_specifier", to = "declare_interface", YF = 70451, uo = "pattern_object_property_computed_key", V3 = -97, z3 = 120539, K3 = 64317, VF = 12543, io = "export_named_declaration_specifier", zF = 43359, W3 = 126530, J3 = 72713, KF = 113800, vY = 195, WF = 72367, JF = 72103, $F = 70278, fo = "if_consequent_statement", W2 = -85, $3 = 126496, xo = "try_catch", ao = "computed_key", oo = "class_", ZF = 173823, co = "pattern_object_property_identifier_key", lY = "f", so = "arrow_function", Z3 = 8485, QF = 126546, vo = "enum_boolean_member", rT = 94177, J2 = "delete", eT = 232, bY = "blocks", lo = "pattern_array_rest_element_pattern", nT = 78894, Q3 = 66512, tT = 94111, Tv = "string", Ts = "test", uT = 69572, iT = 66463, fT = 66335, xT = 72348, aT = 73061, o1 = ":", bo = "enum_body", oT = 110590, po = "function_this_param_type", cT = 215, sT = 77823, pY = "minus", mY = 201, vT = 119980, mo = "private_name", _o = "object_key", yo = "function_param_type", _Y = "<<", lT = 11718, c1 = "as", yY = "delegate", Gi = "true", bT = 67413, r6 = 70854, pT = 73439, mT = 43776, _T = 71723, yT = 11505, dT = 214, hT = 120628, kT = 43513, ho = "jsx_attribute_name_namespaced", e6 = 120127, n6 = "Map.bal", t62 = "any", dY = "@[", hY = "camlinternalMod.ml", u6 = 126559, qu = "import", i6 = 70404, ko = "jsx_spread_child", wT = 233, ET = 67897, ST = 119974, Uu = 8233, gT = 68405, f6 = 239, kY = "attributes", wY = 173, wo = "object_internal_slot_property_type", FT = 71351, TT = 242, OT = 67643, x6 = "shorthand", Eo = "for_in_statement", IT = 126463, AT = 71338, NT = 69445, CT = 65370, PT = 73055, DT = 167, LT = 64911, So = "pattern_object_property_pattern", EY = 212, SY = 197, a6 = 126579, RT = 64286, jT = "explicitType", GT = 67669, MT = 43866, gY = "Sys_blocked_io", o6 = "catch", BT = 123197, qT = 64466, UT = 65140, HT = 73030, XT = 69404, c6 = "protected", FY = 8204, YT = 67504, VT = 193, $2 = 246, zT = 43713, s6 = 120571, go = "array_type", TY = "%u", Fo = "export_default_declaration", To = "class_expression", OY = "quasi", Yt = "%S", KT = 8525, v6 = 126515, WT = 120485, l6 = 43519, b6 = 120745, p6 = 94178, JT = 126588, zn = 127, $T = 66855, IY = "@{", AY = "visit_leading_comment", ZT = 67742, NY = " : flags Open_rdonly and Open_wronly are not compatible", QT = 120144, m6 = "returnType", s1 = -744106340, v1 = 240, Oo = "-", _6 = 8469, Os = "async", y6 = 126521, rO = 72095, d6 = 216, CY = " : file already exists", eO = 178205, nO = 8449, h6 = 94179, tO = 42774, k6 = "case", uO = 66965, iO = 66431, PY = 190, Io = "declare_export_declaration", Z2 = "targs", Ao = "type_identifier", fO = 64284, xO = 43013, w6 = 43815, No = "function_body_any", aO = 66966, E6 = 120687, oO = 66939, cO = 66978, DY = 168, S6 = "public", sO = 68115, vO = 43712, g6 = 65598, F6 = 126547, lO = 110591, Co = "indexed_access", LY = 12520, r7 = "interface", RY = `(Program not linked with -g, cannot print stack backtrace)
|
|
104023
104033
|
`, l1 = -46, Po = "string_literal_type", Do = "import_namespace_specifier", bO = 120132, T6 = 11735, pO = 67505, O6 = 119893, I6 = "bool", Q2 = 1e3, mi = "default", mO = 236, C = "", _O = "exportKind", jY = "trailingComments", A6 = "^", yO = 71983, dO = 8348, hO = 66977, kO = 65594, Lo = "logical", Ro = "jsx_member_expression_identifier", N6 = 210, GY = "cooked", jo = "for_of_left_declaration", Ov = 63, wO = 72202, v7 = "argument", EO = 12442, SO = 43645, C6 = 120085, gO = 42539, P6 = 126468, MY = 166, BY = "Match_failure", FO = 68191, Eu = "src/parser/flow_ast.ml", D6 = 11647, Go = "declare_variable", as = "+", TO = 71127, L6 = 120145, Mo = "declare_export_declaration_decl", R6 = 64318, qY = 179, Bo = "class_implements", UY = "!=", HY = "inexact", XY = "%li", YY = 237, rl = "a", j6 = 73062, OO = 178, qo = 65278, Uo = "function_rest_param_type", IO = 77711, AO = 70066, NO = 43714, VY = -696510241, G6 = 70480, CO = 69748, PO = 113788, DO = 94207, zY = `\r
|
|
104024
104034
|
`, Ho = "class_body", LO = 126651, RO = 68735, jO = 43273, M6 = 119996, B6 = 67644, KY = 224, Xo = "catch_clause_pattern", Yo = "boolean_literal_type", q6 = 126554, U6 = 126557, GO = 113807, H6 = 126536, WY = "%", Iv = "property", MO = 71956, JY = "#", BO = 123213, el = "meta", Vo = "for_of_assignment_pattern", zo = "if_statement", qO = 66421, UO = 8505, HO = 225, nl = 250, XO = 100343, X6 = "Literal", YO = 42887, Av = 115, $Y = ";", VO = 1255, zO = "=", KO = 126566, WO = 93823, Ko = "opaque_type", ZY = "!==", Wo = "jsx_attribute", Jo = "type_annotation_hint", Mi = 32768, JO = 73727, QY = "range", rV = 245, $O = "jsError", Y6 = 70006, ZO = 43492, V6 = "@]}", tr = "(Some ", QO = 8477, eV = 129, rI = 71487, z6 = 126564, nV = `
|
|
104025
104035
|
`, eI = 126514, nI = 70080, $o = "generic_identifier_type", tI = 66811, Zo = "typeof_identifier", tV = "~", uI = 65007, Qo = "pattern_object_rest_property_pattern", iI = 194, uV = 1039100673, fI = 66461, xI = 70319, K6 = 11719, aI = 72271, zt = -48, rc = "enum_string_body", oI = 70461, ec = "export_named_declaration", cI = 110930, sI = 92862, iV = "??=", vI = 70440, W6 = "while", cu = "camlinternalFormat.ml", lI = 43782, fV = 203, bI = 173791, pI = 11263, mI = 1114111, _I = 42969, J6 = 70750, nc = "jsx_identifier", yI = 70105, dI = 43014, hI = 11564, tc = "typeof_type", xV = "EEXIST", kI = 64847, wI = 71167, EI = 42511, SI = 72712, gI = 92995, FI = 43704, tl = 121, uc = "object_call_property_type", TI = 64433, ul = "operator", $6 = 68296, ic = "class_decorator", fc = 120, xc = "for_of_statement_lhs", OI = 11623, II = 67004, AI = 71999, NI = 70708, CI = 512, PI = 110927, DI = 71423, aV = 32752, LI = 93951, RI = 12292, ac = "object_type", Z6 = "types", jI = 110580, oV = 177, GI = 126633, MI = 12686, oc = 8286, cV = 144, BI = 73647, sV = 228, Q6 = 70855, b1 = "0x", qI = 70366, UI = `
|
|
@@ -104178,7 +104188,7 @@ var require_parser_flow = __commonJS({
|
|
|
104178
104188
|
vu(XS);
|
|
104179
104189
|
}
|
|
104180
104190
|
function Jn(t15, n, e) {
|
|
104181
|
-
if (e &=
|
|
104191
|
+
if (e &= is2, t15.t != 4) {
|
|
104182
104192
|
if (n == t15.c.length)
|
|
104183
104193
|
return t15.c += String.fromCharCode(e), n + 1 == t15.l && (t15.t = 0), 0;
|
|
104184
104194
|
pp(t15);
|
|
@@ -104329,9 +104339,9 @@ var require_parser_flow = __commonJS({
|
|
|
104329
104339
|
}, an.prototype.toFloat = function() {
|
|
104330
104340
|
return (this.hi << 16) * Math.pow(2, 32) + this.mi * Math.pow(2, 24) + this.lo;
|
|
104331
104341
|
}, an.prototype.toArray = function() {
|
|
104332
|
-
return [this.hi >> 8, this.hi &
|
|
104342
|
+
return [this.hi >> 8, this.hi & is2, this.mi >> 16, this.mi >> 8 & is2, this.mi & is2, this.lo >> 16, this.lo >> 8 & is2, this.lo & is2];
|
|
104333
104343
|
}, an.prototype.lo32 = function() {
|
|
104334
|
-
return this.lo | (this.mi &
|
|
104344
|
+
return this.lo | (this.mi & is2) << 24;
|
|
104335
104345
|
}, an.prototype.hi32 = function() {
|
|
104336
104346
|
return this.mi >>> 8 & Li | this.hi << 16;
|
|
104337
104347
|
};
|
|
@@ -104496,7 +104506,7 @@ var require_parser_flow = __commonJS({
|
|
|
104496
104506
|
return e;
|
|
104497
104507
|
}
|
|
104498
104508
|
function _70(t15, n) {
|
|
104499
|
-
return new an(t15 & gx, t15 >>> 24 &
|
|
104509
|
+
return new an(t15 & gx, t15 >>> 24 & is2 | (n & Li) << 8, n >>> 16 & Li);
|
|
104500
104510
|
}
|
|
104501
104511
|
function qA(t15) {
|
|
104502
104512
|
return t15.hi32();
|
|
@@ -104648,7 +104658,7 @@ var require_parser_flow = __commonJS({
|
|
|
104648
104658
|
function NV(t15, n, e) {
|
|
104649
104659
|
var i = t15.read32s();
|
|
104650
104660
|
(i < 0 || i > 16) && e7("input_value: wrong number of bigarray dimensions");
|
|
104651
|
-
var x = t15.read32s(), c = x &
|
|
104661
|
+
var x = t15.read32s(), c = x & is2, s = x >> 8 & 1, p = [];
|
|
104652
104662
|
if (e == l3)
|
|
104653
104663
|
for (var y = 0; y < i; y++) {
|
|
104654
104664
|
var T = t15.read16u();
|
|
@@ -145632,7 +145642,7 @@ ${fe.join(`
|
|
|
145632
145642
|
function Eo(e) {
|
|
145633
145643
|
return e.indexOf("\\") !== -1 ? e.replace(BT, zn) : e;
|
|
145634
145644
|
}
|
|
145635
|
-
function
|
|
145645
|
+
function is2(e) {
|
|
145636
145646
|
if (!Ke(e))
|
|
145637
145647
|
return [];
|
|
145638
145648
|
let t15 = [e[0]];
|
|
@@ -145667,7 +145677,7 @@ ${fe.join(`
|
|
|
145667
145677
|
return Un(Ke(r) ? tn(e, ...r) : Eo(e));
|
|
145668
145678
|
}
|
|
145669
145679
|
function $p(e, t15) {
|
|
145670
|
-
return
|
|
145680
|
+
return is2(qi(e, t15));
|
|
145671
145681
|
}
|
|
145672
145682
|
function as(e, t15) {
|
|
145673
145683
|
return xo($p(e, t15));
|
|
@@ -145678,7 +145688,7 @@ ${fe.join(`
|
|
|
145678
145688
|
let t15 = e.replace(/\/\.\//g, "/").replace(/^\.\//, "");
|
|
145679
145689
|
if (t15 !== e && (e = t15, !ol.test(e)))
|
|
145680
145690
|
return e;
|
|
145681
|
-
let r = xo(
|
|
145691
|
+
let r = xo(is2(qi(e)));
|
|
145682
145692
|
return r && Hp(e) ? wo(r) : r;
|
|
145683
145693
|
}
|
|
145684
145694
|
function Y5(e) {
|
|
@@ -145717,7 +145727,7 @@ ${fe.join(`
|
|
|
145717
145727
|
let w = e.substring(s.length), A6 = t15.substring(f10.length);
|
|
145718
145728
|
if (!ol.test(w) && !ol.test(A6))
|
|
145719
145729
|
return r(w, A6);
|
|
145720
|
-
let g =
|
|
145730
|
+
let g = is2(qi(e)), B = is2(qi(t15)), N = Math.min(g.length, B.length);
|
|
145721
145731
|
for (let X = 1; X < N; X++) {
|
|
145722
145732
|
let F = r(g[X], B[X]);
|
|
145723
145733
|
if (F !== 0)
|
|
@@ -145739,7 +145749,7 @@ ${fe.join(`
|
|
|
145739
145749
|
return false;
|
|
145740
145750
|
if (e === t15)
|
|
145741
145751
|
return true;
|
|
145742
|
-
let f10 =
|
|
145752
|
+
let f10 = is2(qi(e)), x = is2(qi(t15));
|
|
145743
145753
|
if (x.length < f10.length)
|
|
145744
145754
|
return false;
|
|
145745
145755
|
let w = s ? Ms : To;
|
|
@@ -145753,7 +145763,7 @@ ${fe.join(`
|
|
|
145753
145763
|
return Pn(s, f10 + "/") || Pn(s, f10 + "\\");
|
|
145754
145764
|
}
|
|
145755
145765
|
function ly(e, t15, r, s) {
|
|
145756
|
-
let f10 =
|
|
145766
|
+
let f10 = is2(qi(e)), x = is2(qi(t15)), w;
|
|
145757
145767
|
for (w = 0; w < f10.length && w < x.length; w++) {
|
|
145758
145768
|
let B = s(f10[w]), N = s(x[w]);
|
|
145759
145769
|
if (!(w === 0 ? Ms : r)(B, N))
|
|
@@ -162346,7 +162356,7 @@ ${fe.join(`
|
|
|
162346
162356
|
nn(), l7(), KF(), u7(), XF(), YF(), QF(), ZF(), eB(), tB(), rB(), nB(), iB(), aB(), yB(), vB(), bB(), TB(), SB(), xB(), EB(), wB(), CB(), AB(), PB(), DB(), p7(), f7(), kB(), IB(), NB(), OB(), MB(), LB(), RB(), jB(), JB();
|
|
162347
162357
|
} }), FB = () => {
|
|
162348
162358
|
}, L7 = {};
|
|
162349
|
-
y(L7, { ANONYMOUS: () => ANONYMOUS, AccessFlags: () => Cg, AssertionLevel: () => $1, AssignmentDeclarationKind: () => Mg, AssignmentKind: () => Sv, Associativity: () => Ev, BreakpointResolver: () => ts_BreakpointResolver_exports, BuilderFileEmit: () => BuilderFileEmit, BuilderProgramKind: () => BuilderProgramKind, BuilderState: () => BuilderState, BundleFileSectionKind: () => ty, CallHierarchy: () => ts_CallHierarchy_exports, CharacterCodes: () => $g, CheckFlags: () => Tg, CheckMode: () => CheckMode, ClassificationType: () => ClassificationType, ClassificationTypeNames: () => ClassificationTypeNames, CommentDirectiveType: () => ig, Comparison: () => d, CompletionInfoFlags: () => CompletionInfoFlags, CompletionTriggerKind: () => CompletionTriggerKind, Completions: () => ts_Completions_exports, ConfigFileProgramReloadLevel: () => ConfigFileProgramReloadLevel, ContextFlags: () => pg, CoreServicesShimHostAdapter: () => CoreServicesShimHostAdapter, Debug: () => Y, DiagnosticCategory: () => qp, Diagnostics: () => ve, DocumentHighlights: () => DocumentHighlights, ElementFlags: () => wg, EmitFlags: () => Wp, EmitHint: () => Qg, EmitOnly: () => og, EndOfLineState: () => EndOfLineState, EnumKind: () => bg, ExitStatus: () => cg, ExportKind: () => ExportKind, Extension: () => Kg, ExternalEmitHelpers: () => Yg, FileIncludeKind: () => ag, FilePreprocessingDiagnosticsKind: () => sg, FileSystemEntryKind: () => FileSystemEntryKind, FileWatcherEventKind: () => FileWatcherEventKind, FindAllReferences: () => ts_FindAllReferences_exports, FlattenLevel: () => FlattenLevel, FlowFlags: () => il, ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences, FunctionFlags: () => xv, GeneratedIdentifierFlags: () => rg, GetLiteralTextFlags: () => vv, GoToDefinition: () => ts_GoToDefinition_exports, HighlightSpanKind: () => HighlightSpanKind, ImportKind: () => ImportKind, ImportsNotUsedAsValues: () => Ug, IndentStyle: () => IndentStyle, IndexKind: () => Dg, InferenceFlags: () => Ng, InferencePriority: () => Ig, InlayHintKind: () => InlayHintKind, InlayHints: () => ts_InlayHints_exports, InternalEmitFlags: () => Xg, InternalSymbolName: () => Sg, InvalidatedProjectKind: () => InvalidatedProjectKind, JsDoc: () => ts_JsDoc_exports, JsTyping: () => ts_JsTyping_exports, JsxEmit: () => qg, JsxFlags: () => tg, JsxReferenceKind: () => Ag, LanguageServiceMode: () => LanguageServiceMode, LanguageServiceShimHostAdapter: () => LanguageServiceShimHostAdapter, LanguageVariant: () => Hg, LexicalEnvironmentFlags: () => ey, ListFormat: () => ry, LogLevel: () => Y1, MemberOverrideStatus: () => lg, ModifierFlags: () => Mp, ModuleDetectionKind: () => Rg, ModuleInstanceState: () => ModuleInstanceState, ModuleKind: () => Bg, ModuleResolutionKind: () => Lg, ModuleSpecifierEnding: () => jv, NavigateTo: () => ts_NavigateTo_exports, NavigationBar: () => ts_NavigationBar_exports, NewLineKind: () => zg, NodeBuilderFlags: () => fg, NodeCheckFlags: () => xg, NodeFactoryFlags: () => Fv, NodeFlags: () => Op, NodeResolutionFeatures: () => NodeResolutionFeatures, ObjectFlags: () => Fp, OperationCanceledException: () => Rp, OperatorPrecedence: () => wv, OrganizeImports: () => ts_OrganizeImports_exports, OrganizeImportsMode: () => OrganizeImportsMode, OuterExpressionKinds: () => Zg, OutliningElementsCollector: () => ts_OutliningElementsCollector_exports, OutliningSpanKind: () => OutliningSpanKind, OutputFileType: () => OutputFileType, PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference, PackageJsonDependencyGroup: () => PackageJsonDependencyGroup, PatternMatchKind: () => PatternMatchKind, PollingInterval: () => PollingInterval, PollingWatchKind: () => Fg, PragmaKindFlags: () => ny, PrivateIdentifierKind: () => PrivateIdentifierKind, ProcessLevel: () => ProcessLevel, QuotePreference: () => QuotePreference, RelationComparisonResult: () => Lp, Rename: () => ts_Rename_exports, ScriptElementKind: () => ScriptElementKind, ScriptElementKindModifier: () => ScriptElementKindModifier, ScriptKind: () => Wg, ScriptSnapshot: () => ScriptSnapshot, ScriptTarget: () => Vg, SemanticClassificationFormat: () => SemanticClassificationFormat, SemanticMeaning: () => SemanticMeaning, SemicolonPreference: () => SemicolonPreference, SignatureCheckMode: () => SignatureCheckMode, SignatureFlags: () => Bp, SignatureHelp: () => ts_SignatureHelp_exports, SignatureKind: () => Pg, SmartSelectionRange: () => ts_SmartSelectionRange_exports, SnippetKind: () => zp, SortKind: () => H1, StructureIsReused: () => _g, SymbolAccessibility: () => hg, SymbolDisplay: () => ts_SymbolDisplay_exports, SymbolDisplayPartKind: () => SymbolDisplayPartKind, SymbolFlags: () => jp, SymbolFormatFlags: () => mg, SyntaxKind: () => Np, SyntheticSymbolKind: () => gg, Ternary: () => Og, ThrottledCancellationToken: () => O7, TokenClass: () => TokenClass, TokenFlags: () => ng, TransformFlags: () => Up, TypeFacts: () => TypeFacts, TypeFlags: () => Jp, TypeFormatFlags: () => dg, TypeMapKind: () => kg, TypePredicateKind: () => yg, TypeReferenceSerializationKind: () => vg, TypeScriptServicesFactory: () => TypeScriptServicesFactory, UnionReduction: () => ug, UpToDateStatusType: () => UpToDateStatusType, VarianceFlags: () => Eg, Version: () => Version, VersionRange: () => VersionRange, WatchDirectoryFlags: () => Gg, WatchDirectoryKind: () => Jg, WatchFileKind: () => jg, WatchLogLevel: () => WatchLogLevel, WatchType: () => WatchType, accessPrivateIdentifier: () => accessPrivateIdentifier, addEmitFlags: () => addEmitFlags, addEmitHelper: () => addEmitHelper, addEmitHelpers: () => addEmitHelpers, addInternalEmitFlags: () => addInternalEmitFlags, addNodeFactoryPatcher: () => jL, addObjectAllocatorPatcher: () => sM, addRange: () => jr, addRelatedInfo: () => Rl, addSyntheticLeadingComment: () => addSyntheticLeadingComment, addSyntheticTrailingComment: () => addSyntheticTrailingComment, addToSeen: () => GO, advancedAsyncSuperHelper: () => advancedAsyncSuperHelper, affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations, affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations, allKeysStartWithDot: () => allKeysStartWithDot, altDirectorySeparator: () => py, and: () => E5, append: () => tr, appendIfUnique: () => g_, arrayFrom: () => Za, arrayIsEqualTo: () => Hc, arrayIsHomogeneous: () => fL, arrayIsSorted: () => Wc, arrayOf: () => yo, arrayReverseIterator: () => y_, arrayToMap: () => Zc, arrayToMultiMap: () => bo, arrayToNumericMap: () => Os, arraysEqual: () => ke, assertType: () => C5, assign: () => vo, assignHelper: () => assignHelper, asyncDelegator: () => asyncDelegator, asyncGeneratorHelper: () => asyncGeneratorHelper, asyncSuperHelper: () => asyncSuperHelper, asyncValues: () => asyncValues, attachFileToDiagnostics: () => qs, awaitHelper: () => awaitHelper, awaiterHelper: () => awaiterHelper, base64decode: () => mO, base64encode: () => dO, binarySearch: () => Ya, binarySearchKey: () => b_, bindSourceFile: () => bindSourceFile, breakIntoCharacterSpans: () => breakIntoCharacterSpans, breakIntoWordSpans: () => breakIntoWordSpans, buildLinkParts: () => buildLinkParts, buildOpts: () => buildOpts, buildOverload: () => buildOverload, bundlerModuleNameResolver: () => bundlerModuleNameResolver, canBeConvertedToAsync: () => canBeConvertedToAsync, canHaveDecorators: () => ME, canHaveExportModifier: () => AL, canHaveFlowNode: () => jI, canHaveIllegalDecorators: () => rJ, canHaveIllegalModifiers: () => nJ, canHaveIllegalType: () => tJ, canHaveIllegalTypeParameters: () => IE, canHaveJSDoc: () => Af, canHaveLocals: () => zP, canHaveModifiers: () => fc, canHaveSymbol: () => UP, canJsonReportNoInputFiles: () => canJsonReportNoInputFiles, canProduceDiagnostics: () => canProduceDiagnostics, canUsePropertyAccess: () => PL, canWatchDirectoryOrFile: () => canWatchDirectoryOrFile, cartesianProduct: () => P5, cast: () => ti, chainBundle: () => chainBundle, chainDiagnosticMessages: () => lM, changeAnyExtension: () => RT, changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache, changeExtension: () => KM, changesAffectModuleResolution: () => cD, changesAffectingProgramStructure: () => lD, childIsDecorated: () => h0, classElementOrClassElementParameterIsDecorated: () => sI, classOrConstructorParameterIsDecorated: () => aI, classPrivateFieldGetHelper: () => classPrivateFieldGetHelper, classPrivateFieldInHelper: () => classPrivateFieldInHelper, classPrivateFieldSetHelper: () => classPrivateFieldSetHelper, classicNameResolver: () => classicNameResolver, classifier: () => ts_classifier_exports, cleanExtendedConfigCache: () => cleanExtendedConfigCache, clear: () => nt, clearMap: () => qO, clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher, climbPastPropertyAccess: () => climbPastPropertyAccess, climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess, clone: () => E_, cloneCompilerOptions: () => cloneCompilerOptions, closeFileWatcher: () => MO, closeFileWatcherOf: () => closeFileWatcherOf, codefix: () => ts_codefix_exports, collapseTextChangeRangesAcrossMultipleVersions: () => CA, collectExternalModuleInfo: () => collectExternalModuleInfo, combine: () => $c, combinePaths: () => tn, commentPragmas: () => Vp, commonOptionsWithBuild: () => commonOptionsWithBuild, commonPackageFolders: () => Pv, compact: () => Gc, compareBooleans: () => j1, compareDataObjects: () => px, compareDiagnostics: () => av, compareDiagnosticsSkipRelatedInformation: () => qf, compareEmitHelpers: () => compareEmitHelpers, compareNumberOfDirectorySeparators: () => $M, comparePaths: () => tA, comparePathsCaseInsensitive: () => eA, comparePathsCaseSensitive: () => Z5, comparePatternKeys: () => comparePatternKeys, compareProperties: () => R1, compareStringsCaseInsensitive: () => C_, compareStringsCaseInsensitiveEslintCompatible: () => O1, compareStringsCaseSensitive: () => ri, compareStringsCaseSensitiveUI: () => L1, compareTextSpans: () => I1, compareValues: () => Vr, compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption, compilerOptionsAffectDeclarationPath: () => DM, compilerOptionsAffectEmit: () => PM, compilerOptionsAffectSemanticDiagnostics: () => AM, compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics, compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules, compose: () => k1, computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames, computeLineAndCharacterOfPosition: () => my, computeLineOfPosition: () => k_, computeLineStarts: () => Kp, computePositionOfLineAndCharacter: () => dy, computeSignature: () => computeSignature, computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics, computeSuggestionDiagnostics: () => computeSuggestionDiagnostics, concatenate: () => Ft, concatenateDiagnosticMessageChains: () => uM, consumesNodeCoreModules: () => consumesNodeCoreModules, contains: () => pe, containsIgnoredPath: () => Hx, containsObjectRestOrSpread: () => A2, containsParseError: () => Ky, containsPath: () => jT, convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry, convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson, convertJsonOption: () => convertJsonOption, convertToBase64: () => ix, convertToObject: () => convertToObject, convertToObjectWorker: () => convertToObjectWorker, convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths, convertToRelativePath: () => nA, convertToTSConfig: () => convertToTSConfig, convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson, copyComments: () => copyComments, copyEntries: () => dD, copyLeadingComments: () => copyLeadingComments, copyProperties: () => H, copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments, copyTrailingComments: () => copyTrailingComments, couldStartTrivia: () => pA, countWhere: () => Xe, createAbstractBuilder: () => createAbstractBuilder, createAccessorPropertyBackingField: () => LJ, createAccessorPropertyGetRedirector: () => RJ, createAccessorPropertySetRedirector: () => jJ, createBaseNodeFactory: () => S8, createBinaryExpressionTrampoline: () => PJ, createBindingHelper: () => createBindingHelper, createBuildInfo: () => createBuildInfo, createBuilderProgram: () => createBuilderProgram, createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo, createBuilderStatusReporter: () => createBuilderStatusReporter, createCacheWithRedirects: () => createCacheWithRedirects, createCacheableExportInfoMap: () => createCacheableExportInfoMap, createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost, createClassifier: () => createClassifier, createCommentDirectivesMap: () => JD, createCompilerDiagnostic: () => Ol, createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType, createCompilerDiagnosticFromMessageChain: () => cM, createCompilerHost: () => createCompilerHost, createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost, createCompilerHostWorker: () => createCompilerHostWorker, createDetachedDiagnostic: () => Ro, createDiagnosticCollection: () => TN, createDiagnosticForFileFromMessageChain: () => mk, createDiagnosticForNode: () => uk, createDiagnosticForNodeArray: () => pk, createDiagnosticForNodeArrayFromMessageChain: () => dk, createDiagnosticForNodeFromMessageChain: () => fk, createDiagnosticForNodeInSourceFile: () => P3, createDiagnosticForRange: () => gk, createDiagnosticMessageChainFromDiagnostic: () => hk, createDiagnosticReporter: () => createDiagnosticReporter, createDocumentPositionMapper: () => createDocumentPositionMapper, createDocumentRegistry: () => createDocumentRegistry, createDocumentRegistryInternal: () => createDocumentRegistryInternal, createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram, createEmitHelperFactory: () => createEmitHelperFactory, createEmptyExports: () => Dj, createExpressionForJsxElement: () => Ij, createExpressionForJsxFragment: () => Nj, createExpressionForObjectLiteralElementLike: () => Fj, createExpressionForPropertyName: () => vE, createExpressionFromEntityName: () => yE, createExternalHelpersImportDeclarationIfNeeded: () => $j, createFileDiagnostic: () => iv, createFileDiagnosticFromMessageChain: () => r0, createForOfBindingStatement: () => Oj, createGetCanonicalFileName: () => wp, createGetSourceFile: () => createGetSourceFile, createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode, createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName, createGetSymbolWalker: () => createGetSymbolWalker, createIncrementalCompilerHost: () => createIncrementalCompilerHost, createIncrementalProgram: () => createIncrementalProgram, createInputFiles: () => VL, createInputFilesWithFilePaths: () => C8, createInputFilesWithFileTexts: () => A8, createJsxFactoryExpression: () => gE, createLanguageService: () => lB, createLanguageServiceSourceFile: () => N2, createMemberAccessForPropertyName: () => hd, createModeAwareCache: () => createModeAwareCache, createModeAwareCacheKey: () => createModeAwareCacheKey, createModuleResolutionCache: () => createModuleResolutionCache, createModuleResolutionLoader: () => createModuleResolutionLoader, createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost, createMultiMap: () => Be, createNodeConverters: () => x8, createNodeFactory: () => Zf, createOptionNameMap: () => createOptionNameMap, createOverload: () => createOverload, createPackageJsonImportFilter: () => createPackageJsonImportFilter, createPackageJsonInfo: () => createPackageJsonInfo, createParenthesizerRules: () => createParenthesizerRules, createPatternMatcher: () => createPatternMatcher, createPrependNodes: () => createPrependNodes, createPrinter: () => createPrinter, createPrinterWithDefaults: () => createPrinterWithDefaults, createPrinterWithRemoveComments: () => createPrinterWithRemoveComments, createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape, createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon, createProgram: () => createProgram, createProgramHost: () => createProgramHost, createPropertyNameNodeForIdentifierOrLiteral: () => EL, createQueue: () => Fr, createRange: () => Jf, createRedirectedBuilderProgram: () => createRedirectedBuilderProgram, createResolutionCache: () => createResolutionCache, createRuntimeTypeSerializer: () => createRuntimeTypeSerializer, createScanner: () => Po, createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram, createSet: () => Cr, createSolutionBuilder: () => createSolutionBuilder, createSolutionBuilderHost: () => createSolutionBuilderHost, createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch, createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost, createSortedArray: () => zc, createSourceFile: () => YE, createSourceMapGenerator: () => createSourceMapGenerator, createSourceMapSource: () => HL, createSuperAccessVariableStatement: () => createSuperAccessVariableStatement, createSymbolTable: () => oD, createSymlinkCache: () => MM, createSystemWatchFunctions: () => createSystemWatchFunctions, createTextChange: () => createTextChange, createTextChangeFromStartLength: () => createTextChangeFromStartLength, createTextChangeRange: () => Zp, createTextRangeFromNode: () => createTextRangeFromNode, createTextRangeFromSpan: () => createTextRangeFromSpan, createTextSpan: () => L_, createTextSpanFromBounds: () => ha, createTextSpanFromNode: () => createTextSpanFromNode, createTextSpanFromRange: () => createTextSpanFromRange, createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent, createTextWriter: () => DN, createTokenRange: () => bO, createTypeChecker: () => createTypeChecker, createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader, createUnderscoreEscapedMultiMap: () => Ht, createUnparsedSourceFile: () => UL, createWatchCompilerHost: () => createWatchCompilerHost2, createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile, createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions, createWatchFactory: () => createWatchFactory, createWatchHost: () => createWatchHost, createWatchProgram: () => createWatchProgram, createWatchStatusReporter: () => createWatchStatusReporter, createWriteFileMeasuringIO: () => createWriteFileMeasuringIO, declarationNameToString: () => A3, decodeMappings: () => decodeMappings, decodedTextSpanIntersectsWith: () => Sy, decorateHelper: () => decorateHelper, deduplicate: () => ji, defaultIncludeSpec: () => defaultIncludeSpec, defaultInitCompilerOptions: () => defaultInitCompilerOptions, defaultMaximumTruncationLength: () => r8, detectSortCaseSensitivity: () => Vc, diagnosticCategoryName: () => z5, diagnosticToString: () => diagnosticToString, directoryProbablyExists: () => sx, directorySeparator: () => zn, displayPart: () => displayPart, displayPartsToString: () => cB, disposeEmitNodes: () => disposeEmitNodes, documentSpansEqual: () => documentSpansEqual, dumpTracingLegend: () => dumpTracingLegend, elementAt: () => wT, elideNodes: () => IJ, emitComments: () => U4, emitDetachedComments: () => GN, emitFiles: () => emitFiles, emitFilesAndReportErrors: () => emitFilesAndReportErrors, emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus, emitModuleKindIsNonNodeESM: () => mM, emitNewLineBeforeLeadingCommentOfPosition: () => HN, emitNewLineBeforeLeadingComments: () => B4, emitNewLineBeforeLeadingCommentsOfPosition: () => q4, emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics, emitUsingBuildInfo: () => emitUsingBuildInfo, emptyArray: () => Bt, emptyFileSystemEntries: () => T8, emptyMap: () => V1, emptyOptions: () => emptyOptions, emptySet: () => ET, endsWith: () => es, ensurePathIsNonModuleName: () => _y, ensureScriptKind: () => Nx, ensureTrailingDirectorySeparator: () => wo, entityNameToString: () => ls, enumerateInsertsAndDeletes: () => A5, equalOwnProperties: () => S_, equateStringsCaseInsensitive: () => Ms, equateStringsCaseSensitive: () => To, equateValues: () => fa, esDecorateHelper: () => esDecorateHelper, escapeJsxAttributeString: () => A4, escapeLeadingUnderscores: () => vi, escapeNonAsciiString: () => Of, escapeSnippetText: () => xL, escapeString: () => Nf, every: () => me, expandPreOrPostfixIncrementOrDecrementExpression: () => Bj, explainFiles: () => explainFiles, explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat, exportAssignmentIsAlias: () => I0, exportStarHelper: () => exportStarHelper, expressionResultIsUnused: () => gL, extend: () => S, extendsHelper: () => extendsHelper, extensionFromPath: () => QM, extensionIsTS: () => qx, externalHelpersModuleNameText: () => Kf, factory: () => si, fileExtensionIs: () => ns, fileExtensionIsOneOf: () => da, fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics, filter: () => ee, filterMutate: () => je, filterSemanticDiagnostics: () => filterSemanticDiagnostics, find: () => Ae, findAncestor: () => zi, findBestPatternMatch: () => TT, findChildOfKind: () => findChildOfKind, findComputedPropertyNameCacheAssignment: () => JJ, findConfigFile: () => findConfigFile, findContainingList: () => findContainingList, findDiagnosticForNode: () => findDiagnosticForNode, findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken, findIndex: () => he, findLast: () => te, findLastIndex: () => Pe, findListItemInfo: () => findListItemInfo, findMap: () => R, findModifier: () => findModifier, findNextToken: () => findNextToken, findPackageJson: () => findPackageJson, findPackageJsons: () => findPackageJsons, findPrecedingMatchingToken: () => findPrecedingMatchingToken, findPrecedingToken: () => findPrecedingToken, findSuperStatementIndex: () => findSuperStatementIndex, findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition, findUseStrictPrologue: () => TE, first: () => fo, firstDefined: () => q, firstDefinedIterator: () => W, firstIterator: () => v_, firstOrOnly: () => firstOrOnly, firstOrUndefined: () => pa, firstOrUndefinedIterator: () => Xc, fixupCompilerOptions: () => fixupCompilerOptions, flatMap: () => ne, flatMapIterator: () => Fe, flatMapToMutable: () => ge, flatten: () => ct, flattenCommaList: () => BJ, flattenDestructuringAssignment: () => flattenDestructuringAssignment, flattenDestructuringBinding: () => flattenDestructuringBinding, flattenDiagnosticMessageText: () => flattenDiagnosticMessageText, forEach: () => c, forEachAncestor: () => uD, forEachAncestorDirectory: () => FT, forEachChild: () => xr, forEachChildRecursively: () => D2, forEachEmittedFile: () => forEachEmittedFile, forEachEnclosingBlockScopeContainer: () => ok, forEachEntry: () => pD, forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom, forEachImportClauseDeclaration: () => NI, forEachKey: () => fD, forEachLeadingCommentRange: () => fA, forEachNameInAccessChainWalkingLeft: () => QO, forEachResolvedProjectReference: () => forEachResolvedProjectReference, forEachReturnStatement: () => Pk, forEachRight: () => M, forEachTrailingCommentRange: () => dA, forEachUnique: () => forEachUnique, forEachYieldExpression: () => Dk, forSomeAncestorDirectory: () => WO, formatColorAndReset: () => formatColorAndReset, formatDiagnostic: () => formatDiagnostic, formatDiagnostics: () => formatDiagnostics, formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext, formatGeneratedName: () => bd, formatGeneratedNamePart: () => C2, formatLocation: () => formatLocation, formatMessage: () => _M, formatStringFromArgs: () => X_, formatting: () => ts_formatting_exports, fullTripleSlashAMDReferencePathRegEx: () => Tv, fullTripleSlashReferencePathRegEx: () => bv, generateDjb2Hash: () => generateDjb2Hash, generateTSConfig: () => generateTSConfig, generatorHelper: () => generatorHelper, getAdjustedReferenceLocation: () => getAdjustedReferenceLocation, getAdjustedRenameLocation: () => getAdjustedRenameLocation, getAliasDeclarationFromName: () => u4, getAllAccessorDeclarations: () => W0, getAllDecoratorsOfClass: () => getAllDecoratorsOfClass, getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement, getAllJSDocTags: () => MS, getAllJSDocTagsOfKind: () => UA, getAllKeys: () => T_, getAllProjectOutputs: () => getAllProjectOutputs, getAllSuperTypeNodes: () => h4, getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers, getAllowJSCompilerOption: () => Ax, getAllowSyntheticDefaultImports: () => TM, getAncestor: () => eN, getAnyExtensionFromPath: () => Gp, getAreDeclarationMapsEnabled: () => bM, getAssignedExpandoInitializer: () => bI, getAssignedName: () => yS, getAssignmentDeclarationKind: () => ps, getAssignmentDeclarationPropertyAccessKind: () => K3, getAssignmentTargetKind: () => o4, getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames, getBaseFileName: () => sl, getBinaryOperatorPrecedence: () => Dl, getBuildInfo: () => getBuildInfo, getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap, getBuildInfoText: () => getBuildInfoText, getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder, getBuilderCreationParameters: () => getBuilderCreationParameters, getBuilderFileEmit: () => getBuilderFileEmit, getCheckFlags: () => ux, getClassExtendsHeritageElement: () => d4, getClassLikeDeclarationOfSymbol: () => dx, getCombinedLocalAndExportSymbolFlags: () => jO, getCombinedModifierFlags: () => ef, getCombinedNodeFlags: () => tf, getCombinedNodeFlagsAlwaysIncludeJSDoc: () => PA, getCommentRange: () => getCommentRange, getCommonSourceDirectory: () => getCommonSourceDirectory, getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig, getCompilerOptionValue: () => uv, getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue, getConditions: () => getConditions, getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics, getConstantValue: () => getConstantValue, getContainerNode: () => getContainerNode, getContainingClass: () => Vk, getContainingClassStaticBlock: () => Hk, getContainingFunction: () => zk, getContainingFunctionDeclaration: () => Wk, getContainingFunctionOrClassStaticBlock: () => Gk, getContainingNodeArray: () => yL, getContainingObjectLiteralElement: () => S7, getContextualTypeFromParent: () => getContextualTypeFromParent, getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode, getCurrentTime: () => getCurrentTime, getDeclarationDiagnostics: () => getDeclarationDiagnostics, getDeclarationEmitExtensionForPath: () => O4, getDeclarationEmitOutputFilePath: () => ON, getDeclarationEmitOutputFilePathWorker: () => N4, getDeclarationFromName: () => XI, getDeclarationModifierFlagsFromSymbol: () => LO, getDeclarationOfKind: () => aD, getDeclarationsOfKind: () => sD, getDeclaredExpandoInitializer: () => yI, getDecorators: () => kA, getDefaultCompilerOptions: () => y7, getDefaultExportInfoWorker: () => getDefaultExportInfoWorker, getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings, getDefaultLibFileName: () => aS, getDefaultLibFilePath: () => gB, getDefaultLikeExportInfo: () => getDefaultLikeExportInfo, getDiagnosticText: () => getDiagnosticText, getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan, getDirectoryPath: () => ma, getDocumentPositionMapper: () => getDocumentPositionMapper, getESModuleInterop: () => ov, getEditsForFileRename: () => getEditsForFileRename, getEffectiveBaseTypeNode: () => f4, getEffectiveConstraintOfTypeParameter: () => HA, getEffectiveContainerForJSDocTemplateTag: () => FI, getEffectiveImplementsTypeNodes: () => m4, getEffectiveInitializer: () => V3, getEffectiveJSDocHost: () => A0, getEffectiveModifierFlags: () => Rf, getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => K4, getEffectiveModifierFlagsNoCache: () => Y4, getEffectiveReturnTypeNode: () => zN, getEffectiveSetAccessorTypeAnnotationNode: () => VN, getEffectiveTypeAnnotationNode: () => V0, getEffectiveTypeParameterDeclarations: () => VA, getEffectiveTypeRoots: () => getEffectiveTypeRoots, getElementOrPropertyAccessArgumentExpressionOrName: () => Cf, getElementOrPropertyAccessName: () => Fs, getElementsOfBindingOrAssignmentPattern: () => kE, getEmitDeclarations: () => cv, getEmitFlags: () => xi, getEmitHelpers: () => getEmitHelpers, getEmitModuleDetectionKind: () => wx, getEmitModuleKind: () => Ei, getEmitModuleResolutionKind: () => Ml, getEmitScriptTarget: () => Uf, getEnclosingBlockScopeContainer: () => Zy, getEncodedSemanticClassifications: () => getEncodedSemanticClassifications, getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications, getEndLinePosition: () => d3, getEntityNameFromTypeNode: () => nI, getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo, getErrorCountForSummary: () => getErrorCountForSummary, getErrorSpanForNode: () => i0, getErrorSummaryText: () => getErrorSummaryText, getEscapedTextOfIdentifierOrLiteral: () => b4, getExpandoInitializer: () => U_, getExportAssignmentExpression: () => p4, getExportInfoMap: () => getExportInfoMap, getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper, getExpressionAssociativity: () => yN, getExpressionPrecedence: () => vN, getExternalHelpersModuleName: () => EE, getExternalModuleImportEqualsDeclarationExpression: () => _I, getExternalModuleName: () => E0, getExternalModuleNameFromDeclaration: () => IN, getExternalModuleNameFromPath: () => F0, getExternalModuleNameLiteral: () => Xj, getExternalModuleRequireArgument: () => cI, getFallbackOptions: () => getFallbackOptions, getFileEmitOutput: () => getFileEmitOutput, getFileMatcherPatterns: () => Ix, getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs, getFileWatcherEventKind: () => getFileWatcherEventKind, getFilesInErrorForSummary: () => getFilesInErrorForSummary, getFirstConstructorWithBody: () => R4, getFirstIdentifier: () => iO, getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition, getFirstProjectOutput: () => getFirstProjectOutput, getFixableErrorSpanExpression: () => getFixableErrorSpanExpression, getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting, getFullWidth: () => hf, getFunctionFlags: () => sN, getHeritageClause: () => Pf, getHostSignatureFromJSDoc: () => C0, getIdentifierAutoGenerate: () => getIdentifierAutoGenerate, getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference, getIdentifierTypeArguments: () => getIdentifierTypeArguments, getImmediatelyInvokedFunctionExpression: () => Qk, getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile, getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker, getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper, getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper, getIndentSize: () => Oo, getIndentString: () => j0, getInitializedVariables: () => NO, getInitializerOfBinaryExpression: () => X3, getInitializerOfBindingOrAssignmentElement: () => AE, getInterfaceBaseTypeNodes: () => g4, getInternalEmitFlags: () => zD, getInvokedExpression: () => iI, getIsolatedModules: () => zf, getJSDocAugmentsTag: () => ES, getJSDocClassTag: () => NA, getJSDocCommentRanges: () => I3, getJSDocCommentsAndTags: () => r4, getJSDocDeprecatedTag: () => jA, getJSDocDeprecatedTagNoCache: () => IS, getJSDocEnumTag: () => JA, getJSDocHost: () => s4, getJSDocImplementsTags: () => wS, getJSDocOverrideTagNoCache: () => kS, getJSDocParameterTags: () => of, getJSDocParameterTagsNoCache: () => bS, getJSDocPrivateTag: () => MA, getJSDocPrivateTagNoCache: () => AS, getJSDocProtectedTag: () => LA, getJSDocProtectedTagNoCache: () => PS, getJSDocPublicTag: () => OA, getJSDocPublicTagNoCache: () => CS, getJSDocReadonlyTag: () => RA, getJSDocReadonlyTagNoCache: () => DS, getJSDocReturnTag: () => NS, getJSDocReturnType: () => OS, getJSDocRoot: () => P0, getJSDocSatisfiesExpressionType: () => NL, getJSDocSatisfiesTag: () => wy, getJSDocTags: () => hl, getJSDocTagsNoCache: () => qA, getJSDocTemplateTag: () => BA, getJSDocThisTag: () => FA, getJSDocType: () => cf, getJSDocTypeAliasName: () => w2, getJSDocTypeAssertionType: () => Wj, getJSDocTypeParameterDeclarations: () => F4, getJSDocTypeParameterTags: () => SS, getJSDocTypeParameterTagsNoCache: () => xS, getJSDocTypeTag: () => _f2, getJSXImplicitImportBase: () => IM, getJSXRuntimeImport: () => NM, getJSXTransformEnabled: () => kM, getKeyForCompilerOptions: () => getKeyForCompilerOptions, getLanguageVariant: () => sv, getLastChild: () => mx, getLeadingCommentRanges: () => Ao, getLeadingCommentRangesOfNode: () => Ck, getLeftmostAccessExpression: () => rv, getLeftmostExpression: () => ZO, getLineAndCharacterOfPosition: () => Ls, getLineInfo: () => getLineInfo, getLineOfLocalPosition: () => FN, getLineOfLocalPositionFromLineMap: () => ds, getLineStartPositionForPosition: () => getLineStartPositionForPosition, getLineStarts: () => ss, getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => DO, getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => PO, getLinesBetweenPositions: () => I_, getLinesBetweenRangeEndAndRangeStart: () => wO, getLinesBetweenRangeEndPositions: () => CO, getLiteralText: () => WD, getLocalNameForExternalImport: () => Kj, getLocalSymbolForExportDefault: () => cO, getLocaleSpecificMessage: () => Y_, getLocaleTimeString: () => getLocaleTimeString, getMappedContextSpan: () => getMappedContextSpan, getMappedDocumentSpan: () => getMappedDocumentSpan, getMappedLocation: () => getMappedLocation, getMatchedFileSpec: () => getMatchedFileSpec, getMatchedIncludeSpec: () => getMatchedIncludeSpec, getMeaningFromDeclaration: () => getMeaningFromDeclaration, getMeaningFromLocation: () => getMeaningFromLocation, getMembersOfDeclaration: () => Ik, getModeForFileReference: () => getModeForFileReference, getModeForResolutionAtIndex: () => getModeForResolutionAtIndex, getModeForUsageLocation: () => getModeForUsageLocation, getModifiedTime: () => getModifiedTime, getModifiers: () => sf, getModuleInstanceState: () => getModuleInstanceState, getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt, getModuleSpecifierEndingPreference: () => VM, getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost, getNameForExportedSymbol: () => getNameForExportedSymbol, getNameFromIndexInfo: () => _k, getNameFromPropertyName: () => getNameFromPropertyName, getNameOfAccessExpression: () => KO, getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue, getNameOfDeclaration: () => ml, getNameOfExpando: () => xI, getNameOfJSDocTypedef: () => gS, getNameOrArgument: () => $3, getNameTable: () => uB, getNamesForExportedSymbol: () => getNamesForExportedSymbol, getNamespaceDeclarationNode: () => Q3, getNewLineCharacter: () => ox, getNewLineKind: () => getNewLineKind, getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost, getNewTargetContainer: () => Xk, getNextJSDocCommentLocation: () => a4, getNodeForGeneratedName: () => NJ, getNodeId: () => getNodeId, getNodeKind: () => getNodeKind, getNodeModifiers: () => getNodeModifiers, getNodeModulePathParts: () => wL, getNonAssignedNameOfDeclaration: () => Ey, getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment, getNonAugmentationDeclaration: () => E3, getNonDecoratorTokenPosOfNode: () => FD, getNormalizedAbsolutePath: () => as, getNormalizedAbsolutePathWithoutRoot: () => Q5, getNormalizedPathComponents: () => $p, getObjectFlags: () => Bf, getOperator: () => R0, getOperatorAssociativity: () => x4, getOperatorPrecedence: () => E4, getOptionFromName: () => getOptionFromName, getOptionsNameMap: () => getOptionsNameMap, getOrCreateEmitNode: () => getOrCreateEmitNode, getOrCreateExternalHelpersModuleNameIfNeeded: () => wE, getOrUpdate: () => la, getOriginalNode: () => ul, getOriginalNodeId: () => getOriginalNodeId, getOriginalSourceFile: () => gN, getOutputDeclarationFileName: () => getOutputDeclarationFileName, getOutputExtension: () => getOutputExtension, getOutputFileNames: () => getOutputFileNames, getOutputPathsFor: () => getOutputPathsFor, getOutputPathsForBundle: () => getOutputPathsForBundle, getOwnEmitOutputFilePath: () => NN, getOwnKeys: () => ho, getOwnValues: () => go, getPackageJsonInfo: () => getPackageJsonInfo, getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths, getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile, getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName, getPackageScopeForPath: () => getPackageScopeForPath, getParameterSymbolFromJSDoc: () => JI, getParameterTypeNode: () => CL, getParentNodeInSpan: () => getParentNodeInSpan, getParseTreeNode: () => fl, getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile, getPathComponents: () => qi, getPathComponentsRelativeTo: () => ly, getPathFromPathComponents: () => xo, getPathUpdater: () => getPathUpdater, getPathsBasePath: () => LN, getPatternFromSpec: () => BM, getPendingEmitKind: () => getPendingEmitKind, getPositionOfLineAndCharacter: () => lA, getPossibleGenericSignatures: () => getPossibleGenericSignatures, getPossibleOriginalInputExtensionForExtension: () => MN, getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo, getPreEmitDiagnostics: () => getPreEmitDiagnostics, getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition, getPrivateIdentifier: () => getPrivateIdentifier, getProperties: () => getProperties, getProperty: () => Qc, getPropertyArrayElementValue: () => qk, getPropertyAssignment: () => f0, getPropertyAssignmentAliasLikeExpression: () => ZI, getPropertyNameForPropertyNameNode: () => Df, getPropertyNameForUniqueESSymbol: () => _N, getPropertyNameOfBindingOrAssignmentElement: () => eJ, getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement, getPropertySymbolsFromContextualType: () => x7, getQuoteFromPreference: () => getQuoteFromPreference, getQuotePreference: () => getQuotePreference, getRangesWhere: () => Et, getRefactorContextSpan: () => getRefactorContextSpan, getReferencedFileLocation: () => getReferencedFileLocation, getRegexFromPattern: () => Vf, getRegularExpressionForWildcard: () => Wf, getRegularExpressionsForWildcards: () => pv, getRelativePathFromDirectory: () => JT, getRelativePathFromFile: () => iA, getRelativePathToDirectoryOrUrl: () => uy, getRenameLocation: () => getRenameLocation, getReplacementSpanForContextToken: () => getReplacementSpanForContextToken, getResolutionDiagnostic: () => getResolutionDiagnostic, getResolutionModeOverrideForClause: () => getResolutionModeOverrideForClause, getResolveJsonModule: () => Cx, getResolvePackageJsonExports: () => SM, getResolvePackageJsonImports: () => xM, getResolvedExternalModuleName: () => k4, getResolvedModule: () => hD, getResolvedTypeReferenceDirective: () => vD, getRestIndicatorOfBindingOrAssignmentElement: () => Zj, getRestParameterElementType: () => kk, getRightMostAssignedExpression: () => b0, getRootDeclaration: () => If, getRootLength: () => Bi, getScriptKind: () => getScriptKind, getScriptKindFromFileName: () => Ox, getScriptTargetFeatures: () => getScriptTargetFeatures, getSelectedEffectiveModifierFlags: () => G4, getSelectedSyntacticModifierFlags: () => $4, getSemanticClassifications: () => getSemanticClassifications, getSemanticJsxChildren: () => bN, getSetAccessorTypeAnnotationNode: () => BN, getSetAccessorValueParameter: () => z0, getSetExternalModuleIndicator: () => Ex, getShebang: () => GT, getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => w0, getSingleVariableOfVariableStatement: () => Al, getSnapshotText: () => getSnapshotText, getSnippetElement: () => getSnippetElement, getSourceFileOfModule: () => AD, getSourceFileOfNode: () => Si, getSourceFilePathInNewDir: () => M4, getSourceFilePathInNewDirWorker: () => U0, getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText, getSourceFilesToEmit: () => RN, getSourceMapRange: () => getSourceMapRange, getSourceMapper: () => getSourceMapper, getSourceTextOfNodeFromSourceFile: () => No, getSpanOfTokenAtPosition: () => n0, getSpellingSuggestion: () => Ep, getStartPositionOfLine: () => kD, getStartPositionOfRange: () => K_, getStartsOnNewLine: () => getStartsOnNewLine, getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock, getStrictOptionValue: () => lv, getStringComparer: () => rl, getSuperCallFromStatement: () => getSuperCallFromStatement, getSuperContainer: () => Yk, getSupportedCodeFixes: () => v7, getSupportedExtensions: () => Mx, getSupportedExtensionsWithJsonIfResolveJsonModule: () => Lx, getSwitchedType: () => getSwitchedType, getSymbolId: () => getSymbolId, getSymbolNameForPrivateIdentifier: () => cN, getSymbolTarget: () => getSymbolTarget, getSyntacticClassifications: () => getSyntacticClassifications, getSyntacticModifierFlags: () => X0, getSyntacticModifierFlagsNoCache: () => Y0, getSynthesizedDeepClone: () => getSynthesizedDeepClone, getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements, getSynthesizedDeepClones: () => getSynthesizedDeepClones, getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements, getSyntheticLeadingComments: () => getSyntheticLeadingComments, getSyntheticTrailingComments: () => getSyntheticTrailingComments, getTargetLabel: () => getTargetLabel, getTargetOfBindingOrAssignmentElement: () => Ko, getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState, getTextOfConstantValue: () => HD, getTextOfIdentifierOrLiteral: () => kf, getTextOfJSDocComment: () => zA, getTextOfNode: () => gf, getTextOfNodeFromSourceText: () => B_, getTextOfPropertyName: () => lk, getThisContainer: () => d0, getThisParameter: () => j4, getTokenAtPosition: () => getTokenAtPosition, getTokenPosOfNode: () => Io, getTokenSourceMapRange: () => getTokenSourceMapRange, getTouchingPropertyName: () => getTouchingPropertyName, getTouchingToken: () => getTouchingToken, getTrailingCommentRanges: () => HT, getTrailingSemicolonDeferringWriter: () => kN, getTransformFlagsSubtreeExclusions: () => w8, getTransformers: () => getTransformers, getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath, getTsConfigObjectLiteralExpression: () => M3, getTsConfigPropArray: () => L3, getTsConfigPropArrayElementValue: () => Uk, getTypeAnnotationNode: () => UN, getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList, getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport, getTypeNode: () => getTypeNode, getTypeNodeIfAccessible: () => getTypeNodeIfAccessible, getTypeParameterFromJsDoc: () => BI, getTypeParameterOwner: () => AA, getTypesPackageName: () => getTypesPackageName, getUILocale: () => M1, getUniqueName: () => getUniqueName, getUniqueSymbolId: () => getUniqueSymbolId, getUseDefineForClassFields: () => CM, getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage, getWatchFactory: () => getWatchFactory, group: () => el, groupBy: () => x_, guessIndentation: () => rD, handleNoEmitOptions: () => handleNoEmitOptions, hasAbstractModifier: () => W4, hasAccessorModifier: () => H4, hasAmbientModifier: () => V4, hasChangesInResolutions: () => wD, hasChildOfKind: () => hasChildOfKind, hasContextSensitiveParameters: () => vL, hasDecorators: () => Il, hasDocComment: () => hasDocComment, hasDynamicName: () => v4, hasEffectiveModifier: () => H0, hasEffectiveModifiers: () => XN, hasEffectiveReadonlyModifier: () => $0, hasExtension: () => OT, hasIndexSignature: () => hasIndexSignature, hasInitializer: () => l3, hasInvalidEscape: () => w4, hasJSDocNodes: () => ya, hasJSDocParameterTags: () => IA, hasJSFileExtension: () => dv, hasJsonModuleEmitEnabled: () => hM, hasOnlyExpressionInitializer: () => eD, hasOverrideModifier: () => QN, hasPossibleExternalModuleReference: () => sk, hasProperty: () => Jr, hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName, hasQuestionToken: () => OI, hasRecordedExternalHelpers: () => Gj, hasRestParameter: () => nD, hasScopeMarker: () => kP, hasStaticModifier: () => Lf, hasSyntacticModifier: () => rn, hasSyntacticModifiers: () => YN, hasTSFileExtension: () => mv, hasTabstop: () => Qx, hasTrailingDirectorySeparator: () => Hp, hasType: () => ZP, hasTypeArguments: () => qI, hasZeroOrOneAsteriskCharacter: () => OM, helperString: () => helperString, hostGetCanonicalFileName: () => D4, hostUsesCaseSensitiveFileNames: () => J0, idText: () => qr, identifierIsThisKeyword: () => J4, identifierToKeywordKind: () => dS, identity: () => rr, identitySourceMapConsumer: () => identitySourceMapConsumer, ignoreSourceNewlines: () => ignoreSourceNewlines, ignoredPaths: () => ignoredPaths, importDefaultHelper: () => importDefaultHelper, importFromModuleSpecifier: () => II, importNameElisionDisabled: () => gM, importStarHelper: () => importStarHelper, indexOfAnyCharCode: () => Je, indexOfNode: () => UD, indicesOf: () => Wr, inferredTypesContainingFile: () => inferredTypesContainingFile, insertImports: () => insertImports, insertLeadingStatement: () => Mj, insertSorted: () => Qn, insertStatementAfterCustomPrologue: () => RD, insertStatementAfterStandardPrologue: () => LD, insertStatementsAfterCustomPrologue: () => MD, insertStatementsAfterStandardPrologue: () => OD, intersperse: () => Ie, introducesArgumentsExoticObject: () => Lk, inverseJsxOptionMap: () => inverseJsxOptionMap, isAbstractConstructorSymbol: () => zO, isAbstractModifier: () => uR, isAccessExpression: () => Lo, isAccessibilityModifier: () => isAccessibilityModifier, isAccessor: () => pf, isAccessorModifier: () => fR, isAliasSymbolDeclaration: () => QI, isAliasableExpression: () => k0, isAmbientModule: () => yf, isAmbientPropertyDeclaration: () => rk, isAnonymousFunctionDefinition: () => H_, isAnyDirectorySeparator: () => ay, isAnyImportOrBareOrAccessedRequire: () => ik, isAnyImportOrReExport: () => bf, isAnyImportSyntax: () => Qy, isAnySupportedFileExtension: () => ZM, isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey, isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess, isArray: () => ir, isArrayBindingElement: () => gP, isArrayBindingOrAssignmentElement: () => ZS, isArrayBindingOrAssignmentPattern: () => QS, isArrayBindingPattern: () => yR, isArrayLiteralExpression: () => Yl, isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern, isArrayTypeNode: () => F8, isArrowFunction: () => sd, isAsExpression: () => CR, isAssertClause: () => $R, isAssertEntry: () => KR, isAssertionExpression: () => PP, isAssertionKey: () => oP, isAssertsKeyword: () => _R, isAssignmentDeclaration: () => v0, isAssignmentExpression: () => ms, isAssignmentOperator: () => G_, isAssignmentPattern: () => KS, isAssignmentTarget: () => UI, isAsteriskToken: () => nR, isAsyncFunction: () => oN, isAsyncModifier: () => Ul, isAutoAccessorPropertyDeclaration: () => $S, isAwaitExpression: () => SR, isAwaitKeyword: () => cR, isBigIntLiteral: () => Uv, isBinaryExpression: () => ur, isBinaryOperatorToken: () => AJ, isBindableObjectDefinePropertyCall: () => S0, isBindableStaticAccessExpression: () => W_, isBindableStaticElementAccessExpression: () => x0, isBindableStaticNameExpression: () => V_, isBindingElement: () => Xl, isBindingElementOfBareOrAccessedRequire: () => mI, isBindingName: () => uP, isBindingOrAssignmentElement: () => yP, isBindingOrAssignmentPattern: () => vP, isBindingPattern: () => df, isBlock: () => Ql, isBlockOrCatchScoped: () => $D, isBlockScope: () => w3, isBlockScopedContainerTopLevel: () => ZD, isBooleanLiteral: () => pP, isBreakOrContinueStatement: () => YA, isBreakStatement: () => JR, isBuildInfoFile: () => isBuildInfoFile, isBuilderProgram: () => isBuilderProgram2, isBundle: () => cj, isBundleFileTextLike: () => XO, isCallChain: () => Cy, isCallExpression: () => sc, isCallExpressionTarget: () => isCallExpressionTarget, isCallLikeExpression: () => SP, isCallOrNewExpression: () => xP, isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget, isCallSignatureDeclaration: () => Vv, isCallToHelper: () => isCallToHelper, isCaseBlock: () => VR, isCaseClause: () => sj, isCaseKeyword: () => dR, isCaseOrDefaultClause: () => QP, isCatchClause: () => oj, isCatchClauseVariableDeclaration: () => Gx, isCatchClauseVariableDeclarationOrBindingElement: () => T3, isCheckJsEnabledForFile: () => eL, isChildOfNodeWithKind: () => Ak, isCircularBuildOrder: () => isCircularBuildOrder, isClassDeclaration: () => _c, isClassElement: () => Js, isClassExpression: () => _d, isClassLike: () => bi, isClassMemberModifier: () => VS, isClassOrTypeElement: () => mP, isClassStaticBlockDeclaration: () => Hl, isCollapsedRange: () => vO, isColonToken: () => iR, isCommaExpression: () => gd, isCommaListExpression: () => oc, isCommaSequence: () => zj, isCommaToken: () => I8, isComment: () => isComment, isCommonJsExportPropertyAssignment: () => p0, isCommonJsExportedExpression: () => Ok, isCompoundAssignment: () => isCompoundAssignment, isComputedNonLiteralName: () => ck, isComputedPropertyName: () => Ws, isConciseBody: () => MP, isConditionalExpression: () => xR, isConditionalTypeNode: () => V8, isConstTypeReference: () => jS, isConstructSignatureDeclaration: () => R8, isConstructorDeclaration: () => nc, isConstructorTypeNode: () => Gv, isContextualKeyword: () => N0, isContinueStatement: () => jR, isCustomPrologue: () => Tf, isDebuggerStatement: () => WR, isDeclaration: () => ko, isDeclarationBindingElement: () => Fy, isDeclarationFileName: () => QE, isDeclarationName: () => c4, isDeclarationNameOfEnumOrNamespace: () => IO, isDeclarationReadonly: () => Sk, isDeclarationStatement: () => VP, isDeclarationWithTypeParameterChildren: () => C3, isDeclarationWithTypeParameters: () => nk, isDecorator: () => zl, isDecoratorTarget: () => isDecoratorTarget, isDefaultClause: () => oE, isDefaultImport: () => Z3, isDefaultModifier: () => oR, isDefaultedExpandoInitializer: () => SI, isDeleteExpression: () => bR, isDeleteTarget: () => $I, isDeprecatedDeclaration: () => isDeprecatedDeclaration, isDestructuringAssignment: () => nO, isDiagnosticWithLocation: () => isDiagnosticWithLocation, isDiskPathRoot: () => H5, isDoStatement: () => OR, isDotDotDotToken: () => rR, isDottedName: () => ev, isDynamicName: () => M0, isESSymbolIdentifier: () => pN, isEffectiveExternalModule: () => Yy, isEffectiveModuleDeclaration: () => S3, isEffectiveStrictModeSourceFile: () => tk, isElementAccessChain: () => RS, isElementAccessExpression: () => gs, isEmittedFileOfProgram: () => isEmittedFileOfProgram, isEmptyArrayLiteral: () => _O, isEmptyBindingElement: () => pS, isEmptyBindingPattern: () => uS, isEmptyObjectLiteral: () => oO, isEmptyStatement: () => IR, isEmptyStringLiteral: () => j3, isEndOfDeclarationMarker: () => ej, isEntityName: () => lP, isEntityNameExpression: () => Bs, isEnumConst: () => Tk, isEnumDeclaration: () => i2, isEnumMember: () => cE, isEqualityOperatorKind: () => isEqualityOperatorKind, isEqualsGreaterThanToken: () => sR, isExclamationToken: () => rd, isExcludedFile: () => isExcludedFile, isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport, isExportAssignment: () => Vo, isExportDeclaration: () => cc, isExportModifier: () => N8, isExportName: () => Uj, isExportNamespaceAsDefaultDeclaration: () => b3, isExportOrDefaultModifier: () => DJ, isExportSpecifier: () => aE, isExportsIdentifier: () => H3, isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias, isExpression: () => mf, isExpressionNode: () => g0, isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration, isExpressionOfOptionalChainRoot: () => $A, isExpressionStatement: () => Zl, isExpressionWithTypeArguments: () => e2, isExpressionWithTypeArgumentsInClassExtendsClause: () => Z0, isExternalModule: () => Qo, isExternalModuleAugmentation: () => Xy, isExternalModuleImportEqualsDeclaration: () => B3, isExternalModuleIndicator: () => NP, isExternalModuleNameRelative: () => gA, isExternalModuleReference: () => ud, isExternalModuleSymbol: () => isExternalModuleSymbol, isExternalOrCommonJsModule: () => bk, isFileLevelUniqueName: () => m3, isFileProbablyExternalModule: () => ou, isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter, isFixablePromiseHandler: () => isFixablePromiseHandler, isForInOrOfStatement: () => OP, isForInStatement: () => LR, isForInitializer: () => RP, isForOfStatement: () => RR, isForStatement: () => eE, isFunctionBlock: () => O3, isFunctionBody: () => LP, isFunctionDeclaration: () => Wo, isFunctionExpression: () => ad, isFunctionExpressionOrArrowFunction: () => SL, isFunctionLike: () => ga, isFunctionLikeDeclaration: () => HS, isFunctionLikeKind: () => My, isFunctionLikeOrClassStaticBlockDeclaration: () => uf, isFunctionOrConstructorTypeNode: () => hP, isFunctionOrModuleBlock: () => fP, isFunctionSymbol: () => DI, isFunctionTypeNode: () => $l, isFutureReservedKeyword: () => tN, isGeneratedIdentifier: () => cs, isGeneratedPrivateIdentifier: () => Ny, isGetAccessor: () => Tl, isGetAccessorDeclaration: () => Gl, isGetOrSetAccessorDeclaration: () => GA, isGlobalDeclaration: () => isGlobalDeclaration, isGlobalScopeAugmentation: () => vf, isGrammarError: () => ND, isHeritageClause: () => ru, isHoistedFunction: () => _04, isHoistedVariableStatement: () => c0, isIdentifier: () => yt, isIdentifierANonContextualKeyword: () => iN, isIdentifierName: () => YI, isIdentifierOrThisTypeNode: () => aJ, isIdentifierPart: () => Rs, isIdentifierStart: () => Wn, isIdentifierText: () => vy, isIdentifierTypePredicate: () => Fk, isIdentifierTypeReference: () => pL, isIfStatement: () => NR, isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching, isImplicitGlob: () => Dx, isImportCall: () => s0, isImportClause: () => HR, isImportDeclaration: () => o2, isImportEqualsDeclaration: () => s2, isImportKeyword: () => M8, isImportMeta: () => o0, isImportOrExportSpecifier: () => aP, isImportOrExportSpecifierName: () => isImportOrExportSpecifierName, isImportSpecifier: () => nE, isImportTypeAssertionContainer: () => GR, isImportTypeNode: () => Kl, isImportableFile: () => isImportableFile, isInComment: () => isInComment, isInExpressionContext: () => J3, isInJSDoc: () => q3, isInJSFile: () => Pr, isInJSXText: () => isInJSXText, isInJsonFile: () => pI, isInNonReferenceComment: () => isInNonReferenceComment, isInReferenceComment: () => isInReferenceComment, isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration, isInString: () => isInString, isInTemplateString: () => isInTemplateString, isInTopLevelContext: () => Kk, isIncrementalCompilation: () => wM, isIndexSignatureDeclaration: () => Hv, isIndexedAccessTypeNode: () => $8, isInferTypeNode: () => H8, isInfinityOrNaNString: () => bL, isInitializedProperty: () => isInitializedProperty, isInitializedVariable: () => lx, isInsideJsxElement: () => isInsideJsxElement, isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute, isInsideNodeModules: () => isInsideNodeModules, isInsideTemplateLiteral: () => isInsideTemplateLiteral, isInstantiatedModule: () => isInstantiatedModule, isInterfaceDeclaration: () => eu, isInternalDeclaration: () => isInternalDeclaration, isInternalModuleImportEqualsDeclaration: () => lI, isInternalName: () => qj, isIntersectionTypeNode: () => W8, isIntrinsicJsxName: () => P4, isIterationStatement: () => n3, isJSDoc: () => Ho, isJSDocAllType: () => dj, isJSDocAugmentsTag: () => md, isJSDocAuthorTag: () => bj, isJSDocCallbackTag: () => Tj, isJSDocClassTag: () => pE, isJSDocCommentContainingNode: () => c3, isJSDocConstructSignature: () => MI, isJSDocDeprecatedTag: () => v2, isJSDocEnumTag: () => dE, isJSDocFunctionType: () => dd, isJSDocImplementsTag: () => hE, isJSDocIndexSignature: () => dI, isJSDocLikeText: () => LE, isJSDocLink: () => uj, isJSDocLinkCode: () => pj, isJSDocLinkLike: () => Sl, isJSDocLinkPlain: () => fj, isJSDocMemberName: () => uc, isJSDocNameReference: () => fd, isJSDocNamepathType: () => vj, isJSDocNamespaceBody: () => FP, isJSDocNode: () => Uy, isJSDocNonNullableType: () => hj, isJSDocNullableType: () => uE, isJSDocOptionalParameter: () => Zx, isJSDocOptionalType: () => gj, isJSDocOverloadTag: () => y2, isJSDocOverrideTag: () => fE, isJSDocParameterTag: () => pc, isJSDocPrivateTag: () => m2, isJSDocPropertyLikeTag: () => Dy, isJSDocPropertyTag: () => wj, isJSDocProtectedTag: () => h2, isJSDocPublicTag: () => d2, isJSDocReadonlyTag: () => g2, isJSDocReturnTag: () => b2, isJSDocSatisfiesExpression: () => IL, isJSDocSatisfiesTag: () => T2, isJSDocSeeTag: () => Sj, isJSDocSignature: () => iu, isJSDocTag: () => zy, isJSDocTemplateTag: () => Go, isJSDocThisTag: () => mE, isJSDocThrowsTag: () => Cj, isJSDocTypeAlias: () => Cl, isJSDocTypeAssertion: () => xE, isJSDocTypeExpression: () => lE, isJSDocTypeLiteral: () => f2, isJSDocTypeTag: () => au, isJSDocTypedefTag: () => xj, isJSDocUnknownTag: () => Ej, isJSDocUnknownType: () => mj, isJSDocVariadicType: () => yj, isJSXTagName: () => xf, isJsonEqual: () => gv, isJsonSourceFile: () => a0, isJsxAttribute: () => nj, isJsxAttributeLike: () => XP, isJsxAttributes: () => p2, isJsxChild: () => o3, isJsxClosingElement: () => sE, isJsxClosingFragment: () => rj, isJsxElement: () => l2, isJsxExpression: () => aj, isJsxFragment: () => pd, isJsxOpeningElement: () => tu, isJsxOpeningFragment: () => u2, isJsxOpeningLikeElement: () => _3, isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName, isJsxSelfClosingElement: () => tj, isJsxSpreadAttribute: () => ij, isJsxTagNameExpression: () => KP, isJsxText: () => td, isJumpStatementTarget: () => isJumpStatementTarget, isKeyword: () => ba, isKnownSymbol: () => lN, isLabelName: () => isLabelName, isLabelOfLabeledStatement: () => isLabelOfLabeledStatement, isLabeledStatement: () => tE, isLateVisibilityPaintedStatement: () => ak, isLeftHandSideExpression: () => Do, isLeftHandSideOfAssignment: () => rO, isLet: () => xk, isLineBreak: () => un, isLiteralComputedPropertyDeclarationName: () => l4, isLiteralExpression: () => Iy, isLiteralExpressionOfObject: () => rP, isLiteralImportTypeNode: () => k3, isLiteralKind: () => ky, isLiteralLikeAccess: () => wf, isLiteralLikeElementAccess: () => wl, isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess, isLiteralTypeLikeExpression: () => cJ, isLiteralTypeLiteral: () => CP, isLiteralTypeNode: () => Yv, isLocalName: () => E2, isLogicalOperator: () => ZN, isLogicalOrCoalescingAssignmentExpression: () => eO, isLogicalOrCoalescingAssignmentOperator: () => jf, isLogicalOrCoalescingBinaryExpression: () => tO, isLogicalOrCoalescingBinaryOperator: () => Z4, isMappedTypeNode: () => K8, isMemberName: () => js, isMergeDeclarationMarker: () => ZR, isMetaProperty: () => t22, isMethodDeclaration: () => Vl, isMethodOrAccessor: () => Ly, isMethodSignature: () => L8, isMinusToken: () => Wv, isMissingDeclaration: () => YR, isModifier: () => Oy, isModifierKind: () => Wi, isModifierLike: () => ff, isModuleAugmentationExternal: () => x3, isModuleBlock: () => rE, isModuleBody: () => jP, isModuleDeclaration: () => Ea, isModuleExportsAccessExpression: () => T0, isModuleIdentifier: () => G3, isModuleName: () => _J, isModuleOrEnumDeclaration: () => qP, isModuleReference: () => $P, isModuleSpecifierLike: () => isModuleSpecifierLike, isModuleWithStringLiteralName: () => KD, isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration, isNameOfModuleDeclaration: () => isNameOfModuleDeclaration, isNamedClassElement: () => dP, isNamedDeclaration: () => af, isNamedEvaluation: () => fN, isNamedEvaluationSource: () => S4, isNamedExportBindings: () => QA, isNamedExports: () => iE, isNamedImportBindings: () => BP, isNamedImports: () => XR, isNamedImportsOrExports: () => YO, isNamedTupleMember: () => $v, isNamespaceBody: () => JP, isNamespaceExport: () => ld, isNamespaceExportDeclaration: () => a22, isNamespaceImport: () => _2, isNamespaceReexportDeclaration: () => oI, isNewExpression: () => X8, isNewExpressionTarget: () => isNewExpressionTarget, isNightly: () => PN, isNoSubstitutionTemplateLiteral: () => k8, isNode: () => eP, isNodeArray: () => _s, isNodeArrayMultiLine: () => AO, isNodeDescendantOf: () => KI, isNodeKind: () => gl, isNodeLikeSystem: () => M5, isNodeModulesDirectory: () => aA, isNodeWithPossibleHoistedDeclaration: () => zI, isNonContextualKeyword: () => y4, isNonExportDefaultModifier: () => kJ, isNonGlobalAmbientModule: () => XD, isNonGlobalDeclaration: () => isNonGlobalDeclaration, isNonNullAccess: () => kL, isNonNullChain: () => JS, isNonNullExpression: () => Uo, isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName, isNotEmittedOrPartiallyEmittedNode: () => DP, isNotEmittedStatement: () => c2, isNullishCoalesce: () => XA, isNumber: () => gi, isNumericLiteral: () => zs, isNumericLiteralName: () => $x, isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName, isObjectBindingOrAssignmentElement: () => YS, isObjectBindingOrAssignmentPattern: () => XS, isObjectBindingPattern: () => gR, isObjectLiteralElement: () => Wy, isObjectLiteralElementLike: () => jy, isObjectLiteralExpression: () => Hs, isObjectLiteralMethod: () => jk, isObjectLiteralOrClassExpressionMethodOrAccessor: () => Jk, isObjectTypeDeclaration: () => $O, isOctalDigit: () => hy, isOmittedExpression: () => cd, isOptionalChain: () => Ay, isOptionalChainRoot: () => Py, isOptionalDeclaration: () => DL, isOptionalJSDocPropertyLikeTag: () => Yx, isOptionalTypeNode: () => q8, isOuterExpression: () => yd, isOutermostOptionalChain: () => KA, isOverrideModifier: () => pR, isPackedArrayLiteral: () => hL, isParameter: () => Vs, isParameterDeclaration: () => mN, isParameterOrCatchClauseVariable: () => TL, isParameterPropertyDeclaration: () => lS, isParameterPropertyModifier: () => WS, isParenthesizedExpression: () => qo, isParenthesizedTypeNode: () => Kv, isParseTreeNode: () => pl, isPartOfTypeNode: () => l0, isPartOfTypeQuery: () => F3, isPartiallyEmittedExpression: () => Z8, isPatternMatch: () => z1, isPinnedComment: () => v3, isPlainJsFile: () => PD, isPlusToken: () => zv, isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition, isPostfixUnaryExpression: () => Q8, isPrefixUnaryExpression: () => od, isPrivateIdentifier: () => vn, isPrivateIdentifierClassElementDeclaration: () => zS, isPrivateIdentifierPropertyAccessExpression: () => cP, isPrivateIdentifierSymbol: () => uN, isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo, isProgramUptoDate: () => isProgramUptoDate, isPrologueDirective: () => us, isPropertyAccessChain: () => LS, isPropertyAccessEntityNameExpression: () => rx, isPropertyAccessExpression: () => bn, isPropertyAccessOrQualifiedName: () => TP, isPropertyAccessOrQualifiedNameOrImportTypeNode: () => bP, isPropertyAssignment: () => lc, isPropertyDeclaration: () => Bo, isPropertyName: () => vl, isPropertyNameLiteral: () => L0, isPropertySignature: () => Wl, isProtoSetter: () => T4, isPrototypeAccess: () => Nl, isPrototypePropertyAssignment: () => CI, isPunctuation: () => isPunctuation, isPushOrUnshiftIdentifier: () => dN, isQualifiedName: () => rc, isQuestionDotToken: () => aR, isQuestionOrExclamationToken: () => iJ, isQuestionOrPlusOrMinusToken: () => oJ, isQuestionToken: () => ql, isRawSourceMap: () => isRawSourceMap, isReadonlyKeyword: () => O8, isReadonlyKeywordOrPlusOrMinusToken: () => sJ, isRecognizedTripleSlashComment: () => jD, isReferenceFileLocation: () => isReferenceFileLocation, isReferencedFile: () => isReferencedFile, isRegularExpressionLiteral: () => QL, isRequireCall: () => El, isRequireVariableStatement: () => W3, isRestParameter: () => u3, isRestTypeNode: () => U8, isReturnStatement: () => FR, isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler, isRightSideOfAccessExpression: () => nx, isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess, isRightSideOfQualifiedName: () => isRightSideOfQualifiedName, isRightSideOfQualifiedNameOrPropertyAccess: () => aO, isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => sO, isRootedDiskPath: () => A_, isSameEntityName: () => z_, isSatisfiesExpression: () => AR, isScopeMarker: () => i3, isSemicolonClassElement: () => kR, isSetAccessor: () => bl, isSetAccessorDeclaration: () => ic, isShebangTrivia: () => gy, isShorthandAmbientModuleSymbol: () => YD, isShorthandPropertyAssignment: () => nu, isSignedNumericLiteral: () => O0, isSimpleCopiableExpression: () => isSimpleCopiableExpression, isSimpleInlineableExpression: () => isSimpleInlineableExpression, isSingleOrDoubleQuote: () => hI, isSourceFile: () => wi, isSourceFileFromLibrary: () => isSourceFileFromLibrary, isSourceFileJS: () => y0, isSourceFileNotJS: () => uI, isSourceFileNotJson: () => fI, isSourceMapping: () => isSourceMapping, isSpecialPropertyDeclaration: () => AI, isSpreadAssignment: () => _E, isSpreadElement: () => Zv, isStatement: () => a3, isStatementButNotDeclaration: () => HP, isStatementOrBlock: () => s3, isStatementWithLocals: () => DD, isStatic: () => G0, isStaticModifier: () => lR, isString: () => Ji, isStringAKeyword: () => nN, isStringANonContextualKeyword: () => rN, isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection, isStringDoubleQuoted: () => gI, isStringLiteral: () => Gn, isStringLiteralLike: () => Ti, isStringLiteralOrJsxExpression: () => YP, isStringLiteralOrTemplate: () => isStringLiteralOrTemplate, isStringOrNumericLiteralLike: () => Ta, isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral, isStringTextContainingNode: () => _P, isSuperCall: () => Ek, isSuperKeyword: () => nd, isSuperOrSuperProperty: () => Zk, isSuperProperty: () => Sf, isSupportedSourceFileName: () => GM, isSwitchStatement: () => qR, isSyntaxList: () => Aj, isSyntheticExpression: () => PR, isSyntheticReference: () => QR, isTagName: () => isTagName, isTaggedTemplateExpression: () => Y8, isTaggedTemplateTag: () => isTaggedTemplateTag, isTemplateExpression: () => ER, isTemplateHead: () => ZL, isTemplateLiteral: () => EP, isTemplateLiteralKind: () => yl, isTemplateLiteralToken: () => nP, isTemplateLiteralTypeNode: () => hR, isTemplateLiteralTypeSpan: () => mR, isTemplateMiddle: () => eR, isTemplateMiddleOrTemplateTail: () => iP, isTemplateSpan: () => DR, isTemplateTail: () => tR, isTextWhiteSpaceLike: () => isTextWhiteSpaceLike, isThis: () => isThis, isThisContainerOrFunctionBlock: () => $k, isThisIdentifier: () => Mf, isThisInTypeQuery: () => qN, isThisInitializedDeclaration: () => tI, isThisInitializedObjectBindingExpression: () => rI, isThisProperty: () => eI, isThisTypeNode: () => Xv, isThisTypeParameter: () => Kx, isThisTypePredicate: () => Bk, isThrowStatement: () => UR, isToken: () => tP, isTokenKind: () => BS, isTraceEnabled: () => isTraceEnabled, isTransientSymbol: () => $y, isTrivia: () => aN, isTryStatement: () => zR, isTupleTypeNode: () => B8, isTypeAlias: () => LI, isTypeAliasDeclaration: () => n2, isTypeAssertionExpression: () => vR, isTypeDeclaration: () => Xx, isTypeElement: () => Ry, isTypeKeyword: () => isTypeKeyword, isTypeKeywordToken: () => isTypeKeywordToken, isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier, isTypeLiteralNode: () => id, isTypeNode: () => Jy, isTypeNodeKind: () => hx, isTypeOfExpression: () => TR, isTypeOnlyExportDeclaration: () => US, isTypeOnlyImportDeclaration: () => qS, isTypeOnlyImportOrExportDeclaration: () => sP, isTypeOperatorNode: () => G8, isTypeParameterDeclaration: () => Fo, isTypePredicateNode: () => j8, isTypeQueryNode: () => J8, isTypeReferenceNode: () => ac, isTypeReferenceType: () => tD, isUMDExportSymbol: () => VO, isUnaryExpression: () => t32, isUnaryExpressionWithWrite: () => wP, isUnicodeIdentifierStart: () => UT, isUnionTypeNode: () => z8, isUnparsedNode: () => ZA, isUnparsedPrepend: () => _j, isUnparsedSource: () => lj, isUnparsedTextLike: () => FS, isUrl: () => V5, isValidBigIntString: () => zx, isValidESSymbolDeclaration: () => Mk, isValidTypeOnlyAliasUseSite: () => _L, isValueSignatureDeclaration: () => WI, isVarConst: () => D3, isVariableDeclaration: () => Vi, isVariableDeclarationInVariableStatement: () => N3, isVariableDeclarationInitializedToBareOrAccessedRequire: () => Ef, isVariableDeclarationInitializedToRequire: () => U3, isVariableDeclarationList: () => r2, isVariableLike: () => u0, isVariableLikeOrAccessor: () => Nk, isVariableStatement: () => zo, isVoidExpression: () => Qv, isWatchSet: () => OO, isWhileStatement: () => MR, isWhiteSpaceLike: () => os, isWhiteSpaceSingleLine: () => N_, isWithStatement: () => BR, isWriteAccess: () => FO, isWriteOnlyAccess: () => JO, isYieldExpression: () => wR, jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport, keywordPart: () => keywordPart, last: () => Zn, lastOrUndefined: () => Cn, length: () => I, libMap: () => libMap, libs: () => libs, lineBreakPart: () => lineBreakPart, linkNamePart: () => linkNamePart, linkPart: () => linkPart, linkTextPart: () => linkTextPart, listFiles: () => listFiles, loadModuleFromGlobalCache: () => loadModuleFromGlobalCache, loadWithModeAwareCache: () => loadWithModeAwareCache, makeIdentifierFromModuleName: () => GD, makeImport: () => makeImport, makeImportIfNecessary: () => makeImportIfNecessary, makeStringLiteral: () => makeStringLiteral, mangleScopedPackageName: () => mangleScopedPackageName, map: () => Ze, mapAllOrFail: () => Pt, mapDefined: () => qt, mapDefinedEntries: () => Ri, mapDefinedIterator: () => Zr, mapEntries: () => be, mapIterator: () => st, mapOneOrMany: () => mapOneOrMany, mapToDisplayParts: () => mapToDisplayParts, matchFiles: () => qM, matchPatternOrExact: () => tL, matchedText: () => S5, matchesExclude: () => matchesExclude, maybeBind: () => le, maybeSetLocalizedDiagnosticMessages: () => vx, memoize: () => tl, memoizeCached: () => D1, memoizeOne: () => An, memoizeWeak: () => P1, metadataHelper: () => metadataHelper, min: () => N1, minAndMax: () => nL, missingFileModifiedTime: () => missingFileModifiedTime, modifierToFlag: () => Q0, modifiersToFlags: () => Vn, moduleOptionDeclaration: () => moduleOptionDeclaration, moduleResolutionIsEqualTo: () => TD, moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter, moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations, moduleResolutionSupportsPackageJsonExportsAndImports: () => _v, moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules, moduleSpecifiers: () => ts_moduleSpecifiers_exports, moveEmitHelpers: () => moveEmitHelpers, moveRangeEnd: () => gO, moveRangePastDecorators: () => _x, moveRangePastModifiers: () => yO, moveRangePos: () => Ff, moveSyntheticComments: () => moveSyntheticComments, mutateMap: () => UO, mutateMapSkippingNewValues: () => fx, needsParentheses: () => needsParentheses, needsScopeMarker: () => IP, newCaseClauseTracker: () => newCaseClauseTracker, newPrivateEnvironment: () => newPrivateEnvironment, noEmitNotification: () => noEmitNotification, noEmitSubstitution: () => noEmitSubstitution, noTransformers: () => noTransformers, noTruncationMaximumTruncationLength: () => n8, nodeCanBeDecorated: () => R3, nodeHasName: () => hS, nodeIsDecorated: () => q_, nodeIsMissing: () => va, nodeIsPresent: () => xl, nodeIsSynthesized: () => fs, nodeModuleNameResolver: () => nodeModuleNameResolver, nodeModulesPathPart: () => nodeModulesPathPart, nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver, nodeOrChildIsDecorated: () => m0, nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd, nodePosToString: () => ID, nodeSeenTracker: () => nodeSeenTracker, nodeStartsNewLexicalEnvironment: () => hN, nodeToDisplayParts: () => nodeToDisplayParts, noop: () => yn, noopFileWatcher: () => noopFileWatcher, noopPush: () => CT, normalizePath: () => Un, normalizeSlashes: () => Eo, not: () => w5, notImplemented: () => A1, notImplementedResolver: () => notImplementedResolver, nullNodeConverters: () => nullNodeConverters, nullParenthesizerRules: () => Jv, nullTransformationContext: () => nullTransformationContext, objectAllocator: () => lr, operatorPart: () => operatorPart, optionDeclarations: () => optionDeclarations, optionMapToObject: () => optionMapToObject, optionsAffectingProgramStructure: () => optionsAffectingProgramStructure, optionsForBuild: () => optionsForBuild, optionsForWatch: () => optionsForWatch, optionsHaveChanges: () => J_, optionsHaveModuleResolutionChanges: () => p3, or: () => W1, orderedRemoveItem: () => J, orderedRemoveItemAt: () => vT, outFile: () => B0, packageIdToPackageName: () => f3, packageIdToString: () => xD, padLeft: () => D5, padRight: () => k5, paramHelper: () => paramHelper, parameterIsThisKeyword: () => kl, parameterNamePart: () => parameterNamePart, parseBaseNodeFactory: () => I2, parseBigInt: () => oL, parseBuildCommand: () => parseBuildCommand, parseCommandLine: () => parseCommandLine, parseCommandLineWorker: () => parseCommandLineWorker, parseConfigFileTextToJson: () => parseConfigFileTextToJson, parseConfigFileWithSystem: () => parseConfigFileWithSystem, parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike, parseCustomTypeOption: () => parseCustomTypeOption, parseIsolatedEntityName: () => $J, parseIsolatedJSDocComment: () => XJ, parseJSDocTypeExpressionForTests: () => YJ, parseJsonConfigFileContent: () => parseJsonConfigFileContent, parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent, parseJsonText: () => KJ, parseListTypeOption: () => parseListTypeOption, parseNodeFactory: () => dc, parseNodeModuleFromPath: () => parseNodeModuleFromPath, parsePackageName: () => parsePackageName, parsePseudoBigInt: () => Hf, parseValidBigInt: () => Ux, patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory, pathContainsNodeModules: () => pathContainsNodeModules, pathIsAbsolute: () => sy, pathIsBareSpecifier: () => G5, pathIsRelative: () => So, patternText: () => T5, perfLogger: () => Dp, performIncrementalCompilation: () => performIncrementalCompilation, performance: () => ts_performance_exports, plainJSErrors: () => plainJSErrors, positionBelongsToNode: () => positionBelongsToNode, positionIsASICandidate: () => positionIsASICandidate, positionIsSynthesized: () => hs, positionsAreOnSameLine: () => $_, preProcessFile: () => preProcessFile, probablyUsesSemicolons: () => probablyUsesSemicolons, processCommentPragmas: () => ZE, processPragmasIntoFields: () => e7, processTaggedTemplateExpression: () => processTaggedTemplateExpression, programContainsEsModules: () => programContainsEsModules, programContainsModules: () => programContainsModules, projectReferenceIsEqualTo: () => bD, propKeyHelper: () => propKeyHelper, propertyNamePart: () => propertyNamePart, pseudoBigIntToString: () => yv, punctuationPart: () => punctuationPart, pushIfUnique: () => qn, quote: () => quote, quotePreferenceFromString: () => quotePreferenceFromString, rangeContainsPosition: () => rangeContainsPosition, rangeContainsPositionExclusive: () => rangeContainsPositionExclusive, rangeContainsRange: () => rangeContainsRange, rangeContainsRangeExclusive: () => rangeContainsRangeExclusive, rangeContainsStartEnd: () => rangeContainsStartEnd, rangeEndIsOnSameLineAsRangeStart: () => EO, rangeEndPositionsAreOnSameLine: () => xO, rangeEquals: () => Kc, rangeIsOnSingleLine: () => TO, rangeOfNode: () => iL, rangeOfTypeParameters: () => aL, rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd, rangeStartIsOnSameLineAsRangeEnd: () => cx, rangeStartPositionsAreOnSameLine: () => SO, readBuilderProgram: () => readBuilderProgram, readConfigFile: () => readConfigFile, readHelper: () => readHelper, readJson: () => hO, readJsonConfigFile: () => readJsonConfigFile, readJsonOrUndefined: () => ax, realizeDiagnostics: () => realizeDiagnostics, reduceEachLeadingCommentRange: () => zT, reduceEachTrailingCommentRange: () => WT, reduceLeft: () => Qa, reduceLeftIterator: () => K, reducePathComponents: () => is, refactor: () => ts_refactor_exports, regExpEscape: () => JM, relativeComplement: () => h_, removeAllComments: () => removeAllComments, removeEmitHelper: () => removeEmitHelper, removeExtension: () => Fx, removeFileExtension: () => Ll, removeIgnoredPath: () => removeIgnoredPath, removeMinAndVersionNumbers: () => q1, removeOptionality: () => removeOptionality, removePrefix: () => x5, removeSuffix: () => F1, removeTrailingDirectorySeparator: () => P_, repeatString: () => repeatString, replaceElement: () => ei, resolutionExtensionIsTSOrJson: () => YM, resolveConfigFileProjectName: () => resolveConfigFileProjectName, resolveJSModule: () => resolveJSModule, resolveModuleName: () => resolveModuleName, resolveModuleNameFromCache: () => resolveModuleNameFromCache, resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson, resolvePath: () => oy, resolveProjectReferencePath: () => resolveProjectReferencePath, resolveTripleslashReference: () => resolveTripleslashReference, resolveTypeReferenceDirective: () => resolveTypeReferenceDirective, resolvingEmptyArray: () => t82, restHelper: () => restHelper, returnFalse: () => w_, returnNoopFileWatcher: () => returnNoopFileWatcher, returnTrue: () => vp, returnUndefined: () => C1, returnsPromise: () => returnsPromise, runInitializersHelper: () => runInitializersHelper, sameFlatMap: () => at, sameMap: () => tt, sameMapping: () => sameMapping, scanShebangTrivia: () => yy, scanTokenAtPosition: () => yk, scanner: () => Zo, screenStartingMessageCodes: () => screenStartingMessageCodes, semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations, serializeCompilerOptions: () => serializeCompilerOptions, server: () => ts_server_exports, servicesVersion: () => E7, setCommentRange: () => setCommentRange, setConfigFileInOptions: () => setConfigFileInOptions, setConstantValue: () => setConstantValue, setEachParent: () => Q_, setEmitFlags: () => setEmitFlags, setFunctionNameHelper: () => setFunctionNameHelper, setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned, setIdentifierAutoGenerate: () => setIdentifierAutoGenerate, setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference, setIdentifierTypeArguments: () => setIdentifierTypeArguments, setInternalEmitFlags: () => setInternalEmitFlags, setLocalizedDiagnosticMessages: () => yx, setModuleDefaultHelper: () => setModuleDefaultHelper, setNodeFlags: () => dL, setObjectAllocator: () => gx, setOriginalNode: () => Dn, setParent: () => Sa, setParentRecursive: () => Vx, setPrivateIdentifier: () => setPrivateIdentifier, setResolvedModule: () => gD, setResolvedTypeReferenceDirective: () => yD, setSnippetElement: () => setSnippetElement, setSourceMapRange: () => setSourceMapRange, setStackTraceLimit: () => setStackTraceLimit, setStartsOnNewLine: () => setStartsOnNewLine, setSyntheticLeadingComments: () => setSyntheticLeadingComments, setSyntheticTrailingComments: () => setSyntheticTrailingComments, setSys: () => setSys, setSysLog: () => setSysLog, setTextRange: () => Rt, setTextRangeEnd: () => Wx, setTextRangePos: () => Gf, setTextRangePosEnd: () => Us, setTextRangePosWidth: () => $f, setTokenSourceMapRange: () => setTokenSourceMapRange, setTypeNode: () => setTypeNode, setUILocale: () => xp, setValueDeclaration: () => PI, shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension, shouldPreserveConstEnums: () => EM, shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules, showModuleSpecifier: () => HO, signatureHasLiteralTypes: () => signatureHasLiteralTypes, signatureHasRestParameter: () => signatureHasRestParameter, signatureToDisplayParts: () => signatureToDisplayParts, single: () => Yc, singleElementArray: () => Cp, singleIterator: () => Ka, singleOrMany: () => mo, singleOrUndefined: () => Xa, skipAlias: () => RO, skipAssertions: () => Hj, skipConstraint: () => skipConstraint, skipOuterExpressions: () => $o, skipParentheses: () => Pl, skipPartiallyEmittedExpressions: () => lf, skipTrivia: () => Ar, skipTypeChecking: () => sL, skipTypeParentheses: () => GI, skipWhile: () => N5, sliceAfter: () => rL, some: () => Ke, sort: () => Is2, sortAndDeduplicate: () => uo, sortAndDeduplicateDiagnostics: () => yA, sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions, sourceFileMayBeEmitted: () => q0, sourceMapCommentRegExp: () => sourceMapCommentRegExp, sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart, spacePart: () => spacePart, spanMap: () => co, spreadArrayHelper: () => spreadArrayHelper, stableSort: () => Ns, startEndContainsRange: () => startEndContainsRange, startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd, startOnNewLine: () => vd, startTracing: () => startTracing, startsWith: () => Pn, startsWithDirectory: () => rA, startsWithUnderscore: () => startsWithUnderscore, startsWithUseStrict: () => SE, stringContains: () => Fi, stringContainsAt: () => stringContainsAt, stringToToken: () => _l, stripQuotes: () => CN, supportedDeclarationExtensions: () => Rv, supportedJSExtensions: () => Mv, supportedJSExtensionsFlat: () => Lv, supportedLocaleDirectories: () => Hy, supportedTSExtensions: () => Jo, supportedTSExtensionsFlat: () => Ov, supportedTSImplementationExtensions: () => b8, suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia, suppressLeadingTrivia: () => suppressLeadingTrivia, suppressTrailingTrivia: () => suppressTrailingTrivia, symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault, symbolName: () => rf, symbolNameNoDefault: () => symbolNameNoDefault, symbolPart: () => symbolPart, symbolToDisplayParts: () => symbolToDisplayParts, syntaxMayBeASICandidate: () => syntaxMayBeASICandidate, syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI, sys: () => iy, sysLog: () => sysLog, tagNamesAreEquivalent: () => Hi, takeWhile: () => I5, targetOptionDeclaration: () => targetOptionDeclaration, templateObjectHelper: () => templateObjectHelper, testFormatSettings: () => testFormatSettings, textChangeRangeIsUnchanged: () => cS, textChangeRangeNewSpan: () => R_, textChanges: () => ts_textChanges_exports, textOrKeywordPart: () => textOrKeywordPart, textPart: () => textPart, textRangeContainsPositionInclusive: () => bA, textSpanContainsPosition: () => vA, textSpanContainsTextSpan: () => TA, textSpanEnd: () => Ir, textSpanIntersection: () => _S, textSpanIntersectsWith: () => EA, textSpanIntersectsWithPosition: () => wA, textSpanIntersectsWithTextSpan: () => xA, textSpanIsEmpty: () => sS, textSpanOverlap: () => oS, textSpanOverlapsWith: () => SA, textSpansEqual: () => textSpansEqual, textToKeywordObj: () => cl, timestamp: () => ts, toArray: () => en, toBuilderFileEmit: () => toBuilderFileEmit, toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit, toEditorSettings: () => lu, toFileNameLowerCase: () => Tp, toLowerCase: () => bp, toPath: () => Ui, toProgramEmitPending: () => toProgramEmitPending, tokenIsIdentifierOrKeyword: () => fr, tokenIsIdentifierOrKeywordOrGreaterThan: () => qT, tokenToString: () => Br, trace: () => trace, tracing: () => rs, tracingEnabled: () => tracingEnabled, transform: () => transform, transformClassFields: () => transformClassFields, transformDeclarations: () => transformDeclarations, transformECMAScriptModule: () => transformECMAScriptModule, transformES2015: () => transformES2015, transformES2016: () => transformES2016, transformES2017: () => transformES2017, transformES2018: () => transformES2018, transformES2019: () => transformES2019, transformES2020: () => transformES2020, transformES2021: () => transformES2021, transformES5: () => transformES5, transformESDecorators: () => transformESDecorators, transformESNext: () => transformESNext, transformGenerators: () => transformGenerators, transformJsx: () => transformJsx, transformLegacyDecorators: () => transformLegacyDecorators, transformModule: () => transformModule, transformNodeModule: () => transformNodeModule, transformNodes: () => transformNodes, transformSystemModule: () => transformSystemModule, transformTypeScript: () => transformTypeScript, transpile: () => transpile, transpileModule: () => transpileModule, transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions, trimString: () => Pp, trimStringEnd: () => X1, trimStringStart: () => nl, tryAddToSet: () => ua, tryAndIgnoreErrors: () => tryAndIgnoreErrors, tryCast: () => ln, tryDirectoryExists: () => tryDirectoryExists, tryExtractTSExtension: () => uO, tryFileExists: () => tryFileExists, tryGetClassExtendingExpressionWithTypeArguments: () => ex, tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => tx, tryGetDirectories: () => tryGetDirectories, tryGetExtensionFromPath: () => hv, tryGetImportFromModuleSpecifier: () => Y3, tryGetJSDocSatisfiesTypeNode: () => e8, tryGetModuleNameFromFile: () => CE, tryGetModuleSpecifierFromDeclaration: () => kI, tryGetNativePerformanceHooks: () => J5, tryGetPropertyAccessOrIdentifierToString: () => tv, tryGetPropertyNameOfBindingOrAssignmentElement: () => PE, tryGetSourceMappingURL: () => tryGetSourceMappingURL, tryGetTextOfPropertyName: () => e0, tryIOAndConsumeErrors: () => tryIOAndConsumeErrors, tryParsePattern: () => Bx, tryParsePatterns: () => XM, tryParseRawSourceMap: () => tryParseRawSourceMap, tryReadDirectory: () => tryReadDirectory, tryReadFile: () => tryReadFile, tryRemoveDirectoryPrefix: () => jM, tryRemoveExtension: () => Jx, tryRemovePrefix: () => ST, tryRemoveSuffix: () => B1, typeAcquisitionDeclarations: () => typeAcquisitionDeclarations, typeAliasNamePart: () => typeAliasNamePart, typeDirectiveIsEqualTo: () => ED, typeKeywords: () => typeKeywords, typeParameterNamePart: () => typeParameterNamePart, typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter, typeToDisplayParts: () => typeToDisplayParts, unchangedPollThresholds: () => unchangedPollThresholds, unchangedTextChangeRange: () => Vy, unescapeLeadingUnderscores: () => dl, unmangleScopedPackageName: () => unmangleScopedPackageName, unorderedRemoveItem: () => bT, unorderedRemoveItemAt: () => U1, unreachableCodeIsError: () => yM, unusedLabelIsError: () => vM, unwrapInnermostStatementOfLabel: () => Rk, updateErrorForNoInputFiles: () => updateErrorForNoInputFiles, updateLanguageServiceSourceFile: () => T7, updateMissingFilePathsWatch: () => updateMissingFilePathsWatch, updatePackageJsonWatch: () => updatePackageJsonWatch, updateResolutionField: () => updateResolutionField, updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher, updateSourceFile: () => k2, updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories, usesExtensionsOnImports: () => Rx, usingSingleLineStringWriter: () => mD, utf16EncodeAsString: () => by, validateLocaleAndSetLanguage: () => DA, valuesHelper: () => valuesHelper, version: () => C, versionMajorMinor: () => m, visitArray: () => visitArray, visitCommaListElements: () => visitCommaListElements, visitEachChild: () => visitEachChild, visitFunctionBody: () => visitFunctionBody, visitIterationBody: () => visitIterationBody, visitLexicalEnvironment: () => visitLexicalEnvironment, visitNode: () => visitNode, visitNodes: () => visitNodes2, visitParameterList: () => visitParameterList, walkUpBindingElementsAndPatterns: () => fS, walkUpLexicalEnvironments: () => walkUpLexicalEnvironments, walkUpOuterExpressions: () => Vj, walkUpParenthesizedExpressions: () => D0, walkUpParenthesizedTypes: () => VI, walkUpParenthesizedTypesAndGetParentAndChild: () => HI, whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp, writeCommentRange: () => $N, writeFile: () => jN, writeFileEnsuringDirectories: () => JN, zipToModeAwareCache: () => zipToModeAwareCache, zipWith: () => ce });
|
|
162359
|
+
y(L7, { ANONYMOUS: () => ANONYMOUS, AccessFlags: () => Cg, AssertionLevel: () => $1, AssignmentDeclarationKind: () => Mg, AssignmentKind: () => Sv, Associativity: () => Ev, BreakpointResolver: () => ts_BreakpointResolver_exports, BuilderFileEmit: () => BuilderFileEmit, BuilderProgramKind: () => BuilderProgramKind, BuilderState: () => BuilderState, BundleFileSectionKind: () => ty, CallHierarchy: () => ts_CallHierarchy_exports, CharacterCodes: () => $g, CheckFlags: () => Tg, CheckMode: () => CheckMode, ClassificationType: () => ClassificationType, ClassificationTypeNames: () => ClassificationTypeNames, CommentDirectiveType: () => ig, Comparison: () => d, CompletionInfoFlags: () => CompletionInfoFlags, CompletionTriggerKind: () => CompletionTriggerKind, Completions: () => ts_Completions_exports, ConfigFileProgramReloadLevel: () => ConfigFileProgramReloadLevel, ContextFlags: () => pg, CoreServicesShimHostAdapter: () => CoreServicesShimHostAdapter, Debug: () => Y, DiagnosticCategory: () => qp, Diagnostics: () => ve, DocumentHighlights: () => DocumentHighlights, ElementFlags: () => wg, EmitFlags: () => Wp, EmitHint: () => Qg, EmitOnly: () => og, EndOfLineState: () => EndOfLineState, EnumKind: () => bg, ExitStatus: () => cg, ExportKind: () => ExportKind, Extension: () => Kg, ExternalEmitHelpers: () => Yg, FileIncludeKind: () => ag, FilePreprocessingDiagnosticsKind: () => sg, FileSystemEntryKind: () => FileSystemEntryKind, FileWatcherEventKind: () => FileWatcherEventKind, FindAllReferences: () => ts_FindAllReferences_exports, FlattenLevel: () => FlattenLevel, FlowFlags: () => il, ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences, FunctionFlags: () => xv, GeneratedIdentifierFlags: () => rg, GetLiteralTextFlags: () => vv, GoToDefinition: () => ts_GoToDefinition_exports, HighlightSpanKind: () => HighlightSpanKind, ImportKind: () => ImportKind, ImportsNotUsedAsValues: () => Ug, IndentStyle: () => IndentStyle, IndexKind: () => Dg, InferenceFlags: () => Ng, InferencePriority: () => Ig, InlayHintKind: () => InlayHintKind, InlayHints: () => ts_InlayHints_exports, InternalEmitFlags: () => Xg, InternalSymbolName: () => Sg, InvalidatedProjectKind: () => InvalidatedProjectKind, JsDoc: () => ts_JsDoc_exports, JsTyping: () => ts_JsTyping_exports, JsxEmit: () => qg, JsxFlags: () => tg, JsxReferenceKind: () => Ag, LanguageServiceMode: () => LanguageServiceMode, LanguageServiceShimHostAdapter: () => LanguageServiceShimHostAdapter, LanguageVariant: () => Hg, LexicalEnvironmentFlags: () => ey, ListFormat: () => ry, LogLevel: () => Y1, MemberOverrideStatus: () => lg, ModifierFlags: () => Mp, ModuleDetectionKind: () => Rg, ModuleInstanceState: () => ModuleInstanceState, ModuleKind: () => Bg, ModuleResolutionKind: () => Lg, ModuleSpecifierEnding: () => jv, NavigateTo: () => ts_NavigateTo_exports, NavigationBar: () => ts_NavigationBar_exports, NewLineKind: () => zg, NodeBuilderFlags: () => fg, NodeCheckFlags: () => xg, NodeFactoryFlags: () => Fv, NodeFlags: () => Op, NodeResolutionFeatures: () => NodeResolutionFeatures, ObjectFlags: () => Fp, OperationCanceledException: () => Rp, OperatorPrecedence: () => wv, OrganizeImports: () => ts_OrganizeImports_exports, OrganizeImportsMode: () => OrganizeImportsMode, OuterExpressionKinds: () => Zg, OutliningElementsCollector: () => ts_OutliningElementsCollector_exports, OutliningSpanKind: () => OutliningSpanKind, OutputFileType: () => OutputFileType, PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference, PackageJsonDependencyGroup: () => PackageJsonDependencyGroup, PatternMatchKind: () => PatternMatchKind, PollingInterval: () => PollingInterval, PollingWatchKind: () => Fg, PragmaKindFlags: () => ny, PrivateIdentifierKind: () => PrivateIdentifierKind, ProcessLevel: () => ProcessLevel, QuotePreference: () => QuotePreference, RelationComparisonResult: () => Lp, Rename: () => ts_Rename_exports, ScriptElementKind: () => ScriptElementKind, ScriptElementKindModifier: () => ScriptElementKindModifier, ScriptKind: () => Wg, ScriptSnapshot: () => ScriptSnapshot, ScriptTarget: () => Vg, SemanticClassificationFormat: () => SemanticClassificationFormat, SemanticMeaning: () => SemanticMeaning, SemicolonPreference: () => SemicolonPreference, SignatureCheckMode: () => SignatureCheckMode, SignatureFlags: () => Bp, SignatureHelp: () => ts_SignatureHelp_exports, SignatureKind: () => Pg, SmartSelectionRange: () => ts_SmartSelectionRange_exports, SnippetKind: () => zp, SortKind: () => H1, StructureIsReused: () => _g, SymbolAccessibility: () => hg, SymbolDisplay: () => ts_SymbolDisplay_exports, SymbolDisplayPartKind: () => SymbolDisplayPartKind, SymbolFlags: () => jp, SymbolFormatFlags: () => mg, SyntaxKind: () => Np, SyntheticSymbolKind: () => gg, Ternary: () => Og, ThrottledCancellationToken: () => O7, TokenClass: () => TokenClass, TokenFlags: () => ng, TransformFlags: () => Up, TypeFacts: () => TypeFacts, TypeFlags: () => Jp, TypeFormatFlags: () => dg, TypeMapKind: () => kg, TypePredicateKind: () => yg, TypeReferenceSerializationKind: () => vg, TypeScriptServicesFactory: () => TypeScriptServicesFactory, UnionReduction: () => ug, UpToDateStatusType: () => UpToDateStatusType, VarianceFlags: () => Eg, Version: () => Version, VersionRange: () => VersionRange, WatchDirectoryFlags: () => Gg, WatchDirectoryKind: () => Jg, WatchFileKind: () => jg, WatchLogLevel: () => WatchLogLevel, WatchType: () => WatchType, accessPrivateIdentifier: () => accessPrivateIdentifier, addEmitFlags: () => addEmitFlags, addEmitHelper: () => addEmitHelper, addEmitHelpers: () => addEmitHelpers, addInternalEmitFlags: () => addInternalEmitFlags, addNodeFactoryPatcher: () => jL, addObjectAllocatorPatcher: () => sM, addRange: () => jr, addRelatedInfo: () => Rl, addSyntheticLeadingComment: () => addSyntheticLeadingComment, addSyntheticTrailingComment: () => addSyntheticTrailingComment, addToSeen: () => GO, advancedAsyncSuperHelper: () => advancedAsyncSuperHelper, affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations, affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations, allKeysStartWithDot: () => allKeysStartWithDot, altDirectorySeparator: () => py, and: () => E5, append: () => tr, appendIfUnique: () => g_, arrayFrom: () => Za, arrayIsEqualTo: () => Hc, arrayIsHomogeneous: () => fL, arrayIsSorted: () => Wc, arrayOf: () => yo, arrayReverseIterator: () => y_, arrayToMap: () => Zc, arrayToMultiMap: () => bo, arrayToNumericMap: () => Os, arraysEqual: () => ke, assertType: () => C5, assign: () => vo, assignHelper: () => assignHelper, asyncDelegator: () => asyncDelegator, asyncGeneratorHelper: () => asyncGeneratorHelper, asyncSuperHelper: () => asyncSuperHelper, asyncValues: () => asyncValues, attachFileToDiagnostics: () => qs, awaitHelper: () => awaitHelper, awaiterHelper: () => awaiterHelper, base64decode: () => mO, base64encode: () => dO, binarySearch: () => Ya, binarySearchKey: () => b_, bindSourceFile: () => bindSourceFile, breakIntoCharacterSpans: () => breakIntoCharacterSpans, breakIntoWordSpans: () => breakIntoWordSpans, buildLinkParts: () => buildLinkParts, buildOpts: () => buildOpts, buildOverload: () => buildOverload, bundlerModuleNameResolver: () => bundlerModuleNameResolver, canBeConvertedToAsync: () => canBeConvertedToAsync, canHaveDecorators: () => ME, canHaveExportModifier: () => AL, canHaveFlowNode: () => jI, canHaveIllegalDecorators: () => rJ, canHaveIllegalModifiers: () => nJ, canHaveIllegalType: () => tJ, canHaveIllegalTypeParameters: () => IE, canHaveJSDoc: () => Af, canHaveLocals: () => zP, canHaveModifiers: () => fc, canHaveSymbol: () => UP, canJsonReportNoInputFiles: () => canJsonReportNoInputFiles, canProduceDiagnostics: () => canProduceDiagnostics, canUsePropertyAccess: () => PL, canWatchDirectoryOrFile: () => canWatchDirectoryOrFile, cartesianProduct: () => P5, cast: () => ti, chainBundle: () => chainBundle, chainDiagnosticMessages: () => lM, changeAnyExtension: () => RT, changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache, changeExtension: () => KM, changesAffectModuleResolution: () => cD, changesAffectingProgramStructure: () => lD, childIsDecorated: () => h0, classElementOrClassElementParameterIsDecorated: () => sI, classOrConstructorParameterIsDecorated: () => aI, classPrivateFieldGetHelper: () => classPrivateFieldGetHelper, classPrivateFieldInHelper: () => classPrivateFieldInHelper, classPrivateFieldSetHelper: () => classPrivateFieldSetHelper, classicNameResolver: () => classicNameResolver, classifier: () => ts_classifier_exports, cleanExtendedConfigCache: () => cleanExtendedConfigCache, clear: () => nt, clearMap: () => qO, clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher, climbPastPropertyAccess: () => climbPastPropertyAccess, climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess, clone: () => E_, cloneCompilerOptions: () => cloneCompilerOptions, closeFileWatcher: () => MO, closeFileWatcherOf: () => closeFileWatcherOf, codefix: () => ts_codefix_exports, collapseTextChangeRangesAcrossMultipleVersions: () => CA, collectExternalModuleInfo: () => collectExternalModuleInfo, combine: () => $c, combinePaths: () => tn, commentPragmas: () => Vp, commonOptionsWithBuild: () => commonOptionsWithBuild, commonPackageFolders: () => Pv, compact: () => Gc, compareBooleans: () => j1, compareDataObjects: () => px, compareDiagnostics: () => av, compareDiagnosticsSkipRelatedInformation: () => qf, compareEmitHelpers: () => compareEmitHelpers, compareNumberOfDirectorySeparators: () => $M, comparePaths: () => tA, comparePathsCaseInsensitive: () => eA, comparePathsCaseSensitive: () => Z5, comparePatternKeys: () => comparePatternKeys, compareProperties: () => R1, compareStringsCaseInsensitive: () => C_, compareStringsCaseInsensitiveEslintCompatible: () => O1, compareStringsCaseSensitive: () => ri, compareStringsCaseSensitiveUI: () => L1, compareTextSpans: () => I1, compareValues: () => Vr, compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption, compilerOptionsAffectDeclarationPath: () => DM, compilerOptionsAffectEmit: () => PM, compilerOptionsAffectSemanticDiagnostics: () => AM, compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics, compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules, compose: () => k1, computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames, computeLineAndCharacterOfPosition: () => my, computeLineOfPosition: () => k_, computeLineStarts: () => Kp, computePositionOfLineAndCharacter: () => dy, computeSignature: () => computeSignature, computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics, computeSuggestionDiagnostics: () => computeSuggestionDiagnostics, concatenate: () => Ft, concatenateDiagnosticMessageChains: () => uM, consumesNodeCoreModules: () => consumesNodeCoreModules, contains: () => pe, containsIgnoredPath: () => Hx, containsObjectRestOrSpread: () => A2, containsParseError: () => Ky, containsPath: () => jT, convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry, convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson, convertJsonOption: () => convertJsonOption, convertToBase64: () => ix, convertToObject: () => convertToObject, convertToObjectWorker: () => convertToObjectWorker, convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths, convertToRelativePath: () => nA, convertToTSConfig: () => convertToTSConfig, convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson, copyComments: () => copyComments, copyEntries: () => dD, copyLeadingComments: () => copyLeadingComments, copyProperties: () => H, copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments, copyTrailingComments: () => copyTrailingComments, couldStartTrivia: () => pA, countWhere: () => Xe, createAbstractBuilder: () => createAbstractBuilder, createAccessorPropertyBackingField: () => LJ, createAccessorPropertyGetRedirector: () => RJ, createAccessorPropertySetRedirector: () => jJ, createBaseNodeFactory: () => S8, createBinaryExpressionTrampoline: () => PJ, createBindingHelper: () => createBindingHelper, createBuildInfo: () => createBuildInfo, createBuilderProgram: () => createBuilderProgram, createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo, createBuilderStatusReporter: () => createBuilderStatusReporter, createCacheWithRedirects: () => createCacheWithRedirects, createCacheableExportInfoMap: () => createCacheableExportInfoMap, createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost, createClassifier: () => createClassifier, createCommentDirectivesMap: () => JD, createCompilerDiagnostic: () => Ol, createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType, createCompilerDiagnosticFromMessageChain: () => cM, createCompilerHost: () => createCompilerHost, createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost, createCompilerHostWorker: () => createCompilerHostWorker, createDetachedDiagnostic: () => Ro, createDiagnosticCollection: () => TN, createDiagnosticForFileFromMessageChain: () => mk, createDiagnosticForNode: () => uk, createDiagnosticForNodeArray: () => pk, createDiagnosticForNodeArrayFromMessageChain: () => dk, createDiagnosticForNodeFromMessageChain: () => fk, createDiagnosticForNodeInSourceFile: () => P3, createDiagnosticForRange: () => gk, createDiagnosticMessageChainFromDiagnostic: () => hk, createDiagnosticReporter: () => createDiagnosticReporter, createDocumentPositionMapper: () => createDocumentPositionMapper, createDocumentRegistry: () => createDocumentRegistry, createDocumentRegistryInternal: () => createDocumentRegistryInternal, createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram, createEmitHelperFactory: () => createEmitHelperFactory, createEmptyExports: () => Dj, createExpressionForJsxElement: () => Ij, createExpressionForJsxFragment: () => Nj, createExpressionForObjectLiteralElementLike: () => Fj, createExpressionForPropertyName: () => vE, createExpressionFromEntityName: () => yE, createExternalHelpersImportDeclarationIfNeeded: () => $j, createFileDiagnostic: () => iv, createFileDiagnosticFromMessageChain: () => r0, createForOfBindingStatement: () => Oj, createGetCanonicalFileName: () => wp, createGetSourceFile: () => createGetSourceFile, createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode, createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName, createGetSymbolWalker: () => createGetSymbolWalker, createIncrementalCompilerHost: () => createIncrementalCompilerHost, createIncrementalProgram: () => createIncrementalProgram, createInputFiles: () => VL, createInputFilesWithFilePaths: () => C8, createInputFilesWithFileTexts: () => A8, createJsxFactoryExpression: () => gE, createLanguageService: () => lB, createLanguageServiceSourceFile: () => N2, createMemberAccessForPropertyName: () => hd, createModeAwareCache: () => createModeAwareCache, createModeAwareCacheKey: () => createModeAwareCacheKey, createModuleResolutionCache: () => createModuleResolutionCache, createModuleResolutionLoader: () => createModuleResolutionLoader, createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost, createMultiMap: () => Be, createNodeConverters: () => x8, createNodeFactory: () => Zf, createOptionNameMap: () => createOptionNameMap, createOverload: () => createOverload, createPackageJsonImportFilter: () => createPackageJsonImportFilter, createPackageJsonInfo: () => createPackageJsonInfo, createParenthesizerRules: () => createParenthesizerRules, createPatternMatcher: () => createPatternMatcher, createPrependNodes: () => createPrependNodes, createPrinter: () => createPrinter, createPrinterWithDefaults: () => createPrinterWithDefaults, createPrinterWithRemoveComments: () => createPrinterWithRemoveComments, createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape, createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon, createProgram: () => createProgram, createProgramHost: () => createProgramHost, createPropertyNameNodeForIdentifierOrLiteral: () => EL, createQueue: () => Fr, createRange: () => Jf, createRedirectedBuilderProgram: () => createRedirectedBuilderProgram, createResolutionCache: () => createResolutionCache, createRuntimeTypeSerializer: () => createRuntimeTypeSerializer, createScanner: () => Po, createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram, createSet: () => Cr, createSolutionBuilder: () => createSolutionBuilder, createSolutionBuilderHost: () => createSolutionBuilderHost, createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch, createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost, createSortedArray: () => zc, createSourceFile: () => YE, createSourceMapGenerator: () => createSourceMapGenerator, createSourceMapSource: () => HL, createSuperAccessVariableStatement: () => createSuperAccessVariableStatement, createSymbolTable: () => oD, createSymlinkCache: () => MM, createSystemWatchFunctions: () => createSystemWatchFunctions, createTextChange: () => createTextChange, createTextChangeFromStartLength: () => createTextChangeFromStartLength, createTextChangeRange: () => Zp, createTextRangeFromNode: () => createTextRangeFromNode, createTextRangeFromSpan: () => createTextRangeFromSpan, createTextSpan: () => L_, createTextSpanFromBounds: () => ha, createTextSpanFromNode: () => createTextSpanFromNode, createTextSpanFromRange: () => createTextSpanFromRange, createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent, createTextWriter: () => DN, createTokenRange: () => bO, createTypeChecker: () => createTypeChecker, createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader, createUnderscoreEscapedMultiMap: () => Ht, createUnparsedSourceFile: () => UL, createWatchCompilerHost: () => createWatchCompilerHost2, createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile, createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions, createWatchFactory: () => createWatchFactory, createWatchHost: () => createWatchHost, createWatchProgram: () => createWatchProgram, createWatchStatusReporter: () => createWatchStatusReporter, createWriteFileMeasuringIO: () => createWriteFileMeasuringIO, declarationNameToString: () => A3, decodeMappings: () => decodeMappings, decodedTextSpanIntersectsWith: () => Sy, decorateHelper: () => decorateHelper, deduplicate: () => ji, defaultIncludeSpec: () => defaultIncludeSpec, defaultInitCompilerOptions: () => defaultInitCompilerOptions, defaultMaximumTruncationLength: () => r8, detectSortCaseSensitivity: () => Vc, diagnosticCategoryName: () => z5, diagnosticToString: () => diagnosticToString, directoryProbablyExists: () => sx, directorySeparator: () => zn, displayPart: () => displayPart, displayPartsToString: () => cB, disposeEmitNodes: () => disposeEmitNodes, documentSpansEqual: () => documentSpansEqual, dumpTracingLegend: () => dumpTracingLegend, elementAt: () => wT, elideNodes: () => IJ, emitComments: () => U4, emitDetachedComments: () => GN, emitFiles: () => emitFiles, emitFilesAndReportErrors: () => emitFilesAndReportErrors, emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus, emitModuleKindIsNonNodeESM: () => mM, emitNewLineBeforeLeadingCommentOfPosition: () => HN, emitNewLineBeforeLeadingComments: () => B4, emitNewLineBeforeLeadingCommentsOfPosition: () => q4, emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics, emitUsingBuildInfo: () => emitUsingBuildInfo, emptyArray: () => Bt, emptyFileSystemEntries: () => T8, emptyMap: () => V1, emptyOptions: () => emptyOptions, emptySet: () => ET, endsWith: () => es, ensurePathIsNonModuleName: () => _y, ensureScriptKind: () => Nx, ensureTrailingDirectorySeparator: () => wo, entityNameToString: () => ls, enumerateInsertsAndDeletes: () => A5, equalOwnProperties: () => S_, equateStringsCaseInsensitive: () => Ms, equateStringsCaseSensitive: () => To, equateValues: () => fa, esDecorateHelper: () => esDecorateHelper, escapeJsxAttributeString: () => A4, escapeLeadingUnderscores: () => vi, escapeNonAsciiString: () => Of, escapeSnippetText: () => xL, escapeString: () => Nf, every: () => me, expandPreOrPostfixIncrementOrDecrementExpression: () => Bj, explainFiles: () => explainFiles, explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat, exportAssignmentIsAlias: () => I0, exportStarHelper: () => exportStarHelper, expressionResultIsUnused: () => gL, extend: () => S, extendsHelper: () => extendsHelper, extensionFromPath: () => QM, extensionIsTS: () => qx, externalHelpersModuleNameText: () => Kf, factory: () => si, fileExtensionIs: () => ns, fileExtensionIsOneOf: () => da, fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics, filter: () => ee, filterMutate: () => je, filterSemanticDiagnostics: () => filterSemanticDiagnostics, find: () => Ae, findAncestor: () => zi, findBestPatternMatch: () => TT, findChildOfKind: () => findChildOfKind, findComputedPropertyNameCacheAssignment: () => JJ, findConfigFile: () => findConfigFile, findContainingList: () => findContainingList, findDiagnosticForNode: () => findDiagnosticForNode, findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken, findIndex: () => he, findLast: () => te, findLastIndex: () => Pe, findListItemInfo: () => findListItemInfo, findMap: () => R, findModifier: () => findModifier, findNextToken: () => findNextToken, findPackageJson: () => findPackageJson, findPackageJsons: () => findPackageJsons, findPrecedingMatchingToken: () => findPrecedingMatchingToken, findPrecedingToken: () => findPrecedingToken, findSuperStatementIndex: () => findSuperStatementIndex, findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition, findUseStrictPrologue: () => TE, first: () => fo, firstDefined: () => q, firstDefinedIterator: () => W, firstIterator: () => v_, firstOrOnly: () => firstOrOnly, firstOrUndefined: () => pa, firstOrUndefinedIterator: () => Xc, fixupCompilerOptions: () => fixupCompilerOptions, flatMap: () => ne, flatMapIterator: () => Fe, flatMapToMutable: () => ge, flatten: () => ct, flattenCommaList: () => BJ, flattenDestructuringAssignment: () => flattenDestructuringAssignment, flattenDestructuringBinding: () => flattenDestructuringBinding, flattenDiagnosticMessageText: () => flattenDiagnosticMessageText, forEach: () => c, forEachAncestor: () => uD, forEachAncestorDirectory: () => FT, forEachChild: () => xr, forEachChildRecursively: () => D2, forEachEmittedFile: () => forEachEmittedFile, forEachEnclosingBlockScopeContainer: () => ok, forEachEntry: () => pD, forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom, forEachImportClauseDeclaration: () => NI, forEachKey: () => fD, forEachLeadingCommentRange: () => fA, forEachNameInAccessChainWalkingLeft: () => QO, forEachResolvedProjectReference: () => forEachResolvedProjectReference, forEachReturnStatement: () => Pk, forEachRight: () => M, forEachTrailingCommentRange: () => dA, forEachUnique: () => forEachUnique, forEachYieldExpression: () => Dk, forSomeAncestorDirectory: () => WO, formatColorAndReset: () => formatColorAndReset, formatDiagnostic: () => formatDiagnostic, formatDiagnostics: () => formatDiagnostics, formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext, formatGeneratedName: () => bd, formatGeneratedNamePart: () => C2, formatLocation: () => formatLocation, formatMessage: () => _M, formatStringFromArgs: () => X_, formatting: () => ts_formatting_exports, fullTripleSlashAMDReferencePathRegEx: () => Tv, fullTripleSlashReferencePathRegEx: () => bv, generateDjb2Hash: () => generateDjb2Hash, generateTSConfig: () => generateTSConfig, generatorHelper: () => generatorHelper, getAdjustedReferenceLocation: () => getAdjustedReferenceLocation, getAdjustedRenameLocation: () => getAdjustedRenameLocation, getAliasDeclarationFromName: () => u4, getAllAccessorDeclarations: () => W0, getAllDecoratorsOfClass: () => getAllDecoratorsOfClass, getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement, getAllJSDocTags: () => MS, getAllJSDocTagsOfKind: () => UA, getAllKeys: () => T_, getAllProjectOutputs: () => getAllProjectOutputs, getAllSuperTypeNodes: () => h4, getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers, getAllowJSCompilerOption: () => Ax, getAllowSyntheticDefaultImports: () => TM, getAncestor: () => eN, getAnyExtensionFromPath: () => Gp, getAreDeclarationMapsEnabled: () => bM, getAssignedExpandoInitializer: () => bI, getAssignedName: () => yS, getAssignmentDeclarationKind: () => ps, getAssignmentDeclarationPropertyAccessKind: () => K3, getAssignmentTargetKind: () => o4, getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames, getBaseFileName: () => sl, getBinaryOperatorPrecedence: () => Dl, getBuildInfo: () => getBuildInfo, getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap, getBuildInfoText: () => getBuildInfoText, getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder, getBuilderCreationParameters: () => getBuilderCreationParameters, getBuilderFileEmit: () => getBuilderFileEmit, getCheckFlags: () => ux, getClassExtendsHeritageElement: () => d4, getClassLikeDeclarationOfSymbol: () => dx, getCombinedLocalAndExportSymbolFlags: () => jO, getCombinedModifierFlags: () => ef, getCombinedNodeFlags: () => tf, getCombinedNodeFlagsAlwaysIncludeJSDoc: () => PA, getCommentRange: () => getCommentRange, getCommonSourceDirectory: () => getCommonSourceDirectory, getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig, getCompilerOptionValue: () => uv, getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue, getConditions: () => getConditions, getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics, getConstantValue: () => getConstantValue, getContainerNode: () => getContainerNode, getContainingClass: () => Vk, getContainingClassStaticBlock: () => Hk, getContainingFunction: () => zk, getContainingFunctionDeclaration: () => Wk, getContainingFunctionOrClassStaticBlock: () => Gk, getContainingNodeArray: () => yL, getContainingObjectLiteralElement: () => S7, getContextualTypeFromParent: () => getContextualTypeFromParent, getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode, getCurrentTime: () => getCurrentTime, getDeclarationDiagnostics: () => getDeclarationDiagnostics, getDeclarationEmitExtensionForPath: () => O4, getDeclarationEmitOutputFilePath: () => ON, getDeclarationEmitOutputFilePathWorker: () => N4, getDeclarationFromName: () => XI, getDeclarationModifierFlagsFromSymbol: () => LO, getDeclarationOfKind: () => aD, getDeclarationsOfKind: () => sD, getDeclaredExpandoInitializer: () => yI, getDecorators: () => kA, getDefaultCompilerOptions: () => y7, getDefaultExportInfoWorker: () => getDefaultExportInfoWorker, getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings, getDefaultLibFileName: () => aS, getDefaultLibFilePath: () => gB, getDefaultLikeExportInfo: () => getDefaultLikeExportInfo, getDiagnosticText: () => getDiagnosticText, getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan, getDirectoryPath: () => ma, getDocumentPositionMapper: () => getDocumentPositionMapper, getESModuleInterop: () => ov, getEditsForFileRename: () => getEditsForFileRename, getEffectiveBaseTypeNode: () => f4, getEffectiveConstraintOfTypeParameter: () => HA, getEffectiveContainerForJSDocTemplateTag: () => FI, getEffectiveImplementsTypeNodes: () => m4, getEffectiveInitializer: () => V3, getEffectiveJSDocHost: () => A0, getEffectiveModifierFlags: () => Rf, getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => K4, getEffectiveModifierFlagsNoCache: () => Y4, getEffectiveReturnTypeNode: () => zN, getEffectiveSetAccessorTypeAnnotationNode: () => VN, getEffectiveTypeAnnotationNode: () => V0, getEffectiveTypeParameterDeclarations: () => VA, getEffectiveTypeRoots: () => getEffectiveTypeRoots, getElementOrPropertyAccessArgumentExpressionOrName: () => Cf, getElementOrPropertyAccessName: () => Fs, getElementsOfBindingOrAssignmentPattern: () => kE, getEmitDeclarations: () => cv, getEmitFlags: () => xi, getEmitHelpers: () => getEmitHelpers, getEmitModuleDetectionKind: () => wx, getEmitModuleKind: () => Ei, getEmitModuleResolutionKind: () => Ml, getEmitScriptTarget: () => Uf, getEnclosingBlockScopeContainer: () => Zy, getEncodedSemanticClassifications: () => getEncodedSemanticClassifications, getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications, getEndLinePosition: () => d3, getEntityNameFromTypeNode: () => nI, getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo, getErrorCountForSummary: () => getErrorCountForSummary, getErrorSpanForNode: () => i0, getErrorSummaryText: () => getErrorSummaryText, getEscapedTextOfIdentifierOrLiteral: () => b4, getExpandoInitializer: () => U_, getExportAssignmentExpression: () => p4, getExportInfoMap: () => getExportInfoMap, getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper, getExpressionAssociativity: () => yN, getExpressionPrecedence: () => vN, getExternalHelpersModuleName: () => EE, getExternalModuleImportEqualsDeclarationExpression: () => _I, getExternalModuleName: () => E0, getExternalModuleNameFromDeclaration: () => IN, getExternalModuleNameFromPath: () => F0, getExternalModuleNameLiteral: () => Xj, getExternalModuleRequireArgument: () => cI, getFallbackOptions: () => getFallbackOptions, getFileEmitOutput: () => getFileEmitOutput, getFileMatcherPatterns: () => Ix, getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs, getFileWatcherEventKind: () => getFileWatcherEventKind, getFilesInErrorForSummary: () => getFilesInErrorForSummary, getFirstConstructorWithBody: () => R4, getFirstIdentifier: () => iO, getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition, getFirstProjectOutput: () => getFirstProjectOutput, getFixableErrorSpanExpression: () => getFixableErrorSpanExpression, getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting, getFullWidth: () => hf, getFunctionFlags: () => sN, getHeritageClause: () => Pf, getHostSignatureFromJSDoc: () => C0, getIdentifierAutoGenerate: () => getIdentifierAutoGenerate, getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference, getIdentifierTypeArguments: () => getIdentifierTypeArguments, getImmediatelyInvokedFunctionExpression: () => Qk, getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile, getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker, getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper, getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper, getIndentSize: () => Oo, getIndentString: () => j0, getInitializedVariables: () => NO, getInitializerOfBinaryExpression: () => X3, getInitializerOfBindingOrAssignmentElement: () => AE, getInterfaceBaseTypeNodes: () => g4, getInternalEmitFlags: () => zD, getInvokedExpression: () => iI, getIsolatedModules: () => zf, getJSDocAugmentsTag: () => ES, getJSDocClassTag: () => NA, getJSDocCommentRanges: () => I3, getJSDocCommentsAndTags: () => r4, getJSDocDeprecatedTag: () => jA, getJSDocDeprecatedTagNoCache: () => IS, getJSDocEnumTag: () => JA, getJSDocHost: () => s4, getJSDocImplementsTags: () => wS, getJSDocOverrideTagNoCache: () => kS, getJSDocParameterTags: () => of, getJSDocParameterTagsNoCache: () => bS, getJSDocPrivateTag: () => MA, getJSDocPrivateTagNoCache: () => AS, getJSDocProtectedTag: () => LA, getJSDocProtectedTagNoCache: () => PS, getJSDocPublicTag: () => OA, getJSDocPublicTagNoCache: () => CS, getJSDocReadonlyTag: () => RA, getJSDocReadonlyTagNoCache: () => DS, getJSDocReturnTag: () => NS, getJSDocReturnType: () => OS, getJSDocRoot: () => P0, getJSDocSatisfiesExpressionType: () => NL, getJSDocSatisfiesTag: () => wy, getJSDocTags: () => hl, getJSDocTagsNoCache: () => qA, getJSDocTemplateTag: () => BA, getJSDocThisTag: () => FA, getJSDocType: () => cf, getJSDocTypeAliasName: () => w2, getJSDocTypeAssertionType: () => Wj, getJSDocTypeParameterDeclarations: () => F4, getJSDocTypeParameterTags: () => SS, getJSDocTypeParameterTagsNoCache: () => xS, getJSDocTypeTag: () => _f2, getJSXImplicitImportBase: () => IM, getJSXRuntimeImport: () => NM, getJSXTransformEnabled: () => kM, getKeyForCompilerOptions: () => getKeyForCompilerOptions, getLanguageVariant: () => sv, getLastChild: () => mx, getLeadingCommentRanges: () => Ao, getLeadingCommentRangesOfNode: () => Ck, getLeftmostAccessExpression: () => rv, getLeftmostExpression: () => ZO, getLineAndCharacterOfPosition: () => Ls, getLineInfo: () => getLineInfo, getLineOfLocalPosition: () => FN, getLineOfLocalPositionFromLineMap: () => ds, getLineStartPositionForPosition: () => getLineStartPositionForPosition, getLineStarts: () => ss, getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => DO, getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => PO, getLinesBetweenPositions: () => I_, getLinesBetweenRangeEndAndRangeStart: () => wO, getLinesBetweenRangeEndPositions: () => CO, getLiteralText: () => WD, getLocalNameForExternalImport: () => Kj, getLocalSymbolForExportDefault: () => cO, getLocaleSpecificMessage: () => Y_, getLocaleTimeString: () => getLocaleTimeString, getMappedContextSpan: () => getMappedContextSpan, getMappedDocumentSpan: () => getMappedDocumentSpan, getMappedLocation: () => getMappedLocation, getMatchedFileSpec: () => getMatchedFileSpec, getMatchedIncludeSpec: () => getMatchedIncludeSpec, getMeaningFromDeclaration: () => getMeaningFromDeclaration, getMeaningFromLocation: () => getMeaningFromLocation, getMembersOfDeclaration: () => Ik, getModeForFileReference: () => getModeForFileReference, getModeForResolutionAtIndex: () => getModeForResolutionAtIndex, getModeForUsageLocation: () => getModeForUsageLocation, getModifiedTime: () => getModifiedTime, getModifiers: () => sf, getModuleInstanceState: () => getModuleInstanceState, getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt, getModuleSpecifierEndingPreference: () => VM, getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost, getNameForExportedSymbol: () => getNameForExportedSymbol, getNameFromIndexInfo: () => _k, getNameFromPropertyName: () => getNameFromPropertyName, getNameOfAccessExpression: () => KO, getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue, getNameOfDeclaration: () => ml, getNameOfExpando: () => xI, getNameOfJSDocTypedef: () => gS, getNameOrArgument: () => $3, getNameTable: () => uB, getNamesForExportedSymbol: () => getNamesForExportedSymbol, getNamespaceDeclarationNode: () => Q3, getNewLineCharacter: () => ox, getNewLineKind: () => getNewLineKind, getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost, getNewTargetContainer: () => Xk, getNextJSDocCommentLocation: () => a4, getNodeForGeneratedName: () => NJ, getNodeId: () => getNodeId, getNodeKind: () => getNodeKind, getNodeModifiers: () => getNodeModifiers, getNodeModulePathParts: () => wL, getNonAssignedNameOfDeclaration: () => Ey, getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment, getNonAugmentationDeclaration: () => E3, getNonDecoratorTokenPosOfNode: () => FD, getNormalizedAbsolutePath: () => as, getNormalizedAbsolutePathWithoutRoot: () => Q5, getNormalizedPathComponents: () => $p, getObjectFlags: () => Bf, getOperator: () => R0, getOperatorAssociativity: () => x4, getOperatorPrecedence: () => E4, getOptionFromName: () => getOptionFromName, getOptionsNameMap: () => getOptionsNameMap, getOrCreateEmitNode: () => getOrCreateEmitNode, getOrCreateExternalHelpersModuleNameIfNeeded: () => wE, getOrUpdate: () => la, getOriginalNode: () => ul, getOriginalNodeId: () => getOriginalNodeId, getOriginalSourceFile: () => gN, getOutputDeclarationFileName: () => getOutputDeclarationFileName, getOutputExtension: () => getOutputExtension, getOutputFileNames: () => getOutputFileNames, getOutputPathsFor: () => getOutputPathsFor, getOutputPathsForBundle: () => getOutputPathsForBundle, getOwnEmitOutputFilePath: () => NN, getOwnKeys: () => ho, getOwnValues: () => go, getPackageJsonInfo: () => getPackageJsonInfo, getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths, getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile, getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName, getPackageScopeForPath: () => getPackageScopeForPath, getParameterSymbolFromJSDoc: () => JI, getParameterTypeNode: () => CL, getParentNodeInSpan: () => getParentNodeInSpan, getParseTreeNode: () => fl, getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile, getPathComponents: () => qi, getPathComponentsRelativeTo: () => ly, getPathFromPathComponents: () => xo, getPathUpdater: () => getPathUpdater, getPathsBasePath: () => LN, getPatternFromSpec: () => BM, getPendingEmitKind: () => getPendingEmitKind, getPositionOfLineAndCharacter: () => lA, getPossibleGenericSignatures: () => getPossibleGenericSignatures, getPossibleOriginalInputExtensionForExtension: () => MN, getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo, getPreEmitDiagnostics: () => getPreEmitDiagnostics, getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition, getPrivateIdentifier: () => getPrivateIdentifier, getProperties: () => getProperties, getProperty: () => Qc, getPropertyArrayElementValue: () => qk, getPropertyAssignment: () => f0, getPropertyAssignmentAliasLikeExpression: () => ZI, getPropertyNameForPropertyNameNode: () => Df, getPropertyNameForUniqueESSymbol: () => _N, getPropertyNameOfBindingOrAssignmentElement: () => eJ, getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement, getPropertySymbolsFromContextualType: () => x7, getQuoteFromPreference: () => getQuoteFromPreference, getQuotePreference: () => getQuotePreference, getRangesWhere: () => Et, getRefactorContextSpan: () => getRefactorContextSpan, getReferencedFileLocation: () => getReferencedFileLocation, getRegexFromPattern: () => Vf, getRegularExpressionForWildcard: () => Wf, getRegularExpressionsForWildcards: () => pv, getRelativePathFromDirectory: () => JT, getRelativePathFromFile: () => iA, getRelativePathToDirectoryOrUrl: () => uy, getRenameLocation: () => getRenameLocation, getReplacementSpanForContextToken: () => getReplacementSpanForContextToken, getResolutionDiagnostic: () => getResolutionDiagnostic, getResolutionModeOverrideForClause: () => getResolutionModeOverrideForClause, getResolveJsonModule: () => Cx, getResolvePackageJsonExports: () => SM, getResolvePackageJsonImports: () => xM, getResolvedExternalModuleName: () => k4, getResolvedModule: () => hD, getResolvedTypeReferenceDirective: () => vD, getRestIndicatorOfBindingOrAssignmentElement: () => Zj, getRestParameterElementType: () => kk, getRightMostAssignedExpression: () => b0, getRootDeclaration: () => If, getRootLength: () => Bi, getScriptKind: () => getScriptKind, getScriptKindFromFileName: () => Ox, getScriptTargetFeatures: () => getScriptTargetFeatures, getSelectedEffectiveModifierFlags: () => G4, getSelectedSyntacticModifierFlags: () => $4, getSemanticClassifications: () => getSemanticClassifications, getSemanticJsxChildren: () => bN, getSetAccessorTypeAnnotationNode: () => BN, getSetAccessorValueParameter: () => z0, getSetExternalModuleIndicator: () => Ex, getShebang: () => GT, getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => w0, getSingleVariableOfVariableStatement: () => Al, getSnapshotText: () => getSnapshotText, getSnippetElement: () => getSnippetElement, getSourceFileOfModule: () => AD, getSourceFileOfNode: () => Si, getSourceFilePathInNewDir: () => M4, getSourceFilePathInNewDirWorker: () => U0, getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText, getSourceFilesToEmit: () => RN, getSourceMapRange: () => getSourceMapRange, getSourceMapper: () => getSourceMapper, getSourceTextOfNodeFromSourceFile: () => No, getSpanOfTokenAtPosition: () => n0, getSpellingSuggestion: () => Ep, getStartPositionOfLine: () => kD, getStartPositionOfRange: () => K_, getStartsOnNewLine: () => getStartsOnNewLine, getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock, getStrictOptionValue: () => lv, getStringComparer: () => rl, getSuperCallFromStatement: () => getSuperCallFromStatement, getSuperContainer: () => Yk, getSupportedCodeFixes: () => v7, getSupportedExtensions: () => Mx, getSupportedExtensionsWithJsonIfResolveJsonModule: () => Lx, getSwitchedType: () => getSwitchedType, getSymbolId: () => getSymbolId, getSymbolNameForPrivateIdentifier: () => cN, getSymbolTarget: () => getSymbolTarget, getSyntacticClassifications: () => getSyntacticClassifications, getSyntacticModifierFlags: () => X0, getSyntacticModifierFlagsNoCache: () => Y0, getSynthesizedDeepClone: () => getSynthesizedDeepClone, getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements, getSynthesizedDeepClones: () => getSynthesizedDeepClones, getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements, getSyntheticLeadingComments: () => getSyntheticLeadingComments, getSyntheticTrailingComments: () => getSyntheticTrailingComments, getTargetLabel: () => getTargetLabel, getTargetOfBindingOrAssignmentElement: () => Ko, getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState, getTextOfConstantValue: () => HD, getTextOfIdentifierOrLiteral: () => kf, getTextOfJSDocComment: () => zA, getTextOfNode: () => gf, getTextOfNodeFromSourceText: () => B_, getTextOfPropertyName: () => lk, getThisContainer: () => d0, getThisParameter: () => j4, getTokenAtPosition: () => getTokenAtPosition, getTokenPosOfNode: () => Io, getTokenSourceMapRange: () => getTokenSourceMapRange, getTouchingPropertyName: () => getTouchingPropertyName, getTouchingToken: () => getTouchingToken, getTrailingCommentRanges: () => HT, getTrailingSemicolonDeferringWriter: () => kN, getTransformFlagsSubtreeExclusions: () => w8, getTransformers: () => getTransformers, getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath, getTsConfigObjectLiteralExpression: () => M3, getTsConfigPropArray: () => L3, getTsConfigPropArrayElementValue: () => Uk, getTypeAnnotationNode: () => UN, getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList, getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport, getTypeNode: () => getTypeNode, getTypeNodeIfAccessible: () => getTypeNodeIfAccessible, getTypeParameterFromJsDoc: () => BI, getTypeParameterOwner: () => AA, getTypesPackageName: () => getTypesPackageName, getUILocale: () => M1, getUniqueName: () => getUniqueName, getUniqueSymbolId: () => getUniqueSymbolId, getUseDefineForClassFields: () => CM, getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage, getWatchFactory: () => getWatchFactory, group: () => el, groupBy: () => x_, guessIndentation: () => rD, handleNoEmitOptions: () => handleNoEmitOptions, hasAbstractModifier: () => W4, hasAccessorModifier: () => H4, hasAmbientModifier: () => V4, hasChangesInResolutions: () => wD, hasChildOfKind: () => hasChildOfKind, hasContextSensitiveParameters: () => vL, hasDecorators: () => Il, hasDocComment: () => hasDocComment, hasDynamicName: () => v4, hasEffectiveModifier: () => H0, hasEffectiveModifiers: () => XN, hasEffectiveReadonlyModifier: () => $0, hasExtension: () => OT, hasIndexSignature: () => hasIndexSignature, hasInitializer: () => l3, hasInvalidEscape: () => w4, hasJSDocNodes: () => ya, hasJSDocParameterTags: () => IA, hasJSFileExtension: () => dv, hasJsonModuleEmitEnabled: () => hM, hasOnlyExpressionInitializer: () => eD, hasOverrideModifier: () => QN, hasPossibleExternalModuleReference: () => sk, hasProperty: () => Jr, hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName, hasQuestionToken: () => OI, hasRecordedExternalHelpers: () => Gj, hasRestParameter: () => nD, hasScopeMarker: () => kP, hasStaticModifier: () => Lf, hasSyntacticModifier: () => rn, hasSyntacticModifiers: () => YN, hasTSFileExtension: () => mv, hasTabstop: () => Qx, hasTrailingDirectorySeparator: () => Hp, hasType: () => ZP, hasTypeArguments: () => qI, hasZeroOrOneAsteriskCharacter: () => OM, helperString: () => helperString, hostGetCanonicalFileName: () => D4, hostUsesCaseSensitiveFileNames: () => J0, idText: () => qr, identifierIsThisKeyword: () => J4, identifierToKeywordKind: () => dS, identity: () => rr, identitySourceMapConsumer: () => identitySourceMapConsumer, ignoreSourceNewlines: () => ignoreSourceNewlines, ignoredPaths: () => ignoredPaths, importDefaultHelper: () => importDefaultHelper, importFromModuleSpecifier: () => II, importNameElisionDisabled: () => gM, importStarHelper: () => importStarHelper, indexOfAnyCharCode: () => Je, indexOfNode: () => UD, indicesOf: () => Wr, inferredTypesContainingFile: () => inferredTypesContainingFile, insertImports: () => insertImports, insertLeadingStatement: () => Mj, insertSorted: () => Qn, insertStatementAfterCustomPrologue: () => RD, insertStatementAfterStandardPrologue: () => LD, insertStatementsAfterCustomPrologue: () => MD, insertStatementsAfterStandardPrologue: () => OD, intersperse: () => Ie, introducesArgumentsExoticObject: () => Lk, inverseJsxOptionMap: () => inverseJsxOptionMap, isAbstractConstructorSymbol: () => zO, isAbstractModifier: () => uR, isAccessExpression: () => Lo, isAccessibilityModifier: () => isAccessibilityModifier, isAccessor: () => pf, isAccessorModifier: () => fR, isAliasSymbolDeclaration: () => QI, isAliasableExpression: () => k0, isAmbientModule: () => yf, isAmbientPropertyDeclaration: () => rk, isAnonymousFunctionDefinition: () => H_, isAnyDirectorySeparator: () => ay, isAnyImportOrBareOrAccessedRequire: () => ik, isAnyImportOrReExport: () => bf, isAnyImportSyntax: () => Qy, isAnySupportedFileExtension: () => ZM, isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey, isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess, isArray: () => ir, isArrayBindingElement: () => gP, isArrayBindingOrAssignmentElement: () => ZS, isArrayBindingOrAssignmentPattern: () => QS, isArrayBindingPattern: () => yR, isArrayLiteralExpression: () => Yl, isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern, isArrayTypeNode: () => F8, isArrowFunction: () => sd, isAsExpression: () => CR, isAssertClause: () => $R, isAssertEntry: () => KR, isAssertionExpression: () => PP, isAssertionKey: () => oP, isAssertsKeyword: () => _R, isAssignmentDeclaration: () => v0, isAssignmentExpression: () => ms, isAssignmentOperator: () => G_, isAssignmentPattern: () => KS, isAssignmentTarget: () => UI, isAsteriskToken: () => nR, isAsyncFunction: () => oN, isAsyncModifier: () => Ul, isAutoAccessorPropertyDeclaration: () => $S, isAwaitExpression: () => SR, isAwaitKeyword: () => cR, isBigIntLiteral: () => Uv, isBinaryExpression: () => ur, isBinaryOperatorToken: () => AJ, isBindableObjectDefinePropertyCall: () => S0, isBindableStaticAccessExpression: () => W_, isBindableStaticElementAccessExpression: () => x0, isBindableStaticNameExpression: () => V_, isBindingElement: () => Xl, isBindingElementOfBareOrAccessedRequire: () => mI, isBindingName: () => uP, isBindingOrAssignmentElement: () => yP, isBindingOrAssignmentPattern: () => vP, isBindingPattern: () => df, isBlock: () => Ql, isBlockOrCatchScoped: () => $D, isBlockScope: () => w3, isBlockScopedContainerTopLevel: () => ZD, isBooleanLiteral: () => pP, isBreakOrContinueStatement: () => YA, isBreakStatement: () => JR, isBuildInfoFile: () => isBuildInfoFile, isBuilderProgram: () => isBuilderProgram2, isBundle: () => cj, isBundleFileTextLike: () => XO, isCallChain: () => Cy, isCallExpression: () => sc, isCallExpressionTarget: () => isCallExpressionTarget, isCallLikeExpression: () => SP, isCallOrNewExpression: () => xP, isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget, isCallSignatureDeclaration: () => Vv, isCallToHelper: () => isCallToHelper, isCaseBlock: () => VR, isCaseClause: () => sj, isCaseKeyword: () => dR, isCaseOrDefaultClause: () => QP, isCatchClause: () => oj, isCatchClauseVariableDeclaration: () => Gx, isCatchClauseVariableDeclarationOrBindingElement: () => T3, isCheckJsEnabledForFile: () => eL, isChildOfNodeWithKind: () => Ak, isCircularBuildOrder: () => isCircularBuildOrder, isClassDeclaration: () => _c, isClassElement: () => Js, isClassExpression: () => _d, isClassLike: () => bi, isClassMemberModifier: () => VS, isClassOrTypeElement: () => mP, isClassStaticBlockDeclaration: () => Hl, isCollapsedRange: () => vO, isColonToken: () => iR, isCommaExpression: () => gd, isCommaListExpression: () => oc, isCommaSequence: () => zj, isCommaToken: () => I8, isComment: () => isComment, isCommonJsExportPropertyAssignment: () => p0, isCommonJsExportedExpression: () => Ok, isCompoundAssignment: () => isCompoundAssignment, isComputedNonLiteralName: () => ck, isComputedPropertyName: () => Ws, isConciseBody: () => MP, isConditionalExpression: () => xR, isConditionalTypeNode: () => V8, isConstTypeReference: () => jS, isConstructSignatureDeclaration: () => R8, isConstructorDeclaration: () => nc, isConstructorTypeNode: () => Gv, isContextualKeyword: () => N0, isContinueStatement: () => jR, isCustomPrologue: () => Tf, isDebuggerStatement: () => WR, isDeclaration: () => ko, isDeclarationBindingElement: () => Fy, isDeclarationFileName: () => QE, isDeclarationName: () => c4, isDeclarationNameOfEnumOrNamespace: () => IO, isDeclarationReadonly: () => Sk, isDeclarationStatement: () => VP, isDeclarationWithTypeParameterChildren: () => C3, isDeclarationWithTypeParameters: () => nk, isDecorator: () => zl, isDecoratorTarget: () => isDecoratorTarget, isDefaultClause: () => oE, isDefaultImport: () => Z3, isDefaultModifier: () => oR, isDefaultedExpandoInitializer: () => SI, isDeleteExpression: () => bR, isDeleteTarget: () => $I, isDeprecatedDeclaration: () => isDeprecatedDeclaration, isDestructuringAssignment: () => nO, isDiagnosticWithLocation: () => isDiagnosticWithLocation, isDiskPathRoot: () => H5, isDoStatement: () => OR, isDotDotDotToken: () => rR, isDottedName: () => ev, isDynamicName: () => M0, isESSymbolIdentifier: () => pN, isEffectiveExternalModule: () => Yy, isEffectiveModuleDeclaration: () => S3, isEffectiveStrictModeSourceFile: () => tk, isElementAccessChain: () => RS, isElementAccessExpression: () => gs, isEmittedFileOfProgram: () => isEmittedFileOfProgram, isEmptyArrayLiteral: () => _O, isEmptyBindingElement: () => pS, isEmptyBindingPattern: () => uS, isEmptyObjectLiteral: () => oO, isEmptyStatement: () => IR, isEmptyStringLiteral: () => j3, isEndOfDeclarationMarker: () => ej, isEntityName: () => lP, isEntityNameExpression: () => Bs, isEnumConst: () => Tk, isEnumDeclaration: () => i2, isEnumMember: () => cE, isEqualityOperatorKind: () => isEqualityOperatorKind, isEqualsGreaterThanToken: () => sR, isExclamationToken: () => rd, isExcludedFile: () => isExcludedFile, isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport, isExportAssignment: () => Vo, isExportDeclaration: () => cc, isExportModifier: () => N8, isExportName: () => Uj, isExportNamespaceAsDefaultDeclaration: () => b3, isExportOrDefaultModifier: () => DJ, isExportSpecifier: () => aE, isExportsIdentifier: () => H3, isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias, isExpression: () => mf, isExpressionNode: () => g0, isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration, isExpressionOfOptionalChainRoot: () => $A, isExpressionStatement: () => Zl, isExpressionWithTypeArguments: () => e2, isExpressionWithTypeArgumentsInClassExtendsClause: () => Z0, isExternalModule: () => Qo, isExternalModuleAugmentation: () => Xy, isExternalModuleImportEqualsDeclaration: () => B3, isExternalModuleIndicator: () => NP, isExternalModuleNameRelative: () => gA, isExternalModuleReference: () => ud, isExternalModuleSymbol: () => isExternalModuleSymbol, isExternalOrCommonJsModule: () => bk, isFileLevelUniqueName: () => m3, isFileProbablyExternalModule: () => ou, isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter, isFixablePromiseHandler: () => isFixablePromiseHandler, isForInOrOfStatement: () => OP, isForInStatement: () => LR, isForInitializer: () => RP, isForOfStatement: () => RR, isForStatement: () => eE, isFunctionBlock: () => O3, isFunctionBody: () => LP, isFunctionDeclaration: () => Wo, isFunctionExpression: () => ad, isFunctionExpressionOrArrowFunction: () => SL, isFunctionLike: () => ga, isFunctionLikeDeclaration: () => HS, isFunctionLikeKind: () => My, isFunctionLikeOrClassStaticBlockDeclaration: () => uf, isFunctionOrConstructorTypeNode: () => hP, isFunctionOrModuleBlock: () => fP, isFunctionSymbol: () => DI, isFunctionTypeNode: () => $l, isFutureReservedKeyword: () => tN, isGeneratedIdentifier: () => cs, isGeneratedPrivateIdentifier: () => Ny, isGetAccessor: () => Tl, isGetAccessorDeclaration: () => Gl, isGetOrSetAccessorDeclaration: () => GA, isGlobalDeclaration: () => isGlobalDeclaration, isGlobalScopeAugmentation: () => vf, isGrammarError: () => ND, isHeritageClause: () => ru, isHoistedFunction: () => _04, isHoistedVariableStatement: () => c0, isIdentifier: () => yt, isIdentifierANonContextualKeyword: () => iN, isIdentifierName: () => YI, isIdentifierOrThisTypeNode: () => aJ, isIdentifierPart: () => Rs, isIdentifierStart: () => Wn, isIdentifierText: () => vy, isIdentifierTypePredicate: () => Fk, isIdentifierTypeReference: () => pL, isIfStatement: () => NR, isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching, isImplicitGlob: () => Dx, isImportCall: () => s0, isImportClause: () => HR, isImportDeclaration: () => o2, isImportEqualsDeclaration: () => s2, isImportKeyword: () => M8, isImportMeta: () => o0, isImportOrExportSpecifier: () => aP, isImportOrExportSpecifierName: () => isImportOrExportSpecifierName, isImportSpecifier: () => nE, isImportTypeAssertionContainer: () => GR, isImportTypeNode: () => Kl, isImportableFile: () => isImportableFile, isInComment: () => isInComment, isInExpressionContext: () => J3, isInJSDoc: () => q3, isInJSFile: () => Pr, isInJSXText: () => isInJSXText, isInJsonFile: () => pI, isInNonReferenceComment: () => isInNonReferenceComment, isInReferenceComment: () => isInReferenceComment, isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration, isInString: () => isInString, isInTemplateString: () => isInTemplateString, isInTopLevelContext: () => Kk, isIncrementalCompilation: () => wM, isIndexSignatureDeclaration: () => Hv, isIndexedAccessTypeNode: () => $8, isInferTypeNode: () => H8, isInfinityOrNaNString: () => bL, isInitializedProperty: () => isInitializedProperty, isInitializedVariable: () => lx, isInsideJsxElement: () => isInsideJsxElement, isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute, isInsideNodeModules: () => isInsideNodeModules, isInsideTemplateLiteral: () => isInsideTemplateLiteral, isInstantiatedModule: () => isInstantiatedModule, isInterfaceDeclaration: () => eu, isInternalDeclaration: () => isInternalDeclaration, isInternalModuleImportEqualsDeclaration: () => lI, isInternalName: () => qj, isIntersectionTypeNode: () => W8, isIntrinsicJsxName: () => P4, isIterationStatement: () => n3, isJSDoc: () => Ho, isJSDocAllType: () => dj, isJSDocAugmentsTag: () => md, isJSDocAuthorTag: () => bj, isJSDocCallbackTag: () => Tj, isJSDocClassTag: () => pE, isJSDocCommentContainingNode: () => c3, isJSDocConstructSignature: () => MI, isJSDocDeprecatedTag: () => v2, isJSDocEnumTag: () => dE, isJSDocFunctionType: () => dd, isJSDocImplementsTag: () => hE, isJSDocIndexSignature: () => dI, isJSDocLikeText: () => LE, isJSDocLink: () => uj, isJSDocLinkCode: () => pj, isJSDocLinkLike: () => Sl, isJSDocLinkPlain: () => fj, isJSDocMemberName: () => uc, isJSDocNameReference: () => fd, isJSDocNamepathType: () => vj, isJSDocNamespaceBody: () => FP, isJSDocNode: () => Uy, isJSDocNonNullableType: () => hj, isJSDocNullableType: () => uE, isJSDocOptionalParameter: () => Zx, isJSDocOptionalType: () => gj, isJSDocOverloadTag: () => y2, isJSDocOverrideTag: () => fE, isJSDocParameterTag: () => pc, isJSDocPrivateTag: () => m2, isJSDocPropertyLikeTag: () => Dy, isJSDocPropertyTag: () => wj, isJSDocProtectedTag: () => h2, isJSDocPublicTag: () => d2, isJSDocReadonlyTag: () => g2, isJSDocReturnTag: () => b2, isJSDocSatisfiesExpression: () => IL, isJSDocSatisfiesTag: () => T2, isJSDocSeeTag: () => Sj, isJSDocSignature: () => iu, isJSDocTag: () => zy, isJSDocTemplateTag: () => Go, isJSDocThisTag: () => mE, isJSDocThrowsTag: () => Cj, isJSDocTypeAlias: () => Cl, isJSDocTypeAssertion: () => xE, isJSDocTypeExpression: () => lE, isJSDocTypeLiteral: () => f2, isJSDocTypeTag: () => au, isJSDocTypedefTag: () => xj, isJSDocUnknownTag: () => Ej, isJSDocUnknownType: () => mj, isJSDocVariadicType: () => yj, isJSXTagName: () => xf, isJsonEqual: () => gv, isJsonSourceFile: () => a0, isJsxAttribute: () => nj, isJsxAttributeLike: () => XP, isJsxAttributes: () => p2, isJsxChild: () => o3, isJsxClosingElement: () => sE, isJsxClosingFragment: () => rj, isJsxElement: () => l2, isJsxExpression: () => aj, isJsxFragment: () => pd, isJsxOpeningElement: () => tu, isJsxOpeningFragment: () => u2, isJsxOpeningLikeElement: () => _3, isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName, isJsxSelfClosingElement: () => tj, isJsxSpreadAttribute: () => ij, isJsxTagNameExpression: () => KP, isJsxText: () => td, isJumpStatementTarget: () => isJumpStatementTarget, isKeyword: () => ba, isKnownSymbol: () => lN, isLabelName: () => isLabelName, isLabelOfLabeledStatement: () => isLabelOfLabeledStatement, isLabeledStatement: () => tE, isLateVisibilityPaintedStatement: () => ak, isLeftHandSideExpression: () => Do, isLeftHandSideOfAssignment: () => rO, isLet: () => xk, isLineBreak: () => un, isLiteralComputedPropertyDeclarationName: () => l4, isLiteralExpression: () => Iy, isLiteralExpressionOfObject: () => rP, isLiteralImportTypeNode: () => k3, isLiteralKind: () => ky, isLiteralLikeAccess: () => wf, isLiteralLikeElementAccess: () => wl, isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess, isLiteralTypeLikeExpression: () => cJ, isLiteralTypeLiteral: () => CP, isLiteralTypeNode: () => Yv, isLocalName: () => E2, isLogicalOperator: () => ZN, isLogicalOrCoalescingAssignmentExpression: () => eO, isLogicalOrCoalescingAssignmentOperator: () => jf, isLogicalOrCoalescingBinaryExpression: () => tO, isLogicalOrCoalescingBinaryOperator: () => Z4, isMappedTypeNode: () => K8, isMemberName: () => js, isMergeDeclarationMarker: () => ZR, isMetaProperty: () => t22, isMethodDeclaration: () => Vl, isMethodOrAccessor: () => Ly, isMethodSignature: () => L8, isMinusToken: () => Wv, isMissingDeclaration: () => YR, isModifier: () => Oy, isModifierKind: () => Wi, isModifierLike: () => ff, isModuleAugmentationExternal: () => x3, isModuleBlock: () => rE, isModuleBody: () => jP, isModuleDeclaration: () => Ea, isModuleExportsAccessExpression: () => T0, isModuleIdentifier: () => G3, isModuleName: () => _J, isModuleOrEnumDeclaration: () => qP, isModuleReference: () => $P, isModuleSpecifierLike: () => isModuleSpecifierLike, isModuleWithStringLiteralName: () => KD, isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration, isNameOfModuleDeclaration: () => isNameOfModuleDeclaration, isNamedClassElement: () => dP, isNamedDeclaration: () => af, isNamedEvaluation: () => fN, isNamedEvaluationSource: () => S4, isNamedExportBindings: () => QA, isNamedExports: () => iE, isNamedImportBindings: () => BP, isNamedImports: () => XR, isNamedImportsOrExports: () => YO, isNamedTupleMember: () => $v, isNamespaceBody: () => JP, isNamespaceExport: () => ld, isNamespaceExportDeclaration: () => a22, isNamespaceImport: () => _2, isNamespaceReexportDeclaration: () => oI, isNewExpression: () => X8, isNewExpressionTarget: () => isNewExpressionTarget, isNightly: () => PN, isNoSubstitutionTemplateLiteral: () => k8, isNode: () => eP, isNodeArray: () => _s, isNodeArrayMultiLine: () => AO, isNodeDescendantOf: () => KI, isNodeKind: () => gl, isNodeLikeSystem: () => M5, isNodeModulesDirectory: () => aA, isNodeWithPossibleHoistedDeclaration: () => zI, isNonContextualKeyword: () => y4, isNonExportDefaultModifier: () => kJ, isNonGlobalAmbientModule: () => XD, isNonGlobalDeclaration: () => isNonGlobalDeclaration, isNonNullAccess: () => kL, isNonNullChain: () => JS, isNonNullExpression: () => Uo, isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName, isNotEmittedOrPartiallyEmittedNode: () => DP, isNotEmittedStatement: () => c2, isNullishCoalesce: () => XA, isNumber: () => gi, isNumericLiteral: () => zs, isNumericLiteralName: () => $x, isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName, isObjectBindingOrAssignmentElement: () => YS, isObjectBindingOrAssignmentPattern: () => XS, isObjectBindingPattern: () => gR, isObjectLiteralElement: () => Wy, isObjectLiteralElementLike: () => jy, isObjectLiteralExpression: () => Hs, isObjectLiteralMethod: () => jk, isObjectLiteralOrClassExpressionMethodOrAccessor: () => Jk, isObjectTypeDeclaration: () => $O, isOctalDigit: () => hy, isOmittedExpression: () => cd, isOptionalChain: () => Ay, isOptionalChainRoot: () => Py, isOptionalDeclaration: () => DL, isOptionalJSDocPropertyLikeTag: () => Yx, isOptionalTypeNode: () => q8, isOuterExpression: () => yd, isOutermostOptionalChain: () => KA, isOverrideModifier: () => pR, isPackedArrayLiteral: () => hL, isParameter: () => Vs, isParameterDeclaration: () => mN, isParameterOrCatchClauseVariable: () => TL, isParameterPropertyDeclaration: () => lS, isParameterPropertyModifier: () => WS, isParenthesizedExpression: () => qo, isParenthesizedTypeNode: () => Kv, isParseTreeNode: () => pl, isPartOfTypeNode: () => l0, isPartOfTypeQuery: () => F3, isPartiallyEmittedExpression: () => Z8, isPatternMatch: () => z1, isPinnedComment: () => v3, isPlainJsFile: () => PD, isPlusToken: () => zv, isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition, isPostfixUnaryExpression: () => Q8, isPrefixUnaryExpression: () => od, isPrivateIdentifier: () => vn, isPrivateIdentifierClassElementDeclaration: () => zS, isPrivateIdentifierPropertyAccessExpression: () => cP, isPrivateIdentifierSymbol: () => uN, isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo, isProgramUptoDate: () => isProgramUptoDate, isPrologueDirective: () => us, isPropertyAccessChain: () => LS, isPropertyAccessEntityNameExpression: () => rx, isPropertyAccessExpression: () => bn, isPropertyAccessOrQualifiedName: () => TP, isPropertyAccessOrQualifiedNameOrImportTypeNode: () => bP, isPropertyAssignment: () => lc, isPropertyDeclaration: () => Bo, isPropertyName: () => vl, isPropertyNameLiteral: () => L0, isPropertySignature: () => Wl, isProtoSetter: () => T4, isPrototypeAccess: () => Nl, isPrototypePropertyAssignment: () => CI, isPunctuation: () => isPunctuation, isPushOrUnshiftIdentifier: () => dN, isQualifiedName: () => rc, isQuestionDotToken: () => aR, isQuestionOrExclamationToken: () => iJ, isQuestionOrPlusOrMinusToken: () => oJ, isQuestionToken: () => ql, isRawSourceMap: () => isRawSourceMap, isReadonlyKeyword: () => O8, isReadonlyKeywordOrPlusOrMinusToken: () => sJ, isRecognizedTripleSlashComment: () => jD, isReferenceFileLocation: () => isReferenceFileLocation, isReferencedFile: () => isReferencedFile, isRegularExpressionLiteral: () => QL, isRequireCall: () => El, isRequireVariableStatement: () => W3, isRestParameter: () => u3, isRestTypeNode: () => U8, isReturnStatement: () => FR, isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler, isRightSideOfAccessExpression: () => nx, isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess, isRightSideOfQualifiedName: () => isRightSideOfQualifiedName, isRightSideOfQualifiedNameOrPropertyAccess: () => aO, isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => sO, isRootedDiskPath: () => A_, isSameEntityName: () => z_, isSatisfiesExpression: () => AR, isScopeMarker: () => i3, isSemicolonClassElement: () => kR, isSetAccessor: () => bl, isSetAccessorDeclaration: () => ic, isShebangTrivia: () => gy, isShorthandAmbientModuleSymbol: () => YD, isShorthandPropertyAssignment: () => nu, isSignedNumericLiteral: () => O0, isSimpleCopiableExpression: () => isSimpleCopiableExpression, isSimpleInlineableExpression: () => isSimpleInlineableExpression, isSingleOrDoubleQuote: () => hI, isSourceFile: () => wi, isSourceFileFromLibrary: () => isSourceFileFromLibrary, isSourceFileJS: () => y0, isSourceFileNotJS: () => uI, isSourceFileNotJson: () => fI, isSourceMapping: () => isSourceMapping, isSpecialPropertyDeclaration: () => AI, isSpreadAssignment: () => _E, isSpreadElement: () => Zv, isStatement: () => a3, isStatementButNotDeclaration: () => HP, isStatementOrBlock: () => s3, isStatementWithLocals: () => DD, isStatic: () => G0, isStaticModifier: () => lR, isString: () => Ji, isStringAKeyword: () => nN, isStringANonContextualKeyword: () => rN, isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection, isStringDoubleQuoted: () => gI, isStringLiteral: () => Gn, isStringLiteralLike: () => Ti, isStringLiteralOrJsxExpression: () => YP, isStringLiteralOrTemplate: () => isStringLiteralOrTemplate, isStringOrNumericLiteralLike: () => Ta, isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral, isStringTextContainingNode: () => _P, isSuperCall: () => Ek, isSuperKeyword: () => nd, isSuperOrSuperProperty: () => Zk, isSuperProperty: () => Sf, isSupportedSourceFileName: () => GM, isSwitchStatement: () => qR, isSyntaxList: () => Aj, isSyntheticExpression: () => PR, isSyntheticReference: () => QR, isTagName: () => isTagName, isTaggedTemplateExpression: () => Y8, isTaggedTemplateTag: () => isTaggedTemplateTag, isTemplateExpression: () => ER, isTemplateHead: () => ZL, isTemplateLiteral: () => EP, isTemplateLiteralKind: () => yl, isTemplateLiteralToken: () => nP, isTemplateLiteralTypeNode: () => hR, isTemplateLiteralTypeSpan: () => mR, isTemplateMiddle: () => eR, isTemplateMiddleOrTemplateTail: () => iP, isTemplateSpan: () => DR, isTemplateTail: () => tR, isTextWhiteSpaceLike: () => isTextWhiteSpaceLike, isThis: () => isThis, isThisContainerOrFunctionBlock: () => $k, isThisIdentifier: () => Mf, isThisInTypeQuery: () => qN, isThisInitializedDeclaration: () => tI, isThisInitializedObjectBindingExpression: () => rI, isThisProperty: () => eI, isThisTypeNode: () => Xv, isThisTypeParameter: () => Kx, isThisTypePredicate: () => Bk, isThrowStatement: () => UR, isToken: () => tP, isTokenKind: () => BS, isTraceEnabled: () => isTraceEnabled, isTransientSymbol: () => $y, isTrivia: () => aN, isTryStatement: () => zR, isTupleTypeNode: () => B8, isTypeAlias: () => LI, isTypeAliasDeclaration: () => n2, isTypeAssertionExpression: () => vR, isTypeDeclaration: () => Xx, isTypeElement: () => Ry, isTypeKeyword: () => isTypeKeyword, isTypeKeywordToken: () => isTypeKeywordToken, isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier, isTypeLiteralNode: () => id, isTypeNode: () => Jy, isTypeNodeKind: () => hx, isTypeOfExpression: () => TR, isTypeOnlyExportDeclaration: () => US, isTypeOnlyImportDeclaration: () => qS, isTypeOnlyImportOrExportDeclaration: () => sP, isTypeOperatorNode: () => G8, isTypeParameterDeclaration: () => Fo, isTypePredicateNode: () => j8, isTypeQueryNode: () => J8, isTypeReferenceNode: () => ac, isTypeReferenceType: () => tD, isUMDExportSymbol: () => VO, isUnaryExpression: () => t32, isUnaryExpressionWithWrite: () => wP, isUnicodeIdentifierStart: () => UT, isUnionTypeNode: () => z8, isUnparsedNode: () => ZA, isUnparsedPrepend: () => _j, isUnparsedSource: () => lj, isUnparsedTextLike: () => FS, isUrl: () => V5, isValidBigIntString: () => zx, isValidESSymbolDeclaration: () => Mk, isValidTypeOnlyAliasUseSite: () => _L, isValueSignatureDeclaration: () => WI, isVarConst: () => D3, isVariableDeclaration: () => Vi, isVariableDeclarationInVariableStatement: () => N3, isVariableDeclarationInitializedToBareOrAccessedRequire: () => Ef, isVariableDeclarationInitializedToRequire: () => U3, isVariableDeclarationList: () => r2, isVariableLike: () => u0, isVariableLikeOrAccessor: () => Nk, isVariableStatement: () => zo, isVoidExpression: () => Qv, isWatchSet: () => OO, isWhileStatement: () => MR, isWhiteSpaceLike: () => os, isWhiteSpaceSingleLine: () => N_, isWithStatement: () => BR, isWriteAccess: () => FO, isWriteOnlyAccess: () => JO, isYieldExpression: () => wR, jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport, keywordPart: () => keywordPart, last: () => Zn, lastOrUndefined: () => Cn, length: () => I, libMap: () => libMap, libs: () => libs, lineBreakPart: () => lineBreakPart, linkNamePart: () => linkNamePart, linkPart: () => linkPart, linkTextPart: () => linkTextPart, listFiles: () => listFiles, loadModuleFromGlobalCache: () => loadModuleFromGlobalCache, loadWithModeAwareCache: () => loadWithModeAwareCache, makeIdentifierFromModuleName: () => GD, makeImport: () => makeImport, makeImportIfNecessary: () => makeImportIfNecessary, makeStringLiteral: () => makeStringLiteral, mangleScopedPackageName: () => mangleScopedPackageName, map: () => Ze, mapAllOrFail: () => Pt, mapDefined: () => qt, mapDefinedEntries: () => Ri, mapDefinedIterator: () => Zr, mapEntries: () => be, mapIterator: () => st, mapOneOrMany: () => mapOneOrMany, mapToDisplayParts: () => mapToDisplayParts, matchFiles: () => qM, matchPatternOrExact: () => tL, matchedText: () => S5, matchesExclude: () => matchesExclude, maybeBind: () => le, maybeSetLocalizedDiagnosticMessages: () => vx, memoize: () => tl, memoizeCached: () => D1, memoizeOne: () => An, memoizeWeak: () => P1, metadataHelper: () => metadataHelper, min: () => N1, minAndMax: () => nL, missingFileModifiedTime: () => missingFileModifiedTime, modifierToFlag: () => Q0, modifiersToFlags: () => Vn, moduleOptionDeclaration: () => moduleOptionDeclaration, moduleResolutionIsEqualTo: () => TD, moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter, moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations, moduleResolutionSupportsPackageJsonExportsAndImports: () => _v, moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules, moduleSpecifiers: () => ts_moduleSpecifiers_exports, moveEmitHelpers: () => moveEmitHelpers, moveRangeEnd: () => gO, moveRangePastDecorators: () => _x, moveRangePastModifiers: () => yO, moveRangePos: () => Ff, moveSyntheticComments: () => moveSyntheticComments, mutateMap: () => UO, mutateMapSkippingNewValues: () => fx, needsParentheses: () => needsParentheses, needsScopeMarker: () => IP, newCaseClauseTracker: () => newCaseClauseTracker, newPrivateEnvironment: () => newPrivateEnvironment, noEmitNotification: () => noEmitNotification, noEmitSubstitution: () => noEmitSubstitution, noTransformers: () => noTransformers, noTruncationMaximumTruncationLength: () => n8, nodeCanBeDecorated: () => R3, nodeHasName: () => hS, nodeIsDecorated: () => q_, nodeIsMissing: () => va, nodeIsPresent: () => xl, nodeIsSynthesized: () => fs, nodeModuleNameResolver: () => nodeModuleNameResolver, nodeModulesPathPart: () => nodeModulesPathPart, nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver, nodeOrChildIsDecorated: () => m0, nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd, nodePosToString: () => ID, nodeSeenTracker: () => nodeSeenTracker, nodeStartsNewLexicalEnvironment: () => hN, nodeToDisplayParts: () => nodeToDisplayParts, noop: () => yn, noopFileWatcher: () => noopFileWatcher, noopPush: () => CT, normalizePath: () => Un, normalizeSlashes: () => Eo, not: () => w5, notImplemented: () => A1, notImplementedResolver: () => notImplementedResolver, nullNodeConverters: () => nullNodeConverters, nullParenthesizerRules: () => Jv, nullTransformationContext: () => nullTransformationContext, objectAllocator: () => lr, operatorPart: () => operatorPart, optionDeclarations: () => optionDeclarations, optionMapToObject: () => optionMapToObject, optionsAffectingProgramStructure: () => optionsAffectingProgramStructure, optionsForBuild: () => optionsForBuild, optionsForWatch: () => optionsForWatch, optionsHaveChanges: () => J_, optionsHaveModuleResolutionChanges: () => p3, or: () => W1, orderedRemoveItem: () => J, orderedRemoveItemAt: () => vT, outFile: () => B0, packageIdToPackageName: () => f3, packageIdToString: () => xD, padLeft: () => D5, padRight: () => k5, paramHelper: () => paramHelper, parameterIsThisKeyword: () => kl, parameterNamePart: () => parameterNamePart, parseBaseNodeFactory: () => I2, parseBigInt: () => oL, parseBuildCommand: () => parseBuildCommand, parseCommandLine: () => parseCommandLine, parseCommandLineWorker: () => parseCommandLineWorker, parseConfigFileTextToJson: () => parseConfigFileTextToJson, parseConfigFileWithSystem: () => parseConfigFileWithSystem, parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike, parseCustomTypeOption: () => parseCustomTypeOption, parseIsolatedEntityName: () => $J, parseIsolatedJSDocComment: () => XJ, parseJSDocTypeExpressionForTests: () => YJ, parseJsonConfigFileContent: () => parseJsonConfigFileContent, parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent, parseJsonText: () => KJ, parseListTypeOption: () => parseListTypeOption, parseNodeFactory: () => dc, parseNodeModuleFromPath: () => parseNodeModuleFromPath, parsePackageName: () => parsePackageName, parsePseudoBigInt: () => Hf, parseValidBigInt: () => Ux, patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory, pathContainsNodeModules: () => pathContainsNodeModules, pathIsAbsolute: () => sy, pathIsBareSpecifier: () => G5, pathIsRelative: () => So, patternText: () => T5, perfLogger: () => Dp, performIncrementalCompilation: () => performIncrementalCompilation, performance: () => ts_performance_exports, plainJSErrors: () => plainJSErrors, positionBelongsToNode: () => positionBelongsToNode, positionIsASICandidate: () => positionIsASICandidate, positionIsSynthesized: () => hs, positionsAreOnSameLine: () => $_, preProcessFile: () => preProcessFile, probablyUsesSemicolons: () => probablyUsesSemicolons, processCommentPragmas: () => ZE, processPragmasIntoFields: () => e7, processTaggedTemplateExpression: () => processTaggedTemplateExpression, programContainsEsModules: () => programContainsEsModules, programContainsModules: () => programContainsModules, projectReferenceIsEqualTo: () => bD, propKeyHelper: () => propKeyHelper, propertyNamePart: () => propertyNamePart, pseudoBigIntToString: () => yv, punctuationPart: () => punctuationPart, pushIfUnique: () => qn, quote: () => quote, quotePreferenceFromString: () => quotePreferenceFromString, rangeContainsPosition: () => rangeContainsPosition, rangeContainsPositionExclusive: () => rangeContainsPositionExclusive, rangeContainsRange: () => rangeContainsRange, rangeContainsRangeExclusive: () => rangeContainsRangeExclusive, rangeContainsStartEnd: () => rangeContainsStartEnd, rangeEndIsOnSameLineAsRangeStart: () => EO, rangeEndPositionsAreOnSameLine: () => xO, rangeEquals: () => Kc, rangeIsOnSingleLine: () => TO, rangeOfNode: () => iL, rangeOfTypeParameters: () => aL, rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd, rangeStartIsOnSameLineAsRangeEnd: () => cx, rangeStartPositionsAreOnSameLine: () => SO, readBuilderProgram: () => readBuilderProgram, readConfigFile: () => readConfigFile, readHelper: () => readHelper, readJson: () => hO, readJsonConfigFile: () => readJsonConfigFile, readJsonOrUndefined: () => ax, realizeDiagnostics: () => realizeDiagnostics, reduceEachLeadingCommentRange: () => zT, reduceEachTrailingCommentRange: () => WT, reduceLeft: () => Qa, reduceLeftIterator: () => K, reducePathComponents: () => is2, refactor: () => ts_refactor_exports, regExpEscape: () => JM, relativeComplement: () => h_, removeAllComments: () => removeAllComments, removeEmitHelper: () => removeEmitHelper, removeExtension: () => Fx, removeFileExtension: () => Ll, removeIgnoredPath: () => removeIgnoredPath, removeMinAndVersionNumbers: () => q1, removeOptionality: () => removeOptionality, removePrefix: () => x5, removeSuffix: () => F1, removeTrailingDirectorySeparator: () => P_, repeatString: () => repeatString, replaceElement: () => ei, resolutionExtensionIsTSOrJson: () => YM, resolveConfigFileProjectName: () => resolveConfigFileProjectName, resolveJSModule: () => resolveJSModule, resolveModuleName: () => resolveModuleName, resolveModuleNameFromCache: () => resolveModuleNameFromCache, resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson, resolvePath: () => oy, resolveProjectReferencePath: () => resolveProjectReferencePath, resolveTripleslashReference: () => resolveTripleslashReference, resolveTypeReferenceDirective: () => resolveTypeReferenceDirective, resolvingEmptyArray: () => t82, restHelper: () => restHelper, returnFalse: () => w_, returnNoopFileWatcher: () => returnNoopFileWatcher, returnTrue: () => vp, returnUndefined: () => C1, returnsPromise: () => returnsPromise, runInitializersHelper: () => runInitializersHelper, sameFlatMap: () => at, sameMap: () => tt, sameMapping: () => sameMapping, scanShebangTrivia: () => yy, scanTokenAtPosition: () => yk, scanner: () => Zo, screenStartingMessageCodes: () => screenStartingMessageCodes, semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations, serializeCompilerOptions: () => serializeCompilerOptions, server: () => ts_server_exports, servicesVersion: () => E7, setCommentRange: () => setCommentRange, setConfigFileInOptions: () => setConfigFileInOptions, setConstantValue: () => setConstantValue, setEachParent: () => Q_, setEmitFlags: () => setEmitFlags, setFunctionNameHelper: () => setFunctionNameHelper, setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned, setIdentifierAutoGenerate: () => setIdentifierAutoGenerate, setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference, setIdentifierTypeArguments: () => setIdentifierTypeArguments, setInternalEmitFlags: () => setInternalEmitFlags, setLocalizedDiagnosticMessages: () => yx, setModuleDefaultHelper: () => setModuleDefaultHelper, setNodeFlags: () => dL, setObjectAllocator: () => gx, setOriginalNode: () => Dn, setParent: () => Sa, setParentRecursive: () => Vx, setPrivateIdentifier: () => setPrivateIdentifier, setResolvedModule: () => gD, setResolvedTypeReferenceDirective: () => yD, setSnippetElement: () => setSnippetElement, setSourceMapRange: () => setSourceMapRange, setStackTraceLimit: () => setStackTraceLimit, setStartsOnNewLine: () => setStartsOnNewLine, setSyntheticLeadingComments: () => setSyntheticLeadingComments, setSyntheticTrailingComments: () => setSyntheticTrailingComments, setSys: () => setSys, setSysLog: () => setSysLog, setTextRange: () => Rt, setTextRangeEnd: () => Wx, setTextRangePos: () => Gf, setTextRangePosEnd: () => Us, setTextRangePosWidth: () => $f, setTokenSourceMapRange: () => setTokenSourceMapRange, setTypeNode: () => setTypeNode, setUILocale: () => xp, setValueDeclaration: () => PI, shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension, shouldPreserveConstEnums: () => EM, shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules, showModuleSpecifier: () => HO, signatureHasLiteralTypes: () => signatureHasLiteralTypes, signatureHasRestParameter: () => signatureHasRestParameter, signatureToDisplayParts: () => signatureToDisplayParts, single: () => Yc, singleElementArray: () => Cp, singleIterator: () => Ka, singleOrMany: () => mo, singleOrUndefined: () => Xa, skipAlias: () => RO, skipAssertions: () => Hj, skipConstraint: () => skipConstraint, skipOuterExpressions: () => $o, skipParentheses: () => Pl, skipPartiallyEmittedExpressions: () => lf, skipTrivia: () => Ar, skipTypeChecking: () => sL, skipTypeParentheses: () => GI, skipWhile: () => N5, sliceAfter: () => rL, some: () => Ke, sort: () => Is2, sortAndDeduplicate: () => uo, sortAndDeduplicateDiagnostics: () => yA, sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions, sourceFileMayBeEmitted: () => q0, sourceMapCommentRegExp: () => sourceMapCommentRegExp, sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart, spacePart: () => spacePart, spanMap: () => co, spreadArrayHelper: () => spreadArrayHelper, stableSort: () => Ns, startEndContainsRange: () => startEndContainsRange, startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd, startOnNewLine: () => vd, startTracing: () => startTracing, startsWith: () => Pn, startsWithDirectory: () => rA, startsWithUnderscore: () => startsWithUnderscore, startsWithUseStrict: () => SE, stringContains: () => Fi, stringContainsAt: () => stringContainsAt, stringToToken: () => _l, stripQuotes: () => CN, supportedDeclarationExtensions: () => Rv, supportedJSExtensions: () => Mv, supportedJSExtensionsFlat: () => Lv, supportedLocaleDirectories: () => Hy, supportedTSExtensions: () => Jo, supportedTSExtensionsFlat: () => Ov, supportedTSImplementationExtensions: () => b8, suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia, suppressLeadingTrivia: () => suppressLeadingTrivia, suppressTrailingTrivia: () => suppressTrailingTrivia, symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault, symbolName: () => rf, symbolNameNoDefault: () => symbolNameNoDefault, symbolPart: () => symbolPart, symbolToDisplayParts: () => symbolToDisplayParts, syntaxMayBeASICandidate: () => syntaxMayBeASICandidate, syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI, sys: () => iy, sysLog: () => sysLog, tagNamesAreEquivalent: () => Hi, takeWhile: () => I5, targetOptionDeclaration: () => targetOptionDeclaration, templateObjectHelper: () => templateObjectHelper, testFormatSettings: () => testFormatSettings, textChangeRangeIsUnchanged: () => cS, textChangeRangeNewSpan: () => R_, textChanges: () => ts_textChanges_exports, textOrKeywordPart: () => textOrKeywordPart, textPart: () => textPart, textRangeContainsPositionInclusive: () => bA, textSpanContainsPosition: () => vA, textSpanContainsTextSpan: () => TA, textSpanEnd: () => Ir, textSpanIntersection: () => _S, textSpanIntersectsWith: () => EA, textSpanIntersectsWithPosition: () => wA, textSpanIntersectsWithTextSpan: () => xA, textSpanIsEmpty: () => sS, textSpanOverlap: () => oS, textSpanOverlapsWith: () => SA, textSpansEqual: () => textSpansEqual, textToKeywordObj: () => cl, timestamp: () => ts, toArray: () => en, toBuilderFileEmit: () => toBuilderFileEmit, toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit, toEditorSettings: () => lu, toFileNameLowerCase: () => Tp, toLowerCase: () => bp, toPath: () => Ui, toProgramEmitPending: () => toProgramEmitPending, tokenIsIdentifierOrKeyword: () => fr, tokenIsIdentifierOrKeywordOrGreaterThan: () => qT, tokenToString: () => Br, trace: () => trace, tracing: () => rs, tracingEnabled: () => tracingEnabled, transform: () => transform, transformClassFields: () => transformClassFields, transformDeclarations: () => transformDeclarations, transformECMAScriptModule: () => transformECMAScriptModule, transformES2015: () => transformES2015, transformES2016: () => transformES2016, transformES2017: () => transformES2017, transformES2018: () => transformES2018, transformES2019: () => transformES2019, transformES2020: () => transformES2020, transformES2021: () => transformES2021, transformES5: () => transformES5, transformESDecorators: () => transformESDecorators, transformESNext: () => transformESNext, transformGenerators: () => transformGenerators, transformJsx: () => transformJsx, transformLegacyDecorators: () => transformLegacyDecorators, transformModule: () => transformModule, transformNodeModule: () => transformNodeModule, transformNodes: () => transformNodes, transformSystemModule: () => transformSystemModule, transformTypeScript: () => transformTypeScript, transpile: () => transpile, transpileModule: () => transpileModule, transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions, trimString: () => Pp, trimStringEnd: () => X1, trimStringStart: () => nl, tryAddToSet: () => ua, tryAndIgnoreErrors: () => tryAndIgnoreErrors, tryCast: () => ln, tryDirectoryExists: () => tryDirectoryExists, tryExtractTSExtension: () => uO, tryFileExists: () => tryFileExists, tryGetClassExtendingExpressionWithTypeArguments: () => ex, tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => tx, tryGetDirectories: () => tryGetDirectories, tryGetExtensionFromPath: () => hv, tryGetImportFromModuleSpecifier: () => Y3, tryGetJSDocSatisfiesTypeNode: () => e8, tryGetModuleNameFromFile: () => CE, tryGetModuleSpecifierFromDeclaration: () => kI, tryGetNativePerformanceHooks: () => J5, tryGetPropertyAccessOrIdentifierToString: () => tv, tryGetPropertyNameOfBindingOrAssignmentElement: () => PE, tryGetSourceMappingURL: () => tryGetSourceMappingURL, tryGetTextOfPropertyName: () => e0, tryIOAndConsumeErrors: () => tryIOAndConsumeErrors, tryParsePattern: () => Bx, tryParsePatterns: () => XM, tryParseRawSourceMap: () => tryParseRawSourceMap, tryReadDirectory: () => tryReadDirectory, tryReadFile: () => tryReadFile, tryRemoveDirectoryPrefix: () => jM, tryRemoveExtension: () => Jx, tryRemovePrefix: () => ST, tryRemoveSuffix: () => B1, typeAcquisitionDeclarations: () => typeAcquisitionDeclarations, typeAliasNamePart: () => typeAliasNamePart, typeDirectiveIsEqualTo: () => ED, typeKeywords: () => typeKeywords, typeParameterNamePart: () => typeParameterNamePart, typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter, typeToDisplayParts: () => typeToDisplayParts, unchangedPollThresholds: () => unchangedPollThresholds, unchangedTextChangeRange: () => Vy, unescapeLeadingUnderscores: () => dl, unmangleScopedPackageName: () => unmangleScopedPackageName, unorderedRemoveItem: () => bT, unorderedRemoveItemAt: () => U1, unreachableCodeIsError: () => yM, unusedLabelIsError: () => vM, unwrapInnermostStatementOfLabel: () => Rk, updateErrorForNoInputFiles: () => updateErrorForNoInputFiles, updateLanguageServiceSourceFile: () => T7, updateMissingFilePathsWatch: () => updateMissingFilePathsWatch, updatePackageJsonWatch: () => updatePackageJsonWatch, updateResolutionField: () => updateResolutionField, updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher, updateSourceFile: () => k2, updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories, usesExtensionsOnImports: () => Rx, usingSingleLineStringWriter: () => mD, utf16EncodeAsString: () => by, validateLocaleAndSetLanguage: () => DA, valuesHelper: () => valuesHelper, version: () => C, versionMajorMinor: () => m, visitArray: () => visitArray, visitCommaListElements: () => visitCommaListElements, visitEachChild: () => visitEachChild, visitFunctionBody: () => visitFunctionBody, visitIterationBody: () => visitIterationBody, visitLexicalEnvironment: () => visitLexicalEnvironment, visitNode: () => visitNode, visitNodes: () => visitNodes2, visitParameterList: () => visitParameterList, walkUpBindingElementsAndPatterns: () => fS, walkUpLexicalEnvironments: () => walkUpLexicalEnvironments, walkUpOuterExpressions: () => Vj, walkUpParenthesizedExpressions: () => D0, walkUpParenthesizedTypes: () => VI, walkUpParenthesizedTypesAndGetParentAndChild: () => HI, whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp, writeCommentRange: () => $N, writeFile: () => jN, writeFileEnsuringDirectories: () => JN, zipToModeAwareCache: () => zipToModeAwareCache, zipWith: () => ce });
|
|
162350
162360
|
var R7 = D({ "src/typescript/_namespaces/ts.ts"() {
|
|
162351
162361
|
"use strict";
|
|
162352
162362
|
nn(), l7(), L2(), FB();
|
|
@@ -170862,9 +170872,9 @@ var require_parser_espree = __commonJS({
|
|
|
170862
170872
|
return "Symbol(" + (a2 === void 0 ? "" : a2) + ")_" + cu(++hu + lu, 36);
|
|
170863
170873
|
};
|
|
170864
170874
|
});
|
|
170865
|
-
var ss = C((Ol,
|
|
170875
|
+
var ss = C((Ol, is2) => {
|
|
170866
170876
|
var pu = oe(), fu = jt(), Zi = be(), du = qt(), es = Dt(), rs = Nt(), De = fu("wks"), we = pu.Symbol, ts = we && we.for, mu = rs ? we : we && we.withoutSetter || du;
|
|
170867
|
-
|
|
170877
|
+
is2.exports = function(a2) {
|
|
170868
170878
|
if (!Zi(De, a2) || !(es || typeof De[a2] == "string")) {
|
|
170869
170879
|
var u = "Symbol." + a2;
|
|
170870
170880
|
es && Zi(we, a2) ? De[a2] = we[a2] : rs && ts ? De[a2] = ts(u) : De[a2] = mu(u);
|
|
@@ -178043,13 +178053,13 @@ var require_parser_postcss = __commonJS({
|
|
|
178043
178053
|
ts.exports = { includes: rs(true), indexOf: rs(false) };
|
|
178044
178054
|
});
|
|
178045
178055
|
var os = U((Sh, ss) => {
|
|
178046
|
-
var Wc = xe(), ct = Te(), Vc = nr(), Gc = ns().indexOf, Hc = nt(),
|
|
178056
|
+
var Wc = xe(), ct = Te(), Vc = nr(), Gc = ns().indexOf, Hc = nt(), is2 = Wc([].push);
|
|
178047
178057
|
ss.exports = function(e, n) {
|
|
178048
178058
|
var i = Vc(e), u = 0, o = [], h;
|
|
178049
178059
|
for (h in i)
|
|
178050
|
-
!ct(Hc, h) && ct(i, h) &&
|
|
178060
|
+
!ct(Hc, h) && ct(i, h) && is2(o, h);
|
|
178051
178061
|
for (; n.length > u; )
|
|
178052
|
-
ct(i, h = n[u++]) && (~Gc(o, h) ||
|
|
178062
|
+
ct(i, h = n[u++]) && (~Gc(o, h) || is2(o, h));
|
|
178053
178063
|
return o;
|
|
178054
178064
|
};
|
|
178055
178065
|
});
|
|
@@ -189520,12 +189530,12 @@ var require_parser_markdown = __commonJS({
|
|
|
189520
189530
|
on.exports = {};
|
|
189521
189531
|
});
|
|
189522
189532
|
var Dn = $((ep, ln) => {
|
|
189523
|
-
var ns = un(), cn = Fe(),
|
|
189533
|
+
var ns = un(), cn = Fe(), is2 = Ie(), as = Yr(), uu = ke(), tu = pr(), os = an(), ss = ru(), sn = "Object already initialized", nu = cn.TypeError, cs = cn.WeakMap, vr, Ke, mr, ls = function(e) {
|
|
189524
189534
|
return mr(e) ? Ke(e) : vr(e, {});
|
|
189525
189535
|
}, Ds = function(e) {
|
|
189526
189536
|
return function(r) {
|
|
189527
189537
|
var u;
|
|
189528
|
-
if (!
|
|
189538
|
+
if (!is2(r) || (u = Ke(r)).type !== e)
|
|
189529
189539
|
throw nu("Incompatible receiver, " + e + " required");
|
|
189530
189540
|
return u;
|
|
189531
189541
|
};
|
|
@@ -193849,7 +193859,7 @@ var require_parser_html = __commonJS({
|
|
|
193849
193859
|
return Zn(n), u;
|
|
193850
193860
|
};
|
|
193851
193861
|
});
|
|
193852
|
-
var
|
|
193862
|
+
var is2 = S((V2, ss) => {
|
|
193853
193863
|
var PD = $r(), kD = De(), LD = de(), $D = ke(), MD = Wn(), jD = _e(), us = ir(), UD = Jn(), GD = Gr(), ts = rs(), VD = TypeError, Ye = function(e, r) {
|
|
193854
193864
|
this.stopped = e, this.result = r;
|
|
193855
193865
|
}, ns = Ye.prototype;
|
|
@@ -193895,7 +193905,7 @@ var require_parser_html = __commonJS({
|
|
|
193895
193905
|
};
|
|
193896
193906
|
});
|
|
193897
193907
|
var Ds = S(() => {
|
|
193898
|
-
var WD = ze(), YD =
|
|
193908
|
+
var WD = ze(), YD = is2(), QD = os();
|
|
193899
193909
|
WD({ target: "Object", stat: true }, { fromEntries: function(r) {
|
|
193900
193910
|
var u = {};
|
|
193901
193911
|
return YD(r, function(n, D) {
|
|
@@ -206756,7 +206766,7 @@ var require_prettier = __commonJS({
|
|
|
206756
206766
|
exports22.BooleanSchema = BooleanSchema;
|
|
206757
206767
|
}
|
|
206758
206768
|
});
|
|
206759
|
-
var
|
|
206769
|
+
var require_utils8 = __commonJS22({
|
|
206760
206770
|
"node_modules/vnopts/lib/utils.js"(exports22) {
|
|
206761
206771
|
"use strict";
|
|
206762
206772
|
Object.defineProperty(exports22, "__esModule", {
|
|
@@ -206886,7 +206896,7 @@ var require_prettier = __commonJS({
|
|
|
206886
206896
|
value: true
|
|
206887
206897
|
});
|
|
206888
206898
|
var schema_1 = require_schema();
|
|
206889
|
-
var utils_1 =
|
|
206899
|
+
var utils_1 = require_utils8();
|
|
206890
206900
|
var ChoiceSchema = class extends schema_1.Schema {
|
|
206891
206901
|
constructor(parameters) {
|
|
206892
206902
|
super(parameters);
|
|
@@ -206947,7 +206957,7 @@ var require_prettier = __commonJS({
|
|
|
206947
206957
|
Object.defineProperty(exports22, "__esModule", {
|
|
206948
206958
|
value: true
|
|
206949
206959
|
});
|
|
206950
|
-
var utils_1 =
|
|
206960
|
+
var utils_1 = require_utils8();
|
|
206951
206961
|
var number_1 = require_number();
|
|
206952
206962
|
var IntegerSchema = class extends number_1.NumberSchema {
|
|
206953
206963
|
expected() {
|
|
@@ -207018,7 +207028,7 @@ var require_prettier = __commonJS({
|
|
|
207018
207028
|
value: true
|
|
207019
207029
|
});
|
|
207020
207030
|
var defaults_1 = require_defaults();
|
|
207021
|
-
var utils_1 =
|
|
207031
|
+
var utils_1 = require_utils8();
|
|
207022
207032
|
exports22.normalize = (options, schemas, opts) => new Normalizer(schemas, opts).normalize(options);
|
|
207023
207033
|
var Normalizer = class {
|
|
207024
207034
|
constructor(schemas, opts) {
|
|
@@ -208363,7 +208373,7 @@ ${frame}`;
|
|
|
208363
208373
|
return loadParser(opts.parser);
|
|
208364
208374
|
}
|
|
208365
208375
|
}
|
|
208366
|
-
function
|
|
208376
|
+
function parse6(text, opts) {
|
|
208367
208377
|
const parsers = getParsers(opts);
|
|
208368
208378
|
const parsersForCustomParserApi = Object.defineProperties({}, Object.fromEntries(Object.keys(parsers).map((parserName) => [parserName, {
|
|
208369
208379
|
enumerable: true,
|
|
@@ -208398,7 +208408,7 @@ ${frame}`;
|
|
|
208398
208408
|
}
|
|
208399
208409
|
}
|
|
208400
208410
|
module22.exports = {
|
|
208401
|
-
parse:
|
|
208411
|
+
parse: parse6,
|
|
208402
208412
|
resolveParser
|
|
208403
208413
|
};
|
|
208404
208414
|
}
|
|
@@ -210506,7 +210516,7 @@ ${frame}`;
|
|
|
210506
210516
|
var fill = require_fill_range2();
|
|
210507
210517
|
var utils = require_utils22();
|
|
210508
210518
|
var compile = (ast, options = {}) => {
|
|
210509
|
-
let
|
|
210519
|
+
let walk2 = (node, parent = {}) => {
|
|
210510
210520
|
let invalidBlock = utils.isInvalidBrace(parent);
|
|
210511
210521
|
let invalidNode = node.invalid === true && options.escapeInvalid === true;
|
|
210512
210522
|
let invalid = invalidBlock === true || invalidNode === true;
|
|
@@ -210542,12 +210552,12 @@ ${frame}`;
|
|
|
210542
210552
|
}
|
|
210543
210553
|
if (node.nodes) {
|
|
210544
210554
|
for (let child of node.nodes) {
|
|
210545
|
-
output +=
|
|
210555
|
+
output += walk2(child, node);
|
|
210546
210556
|
}
|
|
210547
210557
|
}
|
|
210548
210558
|
return output;
|
|
210549
210559
|
};
|
|
210550
|
-
return
|
|
210560
|
+
return walk2(ast);
|
|
210551
210561
|
};
|
|
210552
210562
|
module22.exports = compile;
|
|
210553
210563
|
}
|
|
@@ -210584,7 +210594,7 @@ ${frame}`;
|
|
|
210584
210594
|
};
|
|
210585
210595
|
var expand = (ast, options = {}) => {
|
|
210586
210596
|
let rangeLimit = options.rangeLimit === void 0 ? 1e3 : options.rangeLimit;
|
|
210587
|
-
let
|
|
210597
|
+
let walk2 = (node, parent = {}) => {
|
|
210588
210598
|
node.queue = [];
|
|
210589
210599
|
let p = parent;
|
|
210590
210600
|
let q = parent.queue;
|
|
@@ -210637,12 +210647,12 @@ ${frame}`;
|
|
|
210637
210647
|
continue;
|
|
210638
210648
|
}
|
|
210639
210649
|
if (child.nodes) {
|
|
210640
|
-
|
|
210650
|
+
walk2(child, node);
|
|
210641
210651
|
}
|
|
210642
210652
|
}
|
|
210643
210653
|
return queue;
|
|
210644
210654
|
};
|
|
210645
|
-
return utils.flatten(
|
|
210655
|
+
return utils.flatten(walk2(ast));
|
|
210646
210656
|
};
|
|
210647
210657
|
module22.exports = expand;
|
|
210648
210658
|
}
|
|
@@ -210720,7 +210730,7 @@ ${frame}`;
|
|
|
210720
210730
|
CHAR_NO_BREAK_SPACE,
|
|
210721
210731
|
CHAR_ZERO_WIDTH_NOBREAK_SPACE
|
|
210722
210732
|
} = require_constants22();
|
|
210723
|
-
var
|
|
210733
|
+
var parse6 = (input, options = {}) => {
|
|
210724
210734
|
if (typeof input !== "string") {
|
|
210725
210735
|
throw new TypeError("Expected a string");
|
|
210726
210736
|
}
|
|
@@ -210982,7 +210992,7 @@ ${frame}`;
|
|
|
210982
210992
|
});
|
|
210983
210993
|
return ast;
|
|
210984
210994
|
};
|
|
210985
|
-
module22.exports =
|
|
210995
|
+
module22.exports = parse6;
|
|
210986
210996
|
}
|
|
210987
210997
|
});
|
|
210988
210998
|
var require_braces2 = __commonJS22({
|
|
@@ -210991,7 +211001,7 @@ ${frame}`;
|
|
|
210991
211001
|
var stringify = require_stringify2();
|
|
210992
211002
|
var compile = require_compile2();
|
|
210993
211003
|
var expand = require_expand2();
|
|
210994
|
-
var
|
|
211004
|
+
var parse6 = require_parse4();
|
|
210995
211005
|
var braces = (input, options = {}) => {
|
|
210996
211006
|
let output = [];
|
|
210997
211007
|
if (Array.isArray(input)) {
|
|
@@ -211011,7 +211021,7 @@ ${frame}`;
|
|
|
211011
211021
|
}
|
|
211012
211022
|
return output;
|
|
211013
211023
|
};
|
|
211014
|
-
braces.parse = (input, options = {}) =>
|
|
211024
|
+
braces.parse = (input, options = {}) => parse6(input, options);
|
|
211015
211025
|
braces.stringify = (input, options = {}) => {
|
|
211016
211026
|
if (typeof input === "string") {
|
|
211017
211027
|
return stringify(braces.parse(input, options), options);
|
|
@@ -211619,7 +211629,7 @@ ${frame}`;
|
|
|
211619
211629
|
var syntaxError = (type, char) => {
|
|
211620
211630
|
return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
|
|
211621
211631
|
};
|
|
211622
|
-
var
|
|
211632
|
+
var parse6 = (input, options) => {
|
|
211623
211633
|
if (typeof input !== "string") {
|
|
211624
211634
|
throw new TypeError("Expected a string");
|
|
211625
211635
|
}
|
|
@@ -211785,7 +211795,7 @@ ${frame}`;
|
|
|
211785
211795
|
output = token.close = `)$))${extglobStar}`;
|
|
211786
211796
|
}
|
|
211787
211797
|
if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
|
|
211788
|
-
const expression =
|
|
211798
|
+
const expression = parse6(rest, Object.assign(Object.assign({}, options), {}, {
|
|
211789
211799
|
fastpaths: false
|
|
211790
211800
|
})).output;
|
|
211791
211801
|
output = token.close = `)${expression})${extglobStar})`;
|
|
@@ -212438,7 +212448,7 @@ ${frame}`;
|
|
|
212438
212448
|
}
|
|
212439
212449
|
return state;
|
|
212440
212450
|
};
|
|
212441
|
-
|
|
212451
|
+
parse6.fastpaths = (input, options) => {
|
|
212442
212452
|
const opts = Object.assign({}, options);
|
|
212443
212453
|
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
|
|
212444
212454
|
const len = input.length;
|
|
@@ -212510,7 +212520,7 @@ ${frame}`;
|
|
|
212510
212520
|
}
|
|
212511
212521
|
return source;
|
|
212512
212522
|
};
|
|
212513
|
-
module22.exports =
|
|
212523
|
+
module22.exports = parse6;
|
|
212514
212524
|
}
|
|
212515
212525
|
});
|
|
212516
212526
|
var require_picomatch3 = __commonJS22({
|
|
@@ -212518,7 +212528,7 @@ ${frame}`;
|
|
|
212518
212528
|
"use strict";
|
|
212519
212529
|
var path = require("path");
|
|
212520
212530
|
var scan = require_scan2();
|
|
212521
|
-
var
|
|
212531
|
+
var parse6 = require_parse22();
|
|
212522
212532
|
var utils = require_utils32();
|
|
212523
212533
|
var constants = require_constants32();
|
|
212524
212534
|
var isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
|
|
@@ -212638,7 +212648,7 @@ ${frame}`;
|
|
|
212638
212648
|
picomatch.parse = (pattern, options) => {
|
|
212639
212649
|
if (Array.isArray(pattern))
|
|
212640
212650
|
return pattern.map((p) => picomatch.parse(p, options));
|
|
212641
|
-
return
|
|
212651
|
+
return parse6(pattern, Object.assign(Object.assign({}, options), {}, {
|
|
212642
212652
|
fastpaths: false
|
|
212643
212653
|
}));
|
|
212644
212654
|
};
|
|
@@ -212669,10 +212679,10 @@ ${frame}`;
|
|
|
212669
212679
|
fastpaths: true
|
|
212670
212680
|
};
|
|
212671
212681
|
if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
|
|
212672
|
-
parsed.output =
|
|
212682
|
+
parsed.output = parse6.fastpaths(input, options);
|
|
212673
212683
|
}
|
|
212674
212684
|
if (!parsed.output) {
|
|
212675
|
-
parsed =
|
|
212685
|
+
parsed = parse6(input, options);
|
|
212676
212686
|
}
|
|
212677
212687
|
return picomatch.compileRe(parsed, options, returnOutput, returnState);
|
|
212678
212688
|
};
|
|
@@ -214489,10 +214499,10 @@ ${frame}`;
|
|
|
214489
214499
|
var require_load_toml = __commonJS22({
|
|
214490
214500
|
"src/utils/load-toml.js"(exports22, module22) {
|
|
214491
214501
|
"use strict";
|
|
214492
|
-
var
|
|
214502
|
+
var parse6 = require_parse_string();
|
|
214493
214503
|
module22.exports = function(filePath, content) {
|
|
214494
214504
|
try {
|
|
214495
|
-
return
|
|
214505
|
+
return parse6(content);
|
|
214496
214506
|
} catch (error) {
|
|
214497
214507
|
error.message = `TOML Error in ${filePath}:
|
|
214498
214508
|
${error.message}`;
|
|
@@ -214542,7 +214552,7 @@ ${error.message}`;
|
|
|
214542
214552
|
var token;
|
|
214543
214553
|
var key;
|
|
214544
214554
|
var root;
|
|
214545
|
-
module22.exports = function
|
|
214555
|
+
module22.exports = function parse6(text, reviver) {
|
|
214546
214556
|
source = String(text);
|
|
214547
214557
|
parseState = "start";
|
|
214548
214558
|
stack = [];
|
|
@@ -215598,10 +215608,10 @@ ${error.message}`;
|
|
|
215598
215608
|
});
|
|
215599
215609
|
var require_lib6 = __commonJS22({
|
|
215600
215610
|
"node_modules/json5/lib/index.js"(exports22, module22) {
|
|
215601
|
-
var
|
|
215611
|
+
var parse6 = require_parse32();
|
|
215602
215612
|
var stringify = require_stringify22();
|
|
215603
215613
|
var JSON5 = {
|
|
215604
|
-
parse:
|
|
215614
|
+
parse: parse6,
|
|
215605
215615
|
stringify
|
|
215606
215616
|
};
|
|
215607
215617
|
module22.exports = JSON5;
|
|
@@ -215611,11 +215621,11 @@ ${error.message}`;
|
|
|
215611
215621
|
"src/utils/load-json5.js"(exports22, module22) {
|
|
215612
215622
|
"use strict";
|
|
215613
215623
|
var {
|
|
215614
|
-
parse:
|
|
215624
|
+
parse: parse6
|
|
215615
215625
|
} = require_lib6();
|
|
215616
215626
|
module22.exports = function(filePath, content) {
|
|
215617
215627
|
try {
|
|
215618
|
-
return
|
|
215628
|
+
return parse6(content);
|
|
215619
215629
|
} catch (error) {
|
|
215620
215630
|
error.message = `JSON5 Error in ${filePath}:
|
|
215621
215631
|
${error.message}`;
|
|
@@ -215727,7 +215737,7 @@ ${error.message}`;
|
|
|
215727
215737
|
var require_node_modules_paths = __commonJS22({
|
|
215728
215738
|
"node_modules/resolve/lib/node-modules-paths.js"(exports22, module22) {
|
|
215729
215739
|
var path = require("path");
|
|
215730
|
-
var
|
|
215740
|
+
var parse6 = path.parse || require_path_parse();
|
|
215731
215741
|
var getNodeModulesDirs = function getNodeModulesDirs2(absoluteStart, modules) {
|
|
215732
215742
|
var prefix = "/";
|
|
215733
215743
|
if (/^([A-Za-z]:)/.test(absoluteStart)) {
|
|
@@ -215736,10 +215746,10 @@ ${error.message}`;
|
|
|
215736
215746
|
prefix = "\\\\";
|
|
215737
215747
|
}
|
|
215738
215748
|
var paths = [absoluteStart];
|
|
215739
|
-
var parsed =
|
|
215749
|
+
var parsed = parse6(absoluteStart);
|
|
215740
215750
|
while (parsed.dir !== paths[paths.length - 1]) {
|
|
215741
215751
|
paths.push(parsed.dir);
|
|
215742
|
-
parsed =
|
|
215752
|
+
parsed = parse6(parsed.dir);
|
|
215743
215753
|
}
|
|
215744
215754
|
return paths.reduce(function(dirs, aPath) {
|
|
215745
215755
|
return dirs.concat(modules.map(function(moduleDir) {
|
|
@@ -218195,9 +218205,9 @@ ${fromBody}`;
|
|
|
218195
218205
|
}
|
|
218196
218206
|
return ret;
|
|
218197
218207
|
}
|
|
218198
|
-
Minimatch.prototype.parse =
|
|
218208
|
+
Minimatch.prototype.parse = parse6;
|
|
218199
218209
|
var SUBPARSE = {};
|
|
218200
|
-
function
|
|
218210
|
+
function parse6(pattern, isSub) {
|
|
218201
218211
|
var options = this.options;
|
|
218202
218212
|
if (!options.noglobstar && pattern === "**")
|
|
218203
218213
|
return GLOBSTAR;
|
|
@@ -218686,7 +218696,7 @@ ${fromBody}`;
|
|
|
218686
218696
|
param: /^\s*([\w\.\-\_]+)\s*[=:]\s*(.*?)\s*([#;].*)?$/,
|
|
218687
218697
|
comment: /^\s*[#;].*$/
|
|
218688
218698
|
};
|
|
218689
|
-
function
|
|
218699
|
+
function parse6(file) {
|
|
218690
218700
|
return __awaiter2(this, void 0, void 0, function() {
|
|
218691
218701
|
return __generator2(this, function(_a4) {
|
|
218692
218702
|
return [2, new Promise(function(resolve, reject) {
|
|
@@ -218701,7 +218711,7 @@ ${fromBody}`;
|
|
|
218701
218711
|
});
|
|
218702
218712
|
});
|
|
218703
218713
|
}
|
|
218704
|
-
exports22.parse =
|
|
218714
|
+
exports22.parse = parse6;
|
|
218705
218715
|
function parseSync(file) {
|
|
218706
218716
|
return parseString(fs.readFileSync(file, "utf8"));
|
|
218707
218717
|
}
|
|
@@ -219118,7 +219128,7 @@ ${fromBody}`;
|
|
|
219118
219128
|
return parseFromConfigs(getConfigsForFiles(files), resolvedFilePath, processedOptions);
|
|
219119
219129
|
}
|
|
219120
219130
|
exports22.parseFromFilesSync = parseFromFilesSync;
|
|
219121
|
-
function
|
|
219131
|
+
function parse6(_filepath, _options) {
|
|
219122
219132
|
if (_options === void 0) {
|
|
219123
219133
|
_options = {};
|
|
219124
219134
|
}
|
|
@@ -219133,7 +219143,7 @@ ${fromBody}`;
|
|
|
219133
219143
|
});
|
|
219134
219144
|
});
|
|
219135
219145
|
}
|
|
219136
|
-
exports22.parse =
|
|
219146
|
+
exports22.parse = parse6;
|
|
219137
219147
|
function parseSync(_filepath, _options) {
|
|
219138
219148
|
if (_options === void 0) {
|
|
219139
219149
|
_options = {};
|
|
@@ -219239,7 +219249,7 @@ ${fromBody}`;
|
|
|
219239
219249
|
var jsonStringifyMem = (fn) => mem2(fn, {
|
|
219240
219250
|
cacheKey: JSON.stringify
|
|
219241
219251
|
});
|
|
219242
|
-
var maybeParse = (filePath,
|
|
219252
|
+
var maybeParse = (filePath, parse6) => filePath && parse6(filePath, {
|
|
219243
219253
|
root: findProjectRoot(path.dirname(path.resolve(filePath)))
|
|
219244
219254
|
});
|
|
219245
219255
|
var editorconfigAsyncNoCache = async (filePath) => editorConfigToPrettier(await maybeParse(filePath, editorconfig.parse));
|
|
@@ -221657,14 +221667,14 @@ ${fromBody}`;
|
|
|
221657
221667
|
var sync_1 = require_sync52();
|
|
221658
221668
|
var settings_1 = require_settings32();
|
|
221659
221669
|
exports22.Settings = settings_1.default;
|
|
221660
|
-
function
|
|
221670
|
+
function walk2(directory, optionsOrSettingsOrCallback, callback) {
|
|
221661
221671
|
if (typeof optionsOrSettingsOrCallback === "function") {
|
|
221662
221672
|
new async_1.default(directory, getSettings()).read(optionsOrSettingsOrCallback);
|
|
221663
221673
|
return;
|
|
221664
221674
|
}
|
|
221665
221675
|
new async_1.default(directory, getSettings(optionsOrSettingsOrCallback)).read(callback);
|
|
221666
221676
|
}
|
|
221667
|
-
exports22.walk =
|
|
221677
|
+
exports22.walk = walk2;
|
|
221668
221678
|
function walkSync(directory, optionsOrSettings) {
|
|
221669
221679
|
const settings = getSettings(optionsOrSettings);
|
|
221670
221680
|
const provider = new sync_1.default(directory, settings);
|
|
@@ -224094,7 +224104,7 @@ ${fromBody}`;
|
|
|
224094
224104
|
value: true
|
|
224095
224105
|
});
|
|
224096
224106
|
exports22.extract = extract;
|
|
224097
|
-
exports22.parse =
|
|
224107
|
+
exports22.parse = parse6;
|
|
224098
224108
|
exports22.parseWithComments = parseWithComments;
|
|
224099
224109
|
exports22.print = print;
|
|
224100
224110
|
exports22.strip = strip;
|
|
@@ -224134,7 +224144,7 @@ ${fromBody}`;
|
|
|
224134
224144
|
const match = contents.match(docblockRe);
|
|
224135
224145
|
return match && match[0] ? contents.substring(match[0].length) : contents;
|
|
224136
224146
|
}
|
|
224137
|
-
function
|
|
224147
|
+
function parse6(docblock) {
|
|
224138
224148
|
return parseWithComments(docblock).pragmas;
|
|
224139
224149
|
}
|
|
224140
224150
|
function parseWithComments(docblock) {
|
|
@@ -231605,7 +231615,7 @@ ${fromBody}`;
|
|
|
231605
231615
|
"src/utils/front-matter/parse.js"(exports22, module22) {
|
|
231606
231616
|
"use strict";
|
|
231607
231617
|
var frontMatterRegex = new RegExp("^(?<startDelimiter>-{3}|\\+{3})(?<language>[^\\n]*)\\n(?:|(?<value>.*?)\\n)(?<endDelimiter>\\k<startDelimiter>|\\.{3})[^\\S\\n]*(?:\\n|$)", "s");
|
|
231608
|
-
function
|
|
231618
|
+
function parse6(text) {
|
|
231609
231619
|
const match = text.match(frontMatterRegex);
|
|
231610
231620
|
if (!match) {
|
|
231611
231621
|
return {
|
|
@@ -231641,7 +231651,7 @@ ${fromBody}`;
|
|
|
231641
231651
|
content: raw.replace(/[^\n]/g, " ") + text.slice(raw.length)
|
|
231642
231652
|
};
|
|
231643
231653
|
}
|
|
231644
|
-
module22.exports =
|
|
231654
|
+
module22.exports = parse6;
|
|
231645
231655
|
}
|
|
231646
231656
|
});
|
|
231647
231657
|
var require_pragma2 = __commonJS22({
|
|
@@ -231665,7 +231675,7 @@ ${fromBody}`;
|
|
|
231665
231675
|
};
|
|
231666
231676
|
}
|
|
231667
231677
|
});
|
|
231668
|
-
var
|
|
231678
|
+
var require_utils82 = __commonJS22({
|
|
231669
231679
|
"src/language-css/utils/index.js"(exports22, module22) {
|
|
231670
231680
|
"use strict";
|
|
231671
231681
|
var colorAdjusterFunctions = /* @__PURE__ */ new Set(["red", "green", "blue", "alpha", "a", "rgb", "hue", "h", "saturation", "s", "lightness", "l", "whiteness", "w", "blackness", "b", "tint", "shade", "blend", "blenda", "contrast", "hsl", "hsla", "hwb", "hwba"]);
|
|
@@ -232307,7 +232317,7 @@ ${fromBody}`;
|
|
|
232307
232317
|
isAtWordPlaceholderNode,
|
|
232308
232318
|
isConfigurationNode,
|
|
232309
232319
|
isParenGroupNode
|
|
232310
|
-
} =
|
|
232320
|
+
} = require_utils82();
|
|
232311
232321
|
var {
|
|
232312
232322
|
locStart,
|
|
232313
232323
|
locEnd
|
|
@@ -239205,537 +239215,287 @@ var require_out11 = __commonJS({
|
|
|
239205
239215
|
}
|
|
239206
239216
|
});
|
|
239207
239217
|
|
|
239208
|
-
// ../../node_modules/.pnpm/@astrojs+compiler@1.
|
|
239218
|
+
// ../../node_modules/.pnpm/@astrojs+compiler@1.5.0/node_modules/@astrojs/compiler/dist/node/sync.cjs
|
|
239209
239219
|
var require_sync = __commonJS({
|
|
239210
|
-
"../../node_modules/.pnpm/@astrojs+compiler@1.
|
|
239220
|
+
"../../node_modules/.pnpm/@astrojs+compiler@1.5.0/node_modules/@astrojs/compiler/dist/node/sync.cjs"(exports2, module2) {
|
|
239211
239221
|
"use strict";
|
|
239212
|
-
var
|
|
239213
|
-
var
|
|
239214
|
-
var
|
|
239215
|
-
var
|
|
239216
|
-
var
|
|
239217
|
-
var
|
|
239218
|
-
var
|
|
239219
|
-
for (var
|
|
239220
|
-
|
|
239221
|
-
};
|
|
239222
|
-
var
|
|
239223
|
-
if (
|
|
239224
|
-
for (let
|
|
239225
|
-
|
|
239226
|
-
|
|
239227
|
-
}
|
|
239228
|
-
return to;
|
|
239222
|
+
var P = Object.create;
|
|
239223
|
+
var y = Object.defineProperty;
|
|
239224
|
+
var I = Object.getOwnPropertyDescriptor;
|
|
239225
|
+
var A2 = Object.getOwnPropertyNames;
|
|
239226
|
+
var E = Object.getPrototypeOf;
|
|
239227
|
+
var C = Object.prototype.hasOwnProperty;
|
|
239228
|
+
var O = (i, n) => {
|
|
239229
|
+
for (var s in n)
|
|
239230
|
+
y(i, s, { get: n[s], enumerable: true });
|
|
239231
|
+
};
|
|
239232
|
+
var T = (i, n, s, r) => {
|
|
239233
|
+
if (n && typeof n == "object" || typeof n == "function")
|
|
239234
|
+
for (let c of A2(n))
|
|
239235
|
+
!C.call(i, c) && c !== s && y(i, c, { get: () => n[c], enumerable: !(r = I(n, c)) || r.enumerable });
|
|
239236
|
+
return i;
|
|
239229
239237
|
};
|
|
239230
|
-
var
|
|
239231
|
-
|
|
239232
|
-
|
|
239233
|
-
|
|
239234
|
-
|
|
239235
|
-
|
|
239236
|
-
|
|
239237
|
-
)
|
|
239238
|
-
var
|
|
239239
|
-
var
|
|
239240
|
-
|
|
239241
|
-
|
|
239242
|
-
|
|
239243
|
-
|
|
239244
|
-
|
|
239245
|
-
|
|
239246
|
-
|
|
239247
|
-
|
|
239248
|
-
|
|
239249
|
-
|
|
239250
|
-
|
|
239251
|
-
var
|
|
239252
|
-
|
|
239253
|
-
|
|
239254
|
-
value: import_fs.default
|
|
239255
|
-
});
|
|
239256
|
-
}
|
|
239257
|
-
if (!globalThis.process) {
|
|
239258
|
-
Object.defineProperties(globalThis, "process", {
|
|
239259
|
-
value: process
|
|
239260
|
-
});
|
|
239261
|
-
}
|
|
239262
|
-
if (!globalThis.crypto) {
|
|
239263
|
-
Object.defineProperty(globalThis, "crypto", {
|
|
239264
|
-
value: import_crypto.default.webcrypto ? import_crypto.default.webcrypto : {
|
|
239265
|
-
getRandomValues(b) {
|
|
239266
|
-
return import_crypto.default.randomFillSync(b);
|
|
239267
|
-
}
|
|
239268
|
-
}
|
|
239269
|
-
});
|
|
239270
|
-
}
|
|
239271
|
-
if (!globalThis.performance) {
|
|
239272
|
-
Object.defineProperty(globalThis, "performance", {
|
|
239273
|
-
value: {
|
|
239274
|
-
now() {
|
|
239275
|
-
const [sec, nsec] = process.hrtime();
|
|
239276
|
-
return sec * 1e3 + nsec / 1e6;
|
|
239277
|
-
}
|
|
239278
|
-
}
|
|
239279
|
-
});
|
|
239280
|
-
}
|
|
239281
|
-
var encoder = new import_util.TextEncoder("utf-8");
|
|
239282
|
-
var decoder = new import_util.TextDecoder("utf-8");
|
|
239283
|
-
var Go = class {
|
|
239238
|
+
var x = (i, n, s) => (s = i != null ? P(E(i)) : {}, T(n || !i || !i.__esModule ? y(s, "default", { value: i, enumerable: true }) : s, i));
|
|
239239
|
+
var D = (i) => T(y({}, "__esModule", { value: true }), i);
|
|
239240
|
+
var M = {};
|
|
239241
|
+
O(M, { convertToTSX: () => W, parse: () => L, startRunningService: () => R, transform: () => N });
|
|
239242
|
+
module2.exports = D(M);
|
|
239243
|
+
var k = () => typeof document > "u" ? new URL("file:" + __filename).href : document.currentScript && document.currentScript.src || new URL("main.js", document.baseURI).href;
|
|
239244
|
+
var w = k();
|
|
239245
|
+
var S = require("fs");
|
|
239246
|
+
var j = require("url");
|
|
239247
|
+
var v = x(require("crypto"), 1);
|
|
239248
|
+
var b = x(require("fs"), 1);
|
|
239249
|
+
var _ = require("util");
|
|
239250
|
+
globalThis.fs || Object.defineProperty(globalThis, "fs", { value: b.default });
|
|
239251
|
+
globalThis.process || Object.defineProperties(globalThis, "process", { value: process });
|
|
239252
|
+
globalThis.crypto || Object.defineProperty(globalThis, "crypto", { value: v.default.webcrypto ? v.default.webcrypto : { getRandomValues(i) {
|
|
239253
|
+
return v.default.randomFillSync(i);
|
|
239254
|
+
} } });
|
|
239255
|
+
globalThis.performance || Object.defineProperty(globalThis, "performance", { value: { now() {
|
|
239256
|
+
let [i, n] = process.hrtime();
|
|
239257
|
+
return i * 1e3 + n / 1e6;
|
|
239258
|
+
} } });
|
|
239259
|
+
var U = new _.TextEncoder("utf-8");
|
|
239260
|
+
var V = new _.TextDecoder("utf-8");
|
|
239261
|
+
var d = class {
|
|
239284
239262
|
constructor() {
|
|
239285
|
-
this.argv = ["js"]
|
|
239286
|
-
|
|
239287
|
-
this.
|
|
239288
|
-
|
|
239289
|
-
|
|
239290
|
-
|
|
239291
|
-
|
|
239292
|
-
|
|
239293
|
-
this.
|
|
239294
|
-
|
|
239295
|
-
|
|
239296
|
-
|
|
239297
|
-
|
|
239298
|
-
|
|
239299
|
-
|
|
239300
|
-
|
|
239301
|
-
|
|
239302
|
-
|
|
239303
|
-
|
|
239304
|
-
|
|
239305
|
-
|
|
239306
|
-
|
|
239307
|
-
const loadValue = (addr) => {
|
|
239308
|
-
const f2 = this.mem.getFloat64(addr, true);
|
|
239309
|
-
if (f2 === 0) {
|
|
239310
|
-
return void 0;
|
|
239311
|
-
}
|
|
239312
|
-
if (!isNaN(f2)) {
|
|
239313
|
-
return f2;
|
|
239314
|
-
}
|
|
239315
|
-
const id = this.mem.getUint32(addr, true);
|
|
239316
|
-
return this._values[id];
|
|
239317
|
-
};
|
|
239318
|
-
const storeValue = (addr, v) => {
|
|
239319
|
-
const nanHead = 2146959360;
|
|
239320
|
-
if (typeof v === "number" && v !== 0) {
|
|
239321
|
-
if (isNaN(v)) {
|
|
239322
|
-
this.mem.setUint32(addr + 4, nanHead, true);
|
|
239323
|
-
this.mem.setUint32(addr, 0, true);
|
|
239263
|
+
this.argv = ["js"], this.env = {}, this.exit = (e) => {
|
|
239264
|
+
e !== 0 && console.warn("exit code:", e);
|
|
239265
|
+
}, this._exitPromise = new Promise((e) => {
|
|
239266
|
+
this._resolveExitPromise = e;
|
|
239267
|
+
}), this._pendingEvent = null, this._scheduledTimeouts = /* @__PURE__ */ new Map(), this._nextCallbackTimeoutID = 1;
|
|
239268
|
+
let n = (e, t15) => {
|
|
239269
|
+
this.mem.setUint32(e + 0, t15, true), this.mem.setUint32(e + 4, Math.floor(t15 / 4294967296), true);
|
|
239270
|
+
}, s = (e) => {
|
|
239271
|
+
let t15 = this.mem.getUint32(e + 0, true), o = this.mem.getInt32(e + 4, true);
|
|
239272
|
+
return t15 + o * 4294967296;
|
|
239273
|
+
}, r = (e) => {
|
|
239274
|
+
let t15 = this.mem.getFloat64(e, true);
|
|
239275
|
+
if (t15 === 0)
|
|
239276
|
+
return;
|
|
239277
|
+
if (!isNaN(t15))
|
|
239278
|
+
return t15;
|
|
239279
|
+
let o = this.mem.getUint32(e, true);
|
|
239280
|
+
return this._values[o];
|
|
239281
|
+
}, c = (e, t15) => {
|
|
239282
|
+
if (typeof t15 == "number" && t15 !== 0) {
|
|
239283
|
+
if (isNaN(t15)) {
|
|
239284
|
+
this.mem.setUint32(e + 4, 2146959360, true), this.mem.setUint32(e, 0, true);
|
|
239324
239285
|
return;
|
|
239325
239286
|
}
|
|
239326
|
-
this.mem.setFloat64(
|
|
239287
|
+
this.mem.setFloat64(e, t15, true);
|
|
239327
239288
|
return;
|
|
239328
239289
|
}
|
|
239329
|
-
if (
|
|
239330
|
-
this.mem.setFloat64(
|
|
239290
|
+
if (t15 === void 0) {
|
|
239291
|
+
this.mem.setFloat64(e, 0, true);
|
|
239331
239292
|
return;
|
|
239332
239293
|
}
|
|
239333
|
-
let
|
|
239334
|
-
|
|
239335
|
-
|
|
239336
|
-
|
|
239337
|
-
id = this._values.length;
|
|
239338
|
-
}
|
|
239339
|
-
this._values[id] = v;
|
|
239340
|
-
this._goRefCounts[id] = 0;
|
|
239341
|
-
this._ids.set(v, id);
|
|
239342
|
-
}
|
|
239343
|
-
this._goRefCounts[id]++;
|
|
239344
|
-
let typeFlag = 0;
|
|
239345
|
-
switch (typeof v) {
|
|
239294
|
+
let a2 = this._ids.get(t15);
|
|
239295
|
+
a2 === void 0 && (a2 = this._idPool.pop(), a2 === void 0 && (a2 = this._values.length), this._values[a2] = t15, this._goRefCounts[a2] = 0, this._ids.set(t15, a2)), this._goRefCounts[a2]++;
|
|
239296
|
+
let m = 0;
|
|
239297
|
+
switch (typeof t15) {
|
|
239346
239298
|
case "object":
|
|
239347
|
-
|
|
239348
|
-
typeFlag = 1;
|
|
239349
|
-
}
|
|
239299
|
+
t15 !== null && (m = 1);
|
|
239350
239300
|
break;
|
|
239351
239301
|
case "string":
|
|
239352
|
-
|
|
239302
|
+
m = 2;
|
|
239353
239303
|
break;
|
|
239354
239304
|
case "symbol":
|
|
239355
|
-
|
|
239305
|
+
m = 3;
|
|
239356
239306
|
break;
|
|
239357
239307
|
case "function":
|
|
239358
|
-
|
|
239308
|
+
m = 4;
|
|
239359
239309
|
break;
|
|
239360
239310
|
}
|
|
239361
|
-
this.mem.setUint32(
|
|
239362
|
-
|
|
239363
|
-
|
|
239364
|
-
|
|
239365
|
-
|
|
239366
|
-
|
|
239367
|
-
|
|
239368
|
-
|
|
239369
|
-
const loadSliceOfValues = (addr) => {
|
|
239370
|
-
const array = getInt64(addr + 0);
|
|
239371
|
-
const len = getInt64(addr + 8);
|
|
239372
|
-
const a2 = new Array(len);
|
|
239373
|
-
for (let i = 0; i < len; i++) {
|
|
239374
|
-
a2[i] = loadValue(array + i * 8);
|
|
239375
|
-
}
|
|
239311
|
+
this.mem.setUint32(e + 4, 2146959360 | m, true), this.mem.setUint32(e, a2, true);
|
|
239312
|
+
}, l = (e) => {
|
|
239313
|
+
let t15 = s(e + 0), o = s(e + 8);
|
|
239314
|
+
return new Uint8Array(this._inst.exports.mem.buffer, t15, o);
|
|
239315
|
+
}, g = (e) => {
|
|
239316
|
+
let t15 = s(e + 0), o = s(e + 8), a2 = new Array(o);
|
|
239317
|
+
for (let m = 0; m < o; m++)
|
|
239318
|
+
a2[m] = r(t15 + m * 8);
|
|
239376
239319
|
return a2;
|
|
239377
|
-
}
|
|
239378
|
-
|
|
239379
|
-
|
|
239380
|
-
|
|
239381
|
-
|
|
239382
|
-
|
|
239383
|
-
|
|
239384
|
-
|
|
239385
|
-
|
|
239386
|
-
|
|
239387
|
-
|
|
239388
|
-
|
|
239389
|
-
|
|
239390
|
-
|
|
239391
|
-
|
|
239392
|
-
|
|
239393
|
-
|
|
239394
|
-
|
|
239395
|
-
|
|
239396
|
-
|
|
239397
|
-
|
|
239398
|
-
|
|
239399
|
-
|
|
239400
|
-
|
|
239401
|
-
|
|
239402
|
-
|
|
239403
|
-
|
|
239404
|
-
|
|
239405
|
-
|
|
239406
|
-
|
|
239407
|
-
|
|
239408
|
-
|
|
239409
|
-
|
|
239410
|
-
|
|
239411
|
-
|
|
239412
|
-
|
|
239413
|
-
|
|
239414
|
-
|
|
239415
|
-
|
|
239416
|
-
|
|
239417
|
-
|
|
239418
|
-
|
|
239419
|
-
|
|
239420
|
-
|
|
239421
|
-
|
|
239422
|
-
|
|
239423
|
-
|
|
239424
|
-
|
|
239425
|
-
|
|
239426
|
-
|
|
239427
|
-
|
|
239428
|
-
|
|
239429
|
-
|
|
239430
|
-
|
|
239431
|
-
|
|
239432
|
-
|
|
239433
|
-
|
|
239434
|
-
|
|
239435
|
-
|
|
239436
|
-
|
|
239437
|
-
|
|
239438
|
-
}
|
|
239439
|
-
},
|
|
239440
|
-
getInt64(sp + 8) + 1
|
|
239441
|
-
// setTimeout has been seen to fire up to 1 millisecond early
|
|
239442
|
-
));
|
|
239443
|
-
this.mem.setInt32(sp + 16, id, true);
|
|
239444
|
-
},
|
|
239445
|
-
// func clearTimeoutEvent(id int32)
|
|
239446
|
-
"runtime.clearTimeoutEvent": (sp) => {
|
|
239447
|
-
sp >>>= 0;
|
|
239448
|
-
const id = this.mem.getInt32(sp + 8, true);
|
|
239449
|
-
clearTimeout(this._scheduledTimeouts.get(id));
|
|
239450
|
-
this._scheduledTimeouts.delete(id);
|
|
239451
|
-
},
|
|
239452
|
-
// func getRandomData(r []byte)
|
|
239453
|
-
"runtime.getRandomData": (sp) => {
|
|
239454
|
-
sp >>>= 0;
|
|
239455
|
-
globalThis.crypto.getRandomValues(loadSlice(sp + 8));
|
|
239456
|
-
},
|
|
239457
|
-
// func finalizeRef(v ref)
|
|
239458
|
-
"syscall/js.finalizeRef": (sp) => {
|
|
239459
|
-
sp >>>= 0;
|
|
239460
|
-
const id = this.mem.getUint32(sp + 8, true);
|
|
239461
|
-
this._goRefCounts[id]--;
|
|
239462
|
-
if (this._goRefCounts[id] === 0) {
|
|
239463
|
-
const v = this._values[id];
|
|
239464
|
-
this._values[id] = null;
|
|
239465
|
-
this._ids.delete(v);
|
|
239466
|
-
this._idPool.push(id);
|
|
239467
|
-
}
|
|
239468
|
-
},
|
|
239469
|
-
// func stringVal(value string) ref
|
|
239470
|
-
"syscall/js.stringVal": (sp) => {
|
|
239471
|
-
sp >>>= 0;
|
|
239472
|
-
storeValue(sp + 24, loadString(sp + 8));
|
|
239473
|
-
},
|
|
239474
|
-
// func valueGet(v ref, p string) ref
|
|
239475
|
-
"syscall/js.valueGet": (sp) => {
|
|
239476
|
-
sp >>>= 0;
|
|
239477
|
-
const result = Reflect.get(loadValue(sp + 8), loadString(sp + 16));
|
|
239478
|
-
sp = this._inst.exports.getsp() >>> 0;
|
|
239479
|
-
storeValue(sp + 32, result);
|
|
239480
|
-
},
|
|
239481
|
-
// func valueSet(v ref, p string, x ref)
|
|
239482
|
-
"syscall/js.valueSet": (sp) => {
|
|
239483
|
-
sp >>>= 0;
|
|
239484
|
-
Reflect.set(loadValue(sp + 8), loadString(sp + 16), loadValue(sp + 32));
|
|
239485
|
-
},
|
|
239486
|
-
// func valueDelete(v ref, p string)
|
|
239487
|
-
"syscall/js.valueDelete": (sp) => {
|
|
239488
|
-
sp >>>= 0;
|
|
239489
|
-
Reflect.deleteProperty(loadValue(sp + 8), loadString(sp + 16));
|
|
239490
|
-
},
|
|
239491
|
-
// func valueIndex(v ref, i int) ref
|
|
239492
|
-
"syscall/js.valueIndex": (sp) => {
|
|
239493
|
-
sp >>>= 0;
|
|
239494
|
-
storeValue(sp + 24, Reflect.get(loadValue(sp + 8), getInt64(sp + 16)));
|
|
239495
|
-
},
|
|
239496
|
-
// valueSetIndex(v ref, i int, x ref)
|
|
239497
|
-
"syscall/js.valueSetIndex": (sp) => {
|
|
239498
|
-
sp >>>= 0;
|
|
239499
|
-
Reflect.set(loadValue(sp + 8), getInt64(sp + 16), loadValue(sp + 24));
|
|
239500
|
-
},
|
|
239501
|
-
// func valueCall(v ref, m string, args []ref) (ref, bool)
|
|
239502
|
-
"syscall/js.valueCall": (sp) => {
|
|
239503
|
-
sp >>>= 0;
|
|
239504
|
-
try {
|
|
239505
|
-
const v = loadValue(sp + 8);
|
|
239506
|
-
const m = Reflect.get(v, loadString(sp + 16));
|
|
239507
|
-
const args = loadSliceOfValues(sp + 32);
|
|
239508
|
-
const result = Reflect.apply(m, v, args);
|
|
239509
|
-
sp = this._inst.exports.getsp() >>> 0;
|
|
239510
|
-
storeValue(sp + 56, result);
|
|
239511
|
-
this.mem.setUint8(sp + 64, 1);
|
|
239512
|
-
} catch (err) {
|
|
239513
|
-
sp = this._inst.exports.getsp() >>> 0;
|
|
239514
|
-
storeValue(sp + 56, err);
|
|
239515
|
-
this.mem.setUint8(sp + 64, 0);
|
|
239516
|
-
}
|
|
239517
|
-
},
|
|
239518
|
-
// func valueInvoke(v ref, args []ref) (ref, bool)
|
|
239519
|
-
"syscall/js.valueInvoke": (sp) => {
|
|
239520
|
-
sp >>>= 0;
|
|
239521
|
-
try {
|
|
239522
|
-
const v = loadValue(sp + 8);
|
|
239523
|
-
const args = loadSliceOfValues(sp + 16);
|
|
239524
|
-
const result = Reflect.apply(v, void 0, args);
|
|
239525
|
-
sp = this._inst.exports.getsp() >>> 0;
|
|
239526
|
-
storeValue(sp + 40, result);
|
|
239527
|
-
this.mem.setUint8(sp + 48, 1);
|
|
239528
|
-
} catch (err) {
|
|
239529
|
-
sp = this._inst.exports.getsp() >>> 0;
|
|
239530
|
-
storeValue(sp + 40, err);
|
|
239531
|
-
this.mem.setUint8(sp + 48, 0);
|
|
239532
|
-
}
|
|
239533
|
-
},
|
|
239534
|
-
// func valueNew(v ref, args []ref) (ref, bool)
|
|
239535
|
-
"syscall/js.valueNew": (sp) => {
|
|
239536
|
-
sp >>>= 0;
|
|
239537
|
-
try {
|
|
239538
|
-
const v = loadValue(sp + 8);
|
|
239539
|
-
const args = loadSliceOfValues(sp + 16);
|
|
239540
|
-
const result = Reflect.construct(v, args);
|
|
239541
|
-
sp = this._inst.exports.getsp() >>> 0;
|
|
239542
|
-
storeValue(sp + 40, result);
|
|
239543
|
-
this.mem.setUint8(sp + 48, 1);
|
|
239544
|
-
} catch (err) {
|
|
239545
|
-
sp = this._inst.exports.getsp() >>> 0;
|
|
239546
|
-
storeValue(sp + 40, err);
|
|
239547
|
-
this.mem.setUint8(sp + 48, 0);
|
|
239548
|
-
}
|
|
239549
|
-
},
|
|
239550
|
-
// func valueLength(v ref) int
|
|
239551
|
-
"syscall/js.valueLength": (sp) => {
|
|
239552
|
-
sp >>>= 0;
|
|
239553
|
-
setInt64(sp + 16, parseInt(loadValue(sp + 8).length));
|
|
239554
|
-
},
|
|
239555
|
-
// valuePrepareString(v ref) (ref, int)
|
|
239556
|
-
"syscall/js.valuePrepareString": (sp) => {
|
|
239557
|
-
sp >>>= 0;
|
|
239558
|
-
const str = encoder.encode(String(loadValue(sp + 8)));
|
|
239559
|
-
storeValue(sp + 16, str);
|
|
239560
|
-
setInt64(sp + 24, str.length);
|
|
239561
|
-
},
|
|
239562
|
-
// valueLoadString(v ref, b []byte)
|
|
239563
|
-
"syscall/js.valueLoadString": (sp) => {
|
|
239564
|
-
sp >>>= 0;
|
|
239565
|
-
const str = loadValue(sp + 8);
|
|
239566
|
-
loadSlice(sp + 16).set(str);
|
|
239567
|
-
},
|
|
239568
|
-
// func valueInstanceOf(v ref, t ref) bool
|
|
239569
|
-
"syscall/js.valueInstanceOf": (sp) => {
|
|
239570
|
-
sp >>>= 0;
|
|
239571
|
-
this.mem.setUint8(sp + 24, loadValue(sp + 8) instanceof loadValue(sp + 16) ? 1 : 0);
|
|
239572
|
-
},
|
|
239573
|
-
// func copyBytesToGo(dst []byte, src ref) (int, bool)
|
|
239574
|
-
"syscall/js.copyBytesToGo": (sp) => {
|
|
239575
|
-
sp >>>= 0;
|
|
239576
|
-
const dst = loadSlice(sp + 8);
|
|
239577
|
-
const src = loadValue(sp + 32);
|
|
239578
|
-
if (!(src instanceof Uint8Array || src instanceof Uint8ClampedArray)) {
|
|
239579
|
-
this.mem.setUint8(sp + 48, 0);
|
|
239580
|
-
return;
|
|
239581
|
-
}
|
|
239582
|
-
const toCopy = src.subarray(0, dst.length);
|
|
239583
|
-
dst.set(toCopy);
|
|
239584
|
-
setInt64(sp + 40, toCopy.length);
|
|
239585
|
-
this.mem.setUint8(sp + 48, 1);
|
|
239586
|
-
},
|
|
239587
|
-
// func copyBytesToJS(dst ref, src []byte) (int, bool)
|
|
239588
|
-
"syscall/js.copyBytesToJS": (sp) => {
|
|
239589
|
-
sp >>>= 0;
|
|
239590
|
-
const dst = loadValue(sp + 8);
|
|
239591
|
-
const src = loadSlice(sp + 16);
|
|
239592
|
-
if (!(dst instanceof Uint8Array || dst instanceof Uint8ClampedArray)) {
|
|
239593
|
-
this.mem.setUint8(sp + 48, 0);
|
|
239594
|
-
return;
|
|
239595
|
-
}
|
|
239596
|
-
const toCopy = src.subarray(0, dst.length);
|
|
239597
|
-
dst.set(toCopy);
|
|
239598
|
-
setInt64(sp + 40, toCopy.length);
|
|
239599
|
-
this.mem.setUint8(sp + 48, 1);
|
|
239600
|
-
},
|
|
239601
|
-
debug: (value) => {
|
|
239602
|
-
console.log(value);
|
|
239603
|
-
}
|
|
239320
|
+
}, h = (e) => {
|
|
239321
|
+
let t15 = s(e + 0), o = s(e + 8);
|
|
239322
|
+
return V.decode(new DataView(this._inst.exports.mem.buffer, t15, o));
|
|
239323
|
+
}, u = Date.now() - performance.now();
|
|
239324
|
+
this.importObject = { go: { "runtime.wasmExit": (e) => {
|
|
239325
|
+
e >>>= 0;
|
|
239326
|
+
let t15 = this.mem.getInt32(e + 8, true);
|
|
239327
|
+
this.exited = true, delete this._inst, delete this._values, delete this._goRefCounts, delete this._ids, delete this._idPool, this.exit(t15);
|
|
239328
|
+
}, "runtime.wasmWrite": (e) => {
|
|
239329
|
+
e >>>= 0;
|
|
239330
|
+
let t15 = s(e + 8), o = s(e + 16), a2 = this.mem.getInt32(e + 24, true);
|
|
239331
|
+
b.default.writeSync(t15, new Uint8Array(this._inst.exports.mem.buffer, o, a2));
|
|
239332
|
+
}, "runtime.resetMemoryDataView": (e) => {
|
|
239333
|
+
e >>>= 0, this.mem = new DataView(this._inst.exports.mem.buffer);
|
|
239334
|
+
}, "runtime.nanotime1": (e) => {
|
|
239335
|
+
e >>>= 0, n(e + 8, (u + performance.now()) * 1e6);
|
|
239336
|
+
}, "runtime.walltime": (e) => {
|
|
239337
|
+
e >>>= 0;
|
|
239338
|
+
let t15 = (/* @__PURE__ */ new Date()).getTime();
|
|
239339
|
+
n(e + 8, t15 / 1e3), this.mem.setInt32(e + 16, t15 % 1e3 * 1e6, true);
|
|
239340
|
+
}, "runtime.scheduleTimeoutEvent": (e) => {
|
|
239341
|
+
e >>>= 0;
|
|
239342
|
+
let t15 = this._nextCallbackTimeoutID;
|
|
239343
|
+
this._nextCallbackTimeoutID++, this._scheduledTimeouts.set(t15, setTimeout(() => {
|
|
239344
|
+
for (this._resume(); this._scheduledTimeouts.has(t15); )
|
|
239345
|
+
console.warn("scheduleTimeoutEvent: missed timeout event"), this._resume();
|
|
239346
|
+
}, s(e + 8) + 1)), this.mem.setInt32(e + 16, t15, true);
|
|
239347
|
+
}, "runtime.clearTimeoutEvent": (e) => {
|
|
239348
|
+
e >>>= 0;
|
|
239349
|
+
let t15 = this.mem.getInt32(e + 8, true);
|
|
239350
|
+
clearTimeout(this._scheduledTimeouts.get(t15)), this._scheduledTimeouts.delete(t15);
|
|
239351
|
+
}, "runtime.getRandomData": (e) => {
|
|
239352
|
+
e >>>= 0, globalThis.crypto.getRandomValues(l(e + 8));
|
|
239353
|
+
}, "syscall/js.finalizeRef": (e) => {
|
|
239354
|
+
e >>>= 0;
|
|
239355
|
+
let t15 = this.mem.getUint32(e + 8, true);
|
|
239356
|
+
if (this._goRefCounts[t15]--, this._goRefCounts[t15] === 0) {
|
|
239357
|
+
let o = this._values[t15];
|
|
239358
|
+
this._values[t15] = null, this._ids.delete(o), this._idPool.push(t15);
|
|
239359
|
+
}
|
|
239360
|
+
}, "syscall/js.stringVal": (e) => {
|
|
239361
|
+
e >>>= 0, c(e + 24, h(e + 8));
|
|
239362
|
+
}, "syscall/js.valueGet": (e) => {
|
|
239363
|
+
e >>>= 0;
|
|
239364
|
+
let t15 = Reflect.get(r(e + 8), h(e + 16));
|
|
239365
|
+
e = this._inst.exports.getsp() >>> 0, c(e + 32, t15);
|
|
239366
|
+
}, "syscall/js.valueSet": (e) => {
|
|
239367
|
+
e >>>= 0, Reflect.set(r(e + 8), h(e + 16), r(e + 32));
|
|
239368
|
+
}, "syscall/js.valueDelete": (e) => {
|
|
239369
|
+
e >>>= 0, Reflect.deleteProperty(r(e + 8), h(e + 16));
|
|
239370
|
+
}, "syscall/js.valueIndex": (e) => {
|
|
239371
|
+
e >>>= 0, c(e + 24, Reflect.get(r(e + 8), s(e + 16)));
|
|
239372
|
+
}, "syscall/js.valueSetIndex": (e) => {
|
|
239373
|
+
e >>>= 0, Reflect.set(r(e + 8), s(e + 16), r(e + 24));
|
|
239374
|
+
}, "syscall/js.valueCall": (e) => {
|
|
239375
|
+
e >>>= 0;
|
|
239376
|
+
try {
|
|
239377
|
+
let t15 = r(e + 8), o = Reflect.get(t15, h(e + 16)), a2 = g(e + 32), m = Reflect.apply(o, t15, a2);
|
|
239378
|
+
e = this._inst.exports.getsp() >>> 0, c(e + 56, m), this.mem.setUint8(e + 64, 1);
|
|
239379
|
+
} catch (t15) {
|
|
239380
|
+
e = this._inst.exports.getsp() >>> 0, c(e + 56, t15), this.mem.setUint8(e + 64, 0);
|
|
239604
239381
|
}
|
|
239605
|
-
}
|
|
239382
|
+
}, "syscall/js.valueInvoke": (e) => {
|
|
239383
|
+
e >>>= 0;
|
|
239384
|
+
try {
|
|
239385
|
+
let t15 = r(e + 8), o = g(e + 16), a2 = Reflect.apply(t15, void 0, o);
|
|
239386
|
+
e = this._inst.exports.getsp() >>> 0, c(e + 40, a2), this.mem.setUint8(e + 48, 1);
|
|
239387
|
+
} catch (t15) {
|
|
239388
|
+
e = this._inst.exports.getsp() >>> 0, c(e + 40, t15), this.mem.setUint8(e + 48, 0);
|
|
239389
|
+
}
|
|
239390
|
+
}, "syscall/js.valueNew": (e) => {
|
|
239391
|
+
e >>>= 0;
|
|
239392
|
+
try {
|
|
239393
|
+
let t15 = r(e + 8), o = g(e + 16), a2 = Reflect.construct(t15, o);
|
|
239394
|
+
e = this._inst.exports.getsp() >>> 0, c(e + 40, a2), this.mem.setUint8(e + 48, 1);
|
|
239395
|
+
} catch (t15) {
|
|
239396
|
+
e = this._inst.exports.getsp() >>> 0, c(e + 40, t15), this.mem.setUint8(e + 48, 0);
|
|
239397
|
+
}
|
|
239398
|
+
}, "syscall/js.valueLength": (e) => {
|
|
239399
|
+
e >>>= 0, n(e + 16, parseInt(r(e + 8).length));
|
|
239400
|
+
}, "syscall/js.valuePrepareString": (e) => {
|
|
239401
|
+
e >>>= 0;
|
|
239402
|
+
let t15 = U.encode(String(r(e + 8)));
|
|
239403
|
+
c(e + 16, t15), n(e + 24, t15.length);
|
|
239404
|
+
}, "syscall/js.valueLoadString": (e) => {
|
|
239405
|
+
e >>>= 0;
|
|
239406
|
+
let t15 = r(e + 8);
|
|
239407
|
+
l(e + 16).set(t15);
|
|
239408
|
+
}, "syscall/js.valueInstanceOf": (e) => {
|
|
239409
|
+
e >>>= 0, this.mem.setUint8(e + 24, r(e + 8) instanceof r(e + 16) ? 1 : 0);
|
|
239410
|
+
}, "syscall/js.copyBytesToGo": (e) => {
|
|
239411
|
+
e >>>= 0;
|
|
239412
|
+
let t15 = l(e + 8), o = r(e + 32);
|
|
239413
|
+
if (!(o instanceof Uint8Array || o instanceof Uint8ClampedArray)) {
|
|
239414
|
+
this.mem.setUint8(e + 48, 0);
|
|
239415
|
+
return;
|
|
239416
|
+
}
|
|
239417
|
+
let a2 = o.subarray(0, t15.length);
|
|
239418
|
+
t15.set(a2), n(e + 40, a2.length), this.mem.setUint8(e + 48, 1);
|
|
239419
|
+
}, "syscall/js.copyBytesToJS": (e) => {
|
|
239420
|
+
e >>>= 0;
|
|
239421
|
+
let t15 = r(e + 8), o = l(e + 16);
|
|
239422
|
+
if (!(t15 instanceof Uint8Array || t15 instanceof Uint8ClampedArray)) {
|
|
239423
|
+
this.mem.setUint8(e + 48, 0);
|
|
239424
|
+
return;
|
|
239425
|
+
}
|
|
239426
|
+
let a2 = o.subarray(0, t15.length);
|
|
239427
|
+
t15.set(a2), n(e + 40, a2.length), this.mem.setUint8(e + 48, 1);
|
|
239428
|
+
}, debug: (e) => {
|
|
239429
|
+
console.log(e);
|
|
239430
|
+
} } };
|
|
239606
239431
|
}
|
|
239607
|
-
async run(
|
|
239608
|
-
if (!(
|
|
239432
|
+
async run(n) {
|
|
239433
|
+
if (!(n instanceof WebAssembly.Instance))
|
|
239609
239434
|
throw new Error("Go.run: WebAssembly.Instance expected");
|
|
239610
|
-
|
|
239611
|
-
|
|
239612
|
-
|
|
239613
|
-
|
|
239614
|
-
|
|
239615
|
-
|
|
239616
|
-
|
|
239617
|
-
|
|
239618
|
-
|
|
239619
|
-
|
|
239620
|
-
|
|
239621
|
-
|
|
239622
|
-
|
|
239623
|
-
this.
|
|
239624
|
-
this._ids = /* @__PURE__ */ new Map([
|
|
239625
|
-
// mapping from JS values to reference ids
|
|
239626
|
-
[0, 1],
|
|
239627
|
-
[null, 2],
|
|
239628
|
-
[true, 3],
|
|
239629
|
-
[false, 4],
|
|
239630
|
-
[globalThis, 5],
|
|
239631
|
-
[this, 6]
|
|
239632
|
-
]);
|
|
239633
|
-
this._idPool = [];
|
|
239634
|
-
this.exited = false;
|
|
239635
|
-
let offset = 4096;
|
|
239636
|
-
const strPtr = (str) => {
|
|
239637
|
-
const ptr = offset;
|
|
239638
|
-
const bytes = encoder.encode(str + "\0");
|
|
239639
|
-
new Uint8Array(this.mem.buffer, offset, bytes.length).set(bytes);
|
|
239640
|
-
offset += bytes.length;
|
|
239641
|
-
if (offset % 8 !== 0) {
|
|
239642
|
-
offset += 8 - offset % 8;
|
|
239643
|
-
}
|
|
239644
|
-
return ptr;
|
|
239645
|
-
};
|
|
239646
|
-
const argc = this.argv.length;
|
|
239647
|
-
const argvPtrs = [];
|
|
239648
|
-
this.argv.forEach((arg) => {
|
|
239649
|
-
argvPtrs.push(strPtr(arg));
|
|
239650
|
-
});
|
|
239651
|
-
argvPtrs.push(0);
|
|
239652
|
-
const keys = Object.keys(this.env).sort();
|
|
239653
|
-
keys.forEach((key) => {
|
|
239654
|
-
argvPtrs.push(strPtr(`${key}=${this.env[key]}`));
|
|
239655
|
-
});
|
|
239656
|
-
argvPtrs.push(0);
|
|
239657
|
-
const argv = offset;
|
|
239658
|
-
argvPtrs.forEach((ptr) => {
|
|
239659
|
-
this.mem.setUint32(offset, ptr, true);
|
|
239660
|
-
this.mem.setUint32(offset + 4, 0, true);
|
|
239661
|
-
offset += 8;
|
|
239662
|
-
});
|
|
239663
|
-
this._inst.exports.run(argc, argv);
|
|
239664
|
-
if (this.exited) {
|
|
239665
|
-
this._resolveExitPromise();
|
|
239666
|
-
}
|
|
239667
|
-
await this._exitPromise;
|
|
239435
|
+
this._inst = n, this.mem = new DataView(this._inst.exports.mem.buffer), this._values = [NaN, 0, null, true, false, globalThis, this], this._goRefCounts = new Array(this._values.length).fill(1 / 0), this._ids = /* @__PURE__ */ new Map([[0, 1], [null, 2], [true, 3], [false, 4], [globalThis, 5], [this, 6]]), this._idPool = [], this.exited = false;
|
|
239436
|
+
let s = 4096, r = (u) => {
|
|
239437
|
+
let e = s, t15 = U.encode(u + "\0");
|
|
239438
|
+
return new Uint8Array(this.mem.buffer, s, t15.length).set(t15), s += t15.length, s % 8 !== 0 && (s += 8 - s % 8), e;
|
|
239439
|
+
}, c = this.argv.length, l = [];
|
|
239440
|
+
this.argv.forEach((u) => {
|
|
239441
|
+
l.push(r(u));
|
|
239442
|
+
}), l.push(0), Object.keys(this.env).sort().forEach((u) => {
|
|
239443
|
+
l.push(r(`${u}=${this.env[u]}`));
|
|
239444
|
+
}), l.push(0);
|
|
239445
|
+
let h = s;
|
|
239446
|
+
l.forEach((u) => {
|
|
239447
|
+
this.mem.setUint32(s, u, true), this.mem.setUint32(s + 4, 0, true), s += 8;
|
|
239448
|
+
}), this._inst.exports.run(c, h), this.exited && this._resolveExitPromise(), await this._exitPromise;
|
|
239668
239449
|
}
|
|
239669
239450
|
_resume() {
|
|
239670
|
-
if (this.exited)
|
|
239451
|
+
if (this.exited)
|
|
239671
239452
|
throw new Error("Go program has already exited");
|
|
239672
|
-
|
|
239673
|
-
this._inst.exports.resume();
|
|
239674
|
-
if (this.exited) {
|
|
239675
|
-
this._resolveExitPromise();
|
|
239676
|
-
}
|
|
239453
|
+
this._inst.exports.resume(), this.exited && this._resolveExitPromise();
|
|
239677
239454
|
}
|
|
239678
|
-
_makeFuncWrapper(
|
|
239679
|
-
|
|
239455
|
+
_makeFuncWrapper(n) {
|
|
239456
|
+
let s = this;
|
|
239680
239457
|
return function() {
|
|
239681
|
-
|
|
239682
|
-
|
|
239683
|
-
go._resume();
|
|
239684
|
-
return event.result;
|
|
239458
|
+
let r = { id: n, this: this, args: arguments };
|
|
239459
|
+
return s._pendingEvent = r, s._resume(), r.result;
|
|
239685
239460
|
};
|
|
239686
239461
|
}
|
|
239687
239462
|
};
|
|
239688
|
-
function
|
|
239689
|
-
|
|
239690
|
-
longLivedService = startRunningService();
|
|
239691
|
-
}
|
|
239692
|
-
return longLivedService;
|
|
239463
|
+
function p() {
|
|
239464
|
+
return f2 || (f2 = R()), f2;
|
|
239693
239465
|
}
|
|
239694
|
-
var
|
|
239695
|
-
var
|
|
239696
|
-
var
|
|
239697
|
-
|
|
239698
|
-
|
|
239699
|
-
|
|
239700
|
-
|
|
239701
|
-
|
|
239702
|
-
|
|
239703
|
-
|
|
239704
|
-
|
|
239705
|
-
|
|
239706
|
-
|
|
239707
|
-
return {
|
|
239708
|
-
transform: (input, options) => {
|
|
239709
|
-
try {
|
|
239710
|
-
return _service.transform(input, options || {});
|
|
239711
|
-
} catch (err) {
|
|
239712
|
-
longLivedService = void 0;
|
|
239713
|
-
throw err;
|
|
239714
|
-
}
|
|
239715
|
-
},
|
|
239716
|
-
parse: (input, options) => {
|
|
239717
|
-
try {
|
|
239718
|
-
const result = _service.parse(input, options || {});
|
|
239719
|
-
return { ...result, ast: JSON.parse(result.ast) };
|
|
239720
|
-
} catch (err) {
|
|
239721
|
-
longLivedService = void 0;
|
|
239722
|
-
throw err;
|
|
239723
|
-
}
|
|
239724
|
-
},
|
|
239725
|
-
convertToTSX: (input, options) => {
|
|
239726
|
-
try {
|
|
239727
|
-
const result = _service.convertToTSX(input, options || {});
|
|
239728
|
-
return { ...result, map: JSON.parse(result.map) };
|
|
239729
|
-
} catch (err) {
|
|
239730
|
-
longLivedService = void 0;
|
|
239731
|
-
throw err;
|
|
239732
|
-
}
|
|
239466
|
+
var f2;
|
|
239467
|
+
var N = (i, n) => p().transform(i, n);
|
|
239468
|
+
var L = (i, n) => p().parse(i, n);
|
|
239469
|
+
var W = (i, n) => p().convertToTSX(i, n);
|
|
239470
|
+
function R() {
|
|
239471
|
+
let i = new d(), n = F((0, j.fileURLToPath)(new URL("../astro.wasm", w)), i.importObject);
|
|
239472
|
+
i.run(n);
|
|
239473
|
+
let s = globalThis["@astrojs/compiler"];
|
|
239474
|
+
return { transform: (r, c) => {
|
|
239475
|
+
try {
|
|
239476
|
+
return s.transform(r, c || {});
|
|
239477
|
+
} catch (l) {
|
|
239478
|
+
throw f2 = void 0, l;
|
|
239733
239479
|
}
|
|
239734
|
-
}
|
|
239480
|
+
}, parse: (r, c) => {
|
|
239481
|
+
try {
|
|
239482
|
+
let l = s.parse(r, c || {});
|
|
239483
|
+
return { ...l, ast: JSON.parse(l.ast) };
|
|
239484
|
+
} catch (l) {
|
|
239485
|
+
throw f2 = void 0, l;
|
|
239486
|
+
}
|
|
239487
|
+
}, convertToTSX: (r, c) => {
|
|
239488
|
+
try {
|
|
239489
|
+
let l = s.convertToTSX(r, c || {});
|
|
239490
|
+
return { ...l, map: JSON.parse(l.map) };
|
|
239491
|
+
} catch (l) {
|
|
239492
|
+
throw f2 = void 0, l;
|
|
239493
|
+
}
|
|
239494
|
+
} };
|
|
239735
239495
|
}
|
|
239736
|
-
function
|
|
239737
|
-
|
|
239738
|
-
return new WebAssembly.Instance(new WebAssembly.Module(
|
|
239496
|
+
function F(i, n) {
|
|
239497
|
+
let s = (0, S.readFileSync)(i);
|
|
239498
|
+
return new WebAssembly.Instance(new WebAssembly.Module(s), n);
|
|
239739
239499
|
}
|
|
239740
239500
|
}
|
|
239741
239501
|
});
|
|
@@ -239953,11 +239713,18 @@ var require_importPackage = __commonJS({
|
|
|
239953
239713
|
exports2.importVueIntegration = importVueIntegration;
|
|
239954
239714
|
function importPrettier(fromPath) {
|
|
239955
239715
|
const prettierPkg = getPackagePath("prettier", [fromPath, __dirname]);
|
|
239716
|
+
if (!prettierPkg) {
|
|
239717
|
+
return void 0;
|
|
239718
|
+
}
|
|
239956
239719
|
return require(prettierPkg);
|
|
239957
239720
|
}
|
|
239958
239721
|
exports2.importPrettier = importPrettier;
|
|
239959
239722
|
function getPrettierPluginPath(fromPath) {
|
|
239960
|
-
|
|
239723
|
+
const prettierPluginPath = getPackagePath("prettier-plugin-astro", [fromPath, __dirname]);
|
|
239724
|
+
if (!prettierPluginPath) {
|
|
239725
|
+
return void 0;
|
|
239726
|
+
}
|
|
239727
|
+
return prettierPluginPath;
|
|
239961
239728
|
}
|
|
239962
239729
|
exports2.getPrettierPluginPath = getPrettierPluginPath;
|
|
239963
239730
|
}
|
|
@@ -240262,54 +240029,98 @@ var require_parseAstro = __commonJS({
|
|
|
240262
240029
|
}
|
|
240263
240030
|
});
|
|
240264
240031
|
|
|
240265
|
-
//
|
|
240266
|
-
var
|
|
240267
|
-
"
|
|
240032
|
+
// ../../node_modules/.pnpm/@astrojs+compiler@1.5.0/node_modules/@astrojs/compiler/dist/node/utils.cjs
|
|
240033
|
+
var require_utils2 = __commonJS({
|
|
240034
|
+
"../../node_modules/.pnpm/@astrojs+compiler@1.5.0/node_modules/@astrojs/compiler/dist/node/utils.cjs"(exports2, module2) {
|
|
240268
240035
|
"use strict";
|
|
240269
|
-
Object.defineProperty
|
|
240270
|
-
|
|
240271
|
-
|
|
240272
|
-
|
|
240273
|
-
|
|
240274
|
-
|
|
240275
|
-
|
|
240276
|
-
|
|
240277
|
-
|
|
240278
|
-
|
|
240279
|
-
|
|
240280
|
-
|
|
240281
|
-
|
|
240282
|
-
|
|
240283
|
-
|
|
240284
|
-
|
|
240285
|
-
|
|
240286
|
-
|
|
240287
|
-
|
|
240288
|
-
|
|
240289
|
-
|
|
240290
|
-
|
|
240291
|
-
|
|
240292
|
-
|
|
240293
|
-
|
|
240294
|
-
|
|
240295
|
-
|
|
240296
|
-
|
|
240297
|
-
|
|
240298
|
-
|
|
240299
|
-
|
|
240300
|
-
|
|
240301
|
-
|
|
240302
|
-
}
|
|
240036
|
+
var l = Object.defineProperty;
|
|
240037
|
+
var d = Object.getOwnPropertyDescriptor;
|
|
240038
|
+
var p = Object.getOwnPropertyNames;
|
|
240039
|
+
var N = Object.prototype.hasOwnProperty;
|
|
240040
|
+
var u = (o, e) => {
|
|
240041
|
+
for (var t15 in e)
|
|
240042
|
+
l(o, t15, { get: e[t15], enumerable: true });
|
|
240043
|
+
};
|
|
240044
|
+
var f2 = (o, e, t15, n) => {
|
|
240045
|
+
if (e && typeof e == "object" || typeof e == "function")
|
|
240046
|
+
for (let r of p(e))
|
|
240047
|
+
!N.call(o, r) && r !== t15 && l(o, r, { get: () => e[r], enumerable: !(n = d(e, r)) || n.enumerable });
|
|
240048
|
+
return o;
|
|
240049
|
+
};
|
|
240050
|
+
var h = (o) => f2(l({}, "__esModule", { value: true }), o);
|
|
240051
|
+
var v = {};
|
|
240052
|
+
u(v, { is: () => s, serialize: () => g, walk: () => y });
|
|
240053
|
+
module2.exports = h(v);
|
|
240054
|
+
function i(o) {
|
|
240055
|
+
return (e) => e.type === o;
|
|
240056
|
+
}
|
|
240057
|
+
var s = { parent(o) {
|
|
240058
|
+
return Array.isArray(o.children);
|
|
240059
|
+
}, literal(o) {
|
|
240060
|
+
return typeof o.value == "string";
|
|
240061
|
+
}, tag(o) {
|
|
240062
|
+
return o.type === "element" || o.type === "custom-element" || o.type === "component" || o.type === "fragment";
|
|
240063
|
+
}, whitespace(o) {
|
|
240064
|
+
return o.type === "text" && o.value.trim().length === 0;
|
|
240065
|
+
}, root: i("root"), element: i("element"), customElement: i("custom-element"), component: i("component"), fragment: i("fragment"), expression: i("expression"), text: i("text"), doctype: i("doctype"), comment: i("comment"), frontmatter: i("frontmatter") };
|
|
240066
|
+
var m = class {
|
|
240067
|
+
constructor(e) {
|
|
240068
|
+
this.callback = e;
|
|
240069
|
+
}
|
|
240070
|
+
async visit(e, t15, n) {
|
|
240071
|
+
if (await this.callback(e, t15, n), s.parent(e)) {
|
|
240072
|
+
let r = [];
|
|
240073
|
+
for (let a2 = 0; a2 < e.children.length; a2++) {
|
|
240074
|
+
let c = e.children[a2];
|
|
240075
|
+
r.push(this.callback(c, e, a2));
|
|
240076
|
+
}
|
|
240077
|
+
await Promise.all(r);
|
|
240078
|
+
}
|
|
240079
|
+
}
|
|
240080
|
+
};
|
|
240081
|
+
function y(o, e) {
|
|
240082
|
+
new m(e).visit(o);
|
|
240083
|
+
}
|
|
240084
|
+
function x(o) {
|
|
240085
|
+
let e = "";
|
|
240086
|
+
for (let t15 of o.attributes)
|
|
240087
|
+
switch (e += " ", t15.kind) {
|
|
240088
|
+
case "empty": {
|
|
240089
|
+
e += `${t15.name}`;
|
|
240090
|
+
break;
|
|
240091
|
+
}
|
|
240092
|
+
case "expression": {
|
|
240093
|
+
e += `${t15.name}={${t15.value}}`;
|
|
240094
|
+
break;
|
|
240095
|
+
}
|
|
240096
|
+
case "quoted": {
|
|
240097
|
+
e += `${t15.name}="${t15.value}"`;
|
|
240098
|
+
break;
|
|
240099
|
+
}
|
|
240100
|
+
case "template-literal": {
|
|
240101
|
+
e += `${t15.name}=\`${t15.value}\``;
|
|
240102
|
+
break;
|
|
240103
|
+
}
|
|
240104
|
+
case "shorthand": {
|
|
240105
|
+
e += `{${t15.name}}`;
|
|
240106
|
+
break;
|
|
240107
|
+
}
|
|
240108
|
+
case "spread": {
|
|
240109
|
+
e += `{...${t15.name}}`;
|
|
240110
|
+
break;
|
|
240111
|
+
}
|
|
240112
|
+
}
|
|
240113
|
+
return e;
|
|
240303
240114
|
}
|
|
240304
|
-
|
|
240305
|
-
|
|
240306
|
-
|
|
240307
|
-
|
|
240308
|
-
|
|
240309
|
-
|
|
240310
|
-
}
|
|
240115
|
+
function g(o, e = { selfClose: true }) {
|
|
240116
|
+
let t15 = "";
|
|
240117
|
+
function n(r) {
|
|
240118
|
+
s.root(r) ? r.children.forEach((a2) => n(a2)) : s.frontmatter(r) ? t15 += `---${r.value}---
|
|
240119
|
+
|
|
240120
|
+
` : s.comment(r) ? t15 += `<!--${r.value}-->` : s.expression(r) ? (t15 += "{", r.children.forEach((a2) => n(a2)), t15 += "}") : s.literal(r) ? t15 += r.value : s.tag(r) && (t15 += `<${r.name}`, t15 += x(r), r.children.length == 0 && e.selfClose ? t15 += " />" : (t15 += ">", r.children.forEach((a2) => n(a2)), t15 += `</${r.name}>`));
|
|
240121
|
+
}
|
|
240122
|
+
return n(o), t15;
|
|
240311
240123
|
}
|
|
240312
|
-
exports2.createCompilerPoint = createCompilerPoint;
|
|
240313
240124
|
}
|
|
240314
240125
|
});
|
|
240315
240126
|
|
|
@@ -240350,11 +240161,11 @@ var require_parseCSS = __commonJS({
|
|
|
240350
240161
|
return result;
|
|
240351
240162
|
};
|
|
240352
240163
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
240353
|
-
exports2.findInlineStyles = exports2.
|
|
240164
|
+
exports2.findInlineStyles = exports2.collectClassesAndIdsFromDocument = exports2.extractStylesheets = void 0;
|
|
240165
|
+
var utils_1 = require_utils2();
|
|
240354
240166
|
var language_core_1 = require_out3();
|
|
240355
240167
|
var SourceMap = __importStar(require_out2());
|
|
240356
240168
|
var muggle = __importStar(require_out());
|
|
240357
|
-
var compilerUtils_js_1 = require_compilerUtils();
|
|
240358
240169
|
function extractStylesheets(fileName, snapshot, htmlDocument, ast) {
|
|
240359
240170
|
const embeddedCSSFiles = [];
|
|
240360
240171
|
for (const [index, root] of htmlDocument.roots.entries()) {
|
|
@@ -240418,17 +240229,17 @@ var require_parseCSS = __commonJS({
|
|
|
240418
240229
|
return embeddedCSSFiles;
|
|
240419
240230
|
}
|
|
240420
240231
|
exports2.extractStylesheets = extractStylesheets;
|
|
240421
|
-
function
|
|
240232
|
+
function collectClassesAndIdsFromDocument(ast) {
|
|
240422
240233
|
const classesAndIds = [];
|
|
240423
240234
|
function walkDown(parent) {
|
|
240424
240235
|
if (!parent.children)
|
|
240425
240236
|
return;
|
|
240426
240237
|
parent.children.forEach((child) => {
|
|
240427
|
-
if (
|
|
240238
|
+
if (utils_1.is.element(child)) {
|
|
240428
240239
|
const classOrIDAttributes = child.attributes.filter((attr) => attr.kind === "quoted" && (attr.name === "class" || attr.name === "id")).flatMap((attr) => attr.value.split(" "));
|
|
240429
240240
|
classesAndIds.push(...classOrIDAttributes);
|
|
240430
240241
|
}
|
|
240431
|
-
if (
|
|
240242
|
+
if (utils_1.is.parent(child)) {
|
|
240432
240243
|
walkDown(child);
|
|
240433
240244
|
}
|
|
240434
240245
|
});
|
|
@@ -240436,20 +240247,20 @@ var require_parseCSS = __commonJS({
|
|
|
240436
240247
|
walkDown(ast);
|
|
240437
240248
|
return classesAndIds;
|
|
240438
240249
|
}
|
|
240439
|
-
exports2.
|
|
240250
|
+
exports2.collectClassesAndIdsFromDocument = collectClassesAndIdsFromDocument;
|
|
240440
240251
|
function findInlineStyles(ast) {
|
|
240441
240252
|
const styleAttrs = [];
|
|
240442
240253
|
function walkDown(parent) {
|
|
240443
240254
|
if (!parent.children)
|
|
240444
240255
|
return;
|
|
240445
240256
|
parent.children.forEach((child) => {
|
|
240446
|
-
if (
|
|
240257
|
+
if (utils_1.is.element(child)) {
|
|
240447
240258
|
const styleAttribute = child.attributes.find((attr) => attr.name === "style" && attr.kind === "quoted");
|
|
240448
240259
|
if (styleAttribute && styleAttribute.position) {
|
|
240449
240260
|
styleAttrs.push(styleAttribute);
|
|
240450
240261
|
}
|
|
240451
240262
|
}
|
|
240452
|
-
if (
|
|
240263
|
+
if (utils_1.is.parent(child)) {
|
|
240453
240264
|
walkDown(child);
|
|
240454
240265
|
}
|
|
240455
240266
|
});
|
|
@@ -240462,14 +240273,14 @@ var require_parseCSS = __commonJS({
|
|
|
240462
240273
|
});
|
|
240463
240274
|
|
|
240464
240275
|
// ../language-server/dist/utils.js
|
|
240465
|
-
var
|
|
240276
|
+
var require_utils3 = __commonJS({
|
|
240466
240277
|
"../language-server/dist/utils.js"(exports2) {
|
|
240467
240278
|
"use strict";
|
|
240468
240279
|
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
240469
240280
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
240470
240281
|
};
|
|
240471
240282
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
240472
|
-
exports2.getWorkspacePnpPath = exports2.getOpenFrontmatterEdit = exports2.getNewFrontmatterEdit = exports2.ensureRangeIsInFrontmatter = exports2.PointToPosition = exports2.isInsideFrontmatter = exports2.isInsideExpression = exports2.isInComponentStartTag = exports2.isPossibleComponent = exports2.isJSDocument = void 0;
|
|
240283
|
+
exports2.getWorkspacePnpPath = exports2.getOpenFrontmatterEdit = exports2.getNewFrontmatterEdit = exports2.ensureRangeIsInFrontmatter = exports2.createCompilerPoint = exports2.createCompilerPosition = exports2.PointToPosition = exports2.isInsideFrontmatter = exports2.isInsideExpression = exports2.isInComponentStartTag = exports2.isPossibleComponent = exports2.isJSDocument = void 0;
|
|
240473
240284
|
var node_path_1 = __importDefault(require("node:path"));
|
|
240474
240285
|
var vscode_html_languageservice_1 = (init_htmlLanguageService(), __toCommonJS(htmlLanguageService_exports));
|
|
240475
240286
|
function isJSDocument(languageId) {
|
|
@@ -240505,6 +240316,21 @@ var require_utils2 = __commonJS({
|
|
|
240505
240316
|
return vscode_html_languageservice_1.Position.create(point.line, point.column - 1);
|
|
240506
240317
|
}
|
|
240507
240318
|
exports2.PointToPosition = PointToPosition;
|
|
240319
|
+
function createCompilerPosition(start, end) {
|
|
240320
|
+
return {
|
|
240321
|
+
start,
|
|
240322
|
+
end
|
|
240323
|
+
};
|
|
240324
|
+
}
|
|
240325
|
+
exports2.createCompilerPosition = createCompilerPosition;
|
|
240326
|
+
function createCompilerPoint(line, column, offset) {
|
|
240327
|
+
return {
|
|
240328
|
+
line,
|
|
240329
|
+
column,
|
|
240330
|
+
offset
|
|
240331
|
+
};
|
|
240332
|
+
}
|
|
240333
|
+
exports2.createCompilerPoint = createCompilerPoint;
|
|
240508
240334
|
function ensureRangeIsInFrontmatter(range, frontmatter) {
|
|
240509
240335
|
if (frontmatter.status === "open" || frontmatter.status === "closed") {
|
|
240510
240336
|
const frontmatterStartPosition = PointToPosition(frontmatter.position.start);
|
|
@@ -240581,7 +240407,7 @@ var require_parseHTML = __commonJS({
|
|
|
240581
240407
|
exports2.preprocessHTML = exports2.parseHTML = void 0;
|
|
240582
240408
|
var language_core_1 = require_out3();
|
|
240583
240409
|
var html = __importStar((init_htmlLanguageService(), __toCommonJS(htmlLanguageService_exports)));
|
|
240584
|
-
var utils_1 =
|
|
240410
|
+
var utils_1 = require_utils3();
|
|
240585
240411
|
var htmlLs = html.getLanguageService();
|
|
240586
240412
|
function parseHTML(fileName, snapshot, frontmatterEnd) {
|
|
240587
240413
|
const htmlContent = preprocessHTML(snapshot.getText(0, snapshot.getLength()), frontmatterEnd);
|
|
@@ -240696,10 +240522,10 @@ var require_parseJS = __commonJS({
|
|
|
240696
240522
|
};
|
|
240697
240523
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
240698
240524
|
exports2.htmlEventAttributes = exports2.getScriptTagLanguage = exports2.extractScriptTags = void 0;
|
|
240525
|
+
var utils_1 = require_utils2();
|
|
240699
240526
|
var language_core_1 = require_out3();
|
|
240700
240527
|
var SourceMap = __importStar(require_out2());
|
|
240701
240528
|
var muggle = __importStar(require_out());
|
|
240702
|
-
var compilerUtils_js_1 = require_compilerUtils();
|
|
240703
240529
|
function extractScriptTags(fileName, snapshot, htmlDocument, ast) {
|
|
240704
240530
|
const embeddedJSFiles = [];
|
|
240705
240531
|
for (const [index, root] of htmlDocument.roots.entries()) {
|
|
@@ -240785,7 +240611,7 @@ var require_parseJS = __commonJS({
|
|
|
240785
240611
|
if (!parent.children)
|
|
240786
240612
|
return;
|
|
240787
240613
|
parent.children.forEach((child) => {
|
|
240788
|
-
if (
|
|
240614
|
+
if (utils_1.is.element(child)) {
|
|
240789
240615
|
const eventAttribute = child.attributes.find((attr) => exports2.htmlEventAttributes.includes(attr.name) && attr.kind === "quoted");
|
|
240790
240616
|
if (eventAttribute && eventAttribute.position) {
|
|
240791
240617
|
eventAttrs.push({
|
|
@@ -240794,7 +240620,7 @@ var require_parseJS = __commonJS({
|
|
|
240794
240620
|
});
|
|
240795
240621
|
}
|
|
240796
240622
|
}
|
|
240797
|
-
if (
|
|
240623
|
+
if (utils_1.is.parent(child)) {
|
|
240798
240624
|
walkDown(child);
|
|
240799
240625
|
}
|
|
240800
240626
|
});
|
|
@@ -240960,8 +240786,8 @@ var require_core = __commonJS({
|
|
|
240960
240786
|
getScriptFileNames() {
|
|
240961
240787
|
const fileNames = host.getScriptFileNames();
|
|
240962
240788
|
return [
|
|
240963
|
-
...
|
|
240964
|
-
...
|
|
240789
|
+
...fileNames,
|
|
240790
|
+
...astroInstall ? ["./env.d.ts", "./astro-jsx.d.ts"].map((filePath) => ts.sys.resolvePath(path.resolve(astroInstall.path, filePath))) : []
|
|
240965
240791
|
];
|
|
240966
240792
|
},
|
|
240967
240793
|
getCompilationSettings() {
|
|
@@ -241405,7 +241231,7 @@ var require_glob_parent = __commonJS({
|
|
|
241405
241231
|
});
|
|
241406
241232
|
|
|
241407
241233
|
// ../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/utils.js
|
|
241408
|
-
var
|
|
241234
|
+
var require_utils4 = __commonJS({
|
|
241409
241235
|
"../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/utils.js"(exports2) {
|
|
241410
241236
|
"use strict";
|
|
241411
241237
|
exports2.isInteger = (num) => {
|
|
@@ -241492,7 +241318,7 @@ var require_utils3 = __commonJS({
|
|
|
241492
241318
|
var require_stringify = __commonJS({
|
|
241493
241319
|
"../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/stringify.js"(exports2, module2) {
|
|
241494
241320
|
"use strict";
|
|
241495
|
-
var utils =
|
|
241321
|
+
var utils = require_utils4();
|
|
241496
241322
|
module2.exports = (ast, options = {}) => {
|
|
241497
241323
|
let stringify = (node, parent = {}) => {
|
|
241498
241324
|
let invalidBlock = options.escapeInvalid && utils.isInvalidBrace(parent);
|
|
@@ -241958,9 +241784,9 @@ var require_compile = __commonJS({
|
|
|
241958
241784
|
"../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/compile.js"(exports2, module2) {
|
|
241959
241785
|
"use strict";
|
|
241960
241786
|
var fill = require_fill_range();
|
|
241961
|
-
var utils =
|
|
241787
|
+
var utils = require_utils4();
|
|
241962
241788
|
var compile = (ast, options = {}) => {
|
|
241963
|
-
let
|
|
241789
|
+
let walk2 = (node, parent = {}) => {
|
|
241964
241790
|
let invalidBlock = utils.isInvalidBrace(parent);
|
|
241965
241791
|
let invalidNode = node.invalid === true && options.escapeInvalid === true;
|
|
241966
241792
|
let invalid = invalidBlock === true || invalidNode === true;
|
|
@@ -241993,12 +241819,12 @@ var require_compile = __commonJS({
|
|
|
241993
241819
|
}
|
|
241994
241820
|
if (node.nodes) {
|
|
241995
241821
|
for (let child of node.nodes) {
|
|
241996
|
-
output +=
|
|
241822
|
+
output += walk2(child, node);
|
|
241997
241823
|
}
|
|
241998
241824
|
}
|
|
241999
241825
|
return output;
|
|
242000
241826
|
};
|
|
242001
|
-
return
|
|
241827
|
+
return walk2(ast);
|
|
242002
241828
|
};
|
|
242003
241829
|
module2.exports = compile;
|
|
242004
241830
|
}
|
|
@@ -242010,7 +241836,7 @@ var require_expand = __commonJS({
|
|
|
242010
241836
|
"use strict";
|
|
242011
241837
|
var fill = require_fill_range();
|
|
242012
241838
|
var stringify = require_stringify();
|
|
242013
|
-
var utils =
|
|
241839
|
+
var utils = require_utils4();
|
|
242014
241840
|
var append = (queue = "", stash = "", enclose = false) => {
|
|
242015
241841
|
let result = [];
|
|
242016
241842
|
queue = [].concat(queue);
|
|
@@ -242037,7 +241863,7 @@ var require_expand = __commonJS({
|
|
|
242037
241863
|
};
|
|
242038
241864
|
var expand = (ast, options = {}) => {
|
|
242039
241865
|
let rangeLimit = options.rangeLimit === void 0 ? 1e3 : options.rangeLimit;
|
|
242040
|
-
let
|
|
241866
|
+
let walk2 = (node, parent = {}) => {
|
|
242041
241867
|
node.queue = [];
|
|
242042
241868
|
let p = parent;
|
|
242043
241869
|
let q = parent.queue;
|
|
@@ -242090,12 +241916,12 @@ var require_expand = __commonJS({
|
|
|
242090
241916
|
continue;
|
|
242091
241917
|
}
|
|
242092
241918
|
if (child.nodes) {
|
|
242093
|
-
|
|
241919
|
+
walk2(child, node);
|
|
242094
241920
|
}
|
|
242095
241921
|
}
|
|
242096
241922
|
return queue;
|
|
242097
241923
|
};
|
|
242098
|
-
return utils.flatten(
|
|
241924
|
+
return utils.flatten(walk2(ast));
|
|
242099
241925
|
};
|
|
242100
241926
|
module2.exports = expand;
|
|
242101
241927
|
}
|
|
@@ -242236,7 +242062,7 @@ var require_parse2 = __commonJS({
|
|
|
242236
242062
|
CHAR_NO_BREAK_SPACE,
|
|
242237
242063
|
CHAR_ZERO_WIDTH_NOBREAK_SPACE
|
|
242238
242064
|
} = require_constants2();
|
|
242239
|
-
var
|
|
242065
|
+
var parse6 = (input, options = {}) => {
|
|
242240
242066
|
if (typeof input !== "string") {
|
|
242241
242067
|
throw new TypeError("Expected a string");
|
|
242242
242068
|
}
|
|
@@ -242442,7 +242268,7 @@ var require_parse2 = __commonJS({
|
|
|
242442
242268
|
push({ type: "eos" });
|
|
242443
242269
|
return ast;
|
|
242444
242270
|
};
|
|
242445
|
-
module2.exports =
|
|
242271
|
+
module2.exports = parse6;
|
|
242446
242272
|
}
|
|
242447
242273
|
});
|
|
242448
242274
|
|
|
@@ -242453,7 +242279,7 @@ var require_braces = __commonJS({
|
|
|
242453
242279
|
var stringify = require_stringify();
|
|
242454
242280
|
var compile = require_compile();
|
|
242455
242281
|
var expand = require_expand();
|
|
242456
|
-
var
|
|
242282
|
+
var parse6 = require_parse2();
|
|
242457
242283
|
var braces = (input, options = {}) => {
|
|
242458
242284
|
let output = [];
|
|
242459
242285
|
if (Array.isArray(input)) {
|
|
@@ -242473,7 +242299,7 @@ var require_braces = __commonJS({
|
|
|
242473
242299
|
}
|
|
242474
242300
|
return output;
|
|
242475
242301
|
};
|
|
242476
|
-
braces.parse = (input, options = {}) =>
|
|
242302
|
+
braces.parse = (input, options = {}) => parse6(input, options);
|
|
242477
242303
|
braces.stringify = (input, options = {}) => {
|
|
242478
242304
|
if (typeof input === "string") {
|
|
242479
242305
|
return stringify(braces.parse(input, options), options);
|
|
@@ -242707,7 +242533,7 @@ var require_constants3 = __commonJS({
|
|
|
242707
242533
|
});
|
|
242708
242534
|
|
|
242709
242535
|
// ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/utils.js
|
|
242710
|
-
var
|
|
242536
|
+
var require_utils5 = __commonJS({
|
|
242711
242537
|
"../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/utils.js"(exports2) {
|
|
242712
242538
|
"use strict";
|
|
242713
242539
|
var path = require("path");
|
|
@@ -242773,7 +242599,7 @@ var require_utils4 = __commonJS({
|
|
|
242773
242599
|
var require_scan = __commonJS({
|
|
242774
242600
|
"../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/scan.js"(exports2, module2) {
|
|
242775
242601
|
"use strict";
|
|
242776
|
-
var utils =
|
|
242602
|
+
var utils = require_utils5();
|
|
242777
242603
|
var {
|
|
242778
242604
|
CHAR_ASTERISK,
|
|
242779
242605
|
/* * */
|
|
@@ -243107,7 +242933,7 @@ var require_parse3 = __commonJS({
|
|
|
243107
242933
|
"../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/parse.js"(exports2, module2) {
|
|
243108
242934
|
"use strict";
|
|
243109
242935
|
var constants = require_constants3();
|
|
243110
|
-
var utils =
|
|
242936
|
+
var utils = require_utils5();
|
|
243111
242937
|
var {
|
|
243112
242938
|
MAX_LENGTH,
|
|
243113
242939
|
POSIX_REGEX_SOURCE,
|
|
@@ -243131,7 +242957,7 @@ var require_parse3 = __commonJS({
|
|
|
243131
242957
|
var syntaxError = (type, char) => {
|
|
243132
242958
|
return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
|
|
243133
242959
|
};
|
|
243134
|
-
var
|
|
242960
|
+
var parse6 = (input, options) => {
|
|
243135
242961
|
if (typeof input !== "string") {
|
|
243136
242962
|
throw new TypeError("Expected a string");
|
|
243137
242963
|
}
|
|
@@ -243281,7 +243107,7 @@ var require_parse3 = __commonJS({
|
|
|
243281
243107
|
output = token.close = `)$))${extglobStar}`;
|
|
243282
243108
|
}
|
|
243283
243109
|
if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
|
|
243284
|
-
const expression =
|
|
243110
|
+
const expression = parse6(rest, { ...options, fastpaths: false }).output;
|
|
243285
243111
|
output = token.close = `)${expression})${extglobStar})`;
|
|
243286
243112
|
}
|
|
243287
243113
|
if (token.prev.type === "bos") {
|
|
@@ -243810,7 +243636,7 @@ var require_parse3 = __commonJS({
|
|
|
243810
243636
|
}
|
|
243811
243637
|
return state;
|
|
243812
243638
|
};
|
|
243813
|
-
|
|
243639
|
+
parse6.fastpaths = (input, options) => {
|
|
243814
243640
|
const opts = { ...options };
|
|
243815
243641
|
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
|
|
243816
243642
|
const len = input.length;
|
|
@@ -243879,7 +243705,7 @@ var require_parse3 = __commonJS({
|
|
|
243879
243705
|
}
|
|
243880
243706
|
return source;
|
|
243881
243707
|
};
|
|
243882
|
-
module2.exports =
|
|
243708
|
+
module2.exports = parse6;
|
|
243883
243709
|
}
|
|
243884
243710
|
});
|
|
243885
243711
|
|
|
@@ -243889,8 +243715,8 @@ var require_picomatch = __commonJS({
|
|
|
243889
243715
|
"use strict";
|
|
243890
243716
|
var path = require("path");
|
|
243891
243717
|
var scan = require_scan();
|
|
243892
|
-
var
|
|
243893
|
-
var utils =
|
|
243718
|
+
var parse6 = require_parse3();
|
|
243719
|
+
var utils = require_utils5();
|
|
243894
243720
|
var constants = require_constants3();
|
|
243895
243721
|
var isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
|
|
243896
243722
|
var picomatch = (glob, options, returnState = false) => {
|
|
@@ -243979,7 +243805,7 @@ var require_picomatch = __commonJS({
|
|
|
243979
243805
|
picomatch.parse = (pattern, options) => {
|
|
243980
243806
|
if (Array.isArray(pattern))
|
|
243981
243807
|
return pattern.map((p) => picomatch.parse(p, options));
|
|
243982
|
-
return
|
|
243808
|
+
return parse6(pattern, { ...options, fastpaths: false });
|
|
243983
243809
|
};
|
|
243984
243810
|
picomatch.scan = (input, options) => scan(input, options);
|
|
243985
243811
|
picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
|
|
@@ -244005,10 +243831,10 @@ var require_picomatch = __commonJS({
|
|
|
244005
243831
|
}
|
|
244006
243832
|
let parsed = { negated: false, fastpaths: true };
|
|
244007
243833
|
if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
|
|
244008
|
-
parsed.output =
|
|
243834
|
+
parsed.output = parse6.fastpaths(input, options);
|
|
244009
243835
|
}
|
|
244010
243836
|
if (!parsed.output) {
|
|
244011
|
-
parsed =
|
|
243837
|
+
parsed = parse6(input, options);
|
|
244012
243838
|
}
|
|
244013
243839
|
return picomatch.compileRe(parsed, options, returnOutput, returnState);
|
|
244014
243840
|
};
|
|
@@ -244042,7 +243868,7 @@ var require_micromatch = __commonJS({
|
|
|
244042
243868
|
var util = require("util");
|
|
244043
243869
|
var braces = require_braces();
|
|
244044
243870
|
var picomatch = require_picomatch2();
|
|
244045
|
-
var utils =
|
|
243871
|
+
var utils = require_utils5();
|
|
244046
243872
|
var isEmptyString = (val) => val === "" || val === "./";
|
|
244047
243873
|
var micromatch = (list, patterns, options) => {
|
|
244048
243874
|
patterns = [].concat(patterns);
|
|
@@ -244501,7 +244327,7 @@ var require_string = __commonJS({
|
|
|
244501
244327
|
});
|
|
244502
244328
|
|
|
244503
244329
|
// ../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/utils/index.js
|
|
244504
|
-
var
|
|
244330
|
+
var require_utils6 = __commonJS({
|
|
244505
244331
|
"../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/utils/index.js"(exports2) {
|
|
244506
244332
|
"use strict";
|
|
244507
244333
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -244529,7 +244355,7 @@ var require_tasks = __commonJS({
|
|
|
244529
244355
|
"use strict";
|
|
244530
244356
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
244531
244357
|
exports2.convertPatternGroupToTask = exports2.convertPatternGroupsToTasks = exports2.groupPatternsByBaseDirectory = exports2.getNegativePatternsAsPositive = exports2.getPositivePatterns = exports2.convertPatternsToTasks = exports2.generate = void 0;
|
|
244532
|
-
var utils =
|
|
244358
|
+
var utils = require_utils6();
|
|
244533
244359
|
function generate(patterns, settings) {
|
|
244534
244360
|
const positivePatterns = getPositivePatterns(patterns);
|
|
244535
244361
|
const negativePatterns = getNegativePatternsAsPositive(patterns, settings.ignore);
|
|
@@ -244881,7 +244707,7 @@ var require_fs3 = __commonJS({
|
|
|
244881
244707
|
});
|
|
244882
244708
|
|
|
244883
244709
|
// ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/utils/index.js
|
|
244884
|
-
var
|
|
244710
|
+
var require_utils7 = __commonJS({
|
|
244885
244711
|
"../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/utils/index.js"(exports2) {
|
|
244886
244712
|
"use strict";
|
|
244887
244713
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -244916,7 +244742,7 @@ var require_async2 = __commonJS({
|
|
|
244916
244742
|
var fsStat = require_out12();
|
|
244917
244743
|
var rpl = require_run_parallel();
|
|
244918
244744
|
var constants_1 = require_constants4();
|
|
244919
|
-
var utils =
|
|
244745
|
+
var utils = require_utils7();
|
|
244920
244746
|
var common = require_common2();
|
|
244921
244747
|
function read(directory, settings, callback) {
|
|
244922
244748
|
if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
|
|
@@ -245025,7 +244851,7 @@ var require_sync3 = __commonJS({
|
|
|
245025
244851
|
exports2.readdir = exports2.readdirWithFileTypes = exports2.read = void 0;
|
|
245026
244852
|
var fsStat = require_out12();
|
|
245027
244853
|
var constants_1 = require_constants4();
|
|
245028
|
-
var utils =
|
|
244854
|
+
var utils = require_utils7();
|
|
245029
244855
|
var common = require_common2();
|
|
245030
244856
|
function read(directory, settings) {
|
|
245031
244857
|
if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
|
|
@@ -245788,14 +245614,14 @@ var require_out14 = __commonJS({
|
|
|
245788
245614
|
var sync_1 = require_sync5();
|
|
245789
245615
|
var settings_1 = require_settings3();
|
|
245790
245616
|
exports2.Settings = settings_1.default;
|
|
245791
|
-
function
|
|
245617
|
+
function walk2(directory, optionsOrSettingsOrCallback, callback) {
|
|
245792
245618
|
if (typeof optionsOrSettingsOrCallback === "function") {
|
|
245793
245619
|
new async_1.default(directory, getSettings()).read(optionsOrSettingsOrCallback);
|
|
245794
245620
|
return;
|
|
245795
245621
|
}
|
|
245796
245622
|
new async_1.default(directory, getSettings(optionsOrSettingsOrCallback)).read(callback);
|
|
245797
245623
|
}
|
|
245798
|
-
exports2.walk =
|
|
245624
|
+
exports2.walk = walk2;
|
|
245799
245625
|
function walkSync(directory, optionsOrSettings) {
|
|
245800
245626
|
const settings = getSettings(optionsOrSettings);
|
|
245801
245627
|
const provider = new sync_1.default(directory, settings);
|
|
@@ -245824,7 +245650,7 @@ var require_reader2 = __commonJS({
|
|
|
245824
245650
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
245825
245651
|
var path = require("path");
|
|
245826
245652
|
var fsStat = require_out12();
|
|
245827
|
-
var utils =
|
|
245653
|
+
var utils = require_utils6();
|
|
245828
245654
|
var Reader = class {
|
|
245829
245655
|
constructor(_settings) {
|
|
245830
245656
|
this._settings = _settings;
|
|
@@ -245957,7 +245783,7 @@ var require_matcher = __commonJS({
|
|
|
245957
245783
|
"../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/providers/matchers/matcher.js"(exports2) {
|
|
245958
245784
|
"use strict";
|
|
245959
245785
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
245960
|
-
var utils =
|
|
245786
|
+
var utils = require_utils6();
|
|
245961
245787
|
var Matcher = class {
|
|
245962
245788
|
constructor(_patterns, _settings, _micromatchOptions) {
|
|
245963
245789
|
this._patterns = _patterns;
|
|
@@ -246046,7 +245872,7 @@ var require_deep = __commonJS({
|
|
|
246046
245872
|
"../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/providers/filters/deep.js"(exports2) {
|
|
246047
245873
|
"use strict";
|
|
246048
245874
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
246049
|
-
var utils =
|
|
245875
|
+
var utils = require_utils6();
|
|
246050
245876
|
var partial_1 = require_partial();
|
|
246051
245877
|
var DeepFilter = class {
|
|
246052
245878
|
constructor(_settings, _micromatchOptions) {
|
|
@@ -246111,7 +245937,7 @@ var require_entry = __commonJS({
|
|
|
246111
245937
|
"../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/providers/filters/entry.js"(exports2) {
|
|
246112
245938
|
"use strict";
|
|
246113
245939
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
246114
|
-
var utils =
|
|
245940
|
+
var utils = require_utils6();
|
|
246115
245941
|
var EntryFilter = class {
|
|
246116
245942
|
constructor(_settings, _micromatchOptions) {
|
|
246117
245943
|
this._settings = _settings;
|
|
@@ -246178,7 +246004,7 @@ var require_error = __commonJS({
|
|
|
246178
246004
|
"../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/providers/filters/error.js"(exports2) {
|
|
246179
246005
|
"use strict";
|
|
246180
246006
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
246181
|
-
var utils =
|
|
246007
|
+
var utils = require_utils6();
|
|
246182
246008
|
var ErrorFilter = class {
|
|
246183
246009
|
constructor(_settings) {
|
|
246184
246010
|
this._settings = _settings;
|
|
@@ -246199,7 +246025,7 @@ var require_entry2 = __commonJS({
|
|
|
246199
246025
|
"../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/providers/transformers/entry.js"(exports2) {
|
|
246200
246026
|
"use strict";
|
|
246201
246027
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
246202
|
-
var utils =
|
|
246028
|
+
var utils = require_utils6();
|
|
246203
246029
|
var EntryTransformer = class {
|
|
246204
246030
|
constructor(_settings) {
|
|
246205
246031
|
this._settings = _settings;
|
|
@@ -246489,7 +246315,7 @@ var require_out15 = __commonJS({
|
|
|
246489
246315
|
var stream_1 = require_stream4();
|
|
246490
246316
|
var sync_1 = require_sync7();
|
|
246491
246317
|
var settings_1 = require_settings4();
|
|
246492
|
-
var utils =
|
|
246318
|
+
var utils = require_utils6();
|
|
246493
246319
|
async function FastGlob(source, options) {
|
|
246494
246320
|
assertPatternsInput(source);
|
|
246495
246321
|
const works = getWorks(source, async_1.default, options);
|
|
@@ -246558,7 +246384,7 @@ var require_astro = __commonJS({
|
|
|
246558
246384
|
var fast_glob_1 = __importDefault(require_out15());
|
|
246559
246385
|
var node_path_1 = require("node:path");
|
|
246560
246386
|
var index_js_1 = require_core();
|
|
246561
|
-
var utils_js_1 =
|
|
246387
|
+
var utils_js_1 = require_utils3();
|
|
246562
246388
|
exports2.default = () => (context, modules) => {
|
|
246563
246389
|
return {
|
|
246564
246390
|
triggerCharacters: ["-"],
|
|
@@ -246607,16 +246433,18 @@ var require_astro = __commonJS({
|
|
|
246607
246433
|
return;
|
|
246608
246434
|
const globcodeLens = [];
|
|
246609
246435
|
const sourceFile = tsProgram.getSourceFile(context.env.uriToFileName(document2.uri));
|
|
246610
|
-
function
|
|
246436
|
+
function walk2() {
|
|
246611
246437
|
return ts.forEachChild(sourceFile, function cb(node) {
|
|
246612
246438
|
if (ts.isCallExpression(node) && node.expression.getText() === "Astro.glob") {
|
|
246613
|
-
const
|
|
246614
|
-
|
|
246439
|
+
const globArgument = node.arguments.at(0);
|
|
246440
|
+
if (globArgument) {
|
|
246441
|
+
globcodeLens.push(getGlobResultAsCodeLens(globArgument.getText().slice(1, -1), (0, node_path_1.dirname)(context.env.uriToFileName(document2.uri)), document2.positionAt(node.arguments.pos)));
|
|
246442
|
+
}
|
|
246615
246443
|
}
|
|
246616
246444
|
return ts.forEachChild(node, cb);
|
|
246617
246445
|
});
|
|
246618
246446
|
}
|
|
246619
|
-
|
|
246447
|
+
walk2();
|
|
246620
246448
|
return globcodeLens;
|
|
246621
246449
|
}
|
|
246622
246450
|
};
|
|
@@ -246920,7 +246748,7 @@ var require_html = __commonJS({
|
|
|
246920
246748
|
var language_server_1 = require_out6();
|
|
246921
246749
|
var volar_service_html_1 = __importDefault(require_out8());
|
|
246922
246750
|
var index_js_1 = require_core();
|
|
246923
|
-
var utils_js_1 =
|
|
246751
|
+
var utils_js_1 = require_utils3();
|
|
246924
246752
|
var html_data_js_1 = require_html_data();
|
|
246925
246753
|
exports2.default = () => (context, modules) => {
|
|
246926
246754
|
const htmlPlugin = (0, volar_service_html_1.default)()(context, modules);
|
|
@@ -248369,11 +248197,11 @@ var require_common4 = __commonJS({
|
|
|
248369
248197
|
})(BundleFormat = exports2.BundleFormat || (exports2.BundleFormat = {}));
|
|
248370
248198
|
var LocalizeInfo;
|
|
248371
248199
|
(function(LocalizeInfo2) {
|
|
248372
|
-
function
|
|
248200
|
+
function is2(value) {
|
|
248373
248201
|
var candidate = value;
|
|
248374
248202
|
return candidate && isDefined3(candidate.key) && isDefined3(candidate.comment);
|
|
248375
248203
|
}
|
|
248376
|
-
LocalizeInfo2.is =
|
|
248204
|
+
LocalizeInfo2.is = is2;
|
|
248377
248205
|
})(LocalizeInfo || (LocalizeInfo = {}));
|
|
248378
248206
|
function isDefined3(value) {
|
|
248379
248207
|
return typeof value !== "undefined";
|
|
@@ -251467,7 +251295,7 @@ function getLocation3(text, position) {
|
|
|
251467
251295
|
}
|
|
251468
251296
|
};
|
|
251469
251297
|
}
|
|
251470
|
-
function
|
|
251298
|
+
function parse4(text, errors = [], options = ParseOptions2.DEFAULT) {
|
|
251471
251299
|
let currentProperty = null;
|
|
251472
251300
|
let currentParent = [];
|
|
251473
251301
|
const previousParents = [];
|
|
@@ -252160,7 +251988,7 @@ __export(main_exports4, {
|
|
|
252160
251988
|
getNodePath: () => getNodePath5,
|
|
252161
251989
|
getNodeValue: () => getNodeValue4,
|
|
252162
251990
|
modify: () => modify2,
|
|
252163
|
-
parse: () =>
|
|
251991
|
+
parse: () => parse5,
|
|
252164
251992
|
parseTree: () => parseTree4,
|
|
252165
251993
|
printParseErrorCode: () => printParseErrorCode2,
|
|
252166
251994
|
stripComments: () => stripComments4,
|
|
@@ -252229,7 +252057,7 @@ function applyEdits2(text, edits) {
|
|
|
252229
252057
|
}
|
|
252230
252058
|
return text;
|
|
252231
252059
|
}
|
|
252232
|
-
var createScanner5, ScanError, SyntaxKind, getLocation4,
|
|
252060
|
+
var createScanner5, ScanError, SyntaxKind, getLocation4, parse5, parseTree4, findNodeAtLocation4, findNodeAtOffset4, getNodePath5, getNodeValue4, visit4, stripComments4, ParseErrorCode;
|
|
252233
252061
|
var init_main4 = __esm({
|
|
252234
252062
|
"../../node_modules/.pnpm/jsonc-parser@3.2.0/node_modules/jsonc-parser/lib/esm/main.js"() {
|
|
252235
252063
|
"use strict";
|
|
@@ -252267,7 +252095,7 @@ var init_main4 = __esm({
|
|
|
252267
252095
|
SyntaxKind2[SyntaxKind2["EOF"] = 17] = "EOF";
|
|
252268
252096
|
})(SyntaxKind || (SyntaxKind = {}));
|
|
252269
252097
|
getLocation4 = getLocation3;
|
|
252270
|
-
|
|
252098
|
+
parse5 = parse4;
|
|
252271
252099
|
parseTree4 = parseTree3;
|
|
252272
252100
|
findNodeAtLocation4 = findNodeAtLocation3;
|
|
252273
252101
|
findNodeAtOffset4 = findNodeAtOffset3;
|
|
@@ -254478,7 +254306,7 @@ var require_out16 = __commonJS({
|
|
|
254478
254306
|
const sourceFile = syntacticCtx.typescript.languageService.getProgram()?.getSourceFile(context.env.uriToFileName(document2.uri));
|
|
254479
254307
|
if (sourceFile) {
|
|
254480
254308
|
const lines = [];
|
|
254481
|
-
sourceFile.forEachChild(function
|
|
254309
|
+
sourceFile.forEachChild(function walk2(node) {
|
|
254482
254310
|
if (node.kind === ts.SyntaxKind.FirstTemplateToken || node.kind === ts.SyntaxKind.LastTemplateToken || node.kind === ts.SyntaxKind.TemplateHead) {
|
|
254483
254311
|
const startLine = document2.positionAt(node.getStart(sourceFile)).line;
|
|
254484
254312
|
const endLine = document2.positionAt(node.getEnd()).line;
|
|
@@ -254486,7 +254314,7 @@ var require_out16 = __commonJS({
|
|
|
254486
254314
|
lines.push(i);
|
|
254487
254315
|
}
|
|
254488
254316
|
}
|
|
254489
|
-
node.forEachChild(
|
|
254317
|
+
node.forEachChild(walk2);
|
|
254490
254318
|
});
|
|
254491
254319
|
return lines;
|
|
254492
254320
|
}
|
|
@@ -254555,7 +254383,7 @@ var require_codeActions2 = __commonJS({
|
|
|
254555
254383
|
exports2.enhancedProvideCodeActions = void 0;
|
|
254556
254384
|
var language_server_1 = require_out6();
|
|
254557
254385
|
var vscode_uri_1 = (init_esm(), __toCommonJS(esm_exports));
|
|
254558
|
-
var utils_js_1 =
|
|
254386
|
+
var utils_js_1 = require_utils3();
|
|
254559
254387
|
function enhancedProvideCodeActions(codeActions, file, document2, originalDocument, newLine) {
|
|
254560
254388
|
codeActions = codeActions.map((codeAction) => {
|
|
254561
254389
|
if (!codeAction.edit)
|
|
@@ -254607,7 +254435,7 @@ var require_completions = __commonJS({
|
|
|
254607
254435
|
exports2.enhancedResolveCompletionItem = exports2.enhancedProvideCompletionItems = void 0;
|
|
254608
254436
|
var language_server_1 = require_out6();
|
|
254609
254437
|
var index_js_1 = require_core();
|
|
254610
|
-
var utils_js_1 =
|
|
254438
|
+
var utils_js_1 = require_utils3();
|
|
254611
254439
|
function enhancedProvideCompletionItems(completions) {
|
|
254612
254440
|
completions.items = completions.items.filter(isValidCompletion).map((completion) => {
|
|
254613
254441
|
const source = completion?.data?.originalItem?.source;
|
|
@@ -254826,6 +254654,7 @@ var require_languageServerPlugin = __commonJS({
|
|
|
254826
254654
|
};
|
|
254827
254655
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
254828
254656
|
exports2.plugin = void 0;
|
|
254657
|
+
var node_1 = require_node5();
|
|
254829
254658
|
var volar_service_css_1 = __importDefault(require_out7());
|
|
254830
254659
|
var volar_service_emmet_1 = __importDefault(require_out9());
|
|
254831
254660
|
var volar_service_prettier_1 = __importDefault(require_out10());
|
|
@@ -254861,7 +254690,14 @@ var require_languageServerPlugin = __commonJS({
|
|
|
254861
254690
|
resolveConfig(config, ctx) {
|
|
254862
254691
|
config.languages ??= {};
|
|
254863
254692
|
if (ctx) {
|
|
254864
|
-
|
|
254693
|
+
const astroInstall = (0, utils_1.getAstroInstall)([ctx.project.rootUri.fsPath]);
|
|
254694
|
+
if (!astroInstall) {
|
|
254695
|
+
ctx.server.connection.sendNotification(node_1.ShowMessageNotification.type, {
|
|
254696
|
+
message: `Couldn't find Astro in workspace "${ctx.project.rootUri.fsPath}". Experience might be degraded. For the best experience, please make sure Astro is installed into your project and restart the language server.`,
|
|
254697
|
+
type: node_1.MessageType.Warning
|
|
254698
|
+
});
|
|
254699
|
+
}
|
|
254700
|
+
config.languages.astro = (0, core_1.getLanguageModule)(astroInstall, modules.typescript);
|
|
254865
254701
|
config.languages.vue = (0, vue_js_1.getVueLanguageModule)();
|
|
254866
254702
|
config.languages.svelte = (0, svelte_js_1.getSvelteLanguageModule)();
|
|
254867
254703
|
}
|
|
@@ -254872,29 +254708,40 @@ var require_languageServerPlugin = __commonJS({
|
|
|
254872
254708
|
config.services.typescript ??= (0, index_js_1.default)();
|
|
254873
254709
|
config.services.typescripttwoslash ??= (0, volar_service_typescript_twoslash_queries_1.default)();
|
|
254874
254710
|
config.services.astro ??= (0, astro_js_1.default)();
|
|
254875
|
-
|
|
254876
|
-
|
|
254877
|
-
|
|
254878
|
-
|
|
254879
|
-
|
|
254880
|
-
|
|
254881
|
-
|
|
254882
|
-
|
|
254883
|
-
|
|
254884
|
-
|
|
254885
|
-
|
|
254886
|
-
|
|
254887
|
-
|
|
254888
|
-
|
|
254889
|
-
|
|
254890
|
-
|
|
254891
|
-
|
|
254892
|
-
|
|
254893
|
-
|
|
254894
|
-
|
|
254895
|
-
|
|
254711
|
+
if (ctx) {
|
|
254712
|
+
const rootDir = ctx.env.uriToFileName(ctx.project.rootUri.toString());
|
|
254713
|
+
const prettier = (0, importPackage_js_1.importPrettier)(rootDir);
|
|
254714
|
+
const prettierPluginPath = (0, importPackage_js_1.getPrettierPluginPath)(rootDir);
|
|
254715
|
+
if (prettier && prettierPluginPath) {
|
|
254716
|
+
config.services.prettier ??= (0, volar_service_prettier_1.default)({
|
|
254717
|
+
languages: ["astro"],
|
|
254718
|
+
resolveConfigOptions: {
|
|
254719
|
+
// Prettier's cache is a bit cumbersome, because you need to reload the config yourself on change
|
|
254720
|
+
// TODO: Upstream a fix for this
|
|
254721
|
+
useCache: false
|
|
254722
|
+
},
|
|
254723
|
+
additionalOptions: (resolvedConfig) => {
|
|
254724
|
+
function getAstroPrettierPlugin() {
|
|
254725
|
+
if (!prettier || !prettierPluginPath) {
|
|
254726
|
+
return [];
|
|
254727
|
+
}
|
|
254728
|
+
const hasPluginLoadedAlready = prettier.getSupportInfo().languages.some((l) => l.name === "astro");
|
|
254729
|
+
return hasPluginLoadedAlready ? [] : [prettierPluginPath];
|
|
254730
|
+
}
|
|
254731
|
+
return {
|
|
254732
|
+
plugins: [...getAstroPrettierPlugin(), ...resolvedConfig.plugins ?? []],
|
|
254733
|
+
parser: "astro",
|
|
254734
|
+
...resolvedConfig
|
|
254735
|
+
};
|
|
254736
|
+
}
|
|
254737
|
+
});
|
|
254738
|
+
} else {
|
|
254739
|
+
ctx.server.connection.sendNotification(node_1.ShowMessageNotification.type, {
|
|
254740
|
+
message: "Couldn't load `prettier` or `prettier-plugin-astro`. Formatting will not work. Please make sure those two packages are installed into your project.",
|
|
254741
|
+
type: node_1.MessageType.Warning
|
|
254742
|
+
});
|
|
254896
254743
|
}
|
|
254897
|
-
}
|
|
254744
|
+
}
|
|
254898
254745
|
return config;
|
|
254899
254746
|
}
|
|
254900
254747
|
});
|