reverted a hard-coded '\r\n'

This commit is contained in:
Arthur Ozga 2015-08-03 13:54:49 -07:00
parent a759f9f0b5
commit f3395a9484

View file

@ -794,7 +794,7 @@ namespace ts {
if (!expression) {
let verboseDebugString = "";
if (verboseDebugInfo) {
verboseDebugString = getNewLineOrDefault() + "Verbose Debug Information: " + verboseDebugInfo();
verboseDebugString = "\r\nVerbose Debug Information: " + verboseDebugInfo();
}
throw new Error("Debug Failure. False expression: " + (message || "") + verboseDebugString);