From c6e69dd64ba26a29900e7f296d2df3cc8d22767d Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Mon, 22 May 2017 11:05:30 -0700 Subject: [PATCH] Fix missing initializers --- src/server/protocol.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/protocol.ts b/src/server/protocol.ts index d398555408b..8a75311c5d1 100644 --- a/src/server/protocol.ts +++ b/src/server/protocol.ts @@ -2416,8 +2416,8 @@ namespace ts.server.protocol { } export const enum NewLineKind { - Crlf, - Lf, + Crlf = "Crlf", + Lf = "Lf", } export const enum ScriptTarget {