From e535e279f99a423aab44dca8eca46f46669d045f Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Wed, 19 Feb 2020 10:02:24 -0800 Subject: [PATCH] Fix single line writer --- src/compiler/utilities.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/utilities.ts b/src/compiler/utilities.ts index 5242711efea..4b700fb211d 100644 --- a/src/compiler/utilities.ts +++ b/src/compiler/utilities.ts @@ -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 = "",