Skip to content

Commit 8d6b9cf

Browse files
committed
format
1 parent ce12e2c commit 8d6b9cf

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/Compiler/Service/TransparentCompiler.fs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -490,10 +490,11 @@ type internal TransparentCompiler
490490

491491
let applyCompilerOptions tcConfig =
492492
let fsiCompilerOptions = GetCoreFsiCompilerOptions tcConfig
493+
493494
try
494495
ParseCompilerOptions(ignore, fsiCompilerOptions, otherOptions)
495496
with
496-
| :? OperationCanceledException -> reraise()
497+
| :? OperationCanceledException -> reraise ()
497498
| exn -> errorRecovery exn range0
498499

499500
let closure =
@@ -909,8 +910,8 @@ type internal TransparentCompiler
909910
let sourceFilesNew =
910911
try
911912
ApplyCommandLineArgs(tcConfigB, projectSnapshot.SourceFileNames, commandLineArgs)
912-
with
913-
| :? OperationCanceledException -> reraise()
913+
with
914+
| :? OperationCanceledException -> reraise ()
914915
| exn ->
915916
errorRecovery exn range0
916917
projectSnapshot.SourceFileNames
@@ -965,8 +966,10 @@ type internal TransparentCompiler
965966
// for each cached project. So here we create a new tcGlobals, with the existing framework values
966967
// and updated realsig and langversion
967968
let tcGlobals =
968-
if tcGlobals.langVersion <> tcConfig.langVersion
969-
|| tcGlobals.realsig <> tcConfig.realsig then
969+
if
970+
tcGlobals.langVersion <> tcConfig.langVersion
971+
|| tcGlobals.realsig <> tcConfig.realsig
972+
then
970973
TcGlobals(
971974
tcGlobals.compilingFSharpCore,
972975
tcGlobals.ilg,

0 commit comments

Comments
 (0)