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 8121dd5 commit 4c11407Copy full SHA for 4c11407
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