Skip to content

Commit 3b97c68

Browse files
authored
Merge pull request #16466 from Microsoft/fix-build-break
Fix reference to isTypeParameterDeclaration in services
2 parents fbcddb6 + 93bdd3c commit 3b97c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ namespace ts {
9494
else if (isNamespaceReference(node)) {
9595
return SemanticMeaning.Namespace;
9696
}
97-
else if (isTypeParameter(node.parent)) {
97+
else if (isTypeParameterDeclaration(node.parent)) {
9898
Debug.assert(isJSDocTemplateTag(node.parent.parent)); // Else would be handled by isDeclarationName
9999
return SemanticMeaning.Type;
100100
}

0 commit comments

Comments
 (0)