Skip to content

Commit 8b21f37

Browse files
committed
rebase fixes
1 parent ebd607b commit 8b21f37

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ReSharper.FSharp/src/FSharp.Common/src/Shim/TypeProviders/TypeProvidersManager.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
open System
44
open System.Collections.Concurrent
5+
open System.Collections.Generic
56
open System.Threading
67
open FSharp.Compiler.ExtensionTyping
78
open FSharp.Core.CompilerServices

rider-fsharp/src/test/kotlin/Extensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ fun withSettings(project: Project, settings: List<String>, function: () -> Unit)
2626
}
2727
}
2828

29-
fun BaseTestWithSolution.withTypeProviders(function: () -> Unit) {
29+
fun BaseTestWithSolution.withTypeProviders(shadowCopyMode: Boolean, function: () -> Unit) {
3030
val settings = mutableListOf("FSharp/FSharpOptions/FSharpExperimentalFeatures/OutOfProcessTypeProviders/@EntryValue")
3131
if (shadowCopyMode) settings.add("FSharp/FSharpOptions/FSharpExperimentalFeatures/HostTypeProvidersFromTempFolder/@EntryValue")
32-
withSettings(project, settings, function) {
32+
withSettings(project, settings) {
3333
try {
3434
function()
3535
} finally {

0 commit comments

Comments
 (0)