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
fix: possible fix for occasional infinite recursion
Under some circumstances I've seen infinite recursion where I wouldn't
expect it, but removing this solves it. Not sure why, I haven't been
able to narrow it down to a small reproducible case.
fix: show type when value is within "any"
eg.
[]any{int64(1)}
Without this, numeric types would have the same representation even if
the types differed.
Also use `any` rather than `interface {}`.