Fix single line writer

This commit is contained in:
Andrew Branch
2020-02-19 10:02:24 -08:00
parent e3ef42743a
commit e535e279f9

View File

@@ -75,6 +75,7 @@ namespace ts {
// Completely ignore indentation for string writers. And map newlines to
// a single space.
writeLine: () => str += " ",
forceWriteLine: () => str += " ",
increaseIndent: noop,
decreaseIndent: noop,
clear: () => str = "",