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
for nestedType in info.ProvidedType.PApplyArray((fun sty -> sty.GetNestedTypes()|> Array.filter (fun t -> t.IsPublic || t.IsNestedPublic)),"GetNestedTypes", m)do
2180
+
for nestedType in info.ProvidedType.PApplyFilteredArray((fun sty -> sty.GetNestedTypes()),(fun t -> t.IsPublic || t.IsNestedPublic),"GetNestedTypes", m)do
2181
2181
yield nestedType.PUntaint((fun t -> t.IsClass, t.Name), m)
2182
2182
]
2183
2183
|> List.sortBy snd
@@ -2930,7 +2930,7 @@ let minimalStringsOfTwoTypes denv ty1 ty2 =
2930
2930
letdenv= denv.SetOpenPaths []
2931
2931
letdenv={ denv with includeStaticParametersInTypeNames=true}
2932
2932
letmakeName t =
2933
-
letassemblyName= PrintTypes.layoutAssemblyName denv t |>functionNull | NonNull ""->""|NonNull name ->sprintf " (%s)" name
2933
+
letassemblyName= PrintTypes.layoutAssemblyName denv t |>function|""->""| name ->$" (%s{name})"
0 commit comments