Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix missing initializers
  • Loading branch information
Andy Hanson committed May 22, 2017
commit c6e69dd64ba26a29900e7f296d2df3cc8d22767d
4 changes: 2 additions & 2 deletions src/server/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2416,8 +2416,8 @@ namespace ts.server.protocol {
}

export const enum NewLineKind {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing the initialization here.

Crlf,
Lf,
Crlf = "Crlf",
Lf = "Lf",
}

export const enum ScriptTarget {
Expand Down