Merge remote-tracking branch 'origin/master' into pathMappingModuleResolution

This commit is contained in:
Vladimir Matveev 2016-01-25 11:28:02 -08:00
commit 2b2b150dc7

View file

@ -7179,8 +7179,7 @@ namespace ts {
const indentationStr = sourceFile.text.substr(lineStart, posLineAndChar.character);
// TODO: call a helper method instead once PR #4133 gets merged in.
const newLine = host.getNewLine ? host.getNewLine() : "\r\n";
const newLine = getNewLineOrDefaultFromHost(host);
let docParams = "";
for (let i = 0, numParams = parameters.length; i < numParams; i++) {