Handle msising tags for JsDoc nodes

This commit is contained in:
Andy Hanson 2016-09-19 11:33:05 -07:00
parent b7d1d11ba3
commit e6610c5d54
3 changed files with 25 additions and 9 deletions

View file

@ -1604,7 +1604,7 @@ namespace ts {
// @kind(SyntaxKind.JSDocComment)
export interface JSDoc extends Node {
tags: NodeArray<JSDocTag>;
tags: NodeArray<JSDocTag> | undefined;
comment: string | undefined;
}

View file

@ -218,15 +218,13 @@ namespace ts.NavigationBar {
break;
default:
if (node.jsDocComments) {
for (const jsDocComment of node.jsDocComments) {
for (const tag of jsDocComment.tags) {
if (tag.kind === SyntaxKind.JSDocTypedefTag) {
addLeafNode(tag);
}
forEach(node.jsDocComments, jsDocComment => {
forEach(jsDocComment.tags, tag => {
if (tag.kind === SyntaxKind.JSDocTypedefTag) {
addLeafNode(tag);
}
}
}
});
});
forEachChild(node, addChildrenRecursively);
}

View file

@ -0,0 +1,18 @@
/// <reference path="fourslash.ts"/>
/////** Test */
////export const Test = {}
verify.navigationBar([
{
"text": "\"navigationBarJsDocCommentWithNoTags\"",
"kind": "module",
"childItems": [
{
"text": "Test",
"kind": "const",
"kindModifiers": "export"
}
]
}
]);