Yes space after multiline comments

This commit is contained in:
Yuval Greenfield
2017-09-26 12:09:58 -07:00
parent ff0961b85e
commit dcd2ddd0b7
15 changed files with 25 additions and 22 deletions

View File

@@ -274,6 +274,9 @@ namespace ts {
if (hasTrailingNewLine) {
writer.writeLine();
}
else if (_kind === SyntaxKind.MultiLineCommentTrivia) {
writer.write(" ");
}
}
function emitLeadingCommentsOfPosition(pos: number) {