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.
1 parent f9a295e commit d7be08bCopy full SHA for d7be08b
src/Compiler/Utilities/range.fs
@@ -262,7 +262,8 @@ module FileIndex =
262
let startupFileName = "startup"
263
let commandLineArgsFileName = "commandLineArgs"
264
265
- let mutable testSources: ConcurrentDictionary<string, string> = ConcurrentDictionary()
+ let mutable testSources: ConcurrentDictionary<string, string> =
266
+ ConcurrentDictionary()
267
268
[<RequireQualifiedAccess>]
269
module internal LineDirectives =
@@ -630,4 +631,5 @@ module Range =
630
631
with _ ->
632
mkRange file (mkPos 1 0) (mkPos 1 80)
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