Fix single line writer

This commit is contained in:
Andrew Branch 2020-02-19 10:02:24 -08:00
parent e3ef42743a
commit e535e279f9
No known key found for this signature in database
GPG key ID: 22CCA4B120C427D2

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 = "",