Skip to content

Commit e47198a

Browse files
committed
Remove redundant let bindings in class
1 parent 11b9207 commit e47198a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

FsAutoComplete/CompilerServiceInterface.fs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ open System.IO
55
open Microsoft.FSharp.Compiler
66
open Microsoft.FSharp.Compiler.SourceCodeServices
77

8-
type ParseAndCheckResults(parse: FSharpParseFileResults,
9-
check: FSharpCheckFileResults,
10-
version: int) =
11-
let parseResults = parse
12-
let checkResults = check
13-
let _version = version
8+
type ParseAndCheckResults(parseResults: FSharpParseFileResults,
9+
checkResults: FSharpCheckFileResults,
10+
_version: int) =
1411

1512
member x.TryGetMethodOverrides (lines: string[]) (line: int) (col: int) =
1613
// Find the starting point, ideally right after the first '('

0 commit comments

Comments
 (0)