@@ -268,8 +268,8 @@ namespace ts {
268
268
getSuggestionForNonexistentSymbol: (location, name, meaning) => getSuggestionForNonexistentSymbol(location, escapeLeadingUnderscores(name), meaning),
269
269
getBaseConstraintOfType,
270
270
getDefaultFromTypeParameter: type => type && type.flags & TypeFlags.TypeParameter ? getDefaultFromTypeParameter(type as TypeParameter) : undefined,
271
- resolveName(name, location, meaning) {
272
- return resolveName(location, escapeLeadingUnderscores(name), meaning, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false);
271
+ resolveName(name, location, meaning, excludeGlobals ) {
272
+ return resolveName(location, escapeLeadingUnderscores(name), meaning, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false, excludeGlobals );
273
273
},
274
274
getJsxNamespace: () => unescapeLeadingUnderscores(getJsxNamespace()),
275
275
getAccessibleSymbolChain,
@@ -952,8 +952,9 @@ namespace ts {
952
952
nameNotFoundMessage: DiagnosticMessage | undefined,
953
953
nameArg: __String | Identifier,
954
954
isUse: boolean,
955
+ excludeGlobals = false,
955
956
suggestedNameNotFoundMessage?: DiagnosticMessage): Symbol {
956
- return resolveNameHelper(location, name, meaning, nameNotFoundMessage, nameArg, isUse, getSymbol, suggestedNameNotFoundMessage);
957
+ return resolveNameHelper(location, name, meaning, nameNotFoundMessage, nameArg, isUse, excludeGlobals, getSymbol, suggestedNameNotFoundMessage);
957
958
}
958
959
959
960
function resolveNameHelper(
@@ -963,6 +964,7 @@ namespace ts {
963
964
nameNotFoundMessage: DiagnosticMessage,
964
965
nameArg: __String | Identifier,
965
966
isUse: boolean,
967
+ excludeGlobals: boolean,
966
968
lookup: typeof getSymbol,
967
969
suggestedNameNotFoundMessage?: DiagnosticMessage): Symbol {
968
970
const originalLocation = location; // needed for did-you-mean error reporting, which gathers candidates starting from the original location
@@ -1209,7 +1211,9 @@ namespace ts {
1209
1211
}
1210
1212
}
1211
1213
1212
- result = lookup(globals, name, meaning);
1214
+ if (!excludeGlobals) {
1215
+ result = lookup(globals, name, meaning);
1216
+ }
1213
1217
}
1214
1218
1215
1219
if (!result) {
@@ -11277,6 +11281,9 @@ namespace ts {
11277
11281
}
11278
11282
diagnostic = Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type;
11279
11283
break;
11284
+ case SyntaxKind.MappedType:
11285
+ error(declaration, Diagnostics.Mapped_object_type_implicitly_has_an_any_template_type);
11286
+ return;
11280
11287
default:
11281
11288
diagnostic = Diagnostics.Variable_0_implicitly_has_an_1_type;
11282
11289
}
@@ -11889,6 +11896,7 @@ namespace ts {
11889
11896
Diagnostics.Cannot_find_name_0,
11890
11897
node,
11891
11898
!isWriteOnlyAccess(node),
11899
+ /*excludeGlobals*/ false,
11892
11900
Diagnostics.Cannot_find_name_0_Did_you_mean_1) || unknownSymbol;
11893
11901
}
11894
11902
return links.resolvedSymbol;
@@ -15154,7 +15162,7 @@ namespace ts {
15154
15162
* element is not a class element, or the class element type cannot be determined, returns 'undefined'.
15155
15163
* For example, in the element <MyClass>, the element instance type is `MyClass` (not `typeof MyClass`).
15156
15164
*/
15157
- function getJsxElementInstanceType(node: JsxOpeningLikeElement, valueType: Type, sourceAttributesType: Type) {
15165
+ function getJsxElementInstanceType(node: JsxOpeningLikeElement, valueType: Type, sourceAttributesType: Type | undefined ) {
15158
15166
Debug.assert(!(valueType.flags & TypeFlags.Union));
15159
15167
if (isTypeAny(valueType)) {
15160
15168
// Short-circuit if the class tag is using an element type 'any'
@@ -15173,20 +15181,27 @@ namespace ts {
15173
15181
}
15174
15182
}
15175
15183
15176
- const instantiatedSignatures = [];
15177
- for (const signature of signatures) {
15178
- if (signature.typeParameters) {
15179
- const isJavascript = isInJavaScriptFile(node);
15180
- const inferenceContext = createInferenceContext(signature, /*flags*/ isJavascript ? InferenceFlags.AnyDefault : 0);
15181
- const typeArguments = inferJsxTypeArguments(signature, sourceAttributesType, inferenceContext);
15182
- instantiatedSignatures.push(getSignatureInstantiation(signature, typeArguments, isJavascript));
15183
- }
15184
- else {
15185
- instantiatedSignatures.push(signature);
15184
+ if (sourceAttributesType) {
15185
+ // Instantiate in context of source type
15186
+ const instantiatedSignatures = [];
15187
+ for (const signature of signatures) {
15188
+ if (signature.typeParameters) {
15189
+ const isJavascript = isInJavaScriptFile(node);
15190
+ const inferenceContext = createInferenceContext(signature, /*flags*/ isJavascript ? InferenceFlags.AnyDefault : 0);
15191
+ const typeArguments = inferJsxTypeArguments(signature, sourceAttributesType, inferenceContext);
15192
+ instantiatedSignatures.push(getSignatureInstantiation(signature, typeArguments, isJavascript));
15193
+ }
15194
+ else {
15195
+ instantiatedSignatures.push(signature);
15196
+ }
15186
15197
}
15187
- }
15188
15198
15189
- return getUnionType(map(instantiatedSignatures, getReturnTypeOfSignature), UnionReduction.Subtype);
15199
+ return getUnionType(map(instantiatedSignatures, getReturnTypeOfSignature), UnionReduction.Subtype);
15200
+ }
15201
+ else {
15202
+ // Do not instantiate if no source type is provided - type parameters and their constraints will be used by contextual typing
15203
+ return getUnionType(map(signatures, getReturnTypeOfSignature), UnionReduction.Subtype);
15204
+ }
15190
15205
}
15191
15206
15192
15207
/**
@@ -15410,7 +15425,7 @@ namespace ts {
15410
15425
}
15411
15426
15412
15427
// Get the element instance type (the result of newing or invoking this tag)
15413
- const elemInstanceType = getJsxElementInstanceType(openingLikeElement, elementType, sourceAttributesType || emptyObjectType );
15428
+ const elemInstanceType = getJsxElementInstanceType(openingLikeElement, elementType, sourceAttributesType);
15414
15429
15415
15430
// If we should include all stateless attributes type, then get all attributes type from all stateless function signature.
15416
15431
// Otherwise get only attributes type from the signature picked by choose-overload logic.
@@ -16068,7 +16083,7 @@ namespace ts {
16068
16083
16069
16084
function getSuggestionForNonexistentSymbol(location: Node, outerName: __String, meaning: SymbolFlags): string {
16070
16085
Debug.assert(outerName !== undefined, "outername should always be defined");
16071
- const result = resolveNameHelper(location, outerName, meaning, /*nameNotFoundMessage*/ undefined, outerName, /*isUse*/ false, (symbols, name, meaning) => {
16086
+ const result = resolveNameHelper(location, outerName, meaning, /*nameNotFoundMessage*/ undefined, outerName, /*isUse*/ false, /*excludeGlobals*/ false, (symbols, name, meaning) => {
16072
16087
Debug.assertEqual(outerName, name, "name should equal outerName");
16073
16088
const symbol = getSymbol(symbols, name, meaning);
16074
16089
// Sometimes the symbol is found when location is a return type of a function: `typeof x` and `x` is declared in the body of the function
@@ -20307,6 +20322,11 @@ namespace ts {
20307
20322
function checkMappedType(node: MappedTypeNode) {
20308
20323
checkSourceElement(node.typeParameter);
20309
20324
checkSourceElement(node.type);
20325
+
20326
+ if (noImplicitAny && !node.type) {
20327
+ reportImplicitAnyError(node, anyType);
20328
+ }
20329
+
20310
20330
const type = <MappedType>getTypeFromMappedTypeNode(node);
20311
20331
const constraintType = getConstraintTypeFromMappedType(type);
20312
20332
checkTypeAssignableTo(constraintType, stringType, node.typeParameter.constraint);
@@ -22985,7 +23005,7 @@ namespace ts {
22985
23005
Diagnostics.Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2,
22986
23006
unescapeLeadingUnderscores(declaredProp.escapedName),
22987
23007
typeToString(typeWithThis),
22988
- typeToString(getTypeOfSymbol(baseProp) )
23008
+ typeToString(baseWithThis )
22989
23009
);
22990
23010
if (!checkTypeAssignableTo(getTypeOfSymbol(prop), getTypeOfSymbol(baseProp), member.name || member, /*message*/ undefined, rootChain)) {
22991
23011
issuedMemberError = true;
0 commit comments