Skip to content

Commit 4431af5

Browse files
committed
reformat CompilerImports.fs
1 parent c62e89c commit 4431af5

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

src/Compiler/Driver/CompilerImports.fs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2156,8 +2156,15 @@ and [<Sealed>] TcImports
21562156
let runInParallel =
21572157
Environment.GetEnvironmentVariable("FCS_PARALLEL_PROJECTS_ANALYSIS")
21582158
|> bool.TryParse
2159-
|> function | true, runInParallel -> runInParallel | false, _ -> false
2160-
let runMethod = if runInParallel then NodeCode.Parallel else NodeCode.Sequential
2159+
|> function
2160+
| true, runInParallel -> runInParallel
2161+
| false, _ -> false
2162+
2163+
let runMethod =
2164+
if runInParallel then
2165+
NodeCode.Parallel
2166+
else
2167+
NodeCode.Sequential
21612168

21622169
let! results =
21632170
nms

0 commit comments

Comments
 (0)