You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed jsDoc parser - no longer omits asterisks in the middle (if the line does not start with asterisk) and additional case for whitespaces being ignored
Copy file name to clipboardExpand all lines: tests/cases/fourslash/commentsLinePreservation.ts
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,7 @@
108
108
//// /**
109
109
//// * This is firstLine
110
110
//// This is second Line
111
+
//// [1]: third * line
111
112
//// @param param1 first Line text
112
113
//// second line text
113
114
//// */
@@ -145,6 +146,6 @@ verify.quickInfos({
145
146
l: ["function l(param1: string): void","This is firstLine\nThis is second Line"],
146
147
9: ["(parameter) param1: string","first Line text\nblank line that shouldnt be shown when starting this \nsecond time information about the param again"],
147
148
148
-
m: ["function m(param1: string): void","This is firstLine\nThis is second Line"],
149
+
m: ["function m(param1: string): void","This is firstLine\nThis is second Line\n[1]: third * line"],
149
150
10: ["(parameter) param1: string","first Line text\nsecond line text"]
0 commit comments