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
Previously there were no checks against circular inheritance. So `a`
inherits `[b]` and `b` inherits `[a]` would cause stack overflow. Added
hashset to track elements already processed.
close#3
Problem
a.json
b.json
Results in infinite recursion.
Solution
Memoize to guard against recursive re-entrance.
The text was updated successfully, but these errors were encountered: