From 79cf984a83067e4e580927374e698c1b71793136 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Tue, 20 Oct 2015 15:14:28 -0700 Subject: [PATCH] feedback form pr --- src/compiler/utilities.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/utilities.ts b/src/compiler/utilities.ts index e3537ddffc9..cc7f1ce5d3e 100644 --- a/src/compiler/utilities.ts +++ b/src/compiler/utilities.ts @@ -1620,7 +1620,7 @@ namespace ts { "\u2028": "\\u2028", // lineSeparator "\u2029": "\\u2029", // paragraphSeparator "\u0085": "\\u0085" // nextLine - } + }; // This consists of the first 19 unprintable ASCII characters, canonical escapes, lineSeparator, // paragraphSeparator, and nextLine. The latter three are just desirable to suppress new lines in @@ -1650,7 +1650,7 @@ namespace ts { Double, Single } - + export var QuotationMarkLookup: Map = { [QuotationMark.Double]: "\"", [QuotationMark.Single]: "'",