Skip to content
Open
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: 2 additions & 2 deletions src/Compiler/TypedTree/TypedTreeOps.FreeVars.fs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ module internal FreeTypeVars =
acc

and accFreeInTyparConstraints opts cxs acc =
List.foldBack (accFreeInTyparConstraint opts) cxs acc
ListInline.foldBack (accFreeInTyparConstraint opts) cxs acc

and accFreeInTyparConstraint opts tpc acc =
match tpc with
Expand Down Expand Up @@ -375,7 +375,7 @@ module internal FreeTypeVars =
accFreeInTyparConstraints opts v emptyFreeTyvars

let accFreeInTypars opts tps acc =
List.foldBack (accFreeTyparRef opts) tps acc
ListInline.foldBack (accFreeTyparRef opts) tps acc

let rec addFreeInModuleTy (mtyp: ModuleOrNamespaceType) acc =
QueueList.foldBack
Expand Down
Loading