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
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
The problem: if a class implements it's own forEach, but that forEach depends on some class property normally initialized in its constructor, then this iteration over the destination's keys will result in an error.
Real example: The Google Closure goog.struct.Map. This implements its own forEach, but it that forEach depends on the keys_ property to have been initialized in the constructor. Other collections in goog.struct probably have the same problem.