Skip to content

Commit 2b850b6

Browse files
KevinRansombaronfel
authored andcommitted
Remove dead code (#7755)
1 parent b0a8397 commit 2b850b6

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/fsharp/CompileOps.fs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2009,7 +2009,6 @@ type CcuLoadFailureAction =
20092009
[<NoEquality; NoComparison>]
20102010
type TcConfigBuilder =
20112011
{ mutable primaryAssembly: PrimaryAssembly
2012-
mutable autoResolveOpenDirectivesToDlls: bool
20132012
mutable noFeedback: bool
20142013
mutable stackReserveSize: int32 option
20152014
mutable implicitIncludeDir: string (* normally "." *)
@@ -2176,7 +2175,6 @@ type TcConfigBuilder =
21762175
stackReserveSize = None
21772176
conditionalCompilationDefines = []
21782177
implicitIncludeDir = String.Empty
2179-
autoResolveOpenDirectivesToDlls = false
21802178
openDebugInformationForLaterStaticLinking = false
21812179
defaultFSharpBinariesDir = String.Empty
21822180
compilingFslib = false
@@ -2619,7 +2617,6 @@ type TcConfig private (data: TcConfigBuilder, validate: bool) =
26192617
let systemAssemblies = systemAssemblies
26202618

26212619
member x.primaryAssembly = data.primaryAssembly
2622-
member x.autoResolveOpenDirectivesToDlls = data.autoResolveOpenDirectivesToDlls
26232620
member x.noFeedback = data.noFeedback
26242621
member x.stackReserveSize = data.stackReserveSize
26252622
member x.implicitIncludeDir = data.implicitIncludeDir

src/fsharp/CompileOps.fsi

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ type VersionFlag =
250250
[<NoEquality; NoComparison>]
251251
type TcConfigBuilder =
252252
{ mutable primaryAssembly: PrimaryAssembly
253-
mutable autoResolveOpenDirectivesToDlls: bool
254253
mutable noFeedback: bool
255254
mutable stackReserveSize: int32 option
256255
mutable implicitIncludeDir: string
@@ -417,7 +416,6 @@ type TcConfigBuilder =
417416
// Immutable TcConfig
418417
type TcConfig =
419418
member primaryAssembly: PrimaryAssembly
420-
member autoResolveOpenDirectivesToDlls: bool
421419
member noFeedback: bool
422420
member stackReserveSize: int32 option
423421
member implicitIncludeDir: string

0 commit comments

Comments
 (0)