add comment

This commit is contained in:
Mohamed Hegazy 2015-02-06 14:22:32 -08:00
parent 68fd9f8d40
commit 0f3f2bcb56

View File

@ -672,6 +672,8 @@ module ts {
"getEmitOutput('" + fileName + "')",
() => {
var output = this.languageService.getEmitOutput(fileName);
// Shim the API changes for 1.5 release. This should be removed once
// TypeScript 1.5 has shipped.
(<any>output).emitOutputStatus = output.emitSkipped ? 1 : 0;
return output;
});