File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1416,7 +1416,7 @@ namespace ts {
1416
1416
( < JSDocFunctionType > node ) . parameters [ 0 ] . type . kind === SyntaxKind . JSDocConstructorType ;
1417
1417
}
1418
1418
1419
- export function getJSDocComments ( node : Node ) : string [ ] {
1419
+ export function getCommentsFromJSDoc ( node : Node ) : string [ ] {
1420
1420
return map ( getJSDocs ( node ) , doc => doc . comment ) ;
1421
1421
}
1422
1422
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ namespace ts.JsDoc {
52
52
// from Array<T> - Array<string> and Array<number>
53
53
const documentationComment = < SymbolDisplayPart [ ] > [ ] ;
54
54
forEachUnique ( declarations , declaration => {
55
- const comments = getJSDocComments ( declaration ) ;
55
+ const comments = getCommentsFromJSDoc ( declaration ) ;
56
56
if ( ! comments ) {
57
57
return ;
58
58
}
You can’t perform that action at this time.
0 commit comments