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
Avoid recursion when transforming types used in Holes
Previously, the AvoidMap used in getPicklableHoleType would try to
replace recursive type parameters obtained via F-bounds) with LazyRefs,
which would expand to include another LazyRef, etc.
Now we explicitly guard against recursing over already visited TypeRefs,
instead replacing them with RecTypes (which are safe to pickle).
0 commit comments