@typescript-deploys/pr-build 5.1.0-pr-53388-13 → 5.1.0-pr-53420-2
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/lib/tsc.js +409 -263
- package/lib/tsserver.js +542 -390
- package/lib/tsserverlibrary.js +542 -390
- package/lib/typescript.js +538 -386
- package/lib/typingsInstaller.js +17 -17
- package/package.json +2 -2
package/lib/typescript.js
CHANGED
|
@@ -35,7 +35,7 @@ var ts = (() => {
|
|
|
35
35
|
"src/compiler/corePublic.ts"() {
|
|
36
36
|
"use strict";
|
|
37
37
|
versionMajorMinor = "5.1";
|
|
38
|
-
version = `${versionMajorMinor}.0-insiders.
|
|
38
|
+
version = `${versionMajorMinor}.0-insiders.20230324`;
|
|
39
39
|
Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
40
40
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
41
41
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -10221,7 +10221,7 @@ ${lanes.join("\n")}
|
|
|
10221
10221
|
return token = 10 /* StringLiteral */;
|
|
10222
10222
|
case 96 /* backtick */:
|
|
10223
10223
|
return token = scanTemplateAndSetTokenValue(
|
|
10224
|
-
/*
|
|
10224
|
+
/*isTaggedTemplate*/
|
|
10225
10225
|
false
|
|
10226
10226
|
);
|
|
10227
10227
|
case 37 /* percent */:
|
|
@@ -10724,7 +10724,7 @@ ${lanes.join("\n")}
|
|
|
10724
10724
|
function reScanTemplateHeadOrNoSubstitutionTemplate() {
|
|
10725
10725
|
pos = tokenStart;
|
|
10726
10726
|
return token = scanTemplateAndSetTokenValue(
|
|
10727
|
-
/*
|
|
10727
|
+
/*isTaggedTemplate*/
|
|
10728
10728
|
true
|
|
10729
10729
|
);
|
|
10730
10730
|
}
|
|
@@ -13936,7 +13936,7 @@ ${lanes.join("\n")}
|
|
|
13936
13936
|
true,
|
|
13937
13937
|
sourceFile.languageVariant,
|
|
13938
13938
|
sourceFile.text,
|
|
13939
|
-
/*onError
|
|
13939
|
+
/*onError*/
|
|
13940
13940
|
void 0,
|
|
13941
13941
|
pos
|
|
13942
13942
|
);
|
|
@@ -13951,7 +13951,7 @@ ${lanes.join("\n")}
|
|
|
13951
13951
|
true,
|
|
13952
13952
|
sourceFile.languageVariant,
|
|
13953
13953
|
sourceFile.text,
|
|
13954
|
-
/*onError
|
|
13954
|
+
/*onError*/
|
|
13955
13955
|
void 0,
|
|
13956
13956
|
pos
|
|
13957
13957
|
);
|
|
@@ -14929,7 +14929,7 @@ ${lanes.join("\n")}
|
|
|
14929
14929
|
function getRightMostAssignedExpression(node) {
|
|
14930
14930
|
while (isAssignmentExpression(
|
|
14931
14931
|
node,
|
|
14932
|
-
/*
|
|
14932
|
+
/*excludeCompoundAssignment*/
|
|
14933
14933
|
true
|
|
14934
14934
|
)) {
|
|
14935
14935
|
node = node.right;
|
|
@@ -15132,7 +15132,7 @@ ${lanes.join("\n")}
|
|
|
15132
15132
|
case 211 /* CallExpression */:
|
|
15133
15133
|
return isImportCall(node.parent) || isRequireCall(
|
|
15134
15134
|
node.parent,
|
|
15135
|
-
/*
|
|
15135
|
+
/*requireStringLiteralLikeArgument*/
|
|
15136
15136
|
false
|
|
15137
15137
|
) ? node.parent : void 0;
|
|
15138
15138
|
case 199 /* LiteralType */:
|
|
@@ -16849,9 +16849,9 @@ ${lanes.join("\n")}
|
|
|
16849
16849
|
function getEffectiveModifierFlagsAlwaysIncludeJSDoc(node) {
|
|
16850
16850
|
return getModifierFlagsWorker(
|
|
16851
16851
|
node,
|
|
16852
|
-
/*
|
|
16852
|
+
/*includeJSDoc*/
|
|
16853
16853
|
true,
|
|
16854
|
-
/*
|
|
16854
|
+
/*alwaysIncludeJSDoc*/
|
|
16855
16855
|
true
|
|
16856
16856
|
);
|
|
16857
16857
|
}
|
|
@@ -19434,7 +19434,7 @@ ${lanes.join("\n")}
|
|
|
19434
19434
|
if (!needsParens) {
|
|
19435
19435
|
switch (getLeftmostExpression(
|
|
19436
19436
|
check,
|
|
19437
|
-
/*
|
|
19437
|
+
/*stopAtCallExpressions*/
|
|
19438
19438
|
false
|
|
19439
19439
|
).kind) {
|
|
19440
19440
|
case 229 /* ClassExpression */:
|
|
@@ -25252,7 +25252,7 @@ ${lanes.join("\n")}
|
|
|
25252
25252
|
context.requestEmitHelper(classPrivateFieldInHelper);
|
|
25253
25253
|
return factory2.createCallExpression(
|
|
25254
25254
|
getUnscopedHelperName("__classPrivateFieldIn"),
|
|
25255
|
-
/*
|
|
25255
|
+
/*typeArguments*/
|
|
25256
25256
|
void 0,
|
|
25257
25257
|
[state, receiver]
|
|
25258
25258
|
);
|
|
@@ -27349,7 +27349,7 @@ ${lanes.join("\n")}
|
|
|
27349
27349
|
[factory2.createParameterDeclaration(
|
|
27350
27350
|
/*modifiers*/
|
|
27351
27351
|
void 0,
|
|
27352
|
-
/*
|
|
27352
|
+
/*dotDotDotToken*/
|
|
27353
27353
|
void 0,
|
|
27354
27354
|
"value"
|
|
27355
27355
|
)],
|
|
@@ -28643,7 +28643,7 @@ ${lanes.join("\n")}
|
|
|
28643
28643
|
fileName2,
|
|
28644
28644
|
2 /* ES2015 */,
|
|
28645
28645
|
6 /* JSON */,
|
|
28646
|
-
/*
|
|
28646
|
+
/*isDeclarationFile*/
|
|
28647
28647
|
false,
|
|
28648
28648
|
statements,
|
|
28649
28649
|
endOfFileToken,
|
|
@@ -29998,7 +29998,7 @@ ${lanes.join("\n")}
|
|
|
29998
29998
|
entity,
|
|
29999
29999
|
parseRightSideOfDot(
|
|
30000
30000
|
allowReservedWords,
|
|
30001
|
-
/*
|
|
30001
|
+
/*allowPrivateIdentifiers*/
|
|
30002
30002
|
false
|
|
30003
30003
|
)
|
|
30004
30004
|
),
|
|
@@ -31935,7 +31935,7 @@ ${lanes.join("\n")}
|
|
|
31935
31935
|
parseExpected(43 /* SlashToken */);
|
|
31936
31936
|
if (parseExpected(
|
|
31937
31937
|
31 /* GreaterThanToken */,
|
|
31938
|
-
/*
|
|
31938
|
+
/*diagnosticMessage*/
|
|
31939
31939
|
void 0,
|
|
31940
31940
|
/*shouldAdvance*/
|
|
31941
31941
|
false
|
|
@@ -31980,7 +31980,7 @@ ${lanes.join("\n")}
|
|
|
31980
31980
|
} else {
|
|
31981
31981
|
if (parseExpected(
|
|
31982
31982
|
19 /* CloseBraceToken */,
|
|
31983
|
-
/*
|
|
31983
|
+
/*diagnosticMessage*/
|
|
31984
31984
|
void 0,
|
|
31985
31985
|
/*shouldAdvance*/
|
|
31986
31986
|
false
|
|
@@ -32033,7 +32033,7 @@ ${lanes.join("\n")}
|
|
|
32033
32033
|
const tagName = parseJsxElementName();
|
|
32034
32034
|
if (parseExpected(
|
|
32035
32035
|
31 /* GreaterThanToken */,
|
|
32036
|
-
/*
|
|
32036
|
+
/*diagnosticMessage*/
|
|
32037
32037
|
void 0,
|
|
32038
32038
|
/*shouldAdvance*/
|
|
32039
32039
|
false
|
|
@@ -32313,7 +32313,7 @@ ${lanes.join("\n")}
|
|
|
32313
32313
|
break;
|
|
32314
32314
|
case 15 /* TemplateHead */:
|
|
32315
32315
|
return parseTemplateExpression(
|
|
32316
|
-
/*
|
|
32316
|
+
/*isTaggedTemplate*/
|
|
32317
32317
|
false
|
|
32318
32318
|
);
|
|
32319
32319
|
case 80 /* PrivateIdentifier */:
|
|
@@ -34020,7 +34020,7 @@ ${lanes.join("\n")}
|
|
|
34020
34020
|
"file.js",
|
|
34021
34021
|
content,
|
|
34022
34022
|
99 /* Latest */,
|
|
34023
|
-
/*
|
|
34023
|
+
/*syntaxCursor*/
|
|
34024
34024
|
void 0,
|
|
34025
34025
|
1 /* JS */
|
|
34026
34026
|
);
|
|
@@ -34063,7 +34063,7 @@ ${lanes.join("\n")}
|
|
|
34063
34063
|
const hasBrace = parseOptional(18 /* OpenBraceToken */);
|
|
34064
34064
|
const p2 = getNodePos();
|
|
34065
34065
|
let entityName = parseEntityName(
|
|
34066
|
-
/*
|
|
34066
|
+
/*allowReservedWords*/
|
|
34067
34067
|
false
|
|
34068
34068
|
);
|
|
34069
34069
|
while (token() === 80 /* PrivateIdentifier */) {
|
|
@@ -34084,7 +34084,7 @@ ${lanes.join("\n")}
|
|
|
34084
34084
|
"",
|
|
34085
34085
|
content,
|
|
34086
34086
|
99 /* Latest */,
|
|
34087
|
-
/*
|
|
34087
|
+
/*syntaxCursor*/
|
|
34088
34088
|
void 0,
|
|
34089
34089
|
1 /* JS */
|
|
34090
34090
|
);
|
|
@@ -39637,7 +39637,7 @@ ${lanes.join("\n")}
|
|
|
39637
39637
|
2 /* JavaScript */,
|
|
39638
39638
|
/*isConfigLookup*/
|
|
39639
39639
|
false,
|
|
39640
|
-
/*
|
|
39640
|
+
/*redirectedReference*/
|
|
39641
39641
|
void 0
|
|
39642
39642
|
);
|
|
39643
39643
|
}
|
|
@@ -39675,7 +39675,7 @@ ${lanes.join("\n")}
|
|
|
39675
39675
|
}
|
|
39676
39676
|
function nodeNextJsonConfigResolver(moduleName, containingFile, host) {
|
|
39677
39677
|
return nodeModuleNameResolverWorker(
|
|
39678
|
-
|
|
39678
|
+
30 /* NodeNextDefault */,
|
|
39679
39679
|
moduleName,
|
|
39680
39680
|
getDirectoryPath(containingFile),
|
|
39681
39681
|
{ moduleResolution: 99 /* NodeNext */ },
|
|
@@ -40053,7 +40053,7 @@ ${lanes.join("\n")}
|
|
|
40053
40053
|
const result = loadFileNameFromPackageJsonField(
|
|
40054
40054
|
extensions,
|
|
40055
40055
|
finalPath,
|
|
40056
|
-
/*
|
|
40056
|
+
/*onlyRecordFailures*/
|
|
40057
40057
|
false,
|
|
40058
40058
|
state
|
|
40059
40059
|
);
|
|
@@ -43548,7 +43548,7 @@ ${lanes.join("\n")}
|
|
|
43548
43548
|
parentSymbol,
|
|
43549
43549
|
node.left.expression,
|
|
43550
43550
|
isTopLevelNamespaceAssignment(node.left),
|
|
43551
|
-
/*
|
|
43551
|
+
/*isPrototypeProperty*/
|
|
43552
43552
|
false,
|
|
43553
43553
|
/*containerIsClass*/
|
|
43554
43554
|
false
|
|
@@ -43680,7 +43680,7 @@ ${lanes.join("\n")}
|
|
|
43680
43680
|
function bindCallExpression(node) {
|
|
43681
43681
|
if (!file.commonJsModuleIndicator && isRequireCall(
|
|
43682
43682
|
node,
|
|
43683
|
-
/*
|
|
43683
|
+
/*requireStringLiteralLikeArgument*/
|
|
43684
43684
|
false
|
|
43685
43685
|
)) {
|
|
43686
43686
|
setCommonJsModuleIndicator(node);
|
|
@@ -45503,21 +45503,77 @@ ${lanes.join("\n")}
|
|
|
45503
45503
|
}
|
|
45504
45504
|
return t;
|
|
45505
45505
|
}, () => "(unreliable reporter)");
|
|
45506
|
-
var emptyObjectType = createAnonymousType(
|
|
45507
|
-
|
|
45506
|
+
var emptyObjectType = createAnonymousType(
|
|
45507
|
+
/*symbol*/
|
|
45508
|
+
void 0,
|
|
45509
|
+
emptySymbols,
|
|
45510
|
+
emptyArray,
|
|
45511
|
+
emptyArray,
|
|
45512
|
+
emptyArray
|
|
45513
|
+
);
|
|
45514
|
+
var emptyJsxObjectType = createAnonymousType(
|
|
45515
|
+
/*symbol*/
|
|
45516
|
+
void 0,
|
|
45517
|
+
emptySymbols,
|
|
45518
|
+
emptyArray,
|
|
45519
|
+
emptyArray,
|
|
45520
|
+
emptyArray
|
|
45521
|
+
);
|
|
45508
45522
|
emptyJsxObjectType.objectFlags |= 2048 /* JsxAttributes */;
|
|
45509
45523
|
var emptyTypeLiteralSymbol = createSymbol(2048 /* TypeLiteral */, "__type" /* Type */);
|
|
45510
45524
|
emptyTypeLiteralSymbol.members = createSymbolTable();
|
|
45511
45525
|
var emptyTypeLiteralType = createAnonymousType(emptyTypeLiteralSymbol, emptySymbols, emptyArray, emptyArray, emptyArray);
|
|
45512
|
-
var unknownEmptyObjectType = createAnonymousType(
|
|
45526
|
+
var unknownEmptyObjectType = createAnonymousType(
|
|
45527
|
+
/*symbol*/
|
|
45528
|
+
void 0,
|
|
45529
|
+
emptySymbols,
|
|
45530
|
+
emptyArray,
|
|
45531
|
+
emptyArray,
|
|
45532
|
+
emptyArray
|
|
45533
|
+
);
|
|
45513
45534
|
var unknownUnionType = strictNullChecks ? getUnionType([undefinedType, nullType, unknownEmptyObjectType]) : unknownType;
|
|
45514
|
-
var emptyGenericType = createAnonymousType(
|
|
45535
|
+
var emptyGenericType = createAnonymousType(
|
|
45536
|
+
/*symbol*/
|
|
45537
|
+
void 0,
|
|
45538
|
+
emptySymbols,
|
|
45539
|
+
emptyArray,
|
|
45540
|
+
emptyArray,
|
|
45541
|
+
emptyArray
|
|
45542
|
+
);
|
|
45515
45543
|
emptyGenericType.instantiations = /* @__PURE__ */ new Map();
|
|
45516
|
-
var anyFunctionType = createAnonymousType(
|
|
45544
|
+
var anyFunctionType = createAnonymousType(
|
|
45545
|
+
/*symbol*/
|
|
45546
|
+
void 0,
|
|
45547
|
+
emptySymbols,
|
|
45548
|
+
emptyArray,
|
|
45549
|
+
emptyArray,
|
|
45550
|
+
emptyArray
|
|
45551
|
+
);
|
|
45517
45552
|
anyFunctionType.objectFlags |= 262144 /* NonInferrableType */;
|
|
45518
|
-
var noConstraintType = createAnonymousType(
|
|
45519
|
-
|
|
45520
|
-
|
|
45553
|
+
var noConstraintType = createAnonymousType(
|
|
45554
|
+
/*symbol*/
|
|
45555
|
+
void 0,
|
|
45556
|
+
emptySymbols,
|
|
45557
|
+
emptyArray,
|
|
45558
|
+
emptyArray,
|
|
45559
|
+
emptyArray
|
|
45560
|
+
);
|
|
45561
|
+
var circularConstraintType = createAnonymousType(
|
|
45562
|
+
/*symbol*/
|
|
45563
|
+
void 0,
|
|
45564
|
+
emptySymbols,
|
|
45565
|
+
emptyArray,
|
|
45566
|
+
emptyArray,
|
|
45567
|
+
emptyArray
|
|
45568
|
+
);
|
|
45569
|
+
var resolvingDefaultType = createAnonymousType(
|
|
45570
|
+
/*symbol*/
|
|
45571
|
+
void 0,
|
|
45572
|
+
emptySymbols,
|
|
45573
|
+
emptyArray,
|
|
45574
|
+
emptyArray,
|
|
45575
|
+
emptyArray
|
|
45576
|
+
);
|
|
45521
45577
|
var markerSuperType = createTypeParameter();
|
|
45522
45578
|
var markerSubType = createTypeParameter();
|
|
45523
45579
|
markerSubType.constraint = markerSuperType;
|
|
@@ -45527,8 +45583,11 @@ ${lanes.join("\n")}
|
|
|
45527
45583
|
markerSubTypeForCheck.constraint = markerSuperTypeForCheck;
|
|
45528
45584
|
var noTypePredicate = createTypePredicate(1 /* Identifier */, "<<unresolved>>", 0, anyType);
|
|
45529
45585
|
var anySignature = createSignature(
|
|
45586
|
+
/*declaration*/
|
|
45530
45587
|
void 0,
|
|
45588
|
+
/*typeParameters*/
|
|
45531
45589
|
void 0,
|
|
45590
|
+
/*thisParameter*/
|
|
45532
45591
|
void 0,
|
|
45533
45592
|
emptyArray,
|
|
45534
45593
|
anyType,
|
|
@@ -45538,8 +45597,11 @@ ${lanes.join("\n")}
|
|
|
45538
45597
|
0 /* None */
|
|
45539
45598
|
);
|
|
45540
45599
|
var unknownSignature = createSignature(
|
|
45600
|
+
/*declaration*/
|
|
45541
45601
|
void 0,
|
|
45602
|
+
/*typeParameters*/
|
|
45542
45603
|
void 0,
|
|
45604
|
+
/*thisParameter*/
|
|
45543
45605
|
void 0,
|
|
45544
45606
|
emptyArray,
|
|
45545
45607
|
errorType,
|
|
@@ -45549,8 +45611,11 @@ ${lanes.join("\n")}
|
|
|
45549
45611
|
0 /* None */
|
|
45550
45612
|
);
|
|
45551
45613
|
var resolvingSignature = createSignature(
|
|
45614
|
+
/*declaration*/
|
|
45552
45615
|
void 0,
|
|
45616
|
+
/*typeParameters*/
|
|
45553
45617
|
void 0,
|
|
45618
|
+
/*thisParameter*/
|
|
45554
45619
|
void 0,
|
|
45555
45620
|
emptyArray,
|
|
45556
45621
|
anyType,
|
|
@@ -45560,8 +45625,11 @@ ${lanes.join("\n")}
|
|
|
45560
45625
|
0 /* None */
|
|
45561
45626
|
);
|
|
45562
45627
|
var silentNeverSignature = createSignature(
|
|
45628
|
+
/*declaration*/
|
|
45563
45629
|
void 0,
|
|
45630
|
+
/*typeParameters*/
|
|
45564
45631
|
void 0,
|
|
45632
|
+
/*thisParameter*/
|
|
45565
45633
|
void 0,
|
|
45566
45634
|
emptyArray,
|
|
45567
45635
|
silentNeverType,
|
|
@@ -46618,7 +46686,7 @@ ${lanes.join("\n")}
|
|
|
46618
46686
|
if (originalLocation && isInJSFile(originalLocation) && originalLocation.parent) {
|
|
46619
46687
|
if (isRequireCall(
|
|
46620
46688
|
originalLocation.parent,
|
|
46621
|
-
/*
|
|
46689
|
+
/*requireStringLiteralLikeArgument*/
|
|
46622
46690
|
false
|
|
46623
46691
|
)) {
|
|
46624
46692
|
return requireSymbol;
|
|
@@ -47239,7 +47307,7 @@ ${lanes.join("\n")}
|
|
|
47239
47307
|
node,
|
|
47240
47308
|
moduleSymbol,
|
|
47241
47309
|
resolved,
|
|
47242
|
-
/*
|
|
47310
|
+
/*overwriteEmpty*/
|
|
47243
47311
|
false
|
|
47244
47312
|
);
|
|
47245
47313
|
return resolved;
|
|
@@ -47249,7 +47317,7 @@ ${lanes.join("\n")}
|
|
|
47249
47317
|
exportDefaultSymbol,
|
|
47250
47318
|
/*finalTarget*/
|
|
47251
47319
|
void 0,
|
|
47252
|
-
/*
|
|
47320
|
+
/*overwriteEmpty*/
|
|
47253
47321
|
false
|
|
47254
47322
|
);
|
|
47255
47323
|
return exportDefaultSymbol;
|
|
@@ -47300,7 +47368,7 @@ ${lanes.join("\n")}
|
|
|
47300
47368
|
immediate,
|
|
47301
47369
|
moduleSpecifier,
|
|
47302
47370
|
dontResolveAlias,
|
|
47303
|
-
/*
|
|
47371
|
+
/*suppressInteropError*/
|
|
47304
47372
|
false
|
|
47305
47373
|
);
|
|
47306
47374
|
markSymbolOfAliasDeclarationIfTypeOnly(
|
|
@@ -47319,7 +47387,7 @@ ${lanes.join("\n")}
|
|
|
47319
47387
|
immediate,
|
|
47320
47388
|
moduleSpecifier,
|
|
47321
47389
|
dontResolveAlias,
|
|
47322
|
-
/*
|
|
47390
|
+
/*suppressInteropError*/
|
|
47323
47391
|
false
|
|
47324
47392
|
);
|
|
47325
47393
|
markSymbolOfAliasDeclarationIfTypeOnly(
|
|
@@ -47811,6 +47879,7 @@ ${lanes.join("\n")}
|
|
|
47811
47879
|
left,
|
|
47812
47880
|
left.escapedText,
|
|
47813
47881
|
111551 /* Value */,
|
|
47882
|
+
/*nameNotFoundMessage*/
|
|
47814
47883
|
void 0,
|
|
47815
47884
|
left,
|
|
47816
47885
|
/*isUse*/
|
|
@@ -47846,6 +47915,7 @@ ${lanes.join("\n")}
|
|
|
47846
47915
|
name,
|
|
47847
47916
|
/*isUse*/
|
|
47848
47917
|
true,
|
|
47918
|
+
/*excludeGlobals*/
|
|
47849
47919
|
false
|
|
47850
47920
|
));
|
|
47851
47921
|
if (!symbol) {
|
|
@@ -48550,7 +48620,7 @@ ${lanes.join("\n")}
|
|
|
48550
48620
|
container,
|
|
48551
48621
|
enclosingDeclaration,
|
|
48552
48622
|
1920 /* Namespace */,
|
|
48553
|
-
/*
|
|
48623
|
+
/*useOnlyExternalAliasing*/
|
|
48554
48624
|
false
|
|
48555
48625
|
)) {
|
|
48556
48626
|
return append(concatenate(concatenate([container], additionalContainers), reexportContainers), objectLiteralContainer);
|
|
@@ -48863,7 +48933,7 @@ ${lanes.join("\n")}
|
|
|
48863
48933
|
if (symbolFromSymbolTable.escapedName === symbol.escapedName && symbolFromSymbolTable.exportSymbol) {
|
|
48864
48934
|
if (isAccessible(
|
|
48865
48935
|
getMergedSymbol(symbolFromSymbolTable.exportSymbol),
|
|
48866
|
-
/*
|
|
48936
|
+
/*resolvedAliasSymbol*/
|
|
48867
48937
|
void 0,
|
|
48868
48938
|
ignoreQualification
|
|
48869
48939
|
)) {
|
|
@@ -49115,7 +49185,7 @@ ${lanes.join("\n")}
|
|
|
49115
49185
|
enclosingDeclaration,
|
|
49116
49186
|
firstIdentifier.escapedText,
|
|
49117
49187
|
meaning,
|
|
49118
|
-
/*
|
|
49188
|
+
/*nameNotFoundMessage*/
|
|
49119
49189
|
void 0,
|
|
49120
49190
|
/*nameArg*/
|
|
49121
49191
|
void 0,
|
|
@@ -49135,7 +49205,7 @@ ${lanes.join("\n")}
|
|
|
49135
49205
|
)),
|
|
49136
49206
|
firstIdentifier,
|
|
49137
49207
|
meaning,
|
|
49138
|
-
/*
|
|
49208
|
+
/*shouldComputeAliasesToMakeVisible*/
|
|
49139
49209
|
false
|
|
49140
49210
|
).accessibility === 0 /* Accessible */) {
|
|
49141
49211
|
return { accessibility: 0 /* Accessible */ };
|
|
@@ -49694,7 +49764,7 @@ ${lanes.join("\n")}
|
|
|
49694
49764
|
symbol,
|
|
49695
49765
|
context.enclosingDeclaration,
|
|
49696
49766
|
isInstanceType,
|
|
49697
|
-
/*
|
|
49767
|
+
/*shouldComputeAliasesToMakeVisible*/
|
|
49698
49768
|
false
|
|
49699
49769
|
).accessibility !== 0 /* Accessible */)) || symbol.flags & (384 /* Enum */ | 512 /* ValueModule */) || shouldWriteTypeOfFunctionSymbol()) {
|
|
49700
49770
|
return symbolToTypeNode(symbol, context, isInstanceType);
|
|
@@ -49790,7 +49860,7 @@ ${lanes.join("\n")}
|
|
|
49790
49860
|
function deepCloneOrReuseNodes(nodes, visitor, test, start, count) {
|
|
49791
49861
|
if (nodes && nodes.length === 0) {
|
|
49792
49862
|
return setTextRange(factory.createNodeArray(
|
|
49793
|
-
/*
|
|
49863
|
+
/*elements*/
|
|
49794
49864
|
void 0,
|
|
49795
49865
|
nodes.hasTrailingComma
|
|
49796
49866
|
), nodes);
|
|
@@ -50378,12 +50448,12 @@ ${lanes.join("\n")}
|
|
|
50378
50448
|
const thisTag = getJSDocThisTag(signature.declaration);
|
|
50379
50449
|
if (thisTag && thisTag.typeExpression) {
|
|
50380
50450
|
return factory.createParameterDeclaration(
|
|
50381
|
-
/*
|
|
50451
|
+
/*modifiers*/
|
|
50382
50452
|
void 0,
|
|
50383
|
-
/*
|
|
50453
|
+
/*dotDotDotToken*/
|
|
50384
50454
|
void 0,
|
|
50385
50455
|
"this",
|
|
50386
|
-
/*
|
|
50456
|
+
/*questionToken*/
|
|
50387
50457
|
void 0,
|
|
50388
50458
|
typeToTypeNodeHelper(getTypeFromTypeNode(thisTag.typeExpression), context)
|
|
50389
50459
|
);
|
|
@@ -50470,7 +50540,7 @@ ${lanes.join("\n")}
|
|
|
50470
50540
|
firstIdentifier,
|
|
50471
50541
|
firstIdentifier.escapedText,
|
|
50472
50542
|
111551 /* Value */ | 1048576 /* ExportValue */,
|
|
50473
|
-
/*
|
|
50543
|
+
/*nameNotFoundMessage*/
|
|
50474
50544
|
void 0,
|
|
50475
50545
|
/*nameArg*/
|
|
50476
50546
|
void 0,
|
|
@@ -50803,7 +50873,7 @@ ${lanes.join("\n")}
|
|
|
50803
50873
|
context.enclosingDeclaration,
|
|
50804
50874
|
escapedName,
|
|
50805
50875
|
788968 /* Type */,
|
|
50806
|
-
/*
|
|
50876
|
+
/*nameNotFoundMessage*/
|
|
50807
50877
|
void 0,
|
|
50808
50878
|
escapedName,
|
|
50809
50879
|
/*isUse*/
|
|
@@ -51045,7 +51115,7 @@ ${lanes.join("\n")}
|
|
|
51045
51115
|
67108863 /* All */,
|
|
51046
51116
|
/*ignoreErrors*/
|
|
51047
51117
|
true,
|
|
51048
|
-
/*
|
|
51118
|
+
/*dontResolveAlias*/
|
|
51049
51119
|
true
|
|
51050
51120
|
);
|
|
51051
51121
|
if (sym) {
|
|
@@ -51124,7 +51194,7 @@ ${lanes.join("\n")}
|
|
|
51124
51194
|
[factory.createParameterDeclaration(
|
|
51125
51195
|
/*modifiers*/
|
|
51126
51196
|
void 0,
|
|
51127
|
-
/*
|
|
51197
|
+
/*dotDotDotToken*/
|
|
51128
51198
|
void 0,
|
|
51129
51199
|
"x",
|
|
51130
51200
|
/*questionToken*/
|
|
@@ -51247,13 +51317,13 @@ ${lanes.join("\n")}
|
|
|
51247
51317
|
const serializePropertySymbolForClass = makeSerializePropertySymbol(
|
|
51248
51318
|
factory.createPropertyDeclaration,
|
|
51249
51319
|
172 /* MethodDeclaration */,
|
|
51250
|
-
/*
|
|
51320
|
+
/*useAccessors*/
|
|
51251
51321
|
true
|
|
51252
51322
|
);
|
|
51253
51323
|
const serializePropertySymbolForInterfaceWorker = makeSerializePropertySymbol(
|
|
51254
51324
|
(mods, name, question, type) => factory.createPropertySignature(mods, name, question, type),
|
|
51255
51325
|
171 /* MethodSignature */,
|
|
51256
|
-
/*
|
|
51326
|
+
/*useAccessors*/
|
|
51257
51327
|
false
|
|
51258
51328
|
);
|
|
51259
51329
|
const enclosingDeclaration = context.enclosingDeclaration;
|
|
@@ -51275,7 +51345,7 @@ ${lanes.join("\n")}
|
|
|
51275
51345
|
sym,
|
|
51276
51346
|
decl,
|
|
51277
51347
|
meaning,
|
|
51278
|
-
/*
|
|
51348
|
+
/*shouldComputeAliasesToMakeVisible*/
|
|
51279
51349
|
false
|
|
51280
51350
|
);
|
|
51281
51351
|
if (accessibleResult.accessibility === 0 /* Accessible */) {
|
|
@@ -51334,7 +51404,7 @@ ${lanes.join("\n")}
|
|
|
51334
51404
|
factory.createNamedExports(map(flatMap(excessExports, (e) => getNamesOfDeclaration(e)), (id) => factory.createExportSpecifier(
|
|
51335
51405
|
/*isTypeOnly*/
|
|
51336
51406
|
false,
|
|
51337
|
-
/*
|
|
51407
|
+
/*propertyName*/
|
|
51338
51408
|
void 0,
|
|
51339
51409
|
id
|
|
51340
51410
|
))),
|
|
@@ -51627,7 +51697,7 @@ ${lanes.join("\n")}
|
|
|
51627
51697
|
addResult(factory.createExportAssignment(
|
|
51628
51698
|
/*modifiers*/
|
|
51629
51699
|
void 0,
|
|
51630
|
-
/*
|
|
51700
|
+
/*isExportEquals*/
|
|
51631
51701
|
false,
|
|
51632
51702
|
factory.createIdentifier(getInternalSymbolName(symbol, symbolName2))
|
|
51633
51703
|
), 0 /* None */);
|
|
@@ -52050,7 +52120,7 @@ ${lanes.join("\n")}
|
|
|
52050
52120
|
)])
|
|
52051
52121
|
),
|
|
52052
52122
|
factory.createStringLiteral(specifier2),
|
|
52053
|
-
/*
|
|
52123
|
+
/*assertClause*/
|
|
52054
52124
|
void 0
|
|
52055
52125
|
), 0 /* None */);
|
|
52056
52126
|
break;
|
|
@@ -52139,7 +52209,7 @@ ${lanes.join("\n")}
|
|
|
52139
52209
|
factory.createImportClause(
|
|
52140
52210
|
/*isTypeOnly*/
|
|
52141
52211
|
false,
|
|
52142
|
-
/*
|
|
52212
|
+
/*name*/
|
|
52143
52213
|
void 0,
|
|
52144
52214
|
factory.createNamespaceImport(factory.createIdentifier(localName))
|
|
52145
52215
|
),
|
|
@@ -52167,7 +52237,7 @@ ${lanes.join("\n")}
|
|
|
52167
52237
|
factory.createImportClause(
|
|
52168
52238
|
/*isTypeOnly*/
|
|
52169
52239
|
false,
|
|
52170
|
-
/*
|
|
52240
|
+
/*name*/
|
|
52171
52241
|
void 0,
|
|
52172
52242
|
factory.createNamedImports([
|
|
52173
52243
|
factory.createImportSpecifier(
|
|
@@ -52528,7 +52598,7 @@ ${lanes.join("\n")}
|
|
|
52528
52598
|
addResult(statement, 0 /* None */);
|
|
52529
52599
|
return factory.createExpressionWithTypeArguments(
|
|
52530
52600
|
factory.createIdentifier(tempName),
|
|
52531
|
-
/*
|
|
52601
|
+
/*typeArguments*/
|
|
52532
52602
|
void 0
|
|
52533
52603
|
);
|
|
52534
52604
|
}
|
|
@@ -52553,7 +52623,7 @@ ${lanes.join("\n")}
|
|
|
52553
52623
|
if (t.symbol) {
|
|
52554
52624
|
return factory.createExpressionWithTypeArguments(
|
|
52555
52625
|
symbolToExpression(t.symbol, context, 788968 /* Type */),
|
|
52556
|
-
/*
|
|
52626
|
+
/*typeArguments*/
|
|
52557
52627
|
void 0
|
|
52558
52628
|
);
|
|
52559
52629
|
}
|
|
@@ -52859,7 +52929,9 @@ ${lanes.join("\n")}
|
|
|
52859
52929
|
declaration,
|
|
52860
52930
|
firstIdentifier.escapedText,
|
|
52861
52931
|
111551 /* Value */ | 788968 /* Type */ | 1920 /* Namespace */,
|
|
52932
|
+
/*nameNotFoundMessage*/
|
|
52862
52933
|
void 0,
|
|
52934
|
+
/*nameArg*/
|
|
52863
52935
|
void 0,
|
|
52864
52936
|
/*isUse*/
|
|
52865
52937
|
false
|
|
@@ -53644,7 +53716,14 @@ ${lanes.join("\n")}
|
|
|
53644
53716
|
symbol.links.bindingElement = e;
|
|
53645
53717
|
members.set(symbol.escapedName, symbol);
|
|
53646
53718
|
});
|
|
53647
|
-
const result = createAnonymousType(
|
|
53719
|
+
const result = createAnonymousType(
|
|
53720
|
+
/*symbol*/
|
|
53721
|
+
void 0,
|
|
53722
|
+
members,
|
|
53723
|
+
emptyArray,
|
|
53724
|
+
emptyArray,
|
|
53725
|
+
stringIndexInfo ? [stringIndexInfo] : emptyArray
|
|
53726
|
+
);
|
|
53648
53727
|
result.objectFlags |= objectFlags;
|
|
53649
53728
|
if (includePatternInType) {
|
|
53650
53729
|
result.pattern = pattern;
|
|
@@ -53806,7 +53885,7 @@ ${lanes.join("\n")}
|
|
|
53806
53885
|
} else if (isParameter(declaration) || isPropertyDeclaration(declaration) || isPropertySignature(declaration) || isVariableDeclaration(declaration) || isBindingElement(declaration) || isJSDocPropertyLikeTag(declaration)) {
|
|
53807
53886
|
type = getWidenedTypeForVariableLikeDeclaration(
|
|
53808
53887
|
declaration,
|
|
53809
|
-
/*
|
|
53888
|
+
/*reportErrors*/
|
|
53810
53889
|
true
|
|
53811
53890
|
);
|
|
53812
53891
|
} else if (isEnumDeclaration(declaration)) {
|
|
@@ -53863,7 +53942,7 @@ ${lanes.join("\n")}
|
|
|
53863
53942
|
const accessor = tryCast(getDeclarationOfKind(symbol, 170 /* PropertyDeclaration */), isAutoAccessorPropertyDeclaration);
|
|
53864
53943
|
let type = getter && isInJSFile(getter) && getTypeForDeclarationFromJSDocComment(getter) || getAnnotatedAccessorType(getter) || getAnnotatedAccessorType(setter) || getAnnotatedAccessorType(accessor) || getter && getter.body && getReturnTypeFromBody(getter) || accessor && accessor.initializer && getWidenedTypeForVariableLikeDeclaration(
|
|
53865
53944
|
accessor,
|
|
53866
|
-
/*
|
|
53945
|
+
/*reportErrors*/
|
|
53867
53946
|
true
|
|
53868
53947
|
);
|
|
53869
53948
|
if (!type) {
|
|
@@ -53977,7 +54056,7 @@ ${lanes.join("\n")}
|
|
|
53977
54056
|
const targetSymbol = resolveAlias(symbol);
|
|
53978
54057
|
const exportSymbol = symbol.declarations && getTargetOfAliasDeclaration(
|
|
53979
54058
|
getDeclarationOfAliasSymbol(symbol),
|
|
53980
|
-
/*
|
|
54059
|
+
/*dontRecursivelyResolve*/
|
|
53981
54060
|
true
|
|
53982
54061
|
);
|
|
53983
54062
|
const declaredType = firstDefined(exportSymbol == null ? void 0 : exportSymbol.declarations, (d) => isExportAssignment(d) ? tryGetTypeFromEffectiveTypeNode(d) : void 0);
|
|
@@ -55008,8 +55087,10 @@ ${lanes.join("\n")}
|
|
|
55008
55087
|
const isAbstract = !!declaration && hasSyntacticModifier(declaration, 256 /* Abstract */);
|
|
55009
55088
|
if (baseSignatures.length === 0) {
|
|
55010
55089
|
return [createSignature(
|
|
55090
|
+
/*declaration*/
|
|
55011
55091
|
void 0,
|
|
55012
55092
|
classType.localTypeParameters,
|
|
55093
|
+
/*thisParameter*/
|
|
55013
55094
|
void 0,
|
|
55014
55095
|
emptyArray,
|
|
55015
55096
|
classType,
|
|
@@ -55999,7 +56080,7 @@ ${lanes.join("\n")}
|
|
|
55999
56080
|
return type.resolvedApparentType || (type.resolvedApparentType = getTypeWithThisArgument(
|
|
56000
56081
|
type,
|
|
56001
56082
|
type,
|
|
56002
|
-
/*
|
|
56083
|
+
/*needApparentType*/
|
|
56003
56084
|
true
|
|
56004
56085
|
));
|
|
56005
56086
|
}
|
|
@@ -56496,7 +56577,9 @@ ${lanes.join("\n")}
|
|
|
56496
56577
|
param,
|
|
56497
56578
|
paramSymbol.escapedName,
|
|
56498
56579
|
111551 /* Value */,
|
|
56580
|
+
/*nameNotFoundMessage*/
|
|
56499
56581
|
void 0,
|
|
56582
|
+
/*nameArg*/
|
|
56500
56583
|
void 0,
|
|
56501
56584
|
/*isUse*/
|
|
56502
56585
|
false
|
|
@@ -57393,7 +57476,14 @@ ${lanes.join("\n")}
|
|
|
57393
57476
|
/*isReadonly*/
|
|
57394
57477
|
false
|
|
57395
57478
|
)] : emptyArray;
|
|
57396
|
-
return createAnonymousType(
|
|
57479
|
+
return createAnonymousType(
|
|
57480
|
+
/*symbol*/
|
|
57481
|
+
void 0,
|
|
57482
|
+
emptySymbols,
|
|
57483
|
+
emptyArray,
|
|
57484
|
+
emptyArray,
|
|
57485
|
+
indexInfo
|
|
57486
|
+
);
|
|
57397
57487
|
}
|
|
57398
57488
|
return anyType;
|
|
57399
57489
|
}
|
|
@@ -57501,6 +57591,7 @@ ${lanes.join("\n")}
|
|
|
57501
57591
|
}
|
|
57502
57592
|
function getGlobalSymbol(name, meaning, diagnostic) {
|
|
57503
57593
|
return resolveName(
|
|
57594
|
+
/*location*/
|
|
57504
57595
|
void 0,
|
|
57505
57596
|
name,
|
|
57506
57597
|
meaning,
|
|
@@ -59060,7 +59151,7 @@ ${lanes.join("\n")}
|
|
|
59060
59151
|
let errorInfo;
|
|
59061
59152
|
if (indexType.flags & 1024 /* EnumLiteral */) {
|
|
59062
59153
|
errorInfo = chainDiagnosticMessages(
|
|
59063
|
-
/*
|
|
59154
|
+
/*details*/
|
|
59064
59155
|
void 0,
|
|
59065
59156
|
Diagnostics.Property_0_does_not_exist_on_type_1,
|
|
59066
59157
|
"[" + typeToString(indexType) + "]",
|
|
@@ -59069,7 +59160,7 @@ ${lanes.join("\n")}
|
|
|
59069
59160
|
} else if (indexType.flags & 8192 /* UniqueESSymbol */) {
|
|
59070
59161
|
const symbolName2 = getFullyQualifiedName(indexType.symbol, accessExpression);
|
|
59071
59162
|
errorInfo = chainDiagnosticMessages(
|
|
59072
|
-
/*
|
|
59163
|
+
/*details*/
|
|
59073
59164
|
void 0,
|
|
59074
59165
|
Diagnostics.Property_0_does_not_exist_on_type_1,
|
|
59075
59166
|
"[" + symbolName2 + "]",
|
|
@@ -59077,7 +59168,7 @@ ${lanes.join("\n")}
|
|
|
59077
59168
|
);
|
|
59078
59169
|
} else if (indexType.flags & 128 /* StringLiteral */) {
|
|
59079
59170
|
errorInfo = chainDiagnosticMessages(
|
|
59080
|
-
/*
|
|
59171
|
+
/*details*/
|
|
59081
59172
|
void 0,
|
|
59082
59173
|
Diagnostics.Property_0_does_not_exist_on_type_1,
|
|
59083
59174
|
indexType.value,
|
|
@@ -59085,7 +59176,7 @@ ${lanes.join("\n")}
|
|
|
59085
59176
|
);
|
|
59086
59177
|
} else if (indexType.flags & 256 /* NumberLiteral */) {
|
|
59087
59178
|
errorInfo = chainDiagnosticMessages(
|
|
59088
|
-
/*
|
|
59179
|
+
/*details*/
|
|
59089
59180
|
void 0,
|
|
59090
59181
|
Diagnostics.Property_0_does_not_exist_on_type_1,
|
|
59091
59182
|
indexType.value,
|
|
@@ -59093,7 +59184,7 @@ ${lanes.join("\n")}
|
|
|
59093
59184
|
);
|
|
59094
59185
|
} else if (indexType.flags & (8 /* Number */ | 4 /* String */)) {
|
|
59095
59186
|
errorInfo = chainDiagnosticMessages(
|
|
59096
|
-
/*
|
|
59187
|
+
/*details*/
|
|
59097
59188
|
void 0,
|
|
59098
59189
|
Diagnostics.No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1,
|
|
59099
59190
|
typeToString(indexType),
|
|
@@ -60713,7 +60804,7 @@ ${lanes.join("\n")}
|
|
|
60713
60804
|
targetReturn,
|
|
60714
60805
|
relation,
|
|
60715
60806
|
returnExpression,
|
|
60716
|
-
/*
|
|
60807
|
+
/*headMessage*/
|
|
60717
60808
|
void 0,
|
|
60718
60809
|
containingMessageChain,
|
|
60719
60810
|
resultObj
|
|
@@ -61037,7 +61128,7 @@ ${lanes.join("\n")}
|
|
|
61037
61128
|
const childrenTargetType = getIndexedAccessType(target, getStringLiteralType(childrenPropName));
|
|
61038
61129
|
const diagnostic = Diagnostics._0_components_don_t_accept_text_as_child_elements_Text_in_JSX_has_the_type_string_but_the_expected_type_of_1_is_2;
|
|
61039
61130
|
invalidTextDiagnostic = { ...diagnostic, key: "!!ALREADY FORMATTED!!", message: formatMessage(
|
|
61040
|
-
/*
|
|
61131
|
+
/*dummy*/
|
|
61041
61132
|
void 0,
|
|
61042
61133
|
diagnostic,
|
|
61043
61134
|
tagNameText,
|
|
@@ -61128,7 +61219,7 @@ ${lanes.join("\n")}
|
|
|
61128
61219
|
false,
|
|
61129
61220
|
/*errorReporter*/
|
|
61130
61221
|
void 0,
|
|
61131
|
-
/*
|
|
61222
|
+
/*incompatibleErrorReporter*/
|
|
61132
61223
|
void 0,
|
|
61133
61224
|
compareTypesAssignable,
|
|
61134
61225
|
/*reportUnreliableMarkers*/
|
|
@@ -61202,12 +61293,7 @@ ${lanes.join("\n")}
|
|
|
61202
61293
|
const paramCount = sourceRestType || targetRestType ? Math.min(sourceCount, targetCount) : Math.max(sourceCount, targetCount);
|
|
61203
61294
|
const restIndex = sourceRestType || targetRestType ? paramCount - 1 : -1;
|
|
61204
61295
|
for (let i = 0; i < paramCount; i++) {
|
|
61205
|
-
const sourceType = i === restIndex ? getRestTypeAtPosition(
|
|
61206
|
-
source,
|
|
61207
|
-
i,
|
|
61208
|
-
/*readonly*/
|
|
61209
|
-
true
|
|
61210
|
-
) : tryGetTypeAtPosition(source, i);
|
|
61296
|
+
const sourceType = i === restIndex ? getRestTypeAtPosition(source, i) : tryGetTypeAtPosition(source, i);
|
|
61211
61297
|
const targetType = i === restIndex ? getRestTypeAtPosition(target, i) : tryGetTypeAtPosition(target, i);
|
|
61212
61298
|
if (sourceType && targetType) {
|
|
61213
61299
|
const sourceSig = checkMode & 3 /* Callback */ ? void 0 : getSingleCallSignature(getNonNullableType(sourceType));
|
|
@@ -61600,7 +61686,7 @@ ${lanes.join("\n")}
|
|
|
61600
61686
|
reportError(...stack[0]);
|
|
61601
61687
|
if (info) {
|
|
61602
61688
|
reportRelationError(
|
|
61603
|
-
/*
|
|
61689
|
+
/*message*/
|
|
61604
61690
|
void 0,
|
|
61605
61691
|
...info
|
|
61606
61692
|
);
|
|
@@ -61675,7 +61761,7 @@ ${lanes.join("\n")}
|
|
|
61675
61761
|
}
|
|
61676
61762
|
if (info) {
|
|
61677
61763
|
reportRelationError(
|
|
61678
|
-
/*
|
|
61764
|
+
/*message*/
|
|
61679
61765
|
void 0,
|
|
61680
61766
|
...info
|
|
61681
61767
|
);
|
|
@@ -62117,7 +62203,7 @@ ${lanes.join("\n")}
|
|
|
62117
62203
|
if (containsType(targetTypes, source2)) {
|
|
62118
62204
|
return -1 /* True */;
|
|
62119
62205
|
}
|
|
62120
|
-
if (getObjectFlags(target2) & 32768 /* PrimitiveUnion */ && !(source2.flags & 1024 /* EnumLiteral */) && (source2.flags & (128 /* StringLiteral */ | 512 /* BooleanLiteral */ | 2048 /* BigIntLiteral */) || (relation === subtypeRelation || relation === strictSubtypeRelation) && source2.flags & 256 /* NumberLiteral */)) {
|
|
62206
|
+
if (relation !== comparableRelation && getObjectFlags(target2) & 32768 /* PrimitiveUnion */ && !(source2.flags & 1024 /* EnumLiteral */) && (source2.flags & (128 /* StringLiteral */ | 512 /* BooleanLiteral */ | 2048 /* BigIntLiteral */) || (relation === subtypeRelation || relation === strictSubtypeRelation) && source2.flags & 256 /* NumberLiteral */)) {
|
|
62121
62207
|
const alternateForm = source2 === source2.regularType ? source2.freshType : source2.regularType;
|
|
62122
62208
|
const primitive = source2.flags & 128 /* StringLiteral */ ? stringType : source2.flags & 256 /* NumberLiteral */ ? numberType : source2.flags & 2048 /* BigIntLiteral */ ? bigintType : void 0;
|
|
62123
62209
|
return primitive && containsType(targetTypes, primitive) || alternateForm && containsType(targetTypes, alternateForm) ? -1 /* True */ : 0 /* False */;
|
|
@@ -62348,7 +62434,7 @@ ${lanes.join("\n")}
|
|
|
62348
62434
|
target2,
|
|
62349
62435
|
intersectionState,
|
|
62350
62436
|
relation,
|
|
62351
|
-
/*
|
|
62437
|
+
/*ignoreConstraints*/
|
|
62352
62438
|
false
|
|
62353
62439
|
);
|
|
62354
62440
|
const entry = relation.get(id);
|
|
@@ -62744,7 +62830,7 @@ ${lanes.join("\n")}
|
|
|
62744
62830
|
constraint,
|
|
62745
62831
|
2 /* Target */,
|
|
62746
62832
|
reportErrors2,
|
|
62747
|
-
/*
|
|
62833
|
+
/*headMessage*/
|
|
62748
62834
|
void 0,
|
|
62749
62835
|
intersectionState
|
|
62750
62836
|
)) {
|
|
@@ -63156,7 +63242,7 @@ ${lanes.join("\n")}
|
|
|
63156
63242
|
source2,
|
|
63157
63243
|
type,
|
|
63158
63244
|
0 /* Call */,
|
|
63159
|
-
/*
|
|
63245
|
+
/*reportErrors*/
|
|
63160
63246
|
false,
|
|
63161
63247
|
0 /* None */
|
|
63162
63248
|
);
|
|
@@ -63165,7 +63251,7 @@ ${lanes.join("\n")}
|
|
|
63165
63251
|
source2,
|
|
63166
63252
|
type,
|
|
63167
63253
|
1 /* Construct */,
|
|
63168
|
-
/*
|
|
63254
|
+
/*reportErrors*/
|
|
63169
63255
|
false,
|
|
63170
63256
|
0 /* None */
|
|
63171
63257
|
);
|
|
@@ -63175,7 +63261,7 @@ ${lanes.join("\n")}
|
|
|
63175
63261
|
type,
|
|
63176
63262
|
/*sourceIsPrimitive*/
|
|
63177
63263
|
false,
|
|
63178
|
-
/*
|
|
63264
|
+
/*reportErrors*/
|
|
63179
63265
|
false,
|
|
63180
63266
|
0 /* None */
|
|
63181
63267
|
);
|
|
@@ -64665,6 +64751,7 @@ ${lanes.join("\n")}
|
|
|
64665
64751
|
param,
|
|
64666
64752
|
param.name.escapedText,
|
|
64667
64753
|
788968 /* Type */,
|
|
64754
|
+
/*nameNotFoundMessage*/
|
|
64668
64755
|
void 0,
|
|
64669
64756
|
param.name.escapedText,
|
|
64670
64757
|
/*isUse*/
|
|
@@ -64892,7 +64979,14 @@ ${lanes.join("\n")}
|
|
|
64892
64979
|
/*isReadonly*/
|
|
64893
64980
|
false
|
|
64894
64981
|
)] : emptyArray;
|
|
64895
|
-
return createAnonymousType(
|
|
64982
|
+
return createAnonymousType(
|
|
64983
|
+
/*symbol*/
|
|
64984
|
+
void 0,
|
|
64985
|
+
members,
|
|
64986
|
+
emptyArray,
|
|
64987
|
+
emptyArray,
|
|
64988
|
+
indexInfos
|
|
64989
|
+
);
|
|
64896
64990
|
}
|
|
64897
64991
|
function inferTypeForHomomorphicMappedType(source, target, constraint) {
|
|
64898
64992
|
if (inInferTypeForHomomorphicMappedType) {
|
|
@@ -66388,7 +66482,7 @@ ${lanes.join("\n")}
|
|
|
66388
66482
|
return source.flags & 1048576 /* Union */ ? !forEach(source.types, (t) => !contains(types, t)) : contains(types, source);
|
|
66389
66483
|
}
|
|
66390
66484
|
function isTypeSubsetOf(source, target) {
|
|
66391
|
-
return source === target || target.flags & 1048576 /* Union */ && isTypeSubsetOfUnion(source, target);
|
|
66485
|
+
return !!(source === target || source.flags & 131072 /* Never */ || target.flags & 1048576 /* Union */ && isTypeSubsetOfUnion(source, target));
|
|
66392
66486
|
}
|
|
66393
66487
|
function isTypeSubsetOfUnion(source, target) {
|
|
66394
66488
|
if (source.flags & 1048576 /* Union */) {
|
|
@@ -67088,7 +67182,7 @@ ${lanes.join("\n")}
|
|
|
67088
67182
|
return type;
|
|
67089
67183
|
}
|
|
67090
67184
|
pushIfUnique(antecedentTypes, type);
|
|
67091
|
-
if (!isTypeSubsetOf(type,
|
|
67185
|
+
if (!isTypeSubsetOf(type, initialType)) {
|
|
67092
67186
|
subtypeReduction = true;
|
|
67093
67187
|
}
|
|
67094
67188
|
if (isIncomplete(flowType)) {
|
|
@@ -67103,7 +67197,7 @@ ${lanes.join("\n")}
|
|
|
67103
67197
|
return type;
|
|
67104
67198
|
}
|
|
67105
67199
|
antecedentTypes.push(type);
|
|
67106
|
-
if (!isTypeSubsetOf(type,
|
|
67200
|
+
if (!isTypeSubsetOf(type, initialType)) {
|
|
67107
67201
|
subtypeReduction = true;
|
|
67108
67202
|
}
|
|
67109
67203
|
if (isIncomplete(flowType)) {
|
|
@@ -67157,7 +67251,7 @@ ${lanes.join("\n")}
|
|
|
67157
67251
|
}
|
|
67158
67252
|
const type = getTypeFromFlowType(flowType);
|
|
67159
67253
|
pushIfUnique(antecedentTypes, type);
|
|
67160
|
-
if (!isTypeSubsetOf(type,
|
|
67254
|
+
if (!isTypeSubsetOf(type, initialType)) {
|
|
67161
67255
|
subtypeReduction = true;
|
|
67162
67256
|
}
|
|
67163
67257
|
if (type === declaredType) {
|
|
@@ -68237,7 +68331,7 @@ ${lanes.join("\n")}
|
|
|
68237
68331
|
const isNodeInTypeQuery = isInTypeQuery(node);
|
|
68238
68332
|
let container = getThisContainer(
|
|
68239
68333
|
node,
|
|
68240
|
-
/*
|
|
68334
|
+
/*includeArrowFunctions*/
|
|
68241
68335
|
true,
|
|
68242
68336
|
/*includeClassComputedPropertyName*/
|
|
68243
68337
|
true
|
|
@@ -68251,7 +68345,7 @@ ${lanes.join("\n")}
|
|
|
68251
68345
|
if (container.kind === 217 /* ArrowFunction */) {
|
|
68252
68346
|
container = getThisContainer(
|
|
68253
68347
|
container,
|
|
68254
|
-
/*
|
|
68348
|
+
/*includeArrowFunctions*/
|
|
68255
68349
|
false,
|
|
68256
68350
|
!thisInComputedPropertyName
|
|
68257
68351
|
);
|
|
@@ -68864,6 +68958,7 @@ ${lanes.join("\n")}
|
|
|
68864
68958
|
id,
|
|
68865
68959
|
id.escapedText,
|
|
68866
68960
|
111551 /* Value */,
|
|
68961
|
+
/*nameNotFoundMessage*/
|
|
68867
68962
|
void 0,
|
|
68868
68963
|
id.escapedText,
|
|
68869
68964
|
/*isUse*/
|
|
@@ -68913,7 +69008,9 @@ ${lanes.join("\n")}
|
|
|
68913
69008
|
declaration.left,
|
|
68914
69009
|
name,
|
|
68915
69010
|
111551 /* Value */,
|
|
69011
|
+
/*nameNotFoundMessage*/
|
|
68916
69012
|
void 0,
|
|
69013
|
+
/*nameArg*/
|
|
68917
69014
|
void 0,
|
|
68918
69015
|
/*isUse*/
|
|
68919
69016
|
true,
|
|
@@ -70266,7 +70363,7 @@ ${lanes.join("\n")}
|
|
|
70266
70363
|
location,
|
|
70267
70364
|
namespaceName,
|
|
70268
70365
|
1920 /* Namespace */,
|
|
70269
|
-
/*
|
|
70366
|
+
/*nameNotFoundMessage*/
|
|
70270
70367
|
void 0,
|
|
70271
70368
|
namespaceName,
|
|
70272
70369
|
/*isUse*/
|
|
@@ -70289,7 +70386,7 @@ ${lanes.join("\n")}
|
|
|
70289
70386
|
const s = resolveSymbol(getGlobalSymbol(
|
|
70290
70387
|
JsxNames.JSX,
|
|
70291
70388
|
1920 /* Namespace */,
|
|
70292
|
-
/*
|
|
70389
|
+
/*diagnostic*/
|
|
70293
70390
|
void 0
|
|
70294
70391
|
));
|
|
70295
70392
|
if (s === unknownSymbol) {
|
|
@@ -70383,7 +70480,7 @@ ${lanes.join("\n")}
|
|
|
70383
70480
|
function generateInitialErrorChain() {
|
|
70384
70481
|
const componentName = getTextOfNode(openingLikeElement.tagName);
|
|
70385
70482
|
return chainDiagnosticMessages(
|
|
70386
|
-
/*
|
|
70483
|
+
/*details*/
|
|
70387
70484
|
void 0,
|
|
70388
70485
|
Diagnostics._0_cannot_be_used_as_a_JSX_component,
|
|
70389
70486
|
componentName
|
|
@@ -70641,7 +70738,7 @@ ${lanes.join("\n")}
|
|
|
70641
70738
|
function getThisParameterFromNodeContext(node) {
|
|
70642
70739
|
const thisContainer = getThisContainer(
|
|
70643
70740
|
node,
|
|
70644
|
-
/*
|
|
70741
|
+
/*includeArrowFunctions*/
|
|
70645
70742
|
false,
|
|
70646
70743
|
/*includeClassComputedPropertyName*/
|
|
70647
70744
|
false
|
|
@@ -70779,9 +70876,9 @@ ${lanes.join("\n")}
|
|
|
70779
70876
|
if (symbol) {
|
|
70780
70877
|
markPropertyAsReferenced(
|
|
70781
70878
|
symbol,
|
|
70782
|
-
/*
|
|
70879
|
+
/*nodeForCheckWriteOnly*/
|
|
70783
70880
|
void 0,
|
|
70784
|
-
/*
|
|
70881
|
+
/*isSelfTypeAccess*/
|
|
70785
70882
|
false
|
|
70786
70883
|
);
|
|
70787
70884
|
}
|
|
@@ -71322,7 +71419,7 @@ ${lanes.join("\n")}
|
|
|
71322
71419
|
return isPropertyAccessible(
|
|
71323
71420
|
node,
|
|
71324
71421
|
node.kind === 209 /* PropertyAccessExpression */ && node.expression.kind === 107 /* SuperKeyword */,
|
|
71325
|
-
/*
|
|
71422
|
+
/*isWrite*/
|
|
71326
71423
|
false,
|
|
71327
71424
|
type,
|
|
71328
71425
|
property
|
|
@@ -71336,7 +71433,7 @@ ${lanes.join("\n")}
|
|
|
71336
71433
|
return !!prop && isPropertyAccessible(
|
|
71337
71434
|
node,
|
|
71338
71435
|
isSuper,
|
|
71339
|
-
/*
|
|
71436
|
+
/*isWrite*/
|
|
71340
71437
|
false,
|
|
71341
71438
|
type,
|
|
71342
71439
|
prop
|
|
@@ -72049,7 +72146,17 @@ ${lanes.join("\n")}
|
|
|
72049
72146
|
function isPromiseResolveArityError(node) {
|
|
72050
72147
|
if (!isCallExpression(node) || !isIdentifier(node.expression))
|
|
72051
72148
|
return false;
|
|
72052
|
-
const symbol = resolveName(
|
|
72149
|
+
const symbol = resolveName(
|
|
72150
|
+
node.expression,
|
|
72151
|
+
node.expression.escapedText,
|
|
72152
|
+
111551 /* Value */,
|
|
72153
|
+
/*nameNotFoundMessage*/
|
|
72154
|
+
void 0,
|
|
72155
|
+
/*nameArg*/
|
|
72156
|
+
void 0,
|
|
72157
|
+
/*isUse*/
|
|
72158
|
+
false
|
|
72159
|
+
);
|
|
72053
72160
|
const decl = symbol == null ? void 0 : symbol.valueDeclaration;
|
|
72054
72161
|
if (!decl || !isParameter(decl) || !isFunctionExpressionOrArrowFunction(decl.parent) || !isNewExpression(decl.parent.parent) || !isIdentifier(decl.parent.parent.expression)) {
|
|
72055
72162
|
return false;
|
|
@@ -72528,7 +72635,7 @@ ${lanes.join("\n")}
|
|
|
72528
72635
|
parameters,
|
|
72529
72636
|
/*resolvedReturnType*/
|
|
72530
72637
|
getIntersectionType(candidates.map(getReturnTypeOfSignature)),
|
|
72531
|
-
/*
|
|
72638
|
+
/*resolvedTypePredicate*/
|
|
72532
72639
|
void 0,
|
|
72533
72640
|
minArgumentCount,
|
|
72534
72641
|
flags
|
|
@@ -72649,7 +72756,7 @@ ${lanes.join("\n")}
|
|
|
72649
72756
|
if (isLineBreak(text.charCodeAt(skipTrivia(
|
|
72650
72757
|
text,
|
|
72651
72758
|
node.expression.end,
|
|
72652
|
-
/*
|
|
72759
|
+
/*stopAfterLineBreak*/
|
|
72653
72760
|
true
|
|
72654
72761
|
) - 1))) {
|
|
72655
72762
|
relatedInformation = createDiagnosticForNode(node.expression, Diagnostics.Are_you_missing_a_semicolon);
|
|
@@ -72828,7 +72935,7 @@ ${lanes.join("\n")}
|
|
|
72828
72935
|
}
|
|
72829
72936
|
if (!hasSignatures) {
|
|
72830
72937
|
errorInfo = chainDiagnosticMessages(
|
|
72831
|
-
/*
|
|
72938
|
+
/*details*/
|
|
72832
72939
|
void 0,
|
|
72833
72940
|
isCall ? Diagnostics.No_constituent_of_type_0_is_callable : Diagnostics.No_constituent_of_type_0_is_constructable,
|
|
72834
72941
|
typeToString(apparentType)
|
|
@@ -72869,7 +72976,7 @@ ${lanes.join("\n")}
|
|
|
72869
72976
|
if (isCallExpression(errorTarget.parent)) {
|
|
72870
72977
|
const { start, length: length2 } = getDiagnosticSpanForCallNode(
|
|
72871
72978
|
errorTarget.parent,
|
|
72872
|
-
/*
|
|
72979
|
+
/*doNotIncludeArguments*/
|
|
72873
72980
|
true
|
|
72874
72981
|
);
|
|
72875
72982
|
diagnostic.start = start;
|
|
@@ -72977,10 +73084,10 @@ ${lanes.join("\n")}
|
|
|
72977
73084
|
[factory.createParameterDeclaration(
|
|
72978
73085
|
/*modifiers*/
|
|
72979
73086
|
void 0,
|
|
72980
|
-
/*
|
|
73087
|
+
/*dotDotDotToken*/
|
|
72981
73088
|
void 0,
|
|
72982
73089
|
"props",
|
|
72983
|
-
/*
|
|
73090
|
+
/*questionToken*/
|
|
72984
73091
|
void 0,
|
|
72985
73092
|
nodeBuilder.typeToTypeNode(result, node)
|
|
72986
73093
|
)],
|
|
@@ -73000,7 +73107,7 @@ ${lanes.join("\n")}
|
|
|
73000
73107
|
void 0,
|
|
73001
73108
|
[parameterSymbol],
|
|
73002
73109
|
typeSymbol ? getDeclaredTypeOfSymbol(typeSymbol) : errorType,
|
|
73003
|
-
/*
|
|
73110
|
+
/*resolvedTypePredicate*/
|
|
73004
73111
|
void 0,
|
|
73005
73112
|
1,
|
|
73006
73113
|
0 /* None */
|
|
@@ -73070,8 +73177,11 @@ ${lanes.join("\n")}
|
|
|
73070
73177
|
return cached;
|
|
73071
73178
|
}
|
|
73072
73179
|
links.resolvedSignature = resolvingSignature;
|
|
73073
|
-
|
|
73180
|
+
let result = resolveSignature(node, candidatesOutArray, checkMode || 0 /* Normal */);
|
|
73074
73181
|
if (result !== resolvingSignature) {
|
|
73182
|
+
if (links.resolvedSignature !== resolvingSignature) {
|
|
73183
|
+
result = links.resolvedSignature;
|
|
73184
|
+
}
|
|
73075
73185
|
links.resolvedSignature = flowLoopStart === flowLoopCount ? result : cached;
|
|
73076
73186
|
}
|
|
73077
73187
|
return result;
|
|
@@ -73317,9 +73427,9 @@ ${lanes.join("\n")}
|
|
|
73317
73427
|
const esModuleSymbol = resolveESModuleSymbol(
|
|
73318
73428
|
moduleSymbol,
|
|
73319
73429
|
specifier,
|
|
73320
|
-
/*
|
|
73430
|
+
/*dontResolveAlias*/
|
|
73321
73431
|
true,
|
|
73322
|
-
/*
|
|
73432
|
+
/*suppressInteropError*/
|
|
73323
73433
|
false
|
|
73324
73434
|
);
|
|
73325
73435
|
if (esModuleSymbol) {
|
|
@@ -73389,7 +73499,7 @@ ${lanes.join("\n")}
|
|
|
73389
73499
|
function isCommonJsRequire(node) {
|
|
73390
73500
|
if (!isRequireCall(
|
|
73391
73501
|
node,
|
|
73392
|
-
/*
|
|
73502
|
+
/*requireStringLiteralLikeArgument*/
|
|
73393
73503
|
true
|
|
73394
73504
|
)) {
|
|
73395
73505
|
return false;
|
|
@@ -73430,14 +73540,14 @@ ${lanes.join("\n")}
|
|
|
73430
73540
|
checkDeprecatedSignature(signature, node);
|
|
73431
73541
|
return getReturnTypeOfSignature(signature);
|
|
73432
73542
|
}
|
|
73433
|
-
function checkAssertion(node) {
|
|
73543
|
+
function checkAssertion(node, checkMode) {
|
|
73434
73544
|
if (node.kind === 214 /* TypeAssertionExpression */) {
|
|
73435
73545
|
const file = getSourceFileOfNode(node);
|
|
73436
73546
|
if (file && fileExtensionIsOneOf(file.fileName, [".cts" /* Cts */, ".mts" /* Mts */])) {
|
|
73437
73547
|
grammarErrorOnNode(node, Diagnostics.This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Use_an_as_expression_instead);
|
|
73438
73548
|
}
|
|
73439
73549
|
}
|
|
73440
|
-
return checkAssertionWorker(node,
|
|
73550
|
+
return checkAssertionWorker(node, checkMode);
|
|
73441
73551
|
}
|
|
73442
73552
|
function isValidConstAssertionArgument(node) {
|
|
73443
73553
|
switch (node.kind) {
|
|
@@ -73470,8 +73580,9 @@ ${lanes.join("\n")}
|
|
|
73470
73580
|
}
|
|
73471
73581
|
return false;
|
|
73472
73582
|
}
|
|
73473
|
-
function checkAssertionWorker(
|
|
73474
|
-
|
|
73583
|
+
function checkAssertionWorker(node, checkMode) {
|
|
73584
|
+
const { type, expression } = getAssertionTypeAndExpression(node);
|
|
73585
|
+
const exprType = checkExpression(expression, checkMode);
|
|
73475
73586
|
if (isConstTypeReference(type)) {
|
|
73476
73587
|
if (!isValidConstAssertionArgument(expression)) {
|
|
73477
73588
|
error(expression, Diagnostics.A_const_assertions_can_only_be_applied_to_references_to_enum_members_or_string_number_boolean_array_or_object_literals);
|
|
@@ -73479,7 +73590,29 @@ ${lanes.join("\n")}
|
|
|
73479
73590
|
return getRegularTypeOfLiteralType(exprType);
|
|
73480
73591
|
}
|
|
73481
73592
|
checkSourceElement(type);
|
|
73482
|
-
|
|
73593
|
+
checkNodeDeferred(node);
|
|
73594
|
+
return getTypeFromTypeNode(type);
|
|
73595
|
+
}
|
|
73596
|
+
function getAssertionTypeAndExpression(node) {
|
|
73597
|
+
let type;
|
|
73598
|
+
let expression;
|
|
73599
|
+
switch (node.kind) {
|
|
73600
|
+
case 232 /* AsExpression */:
|
|
73601
|
+
case 214 /* TypeAssertionExpression */:
|
|
73602
|
+
type = node.type;
|
|
73603
|
+
expression = node.expression;
|
|
73604
|
+
break;
|
|
73605
|
+
case 215 /* ParenthesizedExpression */:
|
|
73606
|
+
type = getJSDocTypeAssertionType(node);
|
|
73607
|
+
expression = node.expression;
|
|
73608
|
+
break;
|
|
73609
|
+
}
|
|
73610
|
+
return { type, expression };
|
|
73611
|
+
}
|
|
73612
|
+
function checkAssertionDeferred(node) {
|
|
73613
|
+
const { type, expression } = getAssertionTypeAndExpression(node);
|
|
73614
|
+
const errNode = isParenthesizedExpression(node) ? type : node;
|
|
73615
|
+
const exprType = getRegularTypeOfObjectLiteral(getBaseTypeOfLiteralType(checkExpression(expression)));
|
|
73483
73616
|
const targetType = getTypeFromTypeNode(type);
|
|
73484
73617
|
if (!isErrorType(targetType)) {
|
|
73485
73618
|
addLazyDiagnostic(() => {
|
|
@@ -73494,7 +73627,6 @@ ${lanes.join("\n")}
|
|
|
73494
73627
|
}
|
|
73495
73628
|
});
|
|
73496
73629
|
}
|
|
73497
|
-
return targetType;
|
|
73498
73630
|
}
|
|
73499
73631
|
function checkNonNullChain(node) {
|
|
73500
73632
|
const leftType = checkExpression(node.expression);
|
|
@@ -73546,7 +73678,14 @@ ${lanes.join("\n")}
|
|
|
73546
73678
|
hasSignatures || (hasSignatures = resolved.callSignatures.length !== 0 || resolved.constructSignatures.length !== 0);
|
|
73547
73679
|
hasApplicableSignature || (hasApplicableSignature = callSignatures.length !== 0 || constructSignatures.length !== 0);
|
|
73548
73680
|
if (callSignatures !== resolved.callSignatures || constructSignatures !== resolved.constructSignatures) {
|
|
73549
|
-
const result3 = createAnonymousType(
|
|
73681
|
+
const result3 = createAnonymousType(
|
|
73682
|
+
/*symbol*/
|
|
73683
|
+
void 0,
|
|
73684
|
+
resolved.members,
|
|
73685
|
+
callSignatures,
|
|
73686
|
+
constructSignatures,
|
|
73687
|
+
resolved.indexInfos
|
|
73688
|
+
);
|
|
73550
73689
|
result3.objectFlags |= 8388608 /* InstantiationExpressionType */;
|
|
73551
73690
|
result3.node = node;
|
|
73552
73691
|
return result3;
|
|
@@ -73735,12 +73874,12 @@ ${lanes.join("\n")}
|
|
|
73735
73874
|
}
|
|
73736
73875
|
return void 0;
|
|
73737
73876
|
}
|
|
73738
|
-
function getRestTypeAtPosition(source, pos
|
|
73877
|
+
function getRestTypeAtPosition(source, pos) {
|
|
73739
73878
|
const parameterCount = getParameterCount(source);
|
|
73740
73879
|
const minArgumentCount = getMinArgumentCount(source);
|
|
73741
73880
|
const restType = getEffectiveRestType(source);
|
|
73742
73881
|
if (restType && pos >= parameterCount - 1) {
|
|
73743
|
-
return pos === parameterCount - 1 ? restType : createArrayType(getIndexedAccessType(restType, numberType)
|
|
73882
|
+
return pos === parameterCount - 1 ? restType : createArrayType(getIndexedAccessType(restType, numberType));
|
|
73744
73883
|
}
|
|
73745
73884
|
const types = [];
|
|
73746
73885
|
const flags = [];
|
|
@@ -73758,7 +73897,13 @@ ${lanes.join("\n")}
|
|
|
73758
73897
|
names.push(name);
|
|
73759
73898
|
}
|
|
73760
73899
|
}
|
|
73761
|
-
return createTupleType(
|
|
73900
|
+
return createTupleType(
|
|
73901
|
+
types,
|
|
73902
|
+
flags,
|
|
73903
|
+
/*readonly*/
|
|
73904
|
+
false,
|
|
73905
|
+
length(names) === length(types) ? names : void 0
|
|
73906
|
+
);
|
|
73762
73907
|
}
|
|
73763
73908
|
function getParameterCount(signature) {
|
|
73764
73909
|
const length2 = signature.parameters.length;
|
|
@@ -73988,13 +74133,13 @@ ${lanes.join("\n")}
|
|
|
73988
74133
|
}
|
|
73989
74134
|
function createClassAccessorDecoratorTargetType(thisType, valueType) {
|
|
73990
74135
|
return tryCreateTypeReference(getGlobalClassAccessorDecoratorTargetType(
|
|
73991
|
-
/*
|
|
74136
|
+
/*reportErrors*/
|
|
73992
74137
|
true
|
|
73993
74138
|
), [thisType, valueType]);
|
|
73994
74139
|
}
|
|
73995
74140
|
function createClassAccessorDecoratorResultType(thisType, valueType) {
|
|
73996
74141
|
return tryCreateTypeReference(getGlobalClassAccessorDecoratorResultType(
|
|
73997
|
-
/*
|
|
74142
|
+
/*reportErrors*/
|
|
73998
74143
|
true
|
|
73999
74144
|
), [thisType, valueType]);
|
|
74000
74145
|
}
|
|
@@ -74512,8 +74657,11 @@ ${lanes.join("\n")}
|
|
|
74512
74657
|
}
|
|
74513
74658
|
const returnType = getReturnTypeFromBody(node, checkMode);
|
|
74514
74659
|
const returnOnlySignature = createSignature(
|
|
74660
|
+
/*declaration*/
|
|
74515
74661
|
void 0,
|
|
74662
|
+
/*typeParameters*/
|
|
74516
74663
|
void 0,
|
|
74664
|
+
/*thisParameter*/
|
|
74517
74665
|
void 0,
|
|
74518
74666
|
emptyArray,
|
|
74519
74667
|
returnType,
|
|
@@ -75561,6 +75709,7 @@ ${lanes.join("\n")}
|
|
|
75561
75709
|
prop.valueDeclaration,
|
|
75562
75710
|
name,
|
|
75563
75711
|
788968 /* Type */,
|
|
75712
|
+
/*nameNotFoundMessage*/
|
|
75564
75713
|
void 0,
|
|
75565
75714
|
name,
|
|
75566
75715
|
/*isUse*/
|
|
@@ -76167,7 +76316,7 @@ ${lanes.join("\n")}
|
|
|
76167
76316
|
}
|
|
76168
76317
|
if (isCallExpression(expr) && expr.expression.kind !== 107 /* SuperKeyword */ && !isRequireCall(
|
|
76169
76318
|
expr,
|
|
76170
|
-
/*
|
|
76319
|
+
/*requireStringLiteralLikeArgument*/
|
|
76171
76320
|
true
|
|
76172
76321
|
) && !isSymbolOrSymbolForCall(expr)) {
|
|
76173
76322
|
return isCallChain(expr) ? getReturnTypeOfSingleNonGenericSignatureOfCallChain(expr) : getReturnTypeOfSingleNonGenericCallSignature(checkNonNullExpression(expr.expression));
|
|
@@ -76227,8 +76376,7 @@ ${lanes.join("\n")}
|
|
|
76227
76376
|
return checkSatisfiesExpressionWorker(node.expression, getJSDocSatisfiesExpressionType(node), checkMode);
|
|
76228
76377
|
}
|
|
76229
76378
|
if (isJSDocTypeAssertion(node)) {
|
|
76230
|
-
|
|
76231
|
-
return checkAssertionWorker(type, type, node.expression, checkMode);
|
|
76379
|
+
return checkAssertionWorker(node, checkMode);
|
|
76232
76380
|
}
|
|
76233
76381
|
}
|
|
76234
76382
|
return checkExpression(node.expression, checkMode);
|
|
@@ -76303,7 +76451,7 @@ ${lanes.join("\n")}
|
|
|
76303
76451
|
return checkTypeOfExpression(node);
|
|
76304
76452
|
case 214 /* TypeAssertionExpression */:
|
|
76305
76453
|
case 232 /* AsExpression */:
|
|
76306
|
-
return checkAssertion(node);
|
|
76454
|
+
return checkAssertion(node, checkMode);
|
|
76307
76455
|
case 233 /* NonNullExpression */:
|
|
76308
76456
|
return checkNonNullAssertion(node);
|
|
76309
76457
|
case 231 /* ExpressionWithTypeArguments */:
|
|
@@ -77820,7 +77968,7 @@ ${lanes.join("\n")}
|
|
|
77820
77968
|
void 0,
|
|
77821
77969
|
/*nameArg*/
|
|
77822
77970
|
void 0,
|
|
77823
|
-
/*
|
|
77971
|
+
/*isUse*/
|
|
77824
77972
|
true
|
|
77825
77973
|
);
|
|
77826
77974
|
if (rootSymbol && rootSymbol.flags & 2097152 /* Alias */) {
|
|
@@ -78564,7 +78712,7 @@ ${lanes.join("\n")}
|
|
|
78564
78712
|
node,
|
|
78565
78713
|
node.name.escapedText,
|
|
78566
78714
|
3 /* Variable */,
|
|
78567
|
-
/*
|
|
78715
|
+
/*nameNotFoundMessage*/
|
|
78568
78716
|
void 0,
|
|
78569
78717
|
/*nameArg*/
|
|
78570
78718
|
void 0,
|
|
@@ -79382,12 +79530,12 @@ ${lanes.join("\n")}
|
|
|
79382
79530
|
const suggestAwait = (
|
|
79383
79531
|
// for (const x of Promise<...>) or [...Promise<...>]
|
|
79384
79532
|
!!getAwaitedTypeOfPromise(type) || !allowAsyncIterables && isForOfStatement(errorNode.parent) && errorNode.parent.expression === errorNode && getGlobalAsyncIterableType(
|
|
79385
|
-
|
|
79533
|
+
/*reportErrors*/
|
|
79386
79534
|
false
|
|
79387
79535
|
) !== emptyGenericType && isTypeAssignableTo(
|
|
79388
79536
|
type,
|
|
79389
79537
|
getGlobalAsyncIterableType(
|
|
79390
|
-
|
|
79538
|
+
/*reportErrors*/
|
|
79391
79539
|
false
|
|
79392
79540
|
)
|
|
79393
79541
|
)
|
|
@@ -80255,7 +80403,7 @@ ${lanes.join("\n")}
|
|
|
80255
80403
|
type,
|
|
80256
80404
|
typeWithThis,
|
|
80257
80405
|
param,
|
|
80258
|
-
/*
|
|
80406
|
+
/*memberIsParameterProperty*/
|
|
80259
80407
|
true
|
|
80260
80408
|
);
|
|
80261
80409
|
}
|
|
@@ -80269,7 +80417,7 @@ ${lanes.join("\n")}
|
|
|
80269
80417
|
type,
|
|
80270
80418
|
typeWithThis,
|
|
80271
80419
|
member,
|
|
80272
|
-
/*
|
|
80420
|
+
/*memberIsParameterProperty*/
|
|
80273
80421
|
false
|
|
80274
80422
|
);
|
|
80275
80423
|
}
|
|
@@ -80373,7 +80521,7 @@ ${lanes.join("\n")}
|
|
|
80373
80521
|
getTypeOfSymbol(prop),
|
|
80374
80522
|
getTypeOfSymbol(baseProp),
|
|
80375
80523
|
member.name || member,
|
|
80376
|
-
/*
|
|
80524
|
+
/*headMessage*/
|
|
80377
80525
|
void 0,
|
|
80378
80526
|
rootChain
|
|
80379
80527
|
)) {
|
|
@@ -80421,7 +80569,7 @@ ${lanes.join("\n")}
|
|
|
80421
80569
|
memberHasOverrideModifier,
|
|
80422
80570
|
hasAbstractModifier(member),
|
|
80423
80571
|
isStatic(member),
|
|
80424
|
-
/*
|
|
80572
|
+
/*memberIsParameterProperty*/
|
|
80425
80573
|
false,
|
|
80426
80574
|
symbolName(memberSymbol)
|
|
80427
80575
|
);
|
|
@@ -81889,6 +82037,10 @@ ${lanes.join("\n")}
|
|
|
81889
82037
|
case 282 /* JsxElement */:
|
|
81890
82038
|
checkJsxElementDeferred(node);
|
|
81891
82039
|
break;
|
|
82040
|
+
case 214 /* TypeAssertionExpression */:
|
|
82041
|
+
case 232 /* AsExpression */:
|
|
82042
|
+
case 215 /* ParenthesizedExpression */:
|
|
82043
|
+
checkAssertionDeferred(node);
|
|
81892
82044
|
}
|
|
81893
82045
|
currentNode = saveCurrentNode;
|
|
81894
82046
|
(_b = tracing) == null ? void 0 : _b.pop();
|
|
@@ -82251,7 +82403,12 @@ ${lanes.join("\n")}
|
|
|
82251
82403
|
meaning = 1920 /* Namespace */;
|
|
82252
82404
|
}
|
|
82253
82405
|
meaning |= 2097152 /* Alias */;
|
|
82254
|
-
const entityNameSymbol = isEntityNameExpression(name) ? resolveEntityName(
|
|
82406
|
+
const entityNameSymbol = isEntityNameExpression(name) ? resolveEntityName(
|
|
82407
|
+
name,
|
|
82408
|
+
meaning,
|
|
82409
|
+
/*ignoreErrors*/
|
|
82410
|
+
true
|
|
82411
|
+
) : void 0;
|
|
82255
82412
|
if (entityNameSymbol) {
|
|
82256
82413
|
return entityNameSymbol;
|
|
82257
82414
|
}
|
|
@@ -82280,7 +82437,7 @@ ${lanes.join("\n")}
|
|
|
82280
82437
|
meaning,
|
|
82281
82438
|
/*ignoreErrors*/
|
|
82282
82439
|
false,
|
|
82283
|
-
/*
|
|
82440
|
+
/*dontResolveAlias*/
|
|
82284
82441
|
true,
|
|
82285
82442
|
getHostSignatureFromJSDoc(name)
|
|
82286
82443
|
);
|
|
@@ -82303,7 +82460,7 @@ ${lanes.join("\n")}
|
|
|
82303
82460
|
meaning,
|
|
82304
82461
|
/*ignoreErrors*/
|
|
82305
82462
|
true,
|
|
82306
|
-
/*
|
|
82463
|
+
/*dontResolveAlias*/
|
|
82307
82464
|
true,
|
|
82308
82465
|
getSourceFileOfNode(container)
|
|
82309
82466
|
) || result;
|
|
@@ -82476,7 +82633,7 @@ ${lanes.join("\n")}
|
|
|
82476
82633
|
case 14 /* NoSubstitutionTemplateLiteral */:
|
|
82477
82634
|
if (isExternalModuleImportEqualsDeclaration(node.parent.parent) && getExternalModuleImportEqualsDeclarationExpression(node.parent.parent) === node || (node.parent.kind === 270 /* ImportDeclaration */ || node.parent.kind === 276 /* ExportDeclaration */) && node.parent.moduleSpecifier === node || (isInJSFile(node) && getEmitModuleResolutionKind(compilerOptions) !== 100 /* Bundler */ && isRequireCall(
|
|
82478
82635
|
node.parent,
|
|
82479
|
-
/*
|
|
82636
|
+
/*requireStringLiteralLikeArgument*/
|
|
82480
82637
|
false
|
|
82481
82638
|
) || isImportCall(node.parent)) || isLiteralTypeNode(node.parent) && isLiteralImportTypeNode(node.parent.parent) && node.parent.parent.argument === node.parent) {
|
|
82482
82639
|
return resolveExternalModuleName(node, node, ignoreErrors);
|
|
@@ -83090,7 +83247,7 @@ ${lanes.join("\n")}
|
|
|
83090
83247
|
location,
|
|
83091
83248
|
reference.escapedText,
|
|
83092
83249
|
111551 /* Value */ | 1048576 /* ExportValue */ | 2097152 /* Alias */,
|
|
83093
|
-
/*
|
|
83250
|
+
/*nameNotFoundMessage*/
|
|
83094
83251
|
void 0,
|
|
83095
83252
|
/*nameArg*/
|
|
83096
83253
|
void 0,
|
|
@@ -83107,7 +83264,7 @@ ${lanes.join("\n")}
|
|
|
83107
83264
|
reference,
|
|
83108
83265
|
reference.escapedText,
|
|
83109
83266
|
111551 /* Value */ | 1048576 /* ExportValue */ | 2097152 /* Alias */,
|
|
83110
|
-
/*
|
|
83267
|
+
/*nameNotFoundMessage*/
|
|
83111
83268
|
void 0,
|
|
83112
83269
|
/*nameArg*/
|
|
83113
83270
|
void 0,
|
|
@@ -83524,7 +83681,14 @@ ${lanes.join("\n")}
|
|
|
83524
83681
|
anyArrayType = createArrayType(anyType);
|
|
83525
83682
|
autoArrayType = createArrayType(autoType);
|
|
83526
83683
|
if (autoArrayType === emptyObjectType) {
|
|
83527
|
-
autoArrayType = createAnonymousType(
|
|
83684
|
+
autoArrayType = createAnonymousType(
|
|
83685
|
+
/*symbol*/
|
|
83686
|
+
void 0,
|
|
83687
|
+
emptySymbols,
|
|
83688
|
+
emptyArray,
|
|
83689
|
+
emptyArray,
|
|
83690
|
+
emptyArray
|
|
83691
|
+
);
|
|
83528
83692
|
}
|
|
83529
83693
|
globalReadonlyArrayType = getGlobalTypeOrUndefined(
|
|
83530
83694
|
"ReadonlyArray",
|
|
@@ -84642,7 +84806,7 @@ ${lanes.join("\n")}
|
|
|
84642
84806
|
if (node.label && current.label.escapedText === node.label.escapedText) {
|
|
84643
84807
|
const isMisplacedContinueLabel = node.kind === 249 /* ContinueStatement */ && !isIterationStatement(
|
|
84644
84808
|
current.statement,
|
|
84645
|
-
/*
|
|
84809
|
+
/*lookInLabeledStatements*/
|
|
84646
84810
|
true
|
|
84647
84811
|
);
|
|
84648
84812
|
if (isMisplacedContinueLabel) {
|
|
@@ -84659,7 +84823,7 @@ ${lanes.join("\n")}
|
|
|
84659
84823
|
default:
|
|
84660
84824
|
if (isIterationStatement(
|
|
84661
84825
|
current,
|
|
84662
|
-
/*
|
|
84826
|
+
/*lookInLabeledStatements*/
|
|
84663
84827
|
false
|
|
84664
84828
|
) && !node.label) {
|
|
84665
84829
|
return false;
|
|
@@ -88605,7 +88769,7 @@ ${lanes.join("\n")}
|
|
|
88605
88769
|
let facts = 0 /* None */;
|
|
88606
88770
|
if (some(getProperties(
|
|
88607
88771
|
node,
|
|
88608
|
-
/*
|
|
88772
|
+
/*requireInitializer*/
|
|
88609
88773
|
true,
|
|
88610
88774
|
/*isStatic*/
|
|
88611
88775
|
true
|
|
@@ -90483,10 +90647,10 @@ ${lanes.join("\n")}
|
|
|
90483
90647
|
filter(node.modifiers, (m) => isModifier(m) && !isStaticModifier(m) && !isAccessorModifier(m)),
|
|
90484
90648
|
node.asteriskToken,
|
|
90485
90649
|
functionName,
|
|
90486
|
-
/*
|
|
90650
|
+
/*typeParameters*/
|
|
90487
90651
|
void 0,
|
|
90488
90652
|
visitParameterList(node.parameters, visitor, context),
|
|
90489
|
-
/*
|
|
90653
|
+
/*type*/
|
|
90490
90654
|
void 0,
|
|
90491
90655
|
visitFunctionBody(node.body, visitor, context)
|
|
90492
90656
|
)
|
|
@@ -91091,7 +91255,7 @@ ${lanes.join("\n")}
|
|
|
91091
91255
|
info.brandCheckIdentifier,
|
|
91092
91256
|
right,
|
|
91093
91257
|
info.kind,
|
|
91094
|
-
/*
|
|
91258
|
+
/*f*/
|
|
91095
91259
|
void 0
|
|
91096
91260
|
);
|
|
91097
91261
|
case "f" /* Field */:
|
|
@@ -91163,7 +91327,7 @@ ${lanes.join("\n")}
|
|
|
91163
91327
|
if (facts & 4 /* NeedsClassSuperReference */) {
|
|
91164
91328
|
const temp = factory2.createTempVariable(
|
|
91165
91329
|
hoistVariableDeclaration,
|
|
91166
|
-
/*
|
|
91330
|
+
/*reservedInNestedScopes*/
|
|
91167
91331
|
true
|
|
91168
91332
|
);
|
|
91169
91333
|
getClassLexicalEnvironment().superClassReference = temp;
|
|
@@ -91996,7 +92160,7 @@ ${lanes.join("\n")}
|
|
|
91996
92160
|
const identifier = typeof name === "object" ? factory2.getGeneratedNameForNode(name, 16 /* Optimistic */ | 8 /* ReservedInNestedScopes */, prefix, suffix) : typeof name === "string" ? factory2.createUniqueName(name, 16 /* Optimistic */, prefix, suffix) : factory2.createTempVariable(
|
|
91997
92161
|
/*recordTempVariable*/
|
|
91998
92162
|
void 0,
|
|
91999
|
-
/*
|
|
92163
|
+
/*reservedInNestedScopes*/
|
|
92000
92164
|
true,
|
|
92001
92165
|
prefix,
|
|
92002
92166
|
suffix
|
|
@@ -92714,11 +92878,11 @@ ${lanes.join("\n")}
|
|
|
92714
92878
|
}
|
|
92715
92879
|
function visitClassDeclaration(node) {
|
|
92716
92880
|
if (!(classOrConstructorParameterIsDecorated(
|
|
92717
|
-
/*
|
|
92881
|
+
/*useLegacyDecorators*/
|
|
92718
92882
|
true,
|
|
92719
92883
|
node
|
|
92720
92884
|
) || childIsDecorated(
|
|
92721
|
-
/*
|
|
92885
|
+
/*useLegacyDecorators*/
|
|
92722
92886
|
true,
|
|
92723
92887
|
node
|
|
92724
92888
|
))) {
|
|
@@ -92973,7 +93137,7 @@ ${lanes.join("\n")}
|
|
|
92973
93137
|
}
|
|
92974
93138
|
function isDecoratedClassElement(member, isStaticElement, parent2) {
|
|
92975
93139
|
return nodeOrChildIsDecorated(
|
|
92976
|
-
/*
|
|
93140
|
+
/*useLegacyDecorators*/
|
|
92977
93141
|
true,
|
|
92978
93142
|
member,
|
|
92979
93143
|
parent2
|
|
@@ -93331,7 +93495,7 @@ ${lanes.join("\n")}
|
|
|
93331
93495
|
case 223 /* PostfixUnaryExpression */:
|
|
93332
93496
|
return visitPreOrPostfixUnaryExpression(
|
|
93333
93497
|
node,
|
|
93334
|
-
/*
|
|
93498
|
+
/*discarded*/
|
|
93335
93499
|
false
|
|
93336
93500
|
);
|
|
93337
93501
|
case 209 /* PropertyAccessExpression */:
|
|
@@ -93482,7 +93646,7 @@ ${lanes.join("\n")}
|
|
|
93482
93646
|
let hasStaticPrivateClassElements = false;
|
|
93483
93647
|
for (const member of node.members) {
|
|
93484
93648
|
if (isNamedClassElement(member) && nodeOrChildIsDecorated(
|
|
93485
|
-
/*
|
|
93649
|
+
/*useLegacyDecorators*/
|
|
93486
93650
|
false,
|
|
93487
93651
|
member,
|
|
93488
93652
|
node
|
|
@@ -93721,7 +93885,7 @@ ${lanes.join("\n")}
|
|
|
93721
93885
|
if (leadingBlockStatements) {
|
|
93722
93886
|
const leadingStaticBlockBody = factory2.createBlock(
|
|
93723
93887
|
leadingBlockStatements,
|
|
93724
|
-
/*
|
|
93888
|
+
/*multiLine*/
|
|
93725
93889
|
true
|
|
93726
93890
|
);
|
|
93727
93891
|
const leadingStaticBlock = factory2.createClassStaticBlockDeclaration(leadingStaticBlockBody);
|
|
@@ -93736,7 +93900,7 @@ ${lanes.join("\n")}
|
|
|
93736
93900
|
if (trailingBlockStatements) {
|
|
93737
93901
|
const trailingStaticBlockBody = factory2.createBlock(
|
|
93738
93902
|
trailingBlockStatements,
|
|
93739
|
-
/*
|
|
93903
|
+
/*multiLine*/
|
|
93740
93904
|
true
|
|
93741
93905
|
);
|
|
93742
93906
|
const trailingStaticBlock = factory2.createClassStaticBlockDeclaration(trailingStaticBlockBody);
|
|
@@ -93802,11 +93966,11 @@ ${lanes.join("\n")}
|
|
|
93802
93966
|
}
|
|
93803
93967
|
function isDecoratedClassLike(node) {
|
|
93804
93968
|
return classOrConstructorParameterIsDecorated(
|
|
93805
|
-
/*
|
|
93969
|
+
/*useLegacyDecorators*/
|
|
93806
93970
|
false,
|
|
93807
93971
|
node
|
|
93808
93972
|
) || childIsDecorated(
|
|
93809
|
-
/*
|
|
93973
|
+
/*useLegacyDecorators*/
|
|
93810
93974
|
false,
|
|
93811
93975
|
node
|
|
93812
93976
|
);
|
|
@@ -95492,15 +95656,15 @@ ${lanes.join("\n")}
|
|
|
95492
95656
|
getterAndSetter.push(factory2.createPropertyAssignment(
|
|
95493
95657
|
"get",
|
|
95494
95658
|
factory2.createArrowFunction(
|
|
95495
|
-
/*
|
|
95659
|
+
/*modifiers*/
|
|
95496
95660
|
void 0,
|
|
95497
|
-
/*
|
|
95661
|
+
/*typeParameters*/
|
|
95498
95662
|
void 0,
|
|
95499
95663
|
/* parameters */
|
|
95500
95664
|
[],
|
|
95501
|
-
/*
|
|
95665
|
+
/*type*/
|
|
95502
95666
|
void 0,
|
|
95503
|
-
/*
|
|
95667
|
+
/*equalsGreaterThanToken*/
|
|
95504
95668
|
void 0,
|
|
95505
95669
|
setEmitFlags(
|
|
95506
95670
|
factory2.createPropertyAccessExpression(
|
|
@@ -95519,29 +95683,29 @@ ${lanes.join("\n")}
|
|
|
95519
95683
|
factory2.createPropertyAssignment(
|
|
95520
95684
|
"set",
|
|
95521
95685
|
factory2.createArrowFunction(
|
|
95522
|
-
/*
|
|
95686
|
+
/*modifiers*/
|
|
95523
95687
|
void 0,
|
|
95524
|
-
/*
|
|
95688
|
+
/*typeParameters*/
|
|
95525
95689
|
void 0,
|
|
95526
95690
|
/* parameters */
|
|
95527
95691
|
[
|
|
95528
95692
|
factory2.createParameterDeclaration(
|
|
95529
|
-
/*
|
|
95693
|
+
/*modifiers*/
|
|
95530
95694
|
void 0,
|
|
95531
|
-
/*
|
|
95695
|
+
/*dotDotDotToken*/
|
|
95532
95696
|
void 0,
|
|
95533
95697
|
"v",
|
|
95534
|
-
/*
|
|
95698
|
+
/*questionToken*/
|
|
95535
95699
|
void 0,
|
|
95536
|
-
/*
|
|
95700
|
+
/*type*/
|
|
95537
95701
|
void 0,
|
|
95538
|
-
/*
|
|
95702
|
+
/*initializer*/
|
|
95539
95703
|
void 0
|
|
95540
95704
|
)
|
|
95541
95705
|
],
|
|
95542
|
-
/*
|
|
95706
|
+
/*type*/
|
|
95543
95707
|
void 0,
|
|
95544
|
-
/*
|
|
95708
|
+
/*equalsGreaterThanToken*/
|
|
95545
95709
|
void 0,
|
|
95546
95710
|
factory2.createAssignment(
|
|
95547
95711
|
setEmitFlags(
|
|
@@ -95568,7 +95732,7 @@ ${lanes.join("\n")}
|
|
|
95568
95732
|
);
|
|
95569
95733
|
});
|
|
95570
95734
|
return factory2.createVariableStatement(
|
|
95571
|
-
/*
|
|
95735
|
+
/*modifiers*/
|
|
95572
95736
|
void 0,
|
|
95573
95737
|
factory2.createVariableDeclarationList(
|
|
95574
95738
|
[
|
|
@@ -95576,20 +95740,20 @@ ${lanes.join("\n")}
|
|
|
95576
95740
|
factory2.createUniqueName("_super", 16 /* Optimistic */ | 32 /* FileLevel */),
|
|
95577
95741
|
/*exclamationToken*/
|
|
95578
95742
|
void 0,
|
|
95579
|
-
/*
|
|
95743
|
+
/*type*/
|
|
95580
95744
|
void 0,
|
|
95581
95745
|
factory2.createCallExpression(
|
|
95582
95746
|
factory2.createPropertyAccessExpression(
|
|
95583
95747
|
factory2.createIdentifier("Object"),
|
|
95584
95748
|
"create"
|
|
95585
95749
|
),
|
|
95586
|
-
/*
|
|
95750
|
+
/*typeArguments*/
|
|
95587
95751
|
void 0,
|
|
95588
95752
|
[
|
|
95589
95753
|
factory2.createNull(),
|
|
95590
95754
|
factory2.createObjectLiteralExpression(
|
|
95591
95755
|
accessors,
|
|
95592
|
-
/*
|
|
95756
|
+
/*multiLine*/
|
|
95593
95757
|
true
|
|
95594
95758
|
)
|
|
95595
95759
|
]
|
|
@@ -96467,7 +96631,7 @@ ${lanes.join("\n")}
|
|
|
96467
96631
|
enclosingFunctionFlags & 2 /* Async */ ? void 0 : node.asteriskToken,
|
|
96468
96632
|
visitNode(node.name, visitor, isPropertyName),
|
|
96469
96633
|
visitNode(
|
|
96470
|
-
/*
|
|
96634
|
+
/*node*/
|
|
96471
96635
|
void 0,
|
|
96472
96636
|
visitor,
|
|
96473
96637
|
isQuestionToken
|
|
@@ -96693,7 +96857,7 @@ ${lanes.join("\n")}
|
|
|
96693
96857
|
context,
|
|
96694
96858
|
1 /* ObjectRest */,
|
|
96695
96859
|
factory2.getGeneratedNameForNode(parameter),
|
|
96696
|
-
/*
|
|
96860
|
+
/*hoistTempVariables*/
|
|
96697
96861
|
false,
|
|
96698
96862
|
/*skipInitializer*/
|
|
96699
96863
|
true
|
|
@@ -97266,7 +97430,7 @@ ${lanes.join("\n")}
|
|
|
97266
97430
|
}
|
|
97267
97431
|
const declaration = factory2.createVariableDeclaration(
|
|
97268
97432
|
factory2.createUniqueName("_jsxFileName", 16 /* Optimistic */ | 32 /* FileLevel */),
|
|
97269
|
-
/*
|
|
97433
|
+
/*exclamationToken*/
|
|
97270
97434
|
void 0,
|
|
97271
97435
|
/*type*/
|
|
97272
97436
|
void 0,
|
|
@@ -97335,7 +97499,7 @@ ${lanes.join("\n")}
|
|
|
97335
97499
|
/*modifiers*/
|
|
97336
97500
|
void 0,
|
|
97337
97501
|
factory2.createImportClause(
|
|
97338
|
-
/*
|
|
97502
|
+
/*isTypeOnly*/
|
|
97339
97503
|
false,
|
|
97340
97504
|
/*name*/
|
|
97341
97505
|
void 0,
|
|
@@ -97358,12 +97522,12 @@ ${lanes.join("\n")}
|
|
|
97358
97522
|
factory2.createVariableDeclarationList([
|
|
97359
97523
|
factory2.createVariableDeclaration(
|
|
97360
97524
|
factory2.createObjectBindingPattern(arrayFrom(importSpecifiersMap.values(), (s) => factory2.createBindingElement(
|
|
97361
|
-
/*
|
|
97525
|
+
/*dotDotDotToken*/
|
|
97362
97526
|
void 0,
|
|
97363
97527
|
s.propertyName,
|
|
97364
97528
|
s.name
|
|
97365
97529
|
))),
|
|
97366
|
-
/*
|
|
97530
|
+
/*exclamationToken*/
|
|
97367
97531
|
void 0,
|
|
97368
97532
|
/*type*/
|
|
97369
97533
|
void 0,
|
|
@@ -99693,7 +99857,7 @@ ${lanes.join("\n")}
|
|
|
99693
99857
|
visitor,
|
|
99694
99858
|
context,
|
|
99695
99859
|
0 /* All */,
|
|
99696
|
-
/*
|
|
99860
|
+
/*rval*/
|
|
99697
99861
|
void 0,
|
|
99698
99862
|
(ancestorFacts & 32 /* ExportedVariableStatement */) !== 0
|
|
99699
99863
|
);
|
|
@@ -104074,7 +104238,7 @@ ${lanes.join("\n")}
|
|
|
104074
104238
|
/*whenTrue*/
|
|
104075
104239
|
createImportCallExpressionCommonJS(
|
|
104076
104240
|
temp,
|
|
104077
|
-
/*
|
|
104241
|
+
/*isInlineable*/
|
|
104078
104242
|
true
|
|
104079
104243
|
),
|
|
104080
104244
|
/*colonToken*/
|
|
@@ -104510,9 +104674,9 @@ ${lanes.join("\n")}
|
|
|
104510
104674
|
createExportExpression(
|
|
104511
104675
|
factory2.getExportName(specifier),
|
|
104512
104676
|
exportedValue,
|
|
104513
|
-
/*
|
|
104677
|
+
/*location*/
|
|
104514
104678
|
void 0,
|
|
104515
|
-
/*
|
|
104679
|
+
/*liveBinding*/
|
|
104516
104680
|
true
|
|
104517
104681
|
)
|
|
104518
104682
|
),
|
|
@@ -104822,7 +104986,7 @@ ${lanes.join("\n")}
|
|
|
104822
104986
|
statements = appendExportsOfDeclaration(
|
|
104823
104987
|
statements,
|
|
104824
104988
|
importBinding,
|
|
104825
|
-
/*
|
|
104989
|
+
/*liveBinding*/
|
|
104826
104990
|
true
|
|
104827
104991
|
);
|
|
104828
104992
|
}
|
|
@@ -104891,7 +105055,7 @@ ${lanes.join("\n")}
|
|
|
104891
105055
|
name,
|
|
104892
105056
|
/*location*/
|
|
104893
105057
|
exportSpecifier.name,
|
|
104894
|
-
/*
|
|
105058
|
+
/*allowComments*/
|
|
104895
105059
|
void 0,
|
|
104896
105060
|
liveBinding
|
|
104897
105061
|
);
|
|
@@ -104935,7 +105099,7 @@ ${lanes.join("\n")}
|
|
|
104935
105099
|
const statement = setTextRange(factory2.createExpressionStatement(createExportExpression(
|
|
104936
105100
|
name,
|
|
104937
105101
|
value,
|
|
104938
|
-
/*
|
|
105102
|
+
/*location*/
|
|
104939
105103
|
void 0,
|
|
104940
105104
|
liveBinding
|
|
104941
105105
|
)), location);
|
|
@@ -105417,7 +105581,7 @@ ${lanes.join("\n")}
|
|
|
105417
105581
|
void 0,
|
|
105418
105582
|
factory2.createObjectLiteralExpression(
|
|
105419
105583
|
exportedNames,
|
|
105420
|
-
/*
|
|
105584
|
+
/*multiLine*/
|
|
105421
105585
|
true
|
|
105422
105586
|
)
|
|
105423
105587
|
)
|
|
@@ -105509,7 +105673,7 @@ ${lanes.join("\n")}
|
|
|
105509
105673
|
)
|
|
105510
105674
|
)
|
|
105511
105675
|
],
|
|
105512
|
-
/*
|
|
105676
|
+
/*multiLine*/
|
|
105513
105677
|
true
|
|
105514
105678
|
)
|
|
105515
105679
|
);
|
|
@@ -105574,7 +105738,7 @@ ${lanes.join("\n")}
|
|
|
105574
105738
|
void 0,
|
|
105575
105739
|
[factory2.createObjectLiteralExpression(
|
|
105576
105740
|
properties,
|
|
105577
|
-
/*
|
|
105741
|
+
/*multiLine*/
|
|
105578
105742
|
true
|
|
105579
105743
|
)]
|
|
105580
105744
|
)
|
|
@@ -107131,18 +107295,18 @@ ${lanes.join("\n")}
|
|
|
107131
107295
|
getTrailingCommentRanges(text, skipTrivia(
|
|
107132
107296
|
text,
|
|
107133
107297
|
previousSibling.end + 1,
|
|
107134
|
-
/*
|
|
107298
|
+
/*stopAfterLineBreak*/
|
|
107135
107299
|
false,
|
|
107136
|
-
/*
|
|
107300
|
+
/*stopAtComments*/
|
|
107137
107301
|
true
|
|
107138
107302
|
)),
|
|
107139
107303
|
getLeadingCommentRanges(text, node.pos)
|
|
107140
107304
|
) : getTrailingCommentRanges(text, skipTrivia(
|
|
107141
107305
|
text,
|
|
107142
107306
|
node.pos,
|
|
107143
|
-
/*
|
|
107307
|
+
/*stopAfterLineBreak*/
|
|
107144
107308
|
false,
|
|
107145
|
-
/*
|
|
107309
|
+
/*stopAtComments*/
|
|
107146
107310
|
true
|
|
107147
107311
|
));
|
|
107148
107312
|
return commentRanges && commentRanges.length && hasInternalAnnotation(last(commentRanges), currentSourceFile);
|
|
@@ -107257,7 +107421,7 @@ ${lanes.join("\n")}
|
|
|
107257
107421
|
symbol,
|
|
107258
107422
|
enclosingDeclaration2,
|
|
107259
107423
|
meaning,
|
|
107260
|
-
/*
|
|
107424
|
+
/*shouldComputeAliasToMarkVisible*/
|
|
107261
107425
|
true
|
|
107262
107426
|
));
|
|
107263
107427
|
recordTypeReferenceDirectivesIfNecessary(resolver.getTypeReferenceDirectivesForSymbol(symbol, meaning));
|
|
@@ -107603,7 +107767,7 @@ ${lanes.join("\n")}
|
|
|
107603
107767
|
return factory2.updateBindingElement(
|
|
107604
107768
|
elem,
|
|
107605
107769
|
elem.dotDotDotToken,
|
|
107606
|
-
/*
|
|
107770
|
+
/*propertyName*/
|
|
107607
107771
|
void 0,
|
|
107608
107772
|
elem.propertyName,
|
|
107609
107773
|
shouldPrintWithInitializer(elem) ? elem.initializer : void 0
|
|
@@ -107965,7 +108129,7 @@ ${lanes.join("\n")}
|
|
|
107965
108129
|
return cleanup(factory2.createPropertyDeclaration(
|
|
107966
108130
|
ensureModifiers(input),
|
|
107967
108131
|
input.name,
|
|
107968
|
-
/*
|
|
108132
|
+
/*questionOrExclamationToken*/
|
|
107969
108133
|
void 0,
|
|
107970
108134
|
/*type*/
|
|
107971
108135
|
void 0,
|
|
@@ -108529,7 +108693,7 @@ ${lanes.join("\n")}
|
|
|
108529
108693
|
elems.push(factory2.createPropertyDeclaration(
|
|
108530
108694
|
ensureModifiers(param),
|
|
108531
108695
|
elem.name,
|
|
108532
|
-
/*
|
|
108696
|
+
/*questionOrExclamationToken*/
|
|
108533
108697
|
void 0,
|
|
108534
108698
|
ensureType(
|
|
108535
108699
|
elem,
|
|
@@ -108551,7 +108715,7 @@ ${lanes.join("\n")}
|
|
|
108551
108715
|
/*modifiers*/
|
|
108552
108716
|
void 0,
|
|
108553
108717
|
factory2.createPrivateIdentifier("#private"),
|
|
108554
|
-
/*
|
|
108718
|
+
/*questionOrExclamationToken*/
|
|
108555
108719
|
void 0,
|
|
108556
108720
|
/*type*/
|
|
108557
108721
|
void 0,
|
|
@@ -109937,7 +110101,7 @@ ${lanes.join("\n")}
|
|
|
109937
110101
|
declarationMapText,
|
|
109938
110102
|
buildInfoPath,
|
|
109939
110103
|
buildInfo,
|
|
109940
|
-
/*
|
|
110104
|
+
/*oldFileOfCurrentEmit*/
|
|
109941
110105
|
true
|
|
109942
110106
|
);
|
|
109943
110107
|
const outputFiles = [];
|
|
@@ -110126,7 +110290,7 @@ ${lanes.join("\n")}
|
|
|
110126
110290
|
writeBundle(
|
|
110127
110291
|
bundle,
|
|
110128
110292
|
beginPrint(),
|
|
110129
|
-
/*
|
|
110293
|
+
/*sourceMapGenerator*/
|
|
110130
110294
|
void 0
|
|
110131
110295
|
);
|
|
110132
110296
|
return endPrint();
|
|
@@ -110135,7 +110299,7 @@ ${lanes.join("\n")}
|
|
|
110135
110299
|
writeFile2(
|
|
110136
110300
|
sourceFile,
|
|
110137
110301
|
beginPrint(),
|
|
110138
|
-
/*
|
|
110302
|
+
/*sourceMapGenerator*/
|
|
110139
110303
|
void 0
|
|
110140
110304
|
);
|
|
110141
110305
|
return endPrint();
|
|
@@ -111616,7 +111780,7 @@ ${lanes.join("\n")}
|
|
|
111616
111780
|
const indented = writeLineSeparatorsAndIndentBefore(node.expression, node);
|
|
111617
111781
|
emitExpression(
|
|
111618
111782
|
node.expression,
|
|
111619
|
-
/*
|
|
111783
|
+
/*parenthesizerRule*/
|
|
111620
111784
|
void 0
|
|
111621
111785
|
);
|
|
111622
111786
|
writeLineSeparatorsAfter(node.expression, node);
|
|
@@ -111830,7 +111994,7 @@ ${lanes.join("\n")}
|
|
|
111830
111994
|
function emitAsExpression(node) {
|
|
111831
111995
|
emitExpression(
|
|
111832
111996
|
node.expression,
|
|
111833
|
-
/*
|
|
111997
|
+
/*parenthesizerRule*/
|
|
111834
111998
|
void 0
|
|
111835
111999
|
);
|
|
111836
112000
|
if (node.type) {
|
|
@@ -111847,7 +112011,7 @@ ${lanes.join("\n")}
|
|
|
111847
112011
|
function emitSatisfiesExpression(node) {
|
|
111848
112012
|
emitExpression(
|
|
111849
112013
|
node.expression,
|
|
111850
|
-
/*
|
|
112014
|
+
/*parenthesizerRule*/
|
|
111851
112015
|
void 0
|
|
111852
112016
|
);
|
|
111853
112017
|
if (node.type) {
|
|
@@ -114167,7 +114331,7 @@ ${lanes.join("\n")}
|
|
|
114167
114331
|
case 165 /* ComputedPropertyName */:
|
|
114168
114332
|
return makeTempVariableName(
|
|
114169
114333
|
0 /* Auto */,
|
|
114170
|
-
/*
|
|
114334
|
+
/*reservedInNestedScopes*/
|
|
114171
114335
|
true,
|
|
114172
114336
|
privateName,
|
|
114173
114337
|
prefix,
|
|
@@ -114176,7 +114340,7 @@ ${lanes.join("\n")}
|
|
|
114176
114340
|
default:
|
|
114177
114341
|
return makeTempVariableName(
|
|
114178
114342
|
0 /* Auto */,
|
|
114179
|
-
/*
|
|
114343
|
+
/*reservedInNestedScopes*/
|
|
114180
114344
|
false,
|
|
114181
114345
|
privateName,
|
|
114182
114346
|
prefix,
|
|
@@ -116464,7 +116628,7 @@ ${lanes.join("\n")}
|
|
|
116464
116628
|
return resolveTypeReferenceDirectiveNamesWorker(
|
|
116465
116629
|
typeDirectiveNames,
|
|
116466
116630
|
containingFile,
|
|
116467
|
-
/*
|
|
116631
|
+
/*reusedNames*/
|
|
116468
116632
|
void 0
|
|
116469
116633
|
);
|
|
116470
116634
|
}
|
|
@@ -116792,7 +116956,7 @@ ${lanes.join("\n")}
|
|
|
116792
116956
|
void 0,
|
|
116793
116957
|
/*transformers*/
|
|
116794
116958
|
noTransformers,
|
|
116795
|
-
/*
|
|
116959
|
+
/*emitOnly*/
|
|
116796
116960
|
false,
|
|
116797
116961
|
/*onlyBuildInfo*/
|
|
116798
116962
|
true
|
|
@@ -117388,7 +117552,7 @@ ${lanes.join("\n")}
|
|
|
117388
117552
|
const node = getNodeAtPosition(file2, r.lastIndex);
|
|
117389
117553
|
if (shouldProcessRequires && isRequireCall(
|
|
117390
117554
|
node,
|
|
117391
|
-
/*
|
|
117555
|
+
/*requireStringLiteralLikeArgument*/
|
|
117392
117556
|
true
|
|
117393
117557
|
)) {
|
|
117394
117558
|
setParentRecursive(
|
|
@@ -117985,7 +118149,7 @@ ${lanes.join("\n")}
|
|
|
117985
118149
|
commandLine = host.getParsedCommandLine(refPath);
|
|
117986
118150
|
if (!commandLine) {
|
|
117987
118151
|
addFileToFilesByName(
|
|
117988
|
-
/*
|
|
118152
|
+
/*file*/
|
|
117989
118153
|
void 0,
|
|
117990
118154
|
sourceFilePath,
|
|
117991
118155
|
/*redirectedPath*/
|
|
@@ -119449,7 +119613,7 @@ ${lanes.join("\n")}
|
|
|
119449
119613
|
), sourceFiles);
|
|
119450
119614
|
},
|
|
119451
119615
|
cancellationToken,
|
|
119452
|
-
/*
|
|
119616
|
+
/*emitOnly*/
|
|
119453
119617
|
true,
|
|
119454
119618
|
/*customTransformers*/
|
|
119455
119619
|
void 0,
|
|
@@ -120650,7 +120814,7 @@ ${lanes.join("\n")}
|
|
|
120650
120814
|
continue;
|
|
120651
120815
|
} else {
|
|
120652
120816
|
result = state.program.getSemanticDiagnostics(
|
|
120653
|
-
/*
|
|
120817
|
+
/*sourceFile*/
|
|
120654
120818
|
void 0,
|
|
120655
120819
|
cancellationToken
|
|
120656
120820
|
);
|
|
@@ -120967,8 +121131,6 @@ ${lanes.join("\n")}
|
|
|
120967
121131
|
resolutionHost.getCompilationSettings(),
|
|
120968
121132
|
moduleResolutionCache.getPackageJsonInfoCache()
|
|
120969
121133
|
);
|
|
120970
|
-
const failedLookupDefaultExtensions = [".ts" /* Ts */, ".tsx" /* Tsx */, ".js" /* Js */, ".jsx" /* Jsx */, ".json" /* Json */];
|
|
120971
|
-
const customFailedLookupPaths = /* @__PURE__ */ new Map();
|
|
120972
121134
|
const directoryWatchesOfFailedLookups = /* @__PURE__ */ new Map();
|
|
120973
121135
|
const fileWatchesOfAffectingLocations = /* @__PURE__ */ new Map();
|
|
120974
121136
|
const rootDir = rootDirForResolution && removeTrailingDirectorySeparator(getNormalizedAbsolutePath(rootDirForResolution, getCurrentDirectory()));
|
|
@@ -121013,7 +121175,6 @@ ${lanes.join("\n")}
|
|
|
121013
121175
|
function clear2() {
|
|
121014
121176
|
clearMap(directoryWatchesOfFailedLookups, closeFileWatcherOf);
|
|
121015
121177
|
clearMap(fileWatchesOfAffectingLocations, closeFileWatcherOf);
|
|
121016
|
-
customFailedLookupPaths.clear();
|
|
121017
121178
|
nonRelativeExternalModuleResolutions.clear();
|
|
121018
121179
|
closeTypeRootsWatch();
|
|
121019
121180
|
resolvedModuleNames.clear();
|
|
@@ -121323,7 +121484,7 @@ ${lanes.join("\n")}
|
|
|
121323
121484
|
dirPath = getDirectoryPath(dirPath);
|
|
121324
121485
|
}
|
|
121325
121486
|
if (isNodeModulesDirectory(dirPath)) {
|
|
121326
|
-
return canWatchDirectoryOrFile(
|
|
121487
|
+
return canWatchDirectoryOrFile(dirPath) ? { dir, dirPath } : void 0;
|
|
121327
121488
|
}
|
|
121328
121489
|
let nonRecursive = true;
|
|
121329
121490
|
let subDirectoryPath, subDirectory;
|
|
@@ -121342,9 +121503,6 @@ ${lanes.join("\n")}
|
|
|
121342
121503
|
}
|
|
121343
121504
|
return canWatchDirectoryOrFile(dirPath) ? { dir: subDirectory || dir, dirPath: subDirectoryPath || dirPath, nonRecursive } : void 0;
|
|
121344
121505
|
}
|
|
121345
|
-
function isPathWithDefaultFailedLookupExtension(path) {
|
|
121346
|
-
return fileExtensionIsOneOf(path, failedLookupDefaultExtensions);
|
|
121347
|
-
}
|
|
121348
121506
|
function watchFailedLookupLocationsOfExternalModuleResolutions(name, resolution, filePath, getResolutionWithResolvedFileName) {
|
|
121349
121507
|
var _a2, _b;
|
|
121350
121508
|
if (resolution.refCount) {
|
|
@@ -121383,10 +121541,6 @@ ${lanes.join("\n")}
|
|
|
121383
121541
|
const toWatch = getDirectoryToWatchFailedLookupLocation(failedLookupLocation, failedLookupLocationPath);
|
|
121384
121542
|
if (toWatch) {
|
|
121385
121543
|
const { dir, dirPath, nonRecursive } = toWatch;
|
|
121386
|
-
if (!isPathWithDefaultFailedLookupExtension(failedLookupLocationPath)) {
|
|
121387
|
-
const refCount = customFailedLookupPaths.get(failedLookupLocationPath) || 0;
|
|
121388
|
-
customFailedLookupPaths.set(failedLookupLocationPath, refCount + 1);
|
|
121389
|
-
}
|
|
121390
121544
|
if (dirPath === rootPath) {
|
|
121391
121545
|
Debug.assert(!nonRecursive);
|
|
121392
121546
|
setAtRoot = true;
|
|
@@ -121421,6 +121575,10 @@ ${lanes.join("\n")}
|
|
|
121421
121575
|
);
|
|
121422
121576
|
}
|
|
121423
121577
|
}
|
|
121578
|
+
function isInRootPathOrCanWatchDirectoryOrFile(locationToWatch) {
|
|
121579
|
+
const path = resolutionHost.toPath(locationToWatch);
|
|
121580
|
+
return isInDirectoryPath(rootPath, path) || canWatchDirectoryOrFile(path);
|
|
121581
|
+
}
|
|
121424
121582
|
function createFileWatcherOfAffectingLocation(affectingLocation, forResolution) {
|
|
121425
121583
|
const fileWatcher = fileWatchesOfAffectingLocations.get(affectingLocation);
|
|
121426
121584
|
if (fileWatcher) {
|
|
@@ -121448,7 +121606,7 @@ ${lanes.join("\n")}
|
|
|
121448
121606
|
}
|
|
121449
121607
|
const paths = /* @__PURE__ */ new Set();
|
|
121450
121608
|
paths.add(locationToWatch);
|
|
121451
|
-
let actualWatcher =
|
|
121609
|
+
let actualWatcher = isInRootPathOrCanWatchDirectoryOrFile(locationToWatch) ? resolutionHost.watchAffectingFileLocation(locationToWatch, (fileName, eventKind) => {
|
|
121452
121610
|
cachedDirectoryStructureHost == null ? void 0 : cachedDirectoryStructureHost.addOrDeleteFile(fileName, resolutionHost.toPath(locationToWatch), eventKind);
|
|
121453
121611
|
const packageJsonMap = moduleResolutionCache.getPackageJsonInfoCache().getInternalMap();
|
|
121454
121612
|
paths.forEach((path) => {
|
|
@@ -121484,7 +121642,7 @@ ${lanes.join("\n")}
|
|
|
121484
121642
|
} else {
|
|
121485
121643
|
resolutions.forEach((resolution) => watchAffectingLocationsOfResolution(
|
|
121486
121644
|
resolution,
|
|
121487
|
-
/*
|
|
121645
|
+
/*addToResolutionsWithOnlyAffectingLocations*/
|
|
121488
121646
|
true
|
|
121489
121647
|
));
|
|
121490
121648
|
}
|
|
@@ -121519,15 +121677,6 @@ ${lanes.join("\n")}
|
|
|
121519
121677
|
const toWatch = getDirectoryToWatchFailedLookupLocation(failedLookupLocation, failedLookupLocationPath);
|
|
121520
121678
|
if (toWatch) {
|
|
121521
121679
|
const { dirPath } = toWatch;
|
|
121522
|
-
const refCount = customFailedLookupPaths.get(failedLookupLocationPath);
|
|
121523
|
-
if (refCount) {
|
|
121524
|
-
if (refCount === 1) {
|
|
121525
|
-
customFailedLookupPaths.delete(failedLookupLocationPath);
|
|
121526
|
-
} else {
|
|
121527
|
-
Debug.assert(refCount > 1);
|
|
121528
|
-
customFailedLookupPaths.set(failedLookupLocationPath, refCount - 1);
|
|
121529
|
-
}
|
|
121530
|
-
}
|
|
121531
121680
|
if (dirPath === rootPath) {
|
|
121532
121681
|
removeAtRoot = true;
|
|
121533
121682
|
} else {
|
|
@@ -121625,10 +121774,10 @@ ${lanes.join("\n")}
|
|
|
121625
121774
|
(failedLookupChecks || (failedLookupChecks = /* @__PURE__ */ new Set())).add(fileOrDirectoryPath);
|
|
121626
121775
|
(startsWithPathChecks || (startsWithPathChecks = /* @__PURE__ */ new Set())).add(fileOrDirectoryPath);
|
|
121627
121776
|
} else {
|
|
121628
|
-
if (
|
|
121777
|
+
if (isEmittedFileOfProgram(resolutionHost.getCurrentProgram(), fileOrDirectoryPath)) {
|
|
121629
121778
|
return false;
|
|
121630
121779
|
}
|
|
121631
|
-
if (
|
|
121780
|
+
if (fileExtensionIs(fileOrDirectoryPath, ".map")) {
|
|
121632
121781
|
return false;
|
|
121633
121782
|
}
|
|
121634
121783
|
(failedLookupChecks || (failedLookupChecks = /* @__PURE__ */ new Set())).add(fileOrDirectoryPath);
|
|
@@ -121725,12 +121874,10 @@ ${lanes.join("\n")}
|
|
|
121725
121874
|
closeTypeRootsWatch();
|
|
121726
121875
|
}
|
|
121727
121876
|
}
|
|
121728
|
-
function canWatchTypeRootPath(
|
|
121729
|
-
|
|
121730
|
-
|
|
121731
|
-
|
|
121732
|
-
const dirPath = resolutionHost.toPath(dir);
|
|
121733
|
-
return dirPath === rootPath || canWatchDirectoryOrFile(dirPath);
|
|
121877
|
+
function canWatchTypeRootPath(typeRoot) {
|
|
121878
|
+
return !!resolutionHost.getCompilationSettings().typeRoots || // Otherwise we'll only watch this path if it falls within `rootDir` or
|
|
121879
|
+
// the path is not disqualified by other criteria ("not `C:\Users\Name\Dir`").
|
|
121880
|
+
isInRootPathOrCanWatchDirectoryOrFile(getDirectoryPath(typeRoot));
|
|
121734
121881
|
}
|
|
121735
121882
|
}
|
|
121736
121883
|
function resolutionIsSymlink(resolution) {
|
|
@@ -121841,7 +121988,7 @@ ${lanes.join("\n")}
|
|
|
121841
121988
|
return getRelativePathFromDirectory(
|
|
121842
121989
|
cwd,
|
|
121843
121990
|
error.fileName,
|
|
121844
|
-
/*
|
|
121991
|
+
/*ignoreCase*/
|
|
121845
121992
|
false
|
|
121846
121993
|
) + line;
|
|
121847
121994
|
}
|
|
@@ -123027,7 +123174,6 @@ ${lanes.join("\n")}
|
|
|
123027
123174
|
);
|
|
123028
123175
|
}
|
|
123029
123176
|
function updateExtendedConfigFilesWatches(forProjectPath, options, watchOptions2, watchType) {
|
|
123030
|
-
Debug.assert(configFileName);
|
|
123031
123177
|
updateSharedExtendedConfigFileWatcher(
|
|
123032
123178
|
forProjectPath,
|
|
123033
123179
|
options,
|
|
@@ -123043,7 +123189,7 @@ ${lanes.join("\n")}
|
|
|
123043
123189
|
if (!(projects == null ? void 0 : projects.size))
|
|
123044
123190
|
return;
|
|
123045
123191
|
projects.forEach((projectPath) => {
|
|
123046
|
-
if (toPath3(configFileName) === projectPath) {
|
|
123192
|
+
if (configFileName && toPath3(configFileName) === projectPath) {
|
|
123047
123193
|
reloadLevel = 2 /* Full */;
|
|
123048
123194
|
} else {
|
|
123049
123195
|
const config = parsedConfigs == null ? void 0 : parsedConfigs.get(projectPath);
|
|
@@ -123801,7 +123947,7 @@ ${lanes.join("\n")}
|
|
|
123801
123947
|
void 0,
|
|
123802
123948
|
(name, text, writeByteOrderMark, _onError, _sourceFiles, data) => outputFiles.push({ name, text, writeByteOrderMark, data }),
|
|
123803
123949
|
cancellationToken,
|
|
123804
|
-
/*
|
|
123950
|
+
/*emitOnlyDtsFiles*/
|
|
123805
123951
|
false,
|
|
123806
123952
|
customTransformers || ((_b = (_a2 = state.host).getCustomTransformers) == null ? void 0 : _b.call(_a2, project))
|
|
123807
123953
|
);
|
|
@@ -126807,7 +126953,7 @@ ${lanes.join("\n")}
|
|
|
126807
126953
|
}
|
|
126808
126954
|
const start = allowPositionInLeadingTrivia ? children[middle].getFullStart() : children[middle].getStart(
|
|
126809
126955
|
sourceFile,
|
|
126810
|
-
/*
|
|
126956
|
+
/*includeJsDocComment*/
|
|
126811
126957
|
true
|
|
126812
126958
|
);
|
|
126813
126959
|
if (start > position) {
|
|
@@ -126842,7 +126988,7 @@ ${lanes.join("\n")}
|
|
|
126842
126988
|
}
|
|
126843
126989
|
start != null ? start : start = allowPositionInLeadingTrivia ? node.getFullStart() : node.getStart(
|
|
126844
126990
|
sourceFile,
|
|
126845
|
-
/*
|
|
126991
|
+
/*includeJsDocComment*/
|
|
126846
126992
|
true
|
|
126847
126993
|
);
|
|
126848
126994
|
if (start > position) {
|
|
@@ -127858,7 +128004,7 @@ ${lanes.join("\n")}
|
|
|
127858
128004
|
signature,
|
|
127859
128005
|
enclosingDeclaration,
|
|
127860
128006
|
flags,
|
|
127861
|
-
/*
|
|
128007
|
+
/*kind*/
|
|
127862
128008
|
void 0,
|
|
127863
128009
|
writer
|
|
127864
128010
|
);
|
|
@@ -128506,13 +128652,13 @@ ${lanes.join("\n")}
|
|
|
128506
128652
|
const fileNameCase = ts_codefix_exports.moduleSymbolToValidIdentifier(
|
|
128507
128653
|
getSymbolParentOrFail(symbol),
|
|
128508
128654
|
scriptTarget,
|
|
128509
|
-
/*
|
|
128655
|
+
/*forceCapitalize*/
|
|
128510
128656
|
false
|
|
128511
128657
|
);
|
|
128512
128658
|
const capitalized = ts_codefix_exports.moduleSymbolToValidIdentifier(
|
|
128513
128659
|
getSymbolParentOrFail(symbol),
|
|
128514
128660
|
scriptTarget,
|
|
128515
|
-
/*
|
|
128661
|
+
/*forceCapitalize*/
|
|
128516
128662
|
true
|
|
128517
128663
|
);
|
|
128518
128664
|
if (fileNameCase === capitalized)
|
|
@@ -129220,7 +129366,7 @@ ${lanes.join("\n")}
|
|
|
129220
129366
|
const lastTemplateStackToken = lastOrUndefined(templateStack);
|
|
129221
129367
|
if (lastTemplateStackToken === 15 /* TemplateHead */) {
|
|
129222
129368
|
token = scanner2.reScanTemplateToken(
|
|
129223
|
-
/*
|
|
129369
|
+
/*isTaggedTemplate*/
|
|
129224
129370
|
false
|
|
129225
129371
|
);
|
|
129226
129372
|
if (token === 17 /* TemplateTail */) {
|
|
@@ -130936,7 +131082,7 @@ ${lanes.join("\n")}
|
|
|
130936
131082
|
candidate,
|
|
130937
131083
|
span,
|
|
130938
131084
|
chunk.text,
|
|
130939
|
-
/*ignoreCase
|
|
131085
|
+
/*ignoreCase*/
|
|
130940
131086
|
true
|
|
130941
131087
|
)) {
|
|
130942
131088
|
return createPatternMatch(
|
|
@@ -130946,7 +131092,7 @@ ${lanes.join("\n")}
|
|
|
130946
131092
|
candidate,
|
|
130947
131093
|
span,
|
|
130948
131094
|
chunk.text,
|
|
130949
|
-
/*ignoreCase
|
|
131095
|
+
/*ignoreCase*/
|
|
130950
131096
|
false
|
|
130951
131097
|
)
|
|
130952
131098
|
);
|
|
@@ -130955,7 +131101,7 @@ ${lanes.join("\n")}
|
|
|
130955
131101
|
if (chunk.text.length < candidate.length && isUpperCaseLetter(candidate.charCodeAt(index))) {
|
|
130956
131102
|
return createPatternMatch(
|
|
130957
131103
|
2 /* substring */,
|
|
130958
|
-
/*isCaseSensitive
|
|
131104
|
+
/*isCaseSensitive*/
|
|
130959
131105
|
false
|
|
130960
131106
|
);
|
|
130961
131107
|
}
|
|
@@ -130963,7 +131109,7 @@ ${lanes.join("\n")}
|
|
|
130963
131109
|
if (candidate.indexOf(chunk.text) > 0) {
|
|
130964
131110
|
return createPatternMatch(
|
|
130965
131111
|
2 /* substring */,
|
|
130966
|
-
/*isCaseSensitive
|
|
131112
|
+
/*isCaseSensitive*/
|
|
130967
131113
|
true
|
|
130968
131114
|
);
|
|
130969
131115
|
}
|
|
@@ -130973,13 +131119,13 @@ ${lanes.join("\n")}
|
|
|
130973
131119
|
candidate,
|
|
130974
131120
|
candidateParts,
|
|
130975
131121
|
chunk,
|
|
130976
|
-
/*ignoreCase
|
|
131122
|
+
/*ignoreCase*/
|
|
130977
131123
|
false
|
|
130978
131124
|
) ? true : tryCamelCaseMatch(
|
|
130979
131125
|
candidate,
|
|
130980
131126
|
candidateParts,
|
|
130981
131127
|
chunk,
|
|
130982
|
-
/*ignoreCase
|
|
131128
|
+
/*ignoreCase*/
|
|
130983
131129
|
true
|
|
130984
131130
|
) ? false : void 0;
|
|
130985
131131
|
if (isCaseSensitive !== void 0) {
|
|
@@ -131133,14 +131279,14 @@ ${lanes.join("\n")}
|
|
|
131133
131279
|
function breakIntoCharacterSpans(identifier) {
|
|
131134
131280
|
return breakIntoSpans(
|
|
131135
131281
|
identifier,
|
|
131136
|
-
/*word
|
|
131282
|
+
/*word*/
|
|
131137
131283
|
false
|
|
131138
131284
|
);
|
|
131139
131285
|
}
|
|
131140
131286
|
function breakIntoWordSpans(identifier) {
|
|
131141
131287
|
return breakIntoSpans(
|
|
131142
131288
|
identifier,
|
|
131143
|
-
/*word
|
|
131289
|
+
/*word*/
|
|
131144
131290
|
true
|
|
131145
131291
|
);
|
|
131146
131292
|
}
|
|
@@ -131512,7 +131658,7 @@ ${lanes.join("\n")}
|
|
|
131512
131658
|
if (length(stack)) {
|
|
131513
131659
|
if (lastOrUndefined(stack) === 15 /* TemplateHead */) {
|
|
131514
131660
|
if (scanner.reScanTemplateToken(
|
|
131515
|
-
/*
|
|
131661
|
+
/*isTaggedTemplate*/
|
|
131516
131662
|
false
|
|
131517
131663
|
) === 17 /* TemplateTail */) {
|
|
131518
131664
|
stack.pop();
|
|
@@ -131761,7 +131907,7 @@ ${lanes.join("\n")}
|
|
|
131761
131907
|
const init = node.declarationList.declarations[0].initializer;
|
|
131762
131908
|
if (init && isRequireCall(
|
|
131763
131909
|
init,
|
|
131764
|
-
/*
|
|
131910
|
+
/*requireStringLiteralLikeArgument*/
|
|
131765
131911
|
true
|
|
131766
131912
|
)) {
|
|
131767
131913
|
diags.push(createDiagnosticForNode(init, Diagnostics.require_call_may_be_converted_to_an_import));
|
|
@@ -131787,7 +131933,7 @@ ${lanes.join("\n")}
|
|
|
131787
131933
|
case 241 /* VariableStatement */:
|
|
131788
131934
|
return statement.declarationList.declarations.some((decl) => !!decl.initializer && isRequireCall(
|
|
131789
131935
|
propertyAccessLeftHandSide(decl.initializer),
|
|
131790
|
-
/*
|
|
131936
|
+
/*requireStringLiteralLikeArgument*/
|
|
131791
131937
|
true
|
|
131792
131938
|
));
|
|
131793
131939
|
case 242 /* ExpressionStatement */: {
|
|
@@ -131795,7 +131941,7 @@ ${lanes.join("\n")}
|
|
|
131795
131941
|
if (!isBinaryExpression(expression))
|
|
131796
131942
|
return isRequireCall(
|
|
131797
131943
|
expression,
|
|
131798
|
-
/*
|
|
131944
|
+
/*requireStringLiteralLikeArgument*/
|
|
131799
131945
|
true
|
|
131800
131946
|
);
|
|
131801
131947
|
const kind = getAssignmentDeclarationKind(expression);
|
|
@@ -131989,7 +132135,7 @@ ${lanes.join("\n")}
|
|
|
131989
132135
|
languageVersion: getEmitScriptTarget(options),
|
|
131990
132136
|
impliedNodeFormat: getImpliedNodeFormatForFile(
|
|
131991
132137
|
toPath(inputFileName, "", compilerHost.getCanonicalFileName),
|
|
131992
|
-
/*
|
|
132138
|
+
/*packageJsonInfoCache*/
|
|
131993
132139
|
void 0,
|
|
131994
132140
|
compilerHost,
|
|
131995
132141
|
options
|
|
@@ -132564,10 +132710,10 @@ ${lanes.join("\n")}
|
|
|
132564
132710
|
if (ctorFunction !== void 0) {
|
|
132565
132711
|
const ctorNode = setTextRange(
|
|
132566
132712
|
factory.createConstructorDeclaration(
|
|
132567
|
-
/*
|
|
132713
|
+
/*modifiers*/
|
|
132568
132714
|
void 0,
|
|
132569
132715
|
[],
|
|
132570
|
-
/*
|
|
132716
|
+
/*body*/
|
|
132571
132717
|
void 0
|
|
132572
132718
|
),
|
|
132573
132719
|
ctorFunction
|
|
@@ -132586,12 +132732,12 @@ ${lanes.join("\n")}
|
|
|
132586
132732
|
}
|
|
132587
132733
|
}
|
|
132588
132734
|
lastANode = a.node = setTextRange(factory.createClassDeclaration(
|
|
132589
|
-
/*
|
|
132735
|
+
/*modifiers*/
|
|
132590
132736
|
void 0,
|
|
132591
132737
|
a.name || factory.createIdentifier("__class__"),
|
|
132592
|
-
/*
|
|
132738
|
+
/*typeParameters*/
|
|
132593
132739
|
void 0,
|
|
132594
|
-
/*
|
|
132740
|
+
/*heritageClauses*/
|
|
132595
132741
|
void 0,
|
|
132596
132742
|
[]
|
|
132597
132743
|
), a.node);
|
|
@@ -132608,12 +132754,12 @@ ${lanes.join("\n")}
|
|
|
132608
132754
|
if (!a.additionalNodes)
|
|
132609
132755
|
a.additionalNodes = [];
|
|
132610
132756
|
a.additionalNodes.push(setTextRange(factory.createClassDeclaration(
|
|
132611
|
-
/*
|
|
132757
|
+
/*modifiers*/
|
|
132612
132758
|
void 0,
|
|
132613
132759
|
a.name || factory.createIdentifier("__class__"),
|
|
132614
|
-
/*
|
|
132760
|
+
/*typeParameters*/
|
|
132615
132761
|
void 0,
|
|
132616
|
-
/*
|
|
132762
|
+
/*heritageClauses*/
|
|
132617
132763
|
void 0,
|
|
132618
132764
|
[]
|
|
132619
132765
|
), b.node));
|
|
@@ -133572,7 +133718,7 @@ ${lanes.join("\n")}
|
|
|
133572
133718
|
result,
|
|
133573
133719
|
parseConfigHost,
|
|
133574
133720
|
getNormalizedAbsolutePath(getDirectoryPath(configFileName), currentDirectory),
|
|
133575
|
-
/*
|
|
133721
|
+
/*existingOptions*/
|
|
133576
133722
|
void 0,
|
|
133577
133723
|
getNormalizedAbsolutePath(configFileName, currentDirectory)
|
|
133578
133724
|
);
|
|
@@ -135302,7 +135448,7 @@ ${lanes.join("\n")}
|
|
|
135302
135448
|
const result = transformNodes(
|
|
135303
135449
|
/*resolver*/
|
|
135304
135450
|
void 0,
|
|
135305
|
-
/*
|
|
135451
|
+
/*host*/
|
|
135306
135452
|
void 0,
|
|
135307
135453
|
factory,
|
|
135308
135454
|
compilerOptions,
|
|
@@ -136103,9 +136249,9 @@ ${lanes.join("\n")}
|
|
|
136103
136249
|
() => {
|
|
136104
136250
|
const result = preProcessFile(
|
|
136105
136251
|
getSnapshotText(sourceTextSnapshot),
|
|
136106
|
-
/*
|
|
136252
|
+
/*readImportFiles*/
|
|
136107
136253
|
true,
|
|
136108
|
-
/*
|
|
136254
|
+
/*detectJavaScriptImports*/
|
|
136109
136255
|
true
|
|
136110
136256
|
);
|
|
136111
136257
|
return {
|
|
@@ -136174,7 +136320,7 @@ ${lanes.join("\n")}
|
|
|
136174
136320
|
}
|
|
136175
136321
|
discoverTypings(discoverTypingsJson) {
|
|
136176
136322
|
const getCanonicalFileName = createGetCanonicalFileName(
|
|
136177
|
-
/*
|
|
136323
|
+
/*useCaseSensitiveFileNames*/
|
|
136178
136324
|
false
|
|
136179
136325
|
);
|
|
136180
136326
|
return this.forwardJSONCall("discoverTypings()", () => {
|
|
@@ -136216,7 +136362,7 @@ ${lanes.join("\n")}
|
|
|
136216
136362
|
const languageService = createLanguageService(
|
|
136217
136363
|
hostAdapter,
|
|
136218
136364
|
this.documentRegistry,
|
|
136219
|
-
/*
|
|
136365
|
+
/*syntaxOnlyOrLanguageServiceMode*/
|
|
136220
136366
|
false
|
|
136221
136367
|
);
|
|
136222
136368
|
return new LanguageServiceShimObject(this, host, languageService);
|
|
@@ -138253,7 +138399,7 @@ ${lanes.join("\n")}
|
|
|
138253
138399
|
const prototypes = firstDeclaration.parent.right;
|
|
138254
138400
|
createClassElement(
|
|
138255
138401
|
prototypes.symbol,
|
|
138256
|
-
|
|
138402
|
+
/*modifiers*/
|
|
138257
138403
|
void 0,
|
|
138258
138404
|
memberElements
|
|
138259
138405
|
);
|
|
@@ -138325,7 +138471,7 @@ ${lanes.join("\n")}
|
|
|
138325
138471
|
members.push(factory.createPropertyDeclaration(
|
|
138326
138472
|
modifiers,
|
|
138327
138473
|
symbol2.name,
|
|
138328
|
-
/*
|
|
138474
|
+
/*questionOrExclamationToken*/
|
|
138329
138475
|
void 0,
|
|
138330
138476
|
/*type*/
|
|
138331
138477
|
void 0,
|
|
@@ -138365,7 +138511,7 @@ ${lanes.join("\n")}
|
|
|
138365
138511
|
const prop = factory.createPropertyDeclaration(
|
|
138366
138512
|
modifiers,
|
|
138367
138513
|
memberDeclaration.name,
|
|
138368
|
-
/*
|
|
138514
|
+
/*questionOrExclamationToken*/
|
|
138369
138515
|
void 0,
|
|
138370
138516
|
/*type*/
|
|
138371
138517
|
void 0,
|
|
@@ -138834,7 +138980,7 @@ ${lanes.join("\n")}
|
|
|
138834
138980
|
hasContinuation,
|
|
138835
138981
|
/*continuationArgName*/
|
|
138836
138982
|
void 0,
|
|
138837
|
-
/*
|
|
138983
|
+
/*inputArgName*/
|
|
138838
138984
|
void 0,
|
|
138839
138985
|
node,
|
|
138840
138986
|
transformer
|
|
@@ -139247,7 +139393,7 @@ ${lanes.join("\n")}
|
|
|
139247
139393
|
case 211 /* CallExpression */:
|
|
139248
139394
|
if (isRequireCall(
|
|
139249
139395
|
importNode,
|
|
139250
|
-
/*
|
|
139396
|
+
/*requireStringLiteralLikeArgument*/
|
|
139251
139397
|
false
|
|
139252
139398
|
)) {
|
|
139253
139399
|
changes.replaceNode(importingFile, importNode, factory.createPropertyAccessExpression(getSynthesizedDeepClone(importNode), "default"));
|
|
@@ -139322,11 +139468,11 @@ ${lanes.join("\n")}
|
|
|
139322
139468
|
case 211 /* CallExpression */: {
|
|
139323
139469
|
if (isRequireCall(
|
|
139324
139470
|
expression,
|
|
139325
|
-
/*
|
|
139471
|
+
/*requireStringLiteralLikeArgument*/
|
|
139326
139472
|
true
|
|
139327
139473
|
)) {
|
|
139328
139474
|
changes.replaceNode(sourceFile, statement, makeImport(
|
|
139329
|
-
/*
|
|
139475
|
+
/*defaultImport*/
|
|
139330
139476
|
void 0,
|
|
139331
139477
|
/*namedImports*/
|
|
139332
139478
|
void 0,
|
|
@@ -139357,14 +139503,14 @@ ${lanes.join("\n")}
|
|
|
139357
139503
|
return convertedImports([]);
|
|
139358
139504
|
} else if (isRequireCall(
|
|
139359
139505
|
initializer,
|
|
139360
|
-
/*
|
|
139506
|
+
/*requireStringLiteralLikeArgument*/
|
|
139361
139507
|
true
|
|
139362
139508
|
)) {
|
|
139363
139509
|
foundImport = true;
|
|
139364
139510
|
return convertSingleImport(name, initializer.arguments[0], checker, identifiers, target, quotePreference);
|
|
139365
139511
|
} else if (isPropertyAccessExpression(initializer) && isRequireCall(
|
|
139366
139512
|
initializer.expression,
|
|
139367
|
-
/*
|
|
139513
|
+
/*requireStringLiteralLikeArgument*/
|
|
139368
139514
|
true
|
|
139369
139515
|
)) {
|
|
139370
139516
|
foundImport = true;
|
|
@@ -139420,7 +139566,7 @@ ${lanes.join("\n")}
|
|
|
139420
139566
|
} else {
|
|
139421
139567
|
const replacement = isObjectLiteralExpression(right) ? tryChangeModuleExportsObject(right, useSitesToUnqualify) : isRequireCall(
|
|
139422
139568
|
right,
|
|
139423
|
-
/*
|
|
139569
|
+
/*requireStringLiteralLikeArgument*/
|
|
139424
139570
|
true
|
|
139425
139571
|
) ? convertReExportAll(right.arguments[0], checker) : void 0;
|
|
139426
139572
|
if (replacement) {
|
|
@@ -139488,7 +139634,7 @@ ${lanes.join("\n")}
|
|
|
139488
139634
|
}
|
|
139489
139635
|
function reExportStar(moduleSpecifier) {
|
|
139490
139636
|
return makeExportDeclaration(
|
|
139491
|
-
/*
|
|
139637
|
+
/*exportSpecifiers*/
|
|
139492
139638
|
void 0,
|
|
139493
139639
|
moduleSpecifier
|
|
139494
139640
|
);
|
|
@@ -139570,7 +139716,7 @@ ${lanes.join("\n")}
|
|
|
139570
139716
|
const importSpecifiers = mapAllOrFail(name.elements, (e) => e.dotDotDotToken || e.initializer || e.propertyName && !isIdentifier(e.propertyName) || !isIdentifier(e.name) ? void 0 : makeImportSpecifier(e.propertyName && e.propertyName.text, e.name.text));
|
|
139571
139717
|
if (importSpecifiers) {
|
|
139572
139718
|
return convertedImports([makeImport(
|
|
139573
|
-
/*
|
|
139719
|
+
/*defaultImport*/
|
|
139574
139720
|
void 0,
|
|
139575
139721
|
importSpecifiers,
|
|
139576
139722
|
moduleSpecifier,
|
|
@@ -139703,7 +139849,7 @@ ${lanes.join("\n")}
|
|
|
139703
139849
|
moduleSpecifier,
|
|
139704
139850
|
quotePreference
|
|
139705
139851
|
) : makeImport(
|
|
139706
|
-
/*
|
|
139852
|
+
/*defaultImport*/
|
|
139707
139853
|
void 0,
|
|
139708
139854
|
[makeImportSpecifier(propertyName, localName)],
|
|
139709
139855
|
moduleSpecifier,
|
|
@@ -140368,7 +140514,7 @@ ${lanes.join("\n")}
|
|
|
140368
140514
|
symbol,
|
|
140369
140515
|
symbolName2,
|
|
140370
140516
|
moduleSymbol,
|
|
140371
|
-
/*
|
|
140517
|
+
/*preferCapitalized*/
|
|
140372
140518
|
false,
|
|
140373
140519
|
program,
|
|
140374
140520
|
host,
|
|
@@ -142421,7 +142567,7 @@ ${lanes.join("\n")}
|
|
|
142421
142567
|
checker,
|
|
142422
142568
|
declaration,
|
|
142423
142569
|
checker.getTypeFromTypeNode(declaration.type),
|
|
142424
|
-
/*
|
|
142570
|
+
/*isFunctionType*/
|
|
142425
142571
|
false
|
|
142426
142572
|
);
|
|
142427
142573
|
case Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1.code:
|
|
@@ -142435,7 +142581,7 @@ ${lanes.join("\n")}
|
|
|
142435
142581
|
checker,
|
|
142436
142582
|
declaration,
|
|
142437
142583
|
type,
|
|
142438
|
-
/*
|
|
142584
|
+
/*isFunctionType*/
|
|
142439
142585
|
true
|
|
142440
142586
|
);
|
|
142441
142587
|
case Diagnostics.Type_0_is_not_assignable_to_type_1.code:
|
|
@@ -142448,7 +142594,7 @@ ${lanes.join("\n")}
|
|
|
142448
142594
|
checker,
|
|
142449
142595
|
initializer,
|
|
142450
142596
|
checker.getTypeAtLocation(node.parent),
|
|
142451
|
-
/*
|
|
142597
|
+
/*isFunctionType*/
|
|
142452
142598
|
true
|
|
142453
142599
|
);
|
|
142454
142600
|
}
|
|
@@ -142501,7 +142647,7 @@ ${lanes.join("\n")}
|
|
|
142501
142647
|
declaration,
|
|
142502
142648
|
expression,
|
|
142503
142649
|
commentSource,
|
|
142504
|
-
/*
|
|
142650
|
+
/*withParen*/
|
|
142505
142651
|
false
|
|
142506
142652
|
));
|
|
142507
142653
|
return createCodeFixAction(fixId23, changes, Diagnostics.Remove_braces_from_arrow_function_body, fixRemoveBracesFromArrowFunctionBody, Diagnostics.Remove_braces_from_all_arrow_function_bodies_with_relevant_issues);
|
|
@@ -142560,7 +142706,7 @@ ${lanes.join("\n")}
|
|
|
142560
142706
|
info.declaration,
|
|
142561
142707
|
info.expression,
|
|
142562
142708
|
info.commentSource,
|
|
142563
|
-
/*
|
|
142709
|
+
/*withParen*/
|
|
142564
142710
|
false
|
|
142565
142711
|
);
|
|
142566
142712
|
break;
|
|
@@ -142597,9 +142743,9 @@ ${lanes.join("\n")}
|
|
|
142597
142743
|
const properties = arrayFrom(checker.getUnmatchedProperties(
|
|
142598
142744
|
checker.getTypeAtLocation(parent2),
|
|
142599
142745
|
checker.getParameterType(signature, argIndex),
|
|
142600
|
-
/*
|
|
142746
|
+
/*requireOptionalProperties*/
|
|
142601
142747
|
false,
|
|
142602
|
-
/*
|
|
142748
|
+
/*matchDiscriminantProperties*/
|
|
142603
142749
|
false
|
|
142604
142750
|
));
|
|
142605
142751
|
if (!length(properties))
|
|
@@ -142613,9 +142759,9 @@ ${lanes.join("\n")}
|
|
|
142613
142759
|
const properties = arrayFrom(checker.getUnmatchedProperties(
|
|
142614
142760
|
checker.getTypeAtLocation(parent2.initializer),
|
|
142615
142761
|
targetType,
|
|
142616
|
-
/*
|
|
142762
|
+
/*requireOptionalProperties*/
|
|
142617
142763
|
false,
|
|
142618
|
-
/*
|
|
142764
|
+
/*matchDiscriminantProperties*/
|
|
142619
142765
|
false
|
|
142620
142766
|
));
|
|
142621
142767
|
if (!length(properties))
|
|
@@ -142708,7 +142854,7 @@ ${lanes.join("\n")}
|
|
|
142708
142854
|
/*modifiers*/
|
|
142709
142855
|
void 0,
|
|
142710
142856
|
tokenName,
|
|
142711
|
-
/*
|
|
142857
|
+
/*questionOrExclamationToken*/
|
|
142712
142858
|
void 0,
|
|
142713
142859
|
/*type*/
|
|
142714
142860
|
void 0,
|
|
@@ -142771,7 +142917,7 @@ ${lanes.join("\n")}
|
|
|
142771
142917
|
const property = isClassLike(node) ? factory.createPropertyDeclaration(
|
|
142772
142918
|
modifiers,
|
|
142773
142919
|
tokenName,
|
|
142774
|
-
/*
|
|
142920
|
+
/*questionOrExclamationToken*/
|
|
142775
142921
|
void 0,
|
|
142776
142922
|
typeNode,
|
|
142777
142923
|
/*initializer*/
|
|
@@ -143773,7 +143919,7 @@ ${lanes.join("\n")}
|
|
|
143773
143919
|
preferences,
|
|
143774
143920
|
sourceFile,
|
|
143775
143921
|
span.start,
|
|
143776
|
-
/*
|
|
143922
|
+
/*useHtmlEntity*/
|
|
143777
143923
|
false
|
|
143778
143924
|
));
|
|
143779
143925
|
const changeToHtmlEntity = ts_textChanges_exports.ChangeTracker.with(context, (t) => doChange18(
|
|
@@ -143781,7 +143927,7 @@ ${lanes.join("\n")}
|
|
|
143781
143927
|
preferences,
|
|
143782
143928
|
sourceFile,
|
|
143783
143929
|
span.start,
|
|
143784
|
-
/*
|
|
143930
|
+
/*useHtmlEntity*/
|
|
143785
143931
|
true
|
|
143786
143932
|
));
|
|
143787
143933
|
return [
|
|
@@ -144915,7 +145061,7 @@ ${lanes.join("\n")}
|
|
|
144915
145061
|
if (importableReference && changes.tryInsertTypeAnnotation(sourceFile, declaration, importableReference.typeNode)) {
|
|
144916
145062
|
forEach(importableReference.symbols, (s) => importAdder.addImportFromExportedSymbol(
|
|
144917
145063
|
s,
|
|
144918
|
-
/*
|
|
145064
|
+
/*isValidTypeOnlyUseSite*/
|
|
144919
145065
|
true
|
|
144920
145066
|
));
|
|
144921
145067
|
return true;
|
|
@@ -144971,7 +145117,7 @@ ${lanes.join("\n")}
|
|
|
144971
145117
|
/*isBracketed*/
|
|
144972
145118
|
!!isOptional,
|
|
144973
145119
|
factory.createJSDocTypeExpression(typeNode),
|
|
144974
|
-
/*
|
|
145120
|
+
/*isNameFirst*/
|
|
144975
145121
|
false,
|
|
144976
145122
|
/*comment*/
|
|
144977
145123
|
void 0
|
|
@@ -145839,7 +145985,7 @@ ${lanes.join("\n")}
|
|
|
145839
145985
|
preferences,
|
|
145840
145986
|
importAdder,
|
|
145841
145987
|
addClassElement,
|
|
145842
|
-
/*
|
|
145988
|
+
/*body*/
|
|
145843
145989
|
void 0
|
|
145844
145990
|
);
|
|
145845
145991
|
}
|
|
@@ -146307,7 +146453,7 @@ ${lanes.join("\n")}
|
|
|
146307
146453
|
const parameters = createDummyParameters(
|
|
146308
146454
|
maxNonRestArgs,
|
|
146309
146455
|
maxArgsParameterSymbolNames,
|
|
146310
|
-
/*
|
|
146456
|
+
/*types*/
|
|
146311
146457
|
void 0,
|
|
146312
146458
|
minArgumentCount,
|
|
146313
146459
|
/*inJs*/
|
|
@@ -146376,7 +146522,7 @@ ${lanes.join("\n")}
|
|
|
146376
146522
|
)]
|
|
146377
146523
|
)
|
|
146378
146524
|
)],
|
|
146379
|
-
/*
|
|
146525
|
+
/*multiLine*/
|
|
146380
146526
|
true
|
|
146381
146527
|
);
|
|
146382
146528
|
}
|
|
@@ -146993,7 +147139,7 @@ ${lanes.join("\n")}
|
|
|
146993
147139
|
const { parent: parent2 } = getTokenAtPosition(sourceFile, pos);
|
|
146994
147140
|
if (!isRequireCall(
|
|
146995
147141
|
parent2,
|
|
146996
|
-
/*
|
|
147142
|
+
/*requireStringLiteralLikeArgument*/
|
|
146997
147143
|
true
|
|
146998
147144
|
)) {
|
|
146999
147145
|
Debug.failBadSyntaxKind(parent2);
|
|
@@ -147156,7 +147302,7 @@ ${lanes.join("\n")}
|
|
|
147156
147302
|
importType.assertions,
|
|
147157
147303
|
importType.qualifier,
|
|
147158
147304
|
importType.typeArguments,
|
|
147159
|
-
/*
|
|
147305
|
+
/*isTypeOf*/
|
|
147160
147306
|
true
|
|
147161
147307
|
);
|
|
147162
147308
|
changes.replaceNode(sourceFile, importType, newTypeNode);
|
|
@@ -148487,14 +148633,14 @@ ${lanes.join("\n")}
|
|
|
148487
148633
|
const emptyStmt = factory.createEmptyStatement();
|
|
148488
148634
|
body = factory.createBlock(
|
|
148489
148635
|
[emptyStmt],
|
|
148490
|
-
/*
|
|
148636
|
+
/*multiLine*/
|
|
148491
148637
|
true
|
|
148492
148638
|
);
|
|
148493
148639
|
setSnippetElement(emptyStmt, { kind: 0 /* TabStop */, order: 0 });
|
|
148494
148640
|
} else {
|
|
148495
148641
|
body = factory.createBlock(
|
|
148496
148642
|
[],
|
|
148497
|
-
/*
|
|
148643
|
+
/*multiLine*/
|
|
148498
148644
|
true
|
|
148499
148645
|
);
|
|
148500
148646
|
}
|
|
@@ -148672,14 +148818,14 @@ ${lanes.join("\n")}
|
|
|
148672
148818
|
const emptyStmt = factory.createEmptyStatement();
|
|
148673
148819
|
body = factory.createBlock(
|
|
148674
148820
|
[emptyStmt],
|
|
148675
|
-
/*
|
|
148821
|
+
/*multiLine*/
|
|
148676
148822
|
true
|
|
148677
148823
|
);
|
|
148678
148824
|
setSnippetElement(emptyStmt, { kind: 0 /* TabStop */, order: 0 });
|
|
148679
148825
|
} else {
|
|
148680
148826
|
body = factory.createBlock(
|
|
148681
148827
|
[],
|
|
148682
|
-
/*
|
|
148828
|
+
/*multiLine*/
|
|
148683
148829
|
true
|
|
148684
148830
|
);
|
|
148685
148831
|
}
|
|
@@ -149654,7 +149800,7 @@ ${lanes.join("\n")}
|
|
|
149654
149800
|
if (typeChecker.isValidPropertyAccessForCompletions(propertyAccess, type, symbol)) {
|
|
149655
149801
|
addPropertySymbol(
|
|
149656
149802
|
symbol,
|
|
149657
|
-
/*
|
|
149803
|
+
/*insertAwait*/
|
|
149658
149804
|
false,
|
|
149659
149805
|
insertQuestionDot
|
|
149660
149806
|
);
|
|
@@ -149670,7 +149816,7 @@ ${lanes.join("\n")}
|
|
|
149670
149816
|
if (typeChecker.isValidPropertyAccessForCompletions(propertyAccess, promiseType, symbol)) {
|
|
149671
149817
|
addPropertySymbol(
|
|
149672
149818
|
symbol,
|
|
149673
|
-
/*
|
|
149819
|
+
/*insertAwait*/
|
|
149674
149820
|
true,
|
|
149675
149821
|
insertQuestionDot
|
|
149676
149822
|
);
|
|
@@ -150169,7 +150315,7 @@ ${lanes.join("\n")}
|
|
|
150169
150315
|
objectLikeContainer,
|
|
150170
150316
|
/*isSuper*/
|
|
150171
150317
|
false,
|
|
150172
|
-
/*
|
|
150318
|
+
/*isWrite*/
|
|
150173
150319
|
false,
|
|
150174
150320
|
typeForObject,
|
|
150175
150321
|
propertySymbol
|
|
@@ -151259,7 +151405,7 @@ ${lanes.join("\n")}
|
|
|
151259
151405
|
options,
|
|
151260
151406
|
/*formatContext*/
|
|
151261
151407
|
void 0,
|
|
151262
|
-
/*isTypeOnlyLocation
|
|
151408
|
+
/*isTypeOnlyLocation*/
|
|
151263
151409
|
void 0,
|
|
151264
151410
|
/*propertyAccessToConvert*/
|
|
151265
151411
|
void 0,
|
|
@@ -151524,7 +151670,7 @@ ${lanes.join("\n")}
|
|
|
151524
151670
|
const scriptPath = sourceFile.path;
|
|
151525
151671
|
const scriptDirectory = getDirectoryPath(scriptPath);
|
|
151526
151672
|
const extensionOptions = getExtensionOptions(compilerOptions, 1 /* ModuleSpecifier */, sourceFile, typeChecker, preferences, mode);
|
|
151527
|
-
return isPathRelativeToScript(literalValue) || !compilerOptions.baseUrl && (isRootedDiskPath(literalValue) || isUrl(literalValue)) ? getCompletionEntriesForRelativeModules(literalValue, scriptDirectory, compilerOptions, host, scriptPath, extensionOptions) : getCompletionEntriesForNonRelativeModules(literalValue, scriptDirectory, mode, compilerOptions, host, extensionOptions, typeChecker);
|
|
151673
|
+
return isPathRelativeToScript(literalValue) || !compilerOptions.baseUrl && !compilerOptions.paths && (isRootedDiskPath(literalValue) || isUrl(literalValue)) ? getCompletionEntriesForRelativeModules(literalValue, scriptDirectory, compilerOptions, host, scriptPath, extensionOptions) : getCompletionEntriesForNonRelativeModules(literalValue, scriptDirectory, mode, compilerOptions, host, extensionOptions, typeChecker);
|
|
151528
151674
|
}
|
|
151529
151675
|
function getExtensionOptions(compilerOptions, referenceKind, importingSourceFile, typeChecker, preferences, resolutionMode) {
|
|
151530
151676
|
return {
|
|
@@ -151727,8 +151873,7 @@ ${lanes.join("\n")}
|
|
|
151727
151873
|
const result = createNameAndKindSet();
|
|
151728
151874
|
const moduleResolution = getEmitModuleResolutionKind(compilerOptions);
|
|
151729
151875
|
if (baseUrl) {
|
|
151730
|
-
const
|
|
151731
|
-
const absolute = normalizePath(combinePaths(projectDir, baseUrl));
|
|
151876
|
+
const absolute = normalizePath(combinePaths(host.getCurrentDirectory(), baseUrl));
|
|
151732
151877
|
getCompletionEntriesForDirectoryFragment(
|
|
151733
151878
|
fragment,
|
|
151734
151879
|
absolute,
|
|
@@ -151740,9 +151885,10 @@ ${lanes.join("\n")}
|
|
|
151740
151885
|
void 0,
|
|
151741
151886
|
result
|
|
151742
151887
|
);
|
|
151743
|
-
|
|
151744
|
-
|
|
151745
|
-
|
|
151888
|
+
}
|
|
151889
|
+
if (paths) {
|
|
151890
|
+
const absolute = getPathsBasePath(compilerOptions, host);
|
|
151891
|
+
addCompletionEntriesFromPaths(result, fragment, absolute, extensionOptions, host, paths);
|
|
151746
151892
|
}
|
|
151747
151893
|
const fragmentDirectory = getFragmentDirectory(fragment);
|
|
151748
151894
|
for (const ambientName of getAmbientModuleCompletions(fragment, fragmentDirectory, typeChecker)) {
|
|
@@ -152182,7 +152328,7 @@ ${lanes.join("\n")}
|
|
|
152182
152328
|
} else if (direct.exportClause.kind === 278 /* NamespaceExport */) {
|
|
152183
152329
|
addIndirectUser(
|
|
152184
152330
|
getSourceFileLikeForImportDeclaration(direct),
|
|
152185
|
-
|
|
152331
|
+
/*addTransitiveDependencies*/
|
|
152186
152332
|
true
|
|
152187
152333
|
);
|
|
152188
152334
|
} else {
|
|
@@ -152193,7 +152339,7 @@ ${lanes.join("\n")}
|
|
|
152193
152339
|
if (!isAvailableThroughGlobal && direct.isTypeOf && !direct.qualifier && isExported2(direct)) {
|
|
152194
152340
|
addIndirectUser(
|
|
152195
152341
|
direct.getSourceFile(),
|
|
152196
|
-
|
|
152342
|
+
/*addTransitiveDependencies*/
|
|
152197
152343
|
true
|
|
152198
152344
|
);
|
|
152199
152345
|
}
|
|
@@ -152212,7 +152358,7 @@ ${lanes.join("\n")}
|
|
|
152212
152358
|
/** addTransitiveDependencies */
|
|
152213
152359
|
!!isExported2(
|
|
152214
152360
|
importCall,
|
|
152215
|
-
|
|
152361
|
+
/*stopAtAmbientModule*/
|
|
152216
152362
|
true
|
|
152217
152363
|
)
|
|
152218
152364
|
);
|
|
@@ -152234,7 +152380,7 @@ ${lanes.join("\n")}
|
|
|
152234
152380
|
if (isReExport || findNamespaceReExports(sourceFileLike, name, checker)) {
|
|
152235
152381
|
addIndirectUser(
|
|
152236
152382
|
sourceFileLike,
|
|
152237
|
-
|
|
152383
|
+
/*addTransitiveDependencies*/
|
|
152238
152384
|
true
|
|
152239
152385
|
);
|
|
152240
152386
|
} else {
|
|
@@ -152260,7 +152406,7 @@ ${lanes.join("\n")}
|
|
|
152260
152406
|
if (!isImportTypeNode(directImport)) {
|
|
152261
152407
|
addIndirectUser(
|
|
152262
152408
|
getSourceFileLikeForImportDeclaration(directImport),
|
|
152263
|
-
|
|
152409
|
+
/*addTransitiveDependencies*/
|
|
152264
152410
|
true
|
|
152265
152411
|
);
|
|
152266
152412
|
}
|
|
@@ -152391,10 +152537,10 @@ ${lanes.join("\n")}
|
|
|
152391
152537
|
}
|
|
152392
152538
|
}
|
|
152393
152539
|
}
|
|
152394
|
-
forEachImport(referencingFile, (
|
|
152540
|
+
forEachImport(referencingFile, (importDecl, moduleSpecifier) => {
|
|
152395
152541
|
const moduleSymbol = checker.getSymbolAtLocation(moduleSpecifier);
|
|
152396
152542
|
if (moduleSymbol === searchModuleSymbol) {
|
|
152397
|
-
refs.push({ kind: "import", literal: moduleSpecifier });
|
|
152543
|
+
refs.push(nodeIsSynthesized(importDecl) ? { kind: "implicit", literal: moduleSpecifier, referencingFile } : { kind: "import", literal: moduleSpecifier });
|
|
152398
152544
|
}
|
|
152399
152545
|
});
|
|
152400
152546
|
}
|
|
@@ -153317,6 +153463,12 @@ ${lanes.join("\n")}
|
|
|
153317
153463
|
}
|
|
153318
153464
|
}
|
|
153319
153465
|
return nodeEntry(reference.literal);
|
|
153466
|
+
} else if (reference.kind === "implicit") {
|
|
153467
|
+
const range = reference.literal.text !== externalHelpersModuleNameText && forEachChildRecursively(
|
|
153468
|
+
reference.referencingFile,
|
|
153469
|
+
(n) => !(n.transformFlags & 2 /* ContainsJsx */) ? "skip" : isJsxElement(n) || isJsxSelfClosingElement(n) || isJsxFragment(n) ? n : void 0
|
|
153470
|
+
) || reference.referencingFile.statements[0] || reference.referencingFile;
|
|
153471
|
+
return nodeEntry(range);
|
|
153320
153472
|
} else {
|
|
153321
153473
|
return {
|
|
153322
153474
|
kind: 0 /* Span */,
|
|
@@ -154210,7 +154362,7 @@ ${lanes.join("\n")}
|
|
|
154210
154362
|
function getReferencesForThisKeyword(thisOrSuperKeyword, sourceFiles, cancellationToken) {
|
|
154211
154363
|
let searchSpaceNode = getThisContainer(
|
|
154212
154364
|
thisOrSuperKeyword,
|
|
154213
|
-
/*
|
|
154365
|
+
/*includeArrowFunctions*/
|
|
154214
154366
|
false,
|
|
154215
154367
|
/*includeClassComputedPropertyName*/
|
|
154216
154368
|
false
|
|
@@ -154250,7 +154402,7 @@ ${lanes.join("\n")}
|
|
|
154250
154402
|
}
|
|
154251
154403
|
const container = getThisContainer(
|
|
154252
154404
|
node,
|
|
154253
|
-
/*
|
|
154405
|
+
/*includeArrowFunctions*/
|
|
154254
154406
|
false,
|
|
154255
154407
|
/*includeClassComputedPropertyName*/
|
|
154256
154408
|
false
|
|
@@ -156961,7 +157113,7 @@ ${lanes.join("\n")}
|
|
|
156961
157113
|
changes.deleteRange(importingSourceFile, { pos: ref.getStart(importingSourceFile), end: namedBindings.getStart(importingSourceFile) });
|
|
156962
157114
|
const quotePreference = isStringLiteral(clause.parent.moduleSpecifier) ? quotePreferenceFromString(clause.parent.moduleSpecifier, importingSourceFile) : 1 /* Double */;
|
|
156963
157115
|
const newImport = makeImport(
|
|
156964
|
-
/*
|
|
157116
|
+
/*defaultImport*/
|
|
156965
157117
|
void 0,
|
|
156966
157118
|
[makeImportSpecifier2(exportName, ref.text)],
|
|
156967
157119
|
clause.parent.moduleSpecifier,
|
|
@@ -157365,7 +157517,7 @@ ${lanes.join("\n")}
|
|
|
157365
157517
|
typeName.text,
|
|
157366
157518
|
typeName,
|
|
157367
157519
|
262144 /* TypeParameter */,
|
|
157368
|
-
/*
|
|
157520
|
+
/*excludeGlobals*/
|
|
157369
157521
|
true
|
|
157370
157522
|
);
|
|
157371
157523
|
for (const decl of (symbol == null ? void 0 : symbol.declarations) || emptyArray) {
|
|
@@ -157396,7 +157548,7 @@ ${lanes.join("\n")}
|
|
|
157396
157548
|
node.exprName.text,
|
|
157397
157549
|
node.exprName,
|
|
157398
157550
|
111551 /* Value */,
|
|
157399
|
-
/*
|
|
157551
|
+
/*excludeGlobals*/
|
|
157400
157552
|
false
|
|
157401
157553
|
);
|
|
157402
157554
|
if ((symbol == null ? void 0 : symbol.valueDeclaration) && rangeContainsSkipTrivia(enclosingNode, symbol.valueDeclaration, file) && !rangeContainsSkipTrivia(selection, symbol.valueDeclaration, file)) {
|
|
@@ -157417,7 +157569,7 @@ ${lanes.join("\n")}
|
|
|
157417
157569
|
function doTypeAliasChange(changes, file, name, info) {
|
|
157418
157570
|
const { enclosingNode, selection, typeParameters } = info;
|
|
157419
157571
|
const newTypeNode = factory.createTypeAliasDeclaration(
|
|
157420
|
-
/*
|
|
157572
|
+
/*modifiers*/
|
|
157421
157573
|
void 0,
|
|
157422
157574
|
name,
|
|
157423
157575
|
typeParameters.map((id) => factory.updateTypeParameterDeclaration(
|
|
@@ -157425,7 +157577,7 @@ ${lanes.join("\n")}
|
|
|
157425
157577
|
id.modifiers,
|
|
157426
157578
|
id.name,
|
|
157427
157579
|
id.constraint,
|
|
157428
|
-
/*
|
|
157580
|
+
/*defaultType*/
|
|
157429
157581
|
void 0
|
|
157430
157582
|
)),
|
|
157431
157583
|
selection
|
|
@@ -157434,12 +157586,12 @@ ${lanes.join("\n")}
|
|
|
157434
157586
|
file,
|
|
157435
157587
|
enclosingNode,
|
|
157436
157588
|
ignoreSourceNewlines(newTypeNode),
|
|
157437
|
-
/*
|
|
157589
|
+
/*blankLineBetween*/
|
|
157438
157590
|
true
|
|
157439
157591
|
);
|
|
157440
157592
|
changes.replaceNode(file, selection, factory.createTypeReferenceNode(name, typeParameters.map((id) => factory.createTypeReferenceNode(
|
|
157441
157593
|
id.name,
|
|
157442
|
-
/*
|
|
157594
|
+
/*typeArguments*/
|
|
157443
157595
|
void 0
|
|
157444
157596
|
))), { leadingTriviaOption: ts_textChanges_exports.LeadingTriviaOption.Exclude, trailingTriviaOption: ts_textChanges_exports.TrailingTriviaOption.ExcludeWhitespace });
|
|
157445
157597
|
}
|
|
@@ -157447,11 +157599,11 @@ ${lanes.join("\n")}
|
|
|
157447
157599
|
var _a2;
|
|
157448
157600
|
const { enclosingNode, selection, typeParameters, typeElements } = info;
|
|
157449
157601
|
const newTypeNode = factory.createInterfaceDeclaration(
|
|
157450
|
-
/*
|
|
157602
|
+
/*modifiers*/
|
|
157451
157603
|
void 0,
|
|
157452
157604
|
name,
|
|
157453
157605
|
typeParameters,
|
|
157454
|
-
/*
|
|
157606
|
+
/*heritageClauses*/
|
|
157455
157607
|
void 0,
|
|
157456
157608
|
typeElements
|
|
157457
157609
|
);
|
|
@@ -157460,12 +157612,12 @@ ${lanes.join("\n")}
|
|
|
157460
157612
|
file,
|
|
157461
157613
|
enclosingNode,
|
|
157462
157614
|
ignoreSourceNewlines(newTypeNode),
|
|
157463
|
-
/*
|
|
157615
|
+
/*blankLineBetween*/
|
|
157464
157616
|
true
|
|
157465
157617
|
);
|
|
157466
157618
|
changes.replaceNode(file, selection, factory.createTypeReferenceNode(name, typeParameters.map((id) => factory.createTypeReferenceNode(
|
|
157467
157619
|
id.name,
|
|
157468
|
-
/*
|
|
157620
|
+
/*typeArguments*/
|
|
157469
157621
|
void 0
|
|
157470
157622
|
))), { leadingTriviaOption: ts_textChanges_exports.LeadingTriviaOption.Exclude, trailingTriviaOption: ts_textChanges_exports.TrailingTriviaOption.ExcludeWhitespace });
|
|
157471
157623
|
}
|
|
@@ -157494,7 +157646,7 @@ ${lanes.join("\n")}
|
|
|
157494
157646
|
templates.push(template);
|
|
157495
157647
|
});
|
|
157496
157648
|
const jsDoc = factory.createJSDocComment(
|
|
157497
|
-
/*
|
|
157649
|
+
/*comment*/
|
|
157498
157650
|
void 0,
|
|
157499
157651
|
factory.createNodeArray(concatenate(templates, [node]))
|
|
157500
157652
|
);
|
|
@@ -157509,13 +157661,13 @@ ${lanes.join("\n")}
|
|
|
157509
157661
|
file,
|
|
157510
157662
|
enclosingNode,
|
|
157511
157663
|
jsDoc,
|
|
157512
|
-
/*
|
|
157664
|
+
/*blankLineBetween*/
|
|
157513
157665
|
true
|
|
157514
157666
|
);
|
|
157515
157667
|
}
|
|
157516
157668
|
changes.replaceNode(file, selection, factory.createTypeReferenceNode(name, typeParameters.map((id) => factory.createTypeReferenceNode(
|
|
157517
157669
|
id.name,
|
|
157518
|
-
/*
|
|
157670
|
+
/*typeArguments*/
|
|
157519
157671
|
void 0
|
|
157520
157672
|
))));
|
|
157521
157673
|
}
|
|
@@ -157691,7 +157843,7 @@ ${lanes.join("\n")}
|
|
|
157691
157843
|
case 241 /* VariableStatement */:
|
|
157692
157844
|
return node.declarationList.declarations.every((d) => !!d.initializer && isRequireCall(
|
|
157693
157845
|
d.initializer,
|
|
157694
|
-
/*
|
|
157846
|
+
/*requireStringLiteralLikeArgument*/
|
|
157695
157847
|
true
|
|
157696
157848
|
));
|
|
157697
157849
|
default:
|
|
@@ -157881,7 +158033,7 @@ ${lanes.join("\n")}
|
|
|
157881
158033
|
for (const decl of statement.declarationList.declarations) {
|
|
157882
158034
|
if (decl.initializer && isRequireCall(
|
|
157883
158035
|
decl.initializer,
|
|
157884
|
-
/*
|
|
158036
|
+
/*requireStringLiteralLikeArgument*/
|
|
157885
158037
|
true
|
|
157886
158038
|
)) {
|
|
157887
158039
|
cb(decl);
|
|
@@ -158173,7 +158325,7 @@ ${lanes.join("\n")}
|
|
|
158173
158325
|
function isVariableDeclarationInImport(decl) {
|
|
158174
158326
|
return isSourceFile(decl.parent.parent.parent) && !!decl.initializer && isRequireCall(
|
|
158175
158327
|
decl.initializer,
|
|
158176
|
-
/*
|
|
158328
|
+
/*requireStringLiteralLikeArgument*/
|
|
158177
158329
|
true
|
|
158178
158330
|
);
|
|
158179
158331
|
}
|
|
@@ -158707,7 +158859,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158707
158859
|
const returnStatement2 = factory.createReturnStatement(expression);
|
|
158708
158860
|
body = factory.createBlock(
|
|
158709
158861
|
[returnStatement2],
|
|
158710
|
-
/*
|
|
158862
|
+
/*multiLine*/
|
|
158711
158863
|
true
|
|
158712
158864
|
);
|
|
158713
158865
|
copyLeadingComments(
|
|
@@ -158715,7 +158867,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158715
158867
|
returnStatement2,
|
|
158716
158868
|
file,
|
|
158717
158869
|
3 /* MultiLineCommentTrivia */,
|
|
158718
|
-
/*
|
|
158870
|
+
/*hasTrailingNewLine*/
|
|
158719
158871
|
true
|
|
158720
158872
|
);
|
|
158721
158873
|
} else if (actionName2 === removeBracesAction.name && returnStatement) {
|
|
@@ -158726,7 +158878,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158726
158878
|
body,
|
|
158727
158879
|
file,
|
|
158728
158880
|
3 /* MultiLineCommentTrivia */,
|
|
158729
|
-
/*
|
|
158881
|
+
/*hasTrailingNewLine*/
|
|
158730
158882
|
false
|
|
158731
158883
|
);
|
|
158732
158884
|
copyLeadingComments(
|
|
@@ -158734,7 +158886,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158734
158886
|
body,
|
|
158735
158887
|
file,
|
|
158736
158888
|
3 /* MultiLineCommentTrivia */,
|
|
158737
|
-
/*
|
|
158889
|
+
/*hasTrailingNewLine*/
|
|
158738
158890
|
false
|
|
158739
158891
|
);
|
|
158740
158892
|
copyTrailingComments(
|
|
@@ -158742,7 +158894,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158742
158894
|
body,
|
|
158743
158895
|
file,
|
|
158744
158896
|
3 /* MultiLineCommentTrivia */,
|
|
158745
|
-
/*
|
|
158897
|
+
/*hasTrailingNewLine*/
|
|
158746
158898
|
false
|
|
158747
158899
|
);
|
|
158748
158900
|
} else {
|
|
@@ -158933,14 +159085,14 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158933
159085
|
body,
|
|
158934
159086
|
returnStatement,
|
|
158935
159087
|
file,
|
|
158936
|
-
/*
|
|
159088
|
+
/*commentKind*/
|
|
158937
159089
|
void 0,
|
|
158938
|
-
/*
|
|
159090
|
+
/*hasTrailingNewLine*/
|
|
158939
159091
|
true
|
|
158940
159092
|
);
|
|
158941
159093
|
return factory.createBlock(
|
|
158942
159094
|
[returnStatement],
|
|
158943
|
-
/*
|
|
159095
|
+
/*multiLine*/
|
|
158944
159096
|
true
|
|
158945
159097
|
);
|
|
158946
159098
|
} else {
|
|
@@ -158963,7 +159115,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158963
159115
|
const newNode = factory.createFunctionExpression(
|
|
158964
159116
|
func.modifiers,
|
|
158965
159117
|
func.asteriskToken,
|
|
158966
|
-
/*
|
|
159118
|
+
/*name*/
|
|
158967
159119
|
void 0,
|
|
158968
159120
|
func.typeParameters,
|
|
158969
159121
|
func.parameters,
|
|
@@ -159774,7 +159926,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
159774
159926
|
node.expression,
|
|
159775
159927
|
file,
|
|
159776
159928
|
3 /* MultiLineCommentTrivia */,
|
|
159777
|
-
/*
|
|
159929
|
+
/*hasTrailingNewLine*/
|
|
159778
159930
|
false
|
|
159779
159931
|
);
|
|
159780
159932
|
copyTrailingAsLeadingComments(
|
|
@@ -159782,7 +159934,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
159782
159934
|
node.expression,
|
|
159783
159935
|
file,
|
|
159784
159936
|
3 /* MultiLineCommentTrivia */,
|
|
159785
|
-
/*
|
|
159937
|
+
/*hasTrailingNewLine*/
|
|
159786
159938
|
false
|
|
159787
159939
|
);
|
|
159788
159940
|
}
|
|
@@ -159818,7 +159970,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
159818
159970
|
targetNode,
|
|
159819
159971
|
file,
|
|
159820
159972
|
3 /* MultiLineCommentTrivia */,
|
|
159821
|
-
/*
|
|
159973
|
+
/*hasTrailingNewLine*/
|
|
159822
159974
|
false
|
|
159823
159975
|
);
|
|
159824
159976
|
}
|
|
@@ -159831,7 +159983,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
159831
159983
|
targetNode,
|
|
159832
159984
|
file,
|
|
159833
159985
|
3 /* MultiLineCommentTrivia */,
|
|
159834
|
-
/*
|
|
159986
|
+
/*hasTrailingNewLine*/
|
|
159835
159987
|
false
|
|
159836
159988
|
);
|
|
159837
159989
|
copyOperatorComments(index, targetNode);
|
|
@@ -160343,7 +160495,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
160343
160495
|
if (rangeFacts & 8 /* UsesThis */) {
|
|
160344
160496
|
const container = getThisContainer(
|
|
160345
160497
|
nodeToCheck,
|
|
160346
|
-
|
|
160498
|
+
/*includeArrowFunctions*/
|
|
160347
160499
|
false,
|
|
160348
160500
|
/*includeClassComputedPropertyName*/
|
|
160349
160501
|
false
|
|
@@ -160914,7 +161066,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
160914
161066
|
edits,
|
|
160915
161067
|
renameFilename,
|
|
160916
161068
|
functionNameText,
|
|
160917
|
-
/*
|
|
161069
|
+
/*preferLastLocation*/
|
|
160918
161070
|
false
|
|
160919
161071
|
);
|
|
160920
161072
|
return { renameFilename, renameLocation, edits };
|
|
@@ -160957,7 +161109,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
160957
161109
|
const newVariable = factory.createPropertyDeclaration(
|
|
160958
161110
|
modifiers,
|
|
160959
161111
|
localNameText,
|
|
160960
|
-
/*
|
|
161112
|
+
/*questionOrExclamationToken*/
|
|
160961
161113
|
void 0,
|
|
160962
161114
|
variableType,
|
|
160963
161115
|
initializer
|
|
@@ -161047,7 +161199,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
161047
161199
|
edits,
|
|
161048
161200
|
renameFilename,
|
|
161049
161201
|
localNameText,
|
|
161050
|
-
/*
|
|
161202
|
+
/*preferLastLocation*/
|
|
161051
161203
|
true
|
|
161052
161204
|
);
|
|
161053
161205
|
return { renameFilename, renameLocation, edits };
|
|
@@ -161101,12 +161253,12 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
161101
161253
|
if (!firstParameter || isIdentifier(firstParameter.name) && firstParameter.name.escapedText !== "this") {
|
|
161102
161254
|
const thisType = checker.getTypeOfSymbolAtLocation(functionSignature.thisParameter, node);
|
|
161103
161255
|
parameters.splice(0, 0, factory.createParameterDeclaration(
|
|
161104
|
-
/*
|
|
161256
|
+
/*modifiers*/
|
|
161105
161257
|
void 0,
|
|
161106
|
-
/*
|
|
161258
|
+
/*dotDotDotToken*/
|
|
161107
161259
|
void 0,
|
|
161108
161260
|
"this",
|
|
161109
|
-
/*
|
|
161261
|
+
/*questionToken*/
|
|
161110
161262
|
void 0,
|
|
161111
161263
|
checker.typeToTypeNode(thisType, scope, 1 /* NoTruncation */)
|
|
161112
161264
|
));
|
|
@@ -161168,7 +161320,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
161168
161320
|
if (isBlock(body) && !hasWritesOrVariableDeclarations && substitutions.size === 0) {
|
|
161169
161321
|
return { body: factory.createBlock(
|
|
161170
161322
|
body.statements,
|
|
161171
|
-
/*
|
|
161323
|
+
/*multiLine*/
|
|
161172
161324
|
true
|
|
161173
161325
|
), returnValueProperty: void 0 };
|
|
161174
161326
|
}
|
|
@@ -164781,7 +164933,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
164781
164933
|
const end = skipTrivia(
|
|
164782
164934
|
sourceFile.text,
|
|
164783
164935
|
nextToken.end,
|
|
164784
|
-
/*
|
|
164936
|
+
/*stopAfterLineBreak*/
|
|
164785
164937
|
false,
|
|
164786
164938
|
/*stopAtComments*/
|
|
164787
164939
|
true
|
|
@@ -165100,7 +165252,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
165100
165252
|
if (token === 19 /* CloseBraceToken */) {
|
|
165101
165253
|
lastScanAction = 3 /* RescanTemplateToken */;
|
|
165102
165254
|
return scanner2.reScanTemplateToken(
|
|
165103
|
-
/*
|
|
165255
|
+
/*isTaggedTemplate*/
|
|
165104
165256
|
false
|
|
165105
165257
|
);
|
|
165106
165258
|
}
|
|
@@ -165111,7 +165263,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
165111
165263
|
case 5 /* RescanJsxText */:
|
|
165112
165264
|
lastScanAction = 5 /* RescanJsxText */;
|
|
165113
165265
|
return scanner2.reScanJsxToken(
|
|
165114
|
-
/*
|
|
165266
|
+
/*allowMultilineJsxText*/
|
|
165115
165267
|
false
|
|
165116
165268
|
);
|
|
165117
165269
|
case 6 /* RescanJsxAttributeValue */:
|