PR feedback

This commit is contained in:
Sheetal Nandi 2019-08-12 16:06:09 -07:00
parent 8ac45805c0
commit 1a9198a53a
2 changed files with 3 additions and 7 deletions

View file

@ -218,12 +218,9 @@ namespace ts.tscWatch {
host,
[
...map(errors, hostOutputDiagnostic),
...map(
reportErrorSummary ?
[getErrorSummaryText(errors.length, host.newLine)] :
emptyArray,
hostOutputWatchDiagnostic
)
...reportErrorSummary ?
[hostOutputWatchDiagnostic(getErrorSummaryText(errors.length, host.newLine))] :
emptyArray
]
);
}

View file

@ -1,4 +1,3 @@
// import Animal from '../animals/index';
import { Dog, createDog } from '../animals/index';
export function createZoo(): Array<Dog> {