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 04d4c51 commit 9adbbe8Copy full SHA for 9adbbe8
src/fsharp/service/FSharpCheckerResults.fs
@@ -717,8 +717,9 @@ type internal TypeCheckInfo
717
| None | Some [] ->
718
let globalItems =
719
allSymbols()
720
- |> List.filter (fun x -> not x.Symbol.IsExplicitlySuppressed)
721
- |> List.filter (fun x ->
+ |> List.filter (fun x ->
+ not x.Symbol.IsExplicitlySuppressed &&
722
+
723
match x.Symbol with
724
| :? FSharpMemberOrFunctionOrValue as m when m.IsConstructor && filterCtors = ResolveTypeNamesToTypeRefs -> false
725
| _ -> true)
0 commit comments