File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -853,7 +853,7 @@ namespace ts.server {
853
853
if ( simplifiedResult ) {
854
854
const displayString = ts . displayPartsToString ( quickInfo . displayParts ) ;
855
855
const docString = ts . displayPartsToString ( quickInfo . documentation ) ;
856
-
856
+
857
857
return {
858
858
kind : quickInfo . kind ,
859
859
kindModifiers : quickInfo . kindModifiers ,
Original file line number Diff line number Diff line change @@ -79,10 +79,10 @@ namespace ts.JsDoc {
79
79
for ( const doc of jsDocs ) {
80
80
const tagsForDoc = ( doc as JSDoc ) . tags ;
81
81
if ( tagsForDoc ) {
82
- tags . push ( ...tagsForDoc . filter ( tag => tag . kind === SyntaxKind . JSDocTag ) . map ( jsDocTag => {
83
- return {
84
- name : jsDocTag . tagName . text ,
85
- text : jsDocTag . comment
82
+ tags . push ( ...tagsForDoc . filter ( tag => tag . kind === SyntaxKind . JSDocTag ) . map ( jsDocTag => {
83
+ return {
84
+ name : jsDocTag . tagName . text ,
85
+ text : jsDocTag . comment
86
86
} } ) ) ;
87
87
}
88
88
}
You can’t perform that action at this time.
0 commit comments