Skip to content

Commit 0651bd3

Browse files
TypeScript BotDanielRosenwasser
TypeScript Bot
andauthored
Cherry-pick PR #46614 into release-4.5 (#46675)
Component commits: e77514a Add failing test. 3c0d51b Check for type parameters on the original type when asking for the type argument constraint. e7c8095 Update tests/cases/fourslash/stringLiteralTypeCompletionsInTypeArgForNonGeneric1.ts Co-authored-by: Daniel Rosenwasser <[email protected]>
1 parent e4a2494 commit 0651bd3

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/compiler/checker.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -34730,7 +34730,8 @@ namespace ts {
3473034730
function getTypeArgumentConstraint(node: TypeNode): Type | undefined {
3473134731
const typeReferenceNode = tryCast(node.parent, isTypeReferenceType);
3473234732
if (!typeReferenceNode) return undefined;
34733-
const typeParameters = getTypeParametersForTypeReference(typeReferenceNode)!; // TODO: GH#18217
34733+
const typeParameters = getTypeParametersForTypeReference(typeReferenceNode);
34734+
if (!typeParameters) return undefined;
3473434735
const constraint = getConstraintOfTypeParameter(typeParameters[typeReferenceNode.typeArguments!.indexOf(node)]);
3473534736
return constraint && instantiateType(constraint, createTypeMapper(typeParameters, getEffectiveTypeArguments(typeReferenceNode, typeParameters)));
3473634737
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/// <reference path="./fourslash.ts" />
2+
3+
////interface Foo {}
4+
////type Bar = {};
5+
////
6+
////let x: Foo<"/*1*/">;
7+
////let y: Bar<"/*2*/">;
8+
9+
verify.completions({ marker: test.markers() });
10+

0 commit comments

Comments
 (0)