We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
concat
1 parent 97e90b5 commit 64e8221Copy full SHA for 64e8221
src/compiler/program.ts
@@ -766,7 +766,7 @@ namespace ts {
766
const fileProcessingDiagnosticsInFile = fileProcessingDiagnostics.getDiagnostics(sourceFile.fileName);
767
const programDiagnosticsInFile = programDiagnostics.getDiagnostics(sourceFile.fileName);
768
769
- return bindDiagnostics.concat(checkDiagnostics).concat(fileProcessingDiagnosticsInFile).concat(programDiagnosticsInFile);
+ return bindDiagnostics.concat(checkDiagnostics, fileProcessingDiagnosticsInFile, programDiagnosticsInFile);
770
});
771
}
772
0 commit comments