We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a93ab61 commit 5b5d876Copy full SHA for 5b5d876
src/harness/rwcRunner.ts
@@ -84,9 +84,9 @@ module RWC {
84
}
85
86
// Load the files
87
- ts.forEach(fileNames, fileName => {
+ for (let fileName of fileNames) {
88
inputFiles.push(getHarnessCompilerInputUnit(fileName));
89
- });
+ }
90
91
// Add files to compilation
92
let isInInputList = (resolvedPath: string) => (inputFile: { unitName: string; content: string; }) => inputFile.unitName === resolvedPath;
0 commit comments