mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-03-04 14:08:20 -06:00
Retain space after first word in multiline jsdoc
For words that were shorter than the jsdoc indent level, the space was omitted previously.
This commit is contained in:
parent
28cc938503
commit
8bd0a47c82
@ -6238,6 +6238,7 @@ namespace ts {
|
||||
}
|
||||
if (token() === SyntaxKind.NewLineTrivia) {
|
||||
state = JSDocState.BeginningOfLine;
|
||||
indent = 0;
|
||||
nextJSDocToken();
|
||||
}
|
||||
while (token() !== SyntaxKind.EndOfFileToken) {
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
// @Filename: Foo.js
|
||||
/////**
|
||||
//// * Represents a person
|
||||
//// * a b multiline test
|
||||
//// * @constructor
|
||||
//// * @param {string} name The name of the person
|
||||
//// * @param {number} age The age of the person
|
||||
@ -13,4 +14,4 @@
|
||||
////}
|
||||
////var p = new Pers/**/on();
|
||||
goTo.marker();
|
||||
verify.quickInfoIs("function Person(name: string, age: number): void", "Represents a person");
|
||||
verify.quickInfoIs("function Person(name: string, age: number): void", "Represents a person\na b multiline test");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user