Skip to content

Commit 5b5d876

Browse files
committed
more code review comments
1 parent a93ab61 commit 5b5d876

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/harness/rwcRunner.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ module RWC {
8484
}
8585

8686
// Load the files
87-
ts.forEach(fileNames, fileName => {
87+
for (let fileName of fileNames) {
8888
inputFiles.push(getHarnessCompilerInputUnit(fileName));
89-
});
89+
}
9090

9191
// Add files to compilation
9292
let isInInputList = (resolvedPath: string) => (inputFile: { unitName: string; content: string; }) => inputFile.unitName === resolvedPath;

0 commit comments

Comments
 (0)