We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fullName
1 parent 896e576 commit f6e9dadCopy full SHA for f6e9dad
src/compiler/binder.ts
@@ -1317,7 +1317,7 @@ namespace ts {
1317
// if the node has a fullName "A.B.C", that means symbol "C" was already bound
1318
// when we visit "fullName"; so when we visit the name "C" as the next child of
1319
// the jsDocTypedefTag, we should skip binding it.
1320
- if (n === node.name && node.fullName.kind !== SyntaxKind.Identifier) {
+ if (node.fullName && n === node.name && node.fullName.kind !== SyntaxKind.Identifier) {
1321
return;
1322
}
1323
bind(n);
0 commit comments