File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
src/fsharp/FSharp.Compiler.Service Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ open FSharp.Compiler.AbstractIL
15
15
open FSharp.Compiler .AbstractIL .IL
16
16
open FSharp.Compiler .AbstractIL .ILBinaryReader
17
17
open FSharp.Compiler .CodeAnalysis
18
-
19
18
open FSharp.Compiler .CheckExpressions
20
19
open FSharp.Compiler .CheckDeclarations
21
20
open FSharp.Compiler .CompilerConfig
@@ -123,7 +122,9 @@ type internal CompilerStateCache(projectOptions: FSharpProjectOptions) as this =
123
122
member x.Reset () =
124
123
lock lockObj ( fun () -> compilerStateLazy <- lazy initializeCompilerState())
125
124
126
- type InteractiveChecker internal ( compilerStateCache ) =
125
+ [<AutoOpen>]
126
+ module internal ParseAndCheck =
127
+
127
128
let userOpName = " Unknown"
128
129
let suggestNamesForErrors = true
129
130
@@ -224,6 +225,9 @@ type InteractiveChecker internal (compilerStateCache) =
224
225
errors |> Array.iter ( Array.sortInPlaceBy ( fun x -> x.StartLine, x.StartColumn))
225
226
errors |> Array.concat
226
227
228
+
229
+ type InteractiveChecker internal ( compilerStateCache ) =
230
+
227
231
static member Create ( projectOptions : FSharpProjectOptions ) =
228
232
InteractiveChecker( CompilerStateCache( projectOptions))
229
233
You can’t perform that action at this time.
0 commit comments