We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbcddb6 commit 93bdd3cCopy full SHA for 93bdd3c
src/services/utilities.ts
@@ -94,7 +94,7 @@ namespace ts {
94
else if (isNamespaceReference(node)) {
95
return SemanticMeaning.Namespace;
96
}
97
- else if (isTypeParameter(node.parent)) {
+ else if (isTypeParameterDeclaration(node.parent)) {
98
Debug.assert(isJSDocTemplateTag(node.parent.parent)); // Else would be handled by isDeclarationName
99
return SemanticMeaning.Type;
100
0 commit comments