We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b9207 commit e47198aCopy full SHA for e47198a
FsAutoComplete/CompilerServiceInterface.fs
@@ -5,12 +5,9 @@ open System.IO
5
open Microsoft.FSharp.Compiler
6
open Microsoft.FSharp.Compiler.SourceCodeServices
7
8
-type ParseAndCheckResults(parse: FSharpParseFileResults,
9
- check: FSharpCheckFileResults,
10
- version: int) =
11
- let parseResults = parse
12
- let checkResults = check
13
- let _version = version
+type ParseAndCheckResults(parseResults: FSharpParseFileResults,
+ checkResults: FSharpCheckFileResults,
+ _version: int) =
14
15
member x.TryGetMethodOverrides (lines: string[]) (line: int) (col: int) =
16
// Find the starting point, ideally right after the first '('
0 commit comments