feedback form pr

This commit is contained in:
Wesley Wigham 2015-10-20 15:14:28 -07:00
parent 7a4e995f01
commit 79cf984a83

View File

@ -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<string> = {
[QuotationMark.Double]: "\"",
[QuotationMark.Single]: "'",