Skip to content

Commit 66c762c

Browse files
develarauduchinok
authored andcommitted
IJPL-218803 IJ-MR-179029 IJ-MR-175479 IJ-MR-184126 don't export execution from lang to avoid excessive and incorrect deps on debugger
GitOrigin-RevId: f27713c975606c010f230539bc7ffe7f9c6c815c
1 parent b25b07d commit 66c762c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiHost.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class FsiHost(val project: Project, val coroutineScope: CoroutineScope) : Lifeti
240240
return session
241241
}
242242

243-
suspend fun createConsoleRunner(
243+
internal suspend fun createConsoleRunner(
244244
title: String,
245245
project: Project,
246246
executor: Executor,

rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/consoleRunners/FsiDefaultConsoleRunner.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import com.jetbrains.rider.plugins.fsharp.FSharpBundle
99
import com.jetbrains.rider.plugins.fsharp.services.fsi.CommandHistoryAction
1010
import com.jetbrains.rider.plugins.fsharp.services.fsi.FsiHost
1111

12-
class FsiDefaultConsoleRunner(commandLine: GeneralCommandLine, fsiHost: FsiHost) :
12+
internal class FsiDefaultConsoleRunner(commandLine: GeneralCommandLine, fsiHost: FsiHost) :
1313
FsiConsoleRunnerBase(fsiHost.project, fsiTitle, commandLine) {
1414

1515
companion object {

rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/consoleRunners/FsiScriptProfileConsoleRunner.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import com.intellij.openapi.project.Project
88
import com.intellij.openapi.util.NlsSafe
99
import com.jetbrains.rider.plugins.fsharp.services.fsi.CommandHistoryAction
1010

11-
class FsiScriptProfileConsoleRunner(
11+
internal class FsiScriptProfileConsoleRunner(
1212
@NlsSafe consoleName: String,
1313
project: Project,
1414
private val executor: Executor,

0 commit comments

Comments
 (0)