Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Components/InfoPanel.fs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ module InfoPanel =
let types =
res.DeclaredTypes
|> List.filter (not << String.IsNullOrWhiteSpace)
// Compiler-generated names start with '<' (e.g. <>c__DisplayClass, <MethodName>d__0)
// or contain '@' (F# closure types like MatchClosure@123).
// These are never useful to show in the Info Panel.
|> List.filter (fun t -> not (t.StartsWith("<") || t.Contains("@")))
|> List.distinct
|> fsharpBlock

Expand Down
Loading