You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vsintegration/src/FSharp.LanguageService/BackgroundRequests.fs
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -191,12 +191,11 @@ type internal FSharpLanguageServiceBackgroundRequests_DEPRECATED
191
191
192
192
// Type-checking
193
193
lettypedResults,aborted =
194
-
match interactiveChecker.CheckFileInProjectAllowingStaleCachedResults(parseResults,req.FileName,req.Timestamp,req.Text,checkOptions,req.Snapshot)|> Async.RunSynchronously with
195
-
| None -> None,false
196
-
| Some FSharpCheckFileAnswer.Aborted ->
194
+
match interactiveChecker.CheckFileInProject(parseResults,req.FileName,req.Timestamp,req.Text,checkOptions,req.Snapshot)|> Async.RunSynchronously with
195
+
| FSharpCheckFileAnswer.Aborted ->
197
196
// isResultObsolete returned true during the type check.
198
197
None,true
199
-
|Some (FSharpCheckFileAnswer.Succeeded results)-> Some results,false
198
+
| FSharpCheckFileAnswer.Succeeded results -> Some results,false
0 commit comments