File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ namespace FSharp.Compiler.SourceCodeServices
44
55open System
66open System.Diagnostics
7- open System.Collections .Generic
87open FSharp.Compiler
98open FSharp.Compiler .Ast
109open FSharp.Compiler .Range
@@ -102,7 +101,7 @@ module internal CodeGenerationUtils =
102101
103102/// Capture information about an interface in ASTs
104103[<RequireQualifiedAccess; NoEquality; NoComparison>]
105- type internal InterfaceData =
104+ type InterfaceData =
106105 | Interface of SynType * SynMemberDefns option
107106 | ObjExpr of SynType * SynBinding list
108107 member x.Range =
@@ -168,7 +167,7 @@ type internal InterfaceData =
168167 | _ ->
169168 [||]
170169
171- module internal InterfaceStubGenerator =
170+ module InterfaceStubGenerator =
172171 [<NoComparison>]
173172 type internal Context =
174173 {
Original file line number Diff line number Diff line change 22
33namespace FSharp.Compiler.SourceCodeServices
44
5- open System
6- open System.Diagnostics
7- open System.Collections .Generic
8- open FSharp.Compiler
95open FSharp.Compiler .Ast
106open FSharp.Compiler .Range
117open FSharp.Compiler .SourceCodeServices
12- open FSharp.Compiler .AbstractIL .Internal .Library
138
149#if ! FX_ NO_ INDENTED_ TEXT_ WRITER
1510/// Capture information about an interface in ASTs
1611[<RequireQualifiedAccess; NoEquality; NoComparison>]
17- type internal InterfaceData =
12+ type InterfaceData =
1813 | Interface of SynType * SynMemberDefns option
1914 | ObjExpr of SynType * SynBinding list
2015 member Range : range
2116 member TypeParameters : string []
2217
23- module internal InterfaceStubGenerator =
18+ module InterfaceStubGenerator =
2419
2520 /// Get members in the decreasing order of inheritance chain
2621 val getInterfaceMembers : FSharpEntity -> seq < FSharpMemberOrFunctionOrValue * seq < FSharpGenericParameter * FSharpType >>
You can’t perform that action at this time.
0 commit comments