Skip to content

Commit d7be08b

Browse files
committed
Fantomas 2
1 parent f9a295e commit d7be08b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Compiler/Utilities/range.fs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,8 @@ module FileIndex =
262262
let startupFileName = "startup"
263263
let commandLineArgsFileName = "commandLineArgs"
264264

265-
let mutable testSources: ConcurrentDictionary<string, string> = ConcurrentDictionary()
265+
let mutable testSources: ConcurrentDictionary<string, string> =
266+
ConcurrentDictionary()
266267

267268
[<RequireQualifiedAccess>]
268269
module internal LineDirectives =
@@ -630,4 +631,5 @@ module Range =
630631
with _ ->
631632
mkRange file (mkPos 1 0) (mkPos 1 80)
632633

633-
let internal setTestSource path (source: string) = testSources.GetOrAdd(path, source) |> ignore
634+
let internal setTestSource path (source: string) =
635+
testSources.GetOrAdd(path, source) |> ignore

0 commit comments

Comments
 (0)