more code review comments

This commit is contained in:
Mohamed Hegazy
2015-09-15 17:47:50 -07:00
parent a93ab613fe
commit 5b5d876cc2

View File

@@ -84,9 +84,9 @@ module RWC {
}
// Load the files
ts.forEach(fileNames, fileName => {
for (let fileName of fileNames) {
inputFiles.push(getHarnessCompilerInputUnit(fileName));
});
}
// Add files to compilation
let isInInputList = (resolvedPath: string) => (inputFile: { unitName: string; content: string; }) => inputFile.unitName === resolvedPath;