typescript 5.1.0-dev.20230323 → 5.1.0-dev.20230324
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 +397 -234
- package/lib/tsserver.js +530 -361
- package/lib/tsserverlibrary.js +530 -361
- package/lib/typescript.js +526 -357
- 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-dev.
|
|
38
|
+
version = `${versionMajorMinor}.0-dev.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
|
}
|
|
@@ -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
|
);
|
|
@@ -63761,7 +63847,7 @@ ${lanes.join("\n")}
|
|
|
63761
63847
|
const targetHasStringIndex = some(indexInfos, (info) => info.keyType === stringType);
|
|
63762
63848
|
let result2 = -1 /* True */;
|
|
63763
63849
|
for (const targetInfo of indexInfos) {
|
|
63764
|
-
const related = !sourceIsPrimitive && targetHasStringIndex && targetInfo.type.flags & 1 /* Any */ ? -1 /* True */ : isGenericMappedType(source2) && targetHasStringIndex ? isRelatedTo(getTemplateTypeFromMappedType(source2), targetInfo.type, 3 /* Both */, reportErrors2) : typeRelatedToIndexInfo(source2, targetInfo, reportErrors2, intersectionState);
|
|
63850
|
+
const related = relation !== strictSubtypeRelation && !sourceIsPrimitive && targetHasStringIndex && targetInfo.type.flags & 1 /* Any */ ? -1 /* True */ : isGenericMappedType(source2) && targetHasStringIndex ? isRelatedTo(getTemplateTypeFromMappedType(source2), targetInfo.type, 3 /* Both */, reportErrors2) : typeRelatedToIndexInfo(source2, targetInfo, reportErrors2, intersectionState);
|
|
63765
63851
|
if (!related) {
|
|
63766
63852
|
return 0 /* False */;
|
|
63767
63853
|
}
|
|
@@ -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
|
);
|
|
@@ -121484,7 +121648,7 @@ ${lanes.join("\n")}
|
|
|
121484
121648
|
} else {
|
|
121485
121649
|
resolutions.forEach((resolution) => watchAffectingLocationsOfResolution(
|
|
121486
121650
|
resolution,
|
|
121487
|
-
/*
|
|
121651
|
+
/*addToResolutionsWithOnlyAffectingLocations*/
|
|
121488
121652
|
true
|
|
121489
121653
|
));
|
|
121490
121654
|
}
|
|
@@ -121841,7 +122005,7 @@ ${lanes.join("\n")}
|
|
|
121841
122005
|
return getRelativePathFromDirectory(
|
|
121842
122006
|
cwd,
|
|
121843
122007
|
error.fileName,
|
|
121844
|
-
/*
|
|
122008
|
+
/*ignoreCase*/
|
|
121845
122009
|
false
|
|
121846
122010
|
) + line;
|
|
121847
122011
|
}
|
|
@@ -123027,7 +123191,6 @@ ${lanes.join("\n")}
|
|
|
123027
123191
|
);
|
|
123028
123192
|
}
|
|
123029
123193
|
function updateExtendedConfigFilesWatches(forProjectPath, options, watchOptions2, watchType) {
|
|
123030
|
-
Debug.assert(configFileName);
|
|
123031
123194
|
updateSharedExtendedConfigFileWatcher(
|
|
123032
123195
|
forProjectPath,
|
|
123033
123196
|
options,
|
|
@@ -123043,7 +123206,7 @@ ${lanes.join("\n")}
|
|
|
123043
123206
|
if (!(projects == null ? void 0 : projects.size))
|
|
123044
123207
|
return;
|
|
123045
123208
|
projects.forEach((projectPath) => {
|
|
123046
|
-
if (toPath3(configFileName) === projectPath) {
|
|
123209
|
+
if (configFileName && toPath3(configFileName) === projectPath) {
|
|
123047
123210
|
reloadLevel = 2 /* Full */;
|
|
123048
123211
|
} else {
|
|
123049
123212
|
const config = parsedConfigs == null ? void 0 : parsedConfigs.get(projectPath);
|
|
@@ -123801,7 +123964,7 @@ ${lanes.join("\n")}
|
|
|
123801
123964
|
void 0,
|
|
123802
123965
|
(name, text, writeByteOrderMark, _onError, _sourceFiles, data) => outputFiles.push({ name, text, writeByteOrderMark, data }),
|
|
123803
123966
|
cancellationToken,
|
|
123804
|
-
/*
|
|
123967
|
+
/*emitOnlyDtsFiles*/
|
|
123805
123968
|
false,
|
|
123806
123969
|
customTransformers || ((_b = (_a2 = state.host).getCustomTransformers) == null ? void 0 : _b.call(_a2, project))
|
|
123807
123970
|
);
|
|
@@ -126807,7 +126970,7 @@ ${lanes.join("\n")}
|
|
|
126807
126970
|
}
|
|
126808
126971
|
const start = allowPositionInLeadingTrivia ? children[middle].getFullStart() : children[middle].getStart(
|
|
126809
126972
|
sourceFile,
|
|
126810
|
-
/*
|
|
126973
|
+
/*includeJsDocComment*/
|
|
126811
126974
|
true
|
|
126812
126975
|
);
|
|
126813
126976
|
if (start > position) {
|
|
@@ -126842,7 +127005,7 @@ ${lanes.join("\n")}
|
|
|
126842
127005
|
}
|
|
126843
127006
|
start != null ? start : start = allowPositionInLeadingTrivia ? node.getFullStart() : node.getStart(
|
|
126844
127007
|
sourceFile,
|
|
126845
|
-
/*
|
|
127008
|
+
/*includeJsDocComment*/
|
|
126846
127009
|
true
|
|
126847
127010
|
);
|
|
126848
127011
|
if (start > position) {
|
|
@@ -127858,7 +128021,7 @@ ${lanes.join("\n")}
|
|
|
127858
128021
|
signature,
|
|
127859
128022
|
enclosingDeclaration,
|
|
127860
128023
|
flags,
|
|
127861
|
-
/*
|
|
128024
|
+
/*kind*/
|
|
127862
128025
|
void 0,
|
|
127863
128026
|
writer
|
|
127864
128027
|
);
|
|
@@ -128506,13 +128669,13 @@ ${lanes.join("\n")}
|
|
|
128506
128669
|
const fileNameCase = ts_codefix_exports.moduleSymbolToValidIdentifier(
|
|
128507
128670
|
getSymbolParentOrFail(symbol),
|
|
128508
128671
|
scriptTarget,
|
|
128509
|
-
/*
|
|
128672
|
+
/*forceCapitalize*/
|
|
128510
128673
|
false
|
|
128511
128674
|
);
|
|
128512
128675
|
const capitalized = ts_codefix_exports.moduleSymbolToValidIdentifier(
|
|
128513
128676
|
getSymbolParentOrFail(symbol),
|
|
128514
128677
|
scriptTarget,
|
|
128515
|
-
/*
|
|
128678
|
+
/*forceCapitalize*/
|
|
128516
128679
|
true
|
|
128517
128680
|
);
|
|
128518
128681
|
if (fileNameCase === capitalized)
|
|
@@ -129220,7 +129383,7 @@ ${lanes.join("\n")}
|
|
|
129220
129383
|
const lastTemplateStackToken = lastOrUndefined(templateStack);
|
|
129221
129384
|
if (lastTemplateStackToken === 15 /* TemplateHead */) {
|
|
129222
129385
|
token = scanner2.reScanTemplateToken(
|
|
129223
|
-
/*
|
|
129386
|
+
/*isTaggedTemplate*/
|
|
129224
129387
|
false
|
|
129225
129388
|
);
|
|
129226
129389
|
if (token === 17 /* TemplateTail */) {
|
|
@@ -130936,7 +131099,7 @@ ${lanes.join("\n")}
|
|
|
130936
131099
|
candidate,
|
|
130937
131100
|
span,
|
|
130938
131101
|
chunk.text,
|
|
130939
|
-
/*ignoreCase
|
|
131102
|
+
/*ignoreCase*/
|
|
130940
131103
|
true
|
|
130941
131104
|
)) {
|
|
130942
131105
|
return createPatternMatch(
|
|
@@ -130946,7 +131109,7 @@ ${lanes.join("\n")}
|
|
|
130946
131109
|
candidate,
|
|
130947
131110
|
span,
|
|
130948
131111
|
chunk.text,
|
|
130949
|
-
/*ignoreCase
|
|
131112
|
+
/*ignoreCase*/
|
|
130950
131113
|
false
|
|
130951
131114
|
)
|
|
130952
131115
|
);
|
|
@@ -130955,7 +131118,7 @@ ${lanes.join("\n")}
|
|
|
130955
131118
|
if (chunk.text.length < candidate.length && isUpperCaseLetter(candidate.charCodeAt(index))) {
|
|
130956
131119
|
return createPatternMatch(
|
|
130957
131120
|
2 /* substring */,
|
|
130958
|
-
/*isCaseSensitive
|
|
131121
|
+
/*isCaseSensitive*/
|
|
130959
131122
|
false
|
|
130960
131123
|
);
|
|
130961
131124
|
}
|
|
@@ -130963,7 +131126,7 @@ ${lanes.join("\n")}
|
|
|
130963
131126
|
if (candidate.indexOf(chunk.text) > 0) {
|
|
130964
131127
|
return createPatternMatch(
|
|
130965
131128
|
2 /* substring */,
|
|
130966
|
-
/*isCaseSensitive
|
|
131129
|
+
/*isCaseSensitive*/
|
|
130967
131130
|
true
|
|
130968
131131
|
);
|
|
130969
131132
|
}
|
|
@@ -130973,13 +131136,13 @@ ${lanes.join("\n")}
|
|
|
130973
131136
|
candidate,
|
|
130974
131137
|
candidateParts,
|
|
130975
131138
|
chunk,
|
|
130976
|
-
/*ignoreCase
|
|
131139
|
+
/*ignoreCase*/
|
|
130977
131140
|
false
|
|
130978
131141
|
) ? true : tryCamelCaseMatch(
|
|
130979
131142
|
candidate,
|
|
130980
131143
|
candidateParts,
|
|
130981
131144
|
chunk,
|
|
130982
|
-
/*ignoreCase
|
|
131145
|
+
/*ignoreCase*/
|
|
130983
131146
|
true
|
|
130984
131147
|
) ? false : void 0;
|
|
130985
131148
|
if (isCaseSensitive !== void 0) {
|
|
@@ -131133,14 +131296,14 @@ ${lanes.join("\n")}
|
|
|
131133
131296
|
function breakIntoCharacterSpans(identifier) {
|
|
131134
131297
|
return breakIntoSpans(
|
|
131135
131298
|
identifier,
|
|
131136
|
-
/*word
|
|
131299
|
+
/*word*/
|
|
131137
131300
|
false
|
|
131138
131301
|
);
|
|
131139
131302
|
}
|
|
131140
131303
|
function breakIntoWordSpans(identifier) {
|
|
131141
131304
|
return breakIntoSpans(
|
|
131142
131305
|
identifier,
|
|
131143
|
-
/*word
|
|
131306
|
+
/*word*/
|
|
131144
131307
|
true
|
|
131145
131308
|
);
|
|
131146
131309
|
}
|
|
@@ -131512,7 +131675,7 @@ ${lanes.join("\n")}
|
|
|
131512
131675
|
if (length(stack)) {
|
|
131513
131676
|
if (lastOrUndefined(stack) === 15 /* TemplateHead */) {
|
|
131514
131677
|
if (scanner.reScanTemplateToken(
|
|
131515
|
-
/*
|
|
131678
|
+
/*isTaggedTemplate*/
|
|
131516
131679
|
false
|
|
131517
131680
|
) === 17 /* TemplateTail */) {
|
|
131518
131681
|
stack.pop();
|
|
@@ -131761,7 +131924,7 @@ ${lanes.join("\n")}
|
|
|
131761
131924
|
const init = node.declarationList.declarations[0].initializer;
|
|
131762
131925
|
if (init && isRequireCall(
|
|
131763
131926
|
init,
|
|
131764
|
-
/*
|
|
131927
|
+
/*requireStringLiteralLikeArgument*/
|
|
131765
131928
|
true
|
|
131766
131929
|
)) {
|
|
131767
131930
|
diags.push(createDiagnosticForNode(init, Diagnostics.require_call_may_be_converted_to_an_import));
|
|
@@ -131787,7 +131950,7 @@ ${lanes.join("\n")}
|
|
|
131787
131950
|
case 241 /* VariableStatement */:
|
|
131788
131951
|
return statement.declarationList.declarations.some((decl) => !!decl.initializer && isRequireCall(
|
|
131789
131952
|
propertyAccessLeftHandSide(decl.initializer),
|
|
131790
|
-
/*
|
|
131953
|
+
/*requireStringLiteralLikeArgument*/
|
|
131791
131954
|
true
|
|
131792
131955
|
));
|
|
131793
131956
|
case 242 /* ExpressionStatement */: {
|
|
@@ -131795,7 +131958,7 @@ ${lanes.join("\n")}
|
|
|
131795
131958
|
if (!isBinaryExpression(expression))
|
|
131796
131959
|
return isRequireCall(
|
|
131797
131960
|
expression,
|
|
131798
|
-
/*
|
|
131961
|
+
/*requireStringLiteralLikeArgument*/
|
|
131799
131962
|
true
|
|
131800
131963
|
);
|
|
131801
131964
|
const kind = getAssignmentDeclarationKind(expression);
|
|
@@ -131989,7 +132152,7 @@ ${lanes.join("\n")}
|
|
|
131989
132152
|
languageVersion: getEmitScriptTarget(options),
|
|
131990
132153
|
impliedNodeFormat: getImpliedNodeFormatForFile(
|
|
131991
132154
|
toPath(inputFileName, "", compilerHost.getCanonicalFileName),
|
|
131992
|
-
/*
|
|
132155
|
+
/*packageJsonInfoCache*/
|
|
131993
132156
|
void 0,
|
|
131994
132157
|
compilerHost,
|
|
131995
132158
|
options
|
|
@@ -132564,10 +132727,10 @@ ${lanes.join("\n")}
|
|
|
132564
132727
|
if (ctorFunction !== void 0) {
|
|
132565
132728
|
const ctorNode = setTextRange(
|
|
132566
132729
|
factory.createConstructorDeclaration(
|
|
132567
|
-
/*
|
|
132730
|
+
/*modifiers*/
|
|
132568
132731
|
void 0,
|
|
132569
132732
|
[],
|
|
132570
|
-
/*
|
|
132733
|
+
/*body*/
|
|
132571
132734
|
void 0
|
|
132572
132735
|
),
|
|
132573
132736
|
ctorFunction
|
|
@@ -132586,12 +132749,12 @@ ${lanes.join("\n")}
|
|
|
132586
132749
|
}
|
|
132587
132750
|
}
|
|
132588
132751
|
lastANode = a.node = setTextRange(factory.createClassDeclaration(
|
|
132589
|
-
/*
|
|
132752
|
+
/*modifiers*/
|
|
132590
132753
|
void 0,
|
|
132591
132754
|
a.name || factory.createIdentifier("__class__"),
|
|
132592
|
-
/*
|
|
132755
|
+
/*typeParameters*/
|
|
132593
132756
|
void 0,
|
|
132594
|
-
/*
|
|
132757
|
+
/*heritageClauses*/
|
|
132595
132758
|
void 0,
|
|
132596
132759
|
[]
|
|
132597
132760
|
), a.node);
|
|
@@ -132608,12 +132771,12 @@ ${lanes.join("\n")}
|
|
|
132608
132771
|
if (!a.additionalNodes)
|
|
132609
132772
|
a.additionalNodes = [];
|
|
132610
132773
|
a.additionalNodes.push(setTextRange(factory.createClassDeclaration(
|
|
132611
|
-
/*
|
|
132774
|
+
/*modifiers*/
|
|
132612
132775
|
void 0,
|
|
132613
132776
|
a.name || factory.createIdentifier("__class__"),
|
|
132614
|
-
/*
|
|
132777
|
+
/*typeParameters*/
|
|
132615
132778
|
void 0,
|
|
132616
|
-
/*
|
|
132779
|
+
/*heritageClauses*/
|
|
132617
132780
|
void 0,
|
|
132618
132781
|
[]
|
|
132619
132782
|
), b.node));
|
|
@@ -133572,7 +133735,7 @@ ${lanes.join("\n")}
|
|
|
133572
133735
|
result,
|
|
133573
133736
|
parseConfigHost,
|
|
133574
133737
|
getNormalizedAbsolutePath(getDirectoryPath(configFileName), currentDirectory),
|
|
133575
|
-
/*
|
|
133738
|
+
/*existingOptions*/
|
|
133576
133739
|
void 0,
|
|
133577
133740
|
getNormalizedAbsolutePath(configFileName, currentDirectory)
|
|
133578
133741
|
);
|
|
@@ -135302,7 +135465,7 @@ ${lanes.join("\n")}
|
|
|
135302
135465
|
const result = transformNodes(
|
|
135303
135466
|
/*resolver*/
|
|
135304
135467
|
void 0,
|
|
135305
|
-
/*
|
|
135468
|
+
/*host*/
|
|
135306
135469
|
void 0,
|
|
135307
135470
|
factory,
|
|
135308
135471
|
compilerOptions,
|
|
@@ -136103,9 +136266,9 @@ ${lanes.join("\n")}
|
|
|
136103
136266
|
() => {
|
|
136104
136267
|
const result = preProcessFile(
|
|
136105
136268
|
getSnapshotText(sourceTextSnapshot),
|
|
136106
|
-
/*
|
|
136269
|
+
/*readImportFiles*/
|
|
136107
136270
|
true,
|
|
136108
|
-
/*
|
|
136271
|
+
/*detectJavaScriptImports*/
|
|
136109
136272
|
true
|
|
136110
136273
|
);
|
|
136111
136274
|
return {
|
|
@@ -136174,7 +136337,7 @@ ${lanes.join("\n")}
|
|
|
136174
136337
|
}
|
|
136175
136338
|
discoverTypings(discoverTypingsJson) {
|
|
136176
136339
|
const getCanonicalFileName = createGetCanonicalFileName(
|
|
136177
|
-
/*
|
|
136340
|
+
/*useCaseSensitiveFileNames*/
|
|
136178
136341
|
false
|
|
136179
136342
|
);
|
|
136180
136343
|
return this.forwardJSONCall("discoverTypings()", () => {
|
|
@@ -136216,7 +136379,7 @@ ${lanes.join("\n")}
|
|
|
136216
136379
|
const languageService = createLanguageService(
|
|
136217
136380
|
hostAdapter,
|
|
136218
136381
|
this.documentRegistry,
|
|
136219
|
-
/*
|
|
136382
|
+
/*syntaxOnlyOrLanguageServiceMode*/
|
|
136220
136383
|
false
|
|
136221
136384
|
);
|
|
136222
136385
|
return new LanguageServiceShimObject(this, host, languageService);
|
|
@@ -138253,7 +138416,7 @@ ${lanes.join("\n")}
|
|
|
138253
138416
|
const prototypes = firstDeclaration.parent.right;
|
|
138254
138417
|
createClassElement(
|
|
138255
138418
|
prototypes.symbol,
|
|
138256
|
-
|
|
138419
|
+
/*modifiers*/
|
|
138257
138420
|
void 0,
|
|
138258
138421
|
memberElements
|
|
138259
138422
|
);
|
|
@@ -138325,7 +138488,7 @@ ${lanes.join("\n")}
|
|
|
138325
138488
|
members.push(factory.createPropertyDeclaration(
|
|
138326
138489
|
modifiers,
|
|
138327
138490
|
symbol2.name,
|
|
138328
|
-
/*
|
|
138491
|
+
/*questionOrExclamationToken*/
|
|
138329
138492
|
void 0,
|
|
138330
138493
|
/*type*/
|
|
138331
138494
|
void 0,
|
|
@@ -138365,7 +138528,7 @@ ${lanes.join("\n")}
|
|
|
138365
138528
|
const prop = factory.createPropertyDeclaration(
|
|
138366
138529
|
modifiers,
|
|
138367
138530
|
memberDeclaration.name,
|
|
138368
|
-
/*
|
|
138531
|
+
/*questionOrExclamationToken*/
|
|
138369
138532
|
void 0,
|
|
138370
138533
|
/*type*/
|
|
138371
138534
|
void 0,
|
|
@@ -138834,7 +138997,7 @@ ${lanes.join("\n")}
|
|
|
138834
138997
|
hasContinuation,
|
|
138835
138998
|
/*continuationArgName*/
|
|
138836
138999
|
void 0,
|
|
138837
|
-
/*
|
|
139000
|
+
/*inputArgName*/
|
|
138838
139001
|
void 0,
|
|
138839
139002
|
node,
|
|
138840
139003
|
transformer
|
|
@@ -139247,7 +139410,7 @@ ${lanes.join("\n")}
|
|
|
139247
139410
|
case 211 /* CallExpression */:
|
|
139248
139411
|
if (isRequireCall(
|
|
139249
139412
|
importNode,
|
|
139250
|
-
/*
|
|
139413
|
+
/*requireStringLiteralLikeArgument*/
|
|
139251
139414
|
false
|
|
139252
139415
|
)) {
|
|
139253
139416
|
changes.replaceNode(importingFile, importNode, factory.createPropertyAccessExpression(getSynthesizedDeepClone(importNode), "default"));
|
|
@@ -139322,11 +139485,11 @@ ${lanes.join("\n")}
|
|
|
139322
139485
|
case 211 /* CallExpression */: {
|
|
139323
139486
|
if (isRequireCall(
|
|
139324
139487
|
expression,
|
|
139325
|
-
/*
|
|
139488
|
+
/*requireStringLiteralLikeArgument*/
|
|
139326
139489
|
true
|
|
139327
139490
|
)) {
|
|
139328
139491
|
changes.replaceNode(sourceFile, statement, makeImport(
|
|
139329
|
-
/*
|
|
139492
|
+
/*defaultImport*/
|
|
139330
139493
|
void 0,
|
|
139331
139494
|
/*namedImports*/
|
|
139332
139495
|
void 0,
|
|
@@ -139357,14 +139520,14 @@ ${lanes.join("\n")}
|
|
|
139357
139520
|
return convertedImports([]);
|
|
139358
139521
|
} else if (isRequireCall(
|
|
139359
139522
|
initializer,
|
|
139360
|
-
/*
|
|
139523
|
+
/*requireStringLiteralLikeArgument*/
|
|
139361
139524
|
true
|
|
139362
139525
|
)) {
|
|
139363
139526
|
foundImport = true;
|
|
139364
139527
|
return convertSingleImport(name, initializer.arguments[0], checker, identifiers, target, quotePreference);
|
|
139365
139528
|
} else if (isPropertyAccessExpression(initializer) && isRequireCall(
|
|
139366
139529
|
initializer.expression,
|
|
139367
|
-
/*
|
|
139530
|
+
/*requireStringLiteralLikeArgument*/
|
|
139368
139531
|
true
|
|
139369
139532
|
)) {
|
|
139370
139533
|
foundImport = true;
|
|
@@ -139420,7 +139583,7 @@ ${lanes.join("\n")}
|
|
|
139420
139583
|
} else {
|
|
139421
139584
|
const replacement = isObjectLiteralExpression(right) ? tryChangeModuleExportsObject(right, useSitesToUnqualify) : isRequireCall(
|
|
139422
139585
|
right,
|
|
139423
|
-
/*
|
|
139586
|
+
/*requireStringLiteralLikeArgument*/
|
|
139424
139587
|
true
|
|
139425
139588
|
) ? convertReExportAll(right.arguments[0], checker) : void 0;
|
|
139426
139589
|
if (replacement) {
|
|
@@ -139488,7 +139651,7 @@ ${lanes.join("\n")}
|
|
|
139488
139651
|
}
|
|
139489
139652
|
function reExportStar(moduleSpecifier) {
|
|
139490
139653
|
return makeExportDeclaration(
|
|
139491
|
-
/*
|
|
139654
|
+
/*exportSpecifiers*/
|
|
139492
139655
|
void 0,
|
|
139493
139656
|
moduleSpecifier
|
|
139494
139657
|
);
|
|
@@ -139570,7 +139733,7 @@ ${lanes.join("\n")}
|
|
|
139570
139733
|
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
139734
|
if (importSpecifiers) {
|
|
139572
139735
|
return convertedImports([makeImport(
|
|
139573
|
-
/*
|
|
139736
|
+
/*defaultImport*/
|
|
139574
139737
|
void 0,
|
|
139575
139738
|
importSpecifiers,
|
|
139576
139739
|
moduleSpecifier,
|
|
@@ -139703,7 +139866,7 @@ ${lanes.join("\n")}
|
|
|
139703
139866
|
moduleSpecifier,
|
|
139704
139867
|
quotePreference
|
|
139705
139868
|
) : makeImport(
|
|
139706
|
-
/*
|
|
139869
|
+
/*defaultImport*/
|
|
139707
139870
|
void 0,
|
|
139708
139871
|
[makeImportSpecifier(propertyName, localName)],
|
|
139709
139872
|
moduleSpecifier,
|
|
@@ -140368,7 +140531,7 @@ ${lanes.join("\n")}
|
|
|
140368
140531
|
symbol,
|
|
140369
140532
|
symbolName2,
|
|
140370
140533
|
moduleSymbol,
|
|
140371
|
-
/*
|
|
140534
|
+
/*preferCapitalized*/
|
|
140372
140535
|
false,
|
|
140373
140536
|
program,
|
|
140374
140537
|
host,
|
|
@@ -142421,7 +142584,7 @@ ${lanes.join("\n")}
|
|
|
142421
142584
|
checker,
|
|
142422
142585
|
declaration,
|
|
142423
142586
|
checker.getTypeFromTypeNode(declaration.type),
|
|
142424
|
-
/*
|
|
142587
|
+
/*isFunctionType*/
|
|
142425
142588
|
false
|
|
142426
142589
|
);
|
|
142427
142590
|
case Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1.code:
|
|
@@ -142435,7 +142598,7 @@ ${lanes.join("\n")}
|
|
|
142435
142598
|
checker,
|
|
142436
142599
|
declaration,
|
|
142437
142600
|
type,
|
|
142438
|
-
/*
|
|
142601
|
+
/*isFunctionType*/
|
|
142439
142602
|
true
|
|
142440
142603
|
);
|
|
142441
142604
|
case Diagnostics.Type_0_is_not_assignable_to_type_1.code:
|
|
@@ -142448,7 +142611,7 @@ ${lanes.join("\n")}
|
|
|
142448
142611
|
checker,
|
|
142449
142612
|
initializer,
|
|
142450
142613
|
checker.getTypeAtLocation(node.parent),
|
|
142451
|
-
/*
|
|
142614
|
+
/*isFunctionType*/
|
|
142452
142615
|
true
|
|
142453
142616
|
);
|
|
142454
142617
|
}
|
|
@@ -142501,7 +142664,7 @@ ${lanes.join("\n")}
|
|
|
142501
142664
|
declaration,
|
|
142502
142665
|
expression,
|
|
142503
142666
|
commentSource,
|
|
142504
|
-
/*
|
|
142667
|
+
/*withParen*/
|
|
142505
142668
|
false
|
|
142506
142669
|
));
|
|
142507
142670
|
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 +142723,7 @@ ${lanes.join("\n")}
|
|
|
142560
142723
|
info.declaration,
|
|
142561
142724
|
info.expression,
|
|
142562
142725
|
info.commentSource,
|
|
142563
|
-
/*
|
|
142726
|
+
/*withParen*/
|
|
142564
142727
|
false
|
|
142565
142728
|
);
|
|
142566
142729
|
break;
|
|
@@ -142597,9 +142760,9 @@ ${lanes.join("\n")}
|
|
|
142597
142760
|
const properties = arrayFrom(checker.getUnmatchedProperties(
|
|
142598
142761
|
checker.getTypeAtLocation(parent2),
|
|
142599
142762
|
checker.getParameterType(signature, argIndex),
|
|
142600
|
-
/*
|
|
142763
|
+
/*requireOptionalProperties*/
|
|
142601
142764
|
false,
|
|
142602
|
-
/*
|
|
142765
|
+
/*matchDiscriminantProperties*/
|
|
142603
142766
|
false
|
|
142604
142767
|
));
|
|
142605
142768
|
if (!length(properties))
|
|
@@ -142613,9 +142776,9 @@ ${lanes.join("\n")}
|
|
|
142613
142776
|
const properties = arrayFrom(checker.getUnmatchedProperties(
|
|
142614
142777
|
checker.getTypeAtLocation(parent2.initializer),
|
|
142615
142778
|
targetType,
|
|
142616
|
-
/*
|
|
142779
|
+
/*requireOptionalProperties*/
|
|
142617
142780
|
false,
|
|
142618
|
-
/*
|
|
142781
|
+
/*matchDiscriminantProperties*/
|
|
142619
142782
|
false
|
|
142620
142783
|
));
|
|
142621
142784
|
if (!length(properties))
|
|
@@ -142708,7 +142871,7 @@ ${lanes.join("\n")}
|
|
|
142708
142871
|
/*modifiers*/
|
|
142709
142872
|
void 0,
|
|
142710
142873
|
tokenName,
|
|
142711
|
-
/*
|
|
142874
|
+
/*questionOrExclamationToken*/
|
|
142712
142875
|
void 0,
|
|
142713
142876
|
/*type*/
|
|
142714
142877
|
void 0,
|
|
@@ -142771,7 +142934,7 @@ ${lanes.join("\n")}
|
|
|
142771
142934
|
const property = isClassLike(node) ? factory.createPropertyDeclaration(
|
|
142772
142935
|
modifiers,
|
|
142773
142936
|
tokenName,
|
|
142774
|
-
/*
|
|
142937
|
+
/*questionOrExclamationToken*/
|
|
142775
142938
|
void 0,
|
|
142776
142939
|
typeNode,
|
|
142777
142940
|
/*initializer*/
|
|
@@ -143773,7 +143936,7 @@ ${lanes.join("\n")}
|
|
|
143773
143936
|
preferences,
|
|
143774
143937
|
sourceFile,
|
|
143775
143938
|
span.start,
|
|
143776
|
-
/*
|
|
143939
|
+
/*useHtmlEntity*/
|
|
143777
143940
|
false
|
|
143778
143941
|
));
|
|
143779
143942
|
const changeToHtmlEntity = ts_textChanges_exports.ChangeTracker.with(context, (t) => doChange18(
|
|
@@ -143781,7 +143944,7 @@ ${lanes.join("\n")}
|
|
|
143781
143944
|
preferences,
|
|
143782
143945
|
sourceFile,
|
|
143783
143946
|
span.start,
|
|
143784
|
-
/*
|
|
143947
|
+
/*useHtmlEntity*/
|
|
143785
143948
|
true
|
|
143786
143949
|
));
|
|
143787
143950
|
return [
|
|
@@ -144915,7 +145078,7 @@ ${lanes.join("\n")}
|
|
|
144915
145078
|
if (importableReference && changes.tryInsertTypeAnnotation(sourceFile, declaration, importableReference.typeNode)) {
|
|
144916
145079
|
forEach(importableReference.symbols, (s) => importAdder.addImportFromExportedSymbol(
|
|
144917
145080
|
s,
|
|
144918
|
-
/*
|
|
145081
|
+
/*isValidTypeOnlyUseSite*/
|
|
144919
145082
|
true
|
|
144920
145083
|
));
|
|
144921
145084
|
return true;
|
|
@@ -144971,7 +145134,7 @@ ${lanes.join("\n")}
|
|
|
144971
145134
|
/*isBracketed*/
|
|
144972
145135
|
!!isOptional,
|
|
144973
145136
|
factory.createJSDocTypeExpression(typeNode),
|
|
144974
|
-
/*
|
|
145137
|
+
/*isNameFirst*/
|
|
144975
145138
|
false,
|
|
144976
145139
|
/*comment*/
|
|
144977
145140
|
void 0
|
|
@@ -145839,7 +146002,7 @@ ${lanes.join("\n")}
|
|
|
145839
146002
|
preferences,
|
|
145840
146003
|
importAdder,
|
|
145841
146004
|
addClassElement,
|
|
145842
|
-
/*
|
|
146005
|
+
/*body*/
|
|
145843
146006
|
void 0
|
|
145844
146007
|
);
|
|
145845
146008
|
}
|
|
@@ -146307,7 +146470,7 @@ ${lanes.join("\n")}
|
|
|
146307
146470
|
const parameters = createDummyParameters(
|
|
146308
146471
|
maxNonRestArgs,
|
|
146309
146472
|
maxArgsParameterSymbolNames,
|
|
146310
|
-
/*
|
|
146473
|
+
/*types*/
|
|
146311
146474
|
void 0,
|
|
146312
146475
|
minArgumentCount,
|
|
146313
146476
|
/*inJs*/
|
|
@@ -146376,7 +146539,7 @@ ${lanes.join("\n")}
|
|
|
146376
146539
|
)]
|
|
146377
146540
|
)
|
|
146378
146541
|
)],
|
|
146379
|
-
/*
|
|
146542
|
+
/*multiLine*/
|
|
146380
146543
|
true
|
|
146381
146544
|
);
|
|
146382
146545
|
}
|
|
@@ -146993,7 +147156,7 @@ ${lanes.join("\n")}
|
|
|
146993
147156
|
const { parent: parent2 } = getTokenAtPosition(sourceFile, pos);
|
|
146994
147157
|
if (!isRequireCall(
|
|
146995
147158
|
parent2,
|
|
146996
|
-
/*
|
|
147159
|
+
/*requireStringLiteralLikeArgument*/
|
|
146997
147160
|
true
|
|
146998
147161
|
)) {
|
|
146999
147162
|
Debug.failBadSyntaxKind(parent2);
|
|
@@ -147156,7 +147319,7 @@ ${lanes.join("\n")}
|
|
|
147156
147319
|
importType.assertions,
|
|
147157
147320
|
importType.qualifier,
|
|
147158
147321
|
importType.typeArguments,
|
|
147159
|
-
/*
|
|
147322
|
+
/*isTypeOf*/
|
|
147160
147323
|
true
|
|
147161
147324
|
);
|
|
147162
147325
|
changes.replaceNode(sourceFile, importType, newTypeNode);
|
|
@@ -148487,14 +148650,14 @@ ${lanes.join("\n")}
|
|
|
148487
148650
|
const emptyStmt = factory.createEmptyStatement();
|
|
148488
148651
|
body = factory.createBlock(
|
|
148489
148652
|
[emptyStmt],
|
|
148490
|
-
/*
|
|
148653
|
+
/*multiLine*/
|
|
148491
148654
|
true
|
|
148492
148655
|
);
|
|
148493
148656
|
setSnippetElement(emptyStmt, { kind: 0 /* TabStop */, order: 0 });
|
|
148494
148657
|
} else {
|
|
148495
148658
|
body = factory.createBlock(
|
|
148496
148659
|
[],
|
|
148497
|
-
/*
|
|
148660
|
+
/*multiLine*/
|
|
148498
148661
|
true
|
|
148499
148662
|
);
|
|
148500
148663
|
}
|
|
@@ -148672,14 +148835,14 @@ ${lanes.join("\n")}
|
|
|
148672
148835
|
const emptyStmt = factory.createEmptyStatement();
|
|
148673
148836
|
body = factory.createBlock(
|
|
148674
148837
|
[emptyStmt],
|
|
148675
|
-
/*
|
|
148838
|
+
/*multiLine*/
|
|
148676
148839
|
true
|
|
148677
148840
|
);
|
|
148678
148841
|
setSnippetElement(emptyStmt, { kind: 0 /* TabStop */, order: 0 });
|
|
148679
148842
|
} else {
|
|
148680
148843
|
body = factory.createBlock(
|
|
148681
148844
|
[],
|
|
148682
|
-
/*
|
|
148845
|
+
/*multiLine*/
|
|
148683
148846
|
true
|
|
148684
148847
|
);
|
|
148685
148848
|
}
|
|
@@ -149654,7 +149817,7 @@ ${lanes.join("\n")}
|
|
|
149654
149817
|
if (typeChecker.isValidPropertyAccessForCompletions(propertyAccess, type, symbol)) {
|
|
149655
149818
|
addPropertySymbol(
|
|
149656
149819
|
symbol,
|
|
149657
|
-
/*
|
|
149820
|
+
/*insertAwait*/
|
|
149658
149821
|
false,
|
|
149659
149822
|
insertQuestionDot
|
|
149660
149823
|
);
|
|
@@ -149670,7 +149833,7 @@ ${lanes.join("\n")}
|
|
|
149670
149833
|
if (typeChecker.isValidPropertyAccessForCompletions(propertyAccess, promiseType, symbol)) {
|
|
149671
149834
|
addPropertySymbol(
|
|
149672
149835
|
symbol,
|
|
149673
|
-
/*
|
|
149836
|
+
/*insertAwait*/
|
|
149674
149837
|
true,
|
|
149675
149838
|
insertQuestionDot
|
|
149676
149839
|
);
|
|
@@ -150169,7 +150332,7 @@ ${lanes.join("\n")}
|
|
|
150169
150332
|
objectLikeContainer,
|
|
150170
150333
|
/*isSuper*/
|
|
150171
150334
|
false,
|
|
150172
|
-
/*
|
|
150335
|
+
/*isWrite*/
|
|
150173
150336
|
false,
|
|
150174
150337
|
typeForObject,
|
|
150175
150338
|
propertySymbol
|
|
@@ -151259,7 +151422,7 @@ ${lanes.join("\n")}
|
|
|
151259
151422
|
options,
|
|
151260
151423
|
/*formatContext*/
|
|
151261
151424
|
void 0,
|
|
151262
|
-
/*isTypeOnlyLocation
|
|
151425
|
+
/*isTypeOnlyLocation*/
|
|
151263
151426
|
void 0,
|
|
151264
151427
|
/*propertyAccessToConvert*/
|
|
151265
151428
|
void 0,
|
|
@@ -151524,7 +151687,7 @@ ${lanes.join("\n")}
|
|
|
151524
151687
|
const scriptPath = sourceFile.path;
|
|
151525
151688
|
const scriptDirectory = getDirectoryPath(scriptPath);
|
|
151526
151689
|
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);
|
|
151690
|
+
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
151691
|
}
|
|
151529
151692
|
function getExtensionOptions(compilerOptions, referenceKind, importingSourceFile, typeChecker, preferences, resolutionMode) {
|
|
151530
151693
|
return {
|
|
@@ -151727,8 +151890,7 @@ ${lanes.join("\n")}
|
|
|
151727
151890
|
const result = createNameAndKindSet();
|
|
151728
151891
|
const moduleResolution = getEmitModuleResolutionKind(compilerOptions);
|
|
151729
151892
|
if (baseUrl) {
|
|
151730
|
-
const
|
|
151731
|
-
const absolute = normalizePath(combinePaths(projectDir, baseUrl));
|
|
151893
|
+
const absolute = normalizePath(combinePaths(host.getCurrentDirectory(), baseUrl));
|
|
151732
151894
|
getCompletionEntriesForDirectoryFragment(
|
|
151733
151895
|
fragment,
|
|
151734
151896
|
absolute,
|
|
@@ -151740,9 +151902,10 @@ ${lanes.join("\n")}
|
|
|
151740
151902
|
void 0,
|
|
151741
151903
|
result
|
|
151742
151904
|
);
|
|
151743
|
-
|
|
151744
|
-
|
|
151745
|
-
|
|
151905
|
+
}
|
|
151906
|
+
if (paths) {
|
|
151907
|
+
const absolute = getPathsBasePath(compilerOptions, host);
|
|
151908
|
+
addCompletionEntriesFromPaths(result, fragment, absolute, extensionOptions, host, paths);
|
|
151746
151909
|
}
|
|
151747
151910
|
const fragmentDirectory = getFragmentDirectory(fragment);
|
|
151748
151911
|
for (const ambientName of getAmbientModuleCompletions(fragment, fragmentDirectory, typeChecker)) {
|
|
@@ -152182,7 +152345,7 @@ ${lanes.join("\n")}
|
|
|
152182
152345
|
} else if (direct.exportClause.kind === 278 /* NamespaceExport */) {
|
|
152183
152346
|
addIndirectUser(
|
|
152184
152347
|
getSourceFileLikeForImportDeclaration(direct),
|
|
152185
|
-
|
|
152348
|
+
/*addTransitiveDependencies*/
|
|
152186
152349
|
true
|
|
152187
152350
|
);
|
|
152188
152351
|
} else {
|
|
@@ -152193,7 +152356,7 @@ ${lanes.join("\n")}
|
|
|
152193
152356
|
if (!isAvailableThroughGlobal && direct.isTypeOf && !direct.qualifier && isExported2(direct)) {
|
|
152194
152357
|
addIndirectUser(
|
|
152195
152358
|
direct.getSourceFile(),
|
|
152196
|
-
|
|
152359
|
+
/*addTransitiveDependencies*/
|
|
152197
152360
|
true
|
|
152198
152361
|
);
|
|
152199
152362
|
}
|
|
@@ -152212,7 +152375,7 @@ ${lanes.join("\n")}
|
|
|
152212
152375
|
/** addTransitiveDependencies */
|
|
152213
152376
|
!!isExported2(
|
|
152214
152377
|
importCall,
|
|
152215
|
-
|
|
152378
|
+
/*stopAtAmbientModule*/
|
|
152216
152379
|
true
|
|
152217
152380
|
)
|
|
152218
152381
|
);
|
|
@@ -152234,7 +152397,7 @@ ${lanes.join("\n")}
|
|
|
152234
152397
|
if (isReExport || findNamespaceReExports(sourceFileLike, name, checker)) {
|
|
152235
152398
|
addIndirectUser(
|
|
152236
152399
|
sourceFileLike,
|
|
152237
|
-
|
|
152400
|
+
/*addTransitiveDependencies*/
|
|
152238
152401
|
true
|
|
152239
152402
|
);
|
|
152240
152403
|
} else {
|
|
@@ -152260,7 +152423,7 @@ ${lanes.join("\n")}
|
|
|
152260
152423
|
if (!isImportTypeNode(directImport)) {
|
|
152261
152424
|
addIndirectUser(
|
|
152262
152425
|
getSourceFileLikeForImportDeclaration(directImport),
|
|
152263
|
-
|
|
152426
|
+
/*addTransitiveDependencies*/
|
|
152264
152427
|
true
|
|
152265
152428
|
);
|
|
152266
152429
|
}
|
|
@@ -152391,10 +152554,10 @@ ${lanes.join("\n")}
|
|
|
152391
152554
|
}
|
|
152392
152555
|
}
|
|
152393
152556
|
}
|
|
152394
|
-
forEachImport(referencingFile, (
|
|
152557
|
+
forEachImport(referencingFile, (importDecl, moduleSpecifier) => {
|
|
152395
152558
|
const moduleSymbol = checker.getSymbolAtLocation(moduleSpecifier);
|
|
152396
152559
|
if (moduleSymbol === searchModuleSymbol) {
|
|
152397
|
-
refs.push({ kind: "import", literal: moduleSpecifier });
|
|
152560
|
+
refs.push(nodeIsSynthesized(importDecl) ? { kind: "implicit", literal: moduleSpecifier, referencingFile } : { kind: "import", literal: moduleSpecifier });
|
|
152398
152561
|
}
|
|
152399
152562
|
});
|
|
152400
152563
|
}
|
|
@@ -153317,6 +153480,12 @@ ${lanes.join("\n")}
|
|
|
153317
153480
|
}
|
|
153318
153481
|
}
|
|
153319
153482
|
return nodeEntry(reference.literal);
|
|
153483
|
+
} else if (reference.kind === "implicit") {
|
|
153484
|
+
const range = reference.literal.text !== externalHelpersModuleNameText && forEachChildRecursively(
|
|
153485
|
+
reference.referencingFile,
|
|
153486
|
+
(n) => !(n.transformFlags & 2 /* ContainsJsx */) ? "skip" : isJsxElement(n) || isJsxSelfClosingElement(n) || isJsxFragment(n) ? n : void 0
|
|
153487
|
+
) || reference.referencingFile.statements[0] || reference.referencingFile;
|
|
153488
|
+
return nodeEntry(range);
|
|
153320
153489
|
} else {
|
|
153321
153490
|
return {
|
|
153322
153491
|
kind: 0 /* Span */,
|
|
@@ -154210,7 +154379,7 @@ ${lanes.join("\n")}
|
|
|
154210
154379
|
function getReferencesForThisKeyword(thisOrSuperKeyword, sourceFiles, cancellationToken) {
|
|
154211
154380
|
let searchSpaceNode = getThisContainer(
|
|
154212
154381
|
thisOrSuperKeyword,
|
|
154213
|
-
/*
|
|
154382
|
+
/*includeArrowFunctions*/
|
|
154214
154383
|
false,
|
|
154215
154384
|
/*includeClassComputedPropertyName*/
|
|
154216
154385
|
false
|
|
@@ -154250,7 +154419,7 @@ ${lanes.join("\n")}
|
|
|
154250
154419
|
}
|
|
154251
154420
|
const container = getThisContainer(
|
|
154252
154421
|
node,
|
|
154253
|
-
/*
|
|
154422
|
+
/*includeArrowFunctions*/
|
|
154254
154423
|
false,
|
|
154255
154424
|
/*includeClassComputedPropertyName*/
|
|
154256
154425
|
false
|
|
@@ -156961,7 +157130,7 @@ ${lanes.join("\n")}
|
|
|
156961
157130
|
changes.deleteRange(importingSourceFile, { pos: ref.getStart(importingSourceFile), end: namedBindings.getStart(importingSourceFile) });
|
|
156962
157131
|
const quotePreference = isStringLiteral(clause.parent.moduleSpecifier) ? quotePreferenceFromString(clause.parent.moduleSpecifier, importingSourceFile) : 1 /* Double */;
|
|
156963
157132
|
const newImport = makeImport(
|
|
156964
|
-
/*
|
|
157133
|
+
/*defaultImport*/
|
|
156965
157134
|
void 0,
|
|
156966
157135
|
[makeImportSpecifier2(exportName, ref.text)],
|
|
156967
157136
|
clause.parent.moduleSpecifier,
|
|
@@ -157365,7 +157534,7 @@ ${lanes.join("\n")}
|
|
|
157365
157534
|
typeName.text,
|
|
157366
157535
|
typeName,
|
|
157367
157536
|
262144 /* TypeParameter */,
|
|
157368
|
-
/*
|
|
157537
|
+
/*excludeGlobals*/
|
|
157369
157538
|
true
|
|
157370
157539
|
);
|
|
157371
157540
|
for (const decl of (symbol == null ? void 0 : symbol.declarations) || emptyArray) {
|
|
@@ -157396,7 +157565,7 @@ ${lanes.join("\n")}
|
|
|
157396
157565
|
node.exprName.text,
|
|
157397
157566
|
node.exprName,
|
|
157398
157567
|
111551 /* Value */,
|
|
157399
|
-
/*
|
|
157568
|
+
/*excludeGlobals*/
|
|
157400
157569
|
false
|
|
157401
157570
|
);
|
|
157402
157571
|
if ((symbol == null ? void 0 : symbol.valueDeclaration) && rangeContainsSkipTrivia(enclosingNode, symbol.valueDeclaration, file) && !rangeContainsSkipTrivia(selection, symbol.valueDeclaration, file)) {
|
|
@@ -157417,7 +157586,7 @@ ${lanes.join("\n")}
|
|
|
157417
157586
|
function doTypeAliasChange(changes, file, name, info) {
|
|
157418
157587
|
const { enclosingNode, selection, typeParameters } = info;
|
|
157419
157588
|
const newTypeNode = factory.createTypeAliasDeclaration(
|
|
157420
|
-
/*
|
|
157589
|
+
/*modifiers*/
|
|
157421
157590
|
void 0,
|
|
157422
157591
|
name,
|
|
157423
157592
|
typeParameters.map((id) => factory.updateTypeParameterDeclaration(
|
|
@@ -157425,7 +157594,7 @@ ${lanes.join("\n")}
|
|
|
157425
157594
|
id.modifiers,
|
|
157426
157595
|
id.name,
|
|
157427
157596
|
id.constraint,
|
|
157428
|
-
/*
|
|
157597
|
+
/*defaultType*/
|
|
157429
157598
|
void 0
|
|
157430
157599
|
)),
|
|
157431
157600
|
selection
|
|
@@ -157434,12 +157603,12 @@ ${lanes.join("\n")}
|
|
|
157434
157603
|
file,
|
|
157435
157604
|
enclosingNode,
|
|
157436
157605
|
ignoreSourceNewlines(newTypeNode),
|
|
157437
|
-
/*
|
|
157606
|
+
/*blankLineBetween*/
|
|
157438
157607
|
true
|
|
157439
157608
|
);
|
|
157440
157609
|
changes.replaceNode(file, selection, factory.createTypeReferenceNode(name, typeParameters.map((id) => factory.createTypeReferenceNode(
|
|
157441
157610
|
id.name,
|
|
157442
|
-
/*
|
|
157611
|
+
/*typeArguments*/
|
|
157443
157612
|
void 0
|
|
157444
157613
|
))), { leadingTriviaOption: ts_textChanges_exports.LeadingTriviaOption.Exclude, trailingTriviaOption: ts_textChanges_exports.TrailingTriviaOption.ExcludeWhitespace });
|
|
157445
157614
|
}
|
|
@@ -157447,11 +157616,11 @@ ${lanes.join("\n")}
|
|
|
157447
157616
|
var _a2;
|
|
157448
157617
|
const { enclosingNode, selection, typeParameters, typeElements } = info;
|
|
157449
157618
|
const newTypeNode = factory.createInterfaceDeclaration(
|
|
157450
|
-
/*
|
|
157619
|
+
/*modifiers*/
|
|
157451
157620
|
void 0,
|
|
157452
157621
|
name,
|
|
157453
157622
|
typeParameters,
|
|
157454
|
-
/*
|
|
157623
|
+
/*heritageClauses*/
|
|
157455
157624
|
void 0,
|
|
157456
157625
|
typeElements
|
|
157457
157626
|
);
|
|
@@ -157460,12 +157629,12 @@ ${lanes.join("\n")}
|
|
|
157460
157629
|
file,
|
|
157461
157630
|
enclosingNode,
|
|
157462
157631
|
ignoreSourceNewlines(newTypeNode),
|
|
157463
|
-
/*
|
|
157632
|
+
/*blankLineBetween*/
|
|
157464
157633
|
true
|
|
157465
157634
|
);
|
|
157466
157635
|
changes.replaceNode(file, selection, factory.createTypeReferenceNode(name, typeParameters.map((id) => factory.createTypeReferenceNode(
|
|
157467
157636
|
id.name,
|
|
157468
|
-
/*
|
|
157637
|
+
/*typeArguments*/
|
|
157469
157638
|
void 0
|
|
157470
157639
|
))), { leadingTriviaOption: ts_textChanges_exports.LeadingTriviaOption.Exclude, trailingTriviaOption: ts_textChanges_exports.TrailingTriviaOption.ExcludeWhitespace });
|
|
157471
157640
|
}
|
|
@@ -157494,7 +157663,7 @@ ${lanes.join("\n")}
|
|
|
157494
157663
|
templates.push(template);
|
|
157495
157664
|
});
|
|
157496
157665
|
const jsDoc = factory.createJSDocComment(
|
|
157497
|
-
/*
|
|
157666
|
+
/*comment*/
|
|
157498
157667
|
void 0,
|
|
157499
157668
|
factory.createNodeArray(concatenate(templates, [node]))
|
|
157500
157669
|
);
|
|
@@ -157509,13 +157678,13 @@ ${lanes.join("\n")}
|
|
|
157509
157678
|
file,
|
|
157510
157679
|
enclosingNode,
|
|
157511
157680
|
jsDoc,
|
|
157512
|
-
/*
|
|
157681
|
+
/*blankLineBetween*/
|
|
157513
157682
|
true
|
|
157514
157683
|
);
|
|
157515
157684
|
}
|
|
157516
157685
|
changes.replaceNode(file, selection, factory.createTypeReferenceNode(name, typeParameters.map((id) => factory.createTypeReferenceNode(
|
|
157517
157686
|
id.name,
|
|
157518
|
-
/*
|
|
157687
|
+
/*typeArguments*/
|
|
157519
157688
|
void 0
|
|
157520
157689
|
))));
|
|
157521
157690
|
}
|
|
@@ -157691,7 +157860,7 @@ ${lanes.join("\n")}
|
|
|
157691
157860
|
case 241 /* VariableStatement */:
|
|
157692
157861
|
return node.declarationList.declarations.every((d) => !!d.initializer && isRequireCall(
|
|
157693
157862
|
d.initializer,
|
|
157694
|
-
/*
|
|
157863
|
+
/*requireStringLiteralLikeArgument*/
|
|
157695
157864
|
true
|
|
157696
157865
|
));
|
|
157697
157866
|
default:
|
|
@@ -157881,7 +158050,7 @@ ${lanes.join("\n")}
|
|
|
157881
158050
|
for (const decl of statement.declarationList.declarations) {
|
|
157882
158051
|
if (decl.initializer && isRequireCall(
|
|
157883
158052
|
decl.initializer,
|
|
157884
|
-
/*
|
|
158053
|
+
/*requireStringLiteralLikeArgument*/
|
|
157885
158054
|
true
|
|
157886
158055
|
)) {
|
|
157887
158056
|
cb(decl);
|
|
@@ -158173,7 +158342,7 @@ ${lanes.join("\n")}
|
|
|
158173
158342
|
function isVariableDeclarationInImport(decl) {
|
|
158174
158343
|
return isSourceFile(decl.parent.parent.parent) && !!decl.initializer && isRequireCall(
|
|
158175
158344
|
decl.initializer,
|
|
158176
|
-
/*
|
|
158345
|
+
/*requireStringLiteralLikeArgument*/
|
|
158177
158346
|
true
|
|
158178
158347
|
);
|
|
158179
158348
|
}
|
|
@@ -158707,7 +158876,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158707
158876
|
const returnStatement2 = factory.createReturnStatement(expression);
|
|
158708
158877
|
body = factory.createBlock(
|
|
158709
158878
|
[returnStatement2],
|
|
158710
|
-
/*
|
|
158879
|
+
/*multiLine*/
|
|
158711
158880
|
true
|
|
158712
158881
|
);
|
|
158713
158882
|
copyLeadingComments(
|
|
@@ -158715,7 +158884,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158715
158884
|
returnStatement2,
|
|
158716
158885
|
file,
|
|
158717
158886
|
3 /* MultiLineCommentTrivia */,
|
|
158718
|
-
/*
|
|
158887
|
+
/*hasTrailingNewLine*/
|
|
158719
158888
|
true
|
|
158720
158889
|
);
|
|
158721
158890
|
} else if (actionName2 === removeBracesAction.name && returnStatement) {
|
|
@@ -158726,7 +158895,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158726
158895
|
body,
|
|
158727
158896
|
file,
|
|
158728
158897
|
3 /* MultiLineCommentTrivia */,
|
|
158729
|
-
/*
|
|
158898
|
+
/*hasTrailingNewLine*/
|
|
158730
158899
|
false
|
|
158731
158900
|
);
|
|
158732
158901
|
copyLeadingComments(
|
|
@@ -158734,7 +158903,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158734
158903
|
body,
|
|
158735
158904
|
file,
|
|
158736
158905
|
3 /* MultiLineCommentTrivia */,
|
|
158737
|
-
/*
|
|
158906
|
+
/*hasTrailingNewLine*/
|
|
158738
158907
|
false
|
|
158739
158908
|
);
|
|
158740
158909
|
copyTrailingComments(
|
|
@@ -158742,7 +158911,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158742
158911
|
body,
|
|
158743
158912
|
file,
|
|
158744
158913
|
3 /* MultiLineCommentTrivia */,
|
|
158745
|
-
/*
|
|
158914
|
+
/*hasTrailingNewLine*/
|
|
158746
158915
|
false
|
|
158747
158916
|
);
|
|
158748
158917
|
} else {
|
|
@@ -158933,14 +159102,14 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158933
159102
|
body,
|
|
158934
159103
|
returnStatement,
|
|
158935
159104
|
file,
|
|
158936
|
-
/*
|
|
159105
|
+
/*commentKind*/
|
|
158937
159106
|
void 0,
|
|
158938
|
-
/*
|
|
159107
|
+
/*hasTrailingNewLine*/
|
|
158939
159108
|
true
|
|
158940
159109
|
);
|
|
158941
159110
|
return factory.createBlock(
|
|
158942
159111
|
[returnStatement],
|
|
158943
|
-
/*
|
|
159112
|
+
/*multiLine*/
|
|
158944
159113
|
true
|
|
158945
159114
|
);
|
|
158946
159115
|
} else {
|
|
@@ -158963,7 +159132,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
158963
159132
|
const newNode = factory.createFunctionExpression(
|
|
158964
159133
|
func.modifiers,
|
|
158965
159134
|
func.asteriskToken,
|
|
158966
|
-
/*
|
|
159135
|
+
/*name*/
|
|
158967
159136
|
void 0,
|
|
158968
159137
|
func.typeParameters,
|
|
158969
159138
|
func.parameters,
|
|
@@ -159774,7 +159943,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
159774
159943
|
node.expression,
|
|
159775
159944
|
file,
|
|
159776
159945
|
3 /* MultiLineCommentTrivia */,
|
|
159777
|
-
/*
|
|
159946
|
+
/*hasTrailingNewLine*/
|
|
159778
159947
|
false
|
|
159779
159948
|
);
|
|
159780
159949
|
copyTrailingAsLeadingComments(
|
|
@@ -159782,7 +159951,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
159782
159951
|
node.expression,
|
|
159783
159952
|
file,
|
|
159784
159953
|
3 /* MultiLineCommentTrivia */,
|
|
159785
|
-
/*
|
|
159954
|
+
/*hasTrailingNewLine*/
|
|
159786
159955
|
false
|
|
159787
159956
|
);
|
|
159788
159957
|
}
|
|
@@ -159818,7 +159987,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
159818
159987
|
targetNode,
|
|
159819
159988
|
file,
|
|
159820
159989
|
3 /* MultiLineCommentTrivia */,
|
|
159821
|
-
/*
|
|
159990
|
+
/*hasTrailingNewLine*/
|
|
159822
159991
|
false
|
|
159823
159992
|
);
|
|
159824
159993
|
}
|
|
@@ -159831,7 +160000,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
159831
160000
|
targetNode,
|
|
159832
160001
|
file,
|
|
159833
160002
|
3 /* MultiLineCommentTrivia */,
|
|
159834
|
-
/*
|
|
160003
|
+
/*hasTrailingNewLine*/
|
|
159835
160004
|
false
|
|
159836
160005
|
);
|
|
159837
160006
|
copyOperatorComments(index, targetNode);
|
|
@@ -160343,7 +160512,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
160343
160512
|
if (rangeFacts & 8 /* UsesThis */) {
|
|
160344
160513
|
const container = getThisContainer(
|
|
160345
160514
|
nodeToCheck,
|
|
160346
|
-
|
|
160515
|
+
/*includeArrowFunctions*/
|
|
160347
160516
|
false,
|
|
160348
160517
|
/*includeClassComputedPropertyName*/
|
|
160349
160518
|
false
|
|
@@ -160914,7 +161083,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
160914
161083
|
edits,
|
|
160915
161084
|
renameFilename,
|
|
160916
161085
|
functionNameText,
|
|
160917
|
-
/*
|
|
161086
|
+
/*preferLastLocation*/
|
|
160918
161087
|
false
|
|
160919
161088
|
);
|
|
160920
161089
|
return { renameFilename, renameLocation, edits };
|
|
@@ -160957,7 +161126,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
160957
161126
|
const newVariable = factory.createPropertyDeclaration(
|
|
160958
161127
|
modifiers,
|
|
160959
161128
|
localNameText,
|
|
160960
|
-
/*
|
|
161129
|
+
/*questionOrExclamationToken*/
|
|
160961
161130
|
void 0,
|
|
160962
161131
|
variableType,
|
|
160963
161132
|
initializer
|
|
@@ -161047,7 +161216,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
161047
161216
|
edits,
|
|
161048
161217
|
renameFilename,
|
|
161049
161218
|
localNameText,
|
|
161050
|
-
/*
|
|
161219
|
+
/*preferLastLocation*/
|
|
161051
161220
|
true
|
|
161052
161221
|
);
|
|
161053
161222
|
return { renameFilename, renameLocation, edits };
|
|
@@ -161101,12 +161270,12 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
161101
161270
|
if (!firstParameter || isIdentifier(firstParameter.name) && firstParameter.name.escapedText !== "this") {
|
|
161102
161271
|
const thisType = checker.getTypeOfSymbolAtLocation(functionSignature.thisParameter, node);
|
|
161103
161272
|
parameters.splice(0, 0, factory.createParameterDeclaration(
|
|
161104
|
-
/*
|
|
161273
|
+
/*modifiers*/
|
|
161105
161274
|
void 0,
|
|
161106
|
-
/*
|
|
161275
|
+
/*dotDotDotToken*/
|
|
161107
161276
|
void 0,
|
|
161108
161277
|
"this",
|
|
161109
|
-
/*
|
|
161278
|
+
/*questionToken*/
|
|
161110
161279
|
void 0,
|
|
161111
161280
|
checker.typeToTypeNode(thisType, scope, 1 /* NoTruncation */)
|
|
161112
161281
|
));
|
|
@@ -161168,7 +161337,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
161168
161337
|
if (isBlock(body) && !hasWritesOrVariableDeclarations && substitutions.size === 0) {
|
|
161169
161338
|
return { body: factory.createBlock(
|
|
161170
161339
|
body.statements,
|
|
161171
|
-
/*
|
|
161340
|
+
/*multiLine*/
|
|
161172
161341
|
true
|
|
161173
161342
|
), returnValueProperty: void 0 };
|
|
161174
161343
|
}
|
|
@@ -164781,7 +164950,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
164781
164950
|
const end = skipTrivia(
|
|
164782
164951
|
sourceFile.text,
|
|
164783
164952
|
nextToken.end,
|
|
164784
|
-
/*
|
|
164953
|
+
/*stopAfterLineBreak*/
|
|
164785
164954
|
false,
|
|
164786
164955
|
/*stopAtComments*/
|
|
164787
164956
|
true
|
|
@@ -165100,7 +165269,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
165100
165269
|
if (token === 19 /* CloseBraceToken */) {
|
|
165101
165270
|
lastScanAction = 3 /* RescanTemplateToken */;
|
|
165102
165271
|
return scanner2.reScanTemplateToken(
|
|
165103
|
-
/*
|
|
165272
|
+
/*isTaggedTemplate*/
|
|
165104
165273
|
false
|
|
165105
165274
|
);
|
|
165106
165275
|
}
|
|
@@ -165111,7 +165280,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
165111
165280
|
case 5 /* RescanJsxText */:
|
|
165112
165281
|
lastScanAction = 5 /* RescanJsxText */;
|
|
165113
165282
|
return scanner2.reScanJsxToken(
|
|
165114
|
-
/*
|
|
165283
|
+
/*allowMultilineJsxText*/
|
|
165115
165284
|
false
|
|
165116
165285
|
);
|
|
165117
165286
|
case 6 /* RescanJsxAttributeValue */:
|