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 Feb 22, 2018. It is now read-only.
the problem is due to iterator being defined as a field (on the instance) as opposed to a getter/method (on the proto). We get a type error that iterator is an undefined property on defineExtensionMembers.
Returns a new Iterator that allows iterating the elements of this Iterable.
[...]
Each time iterator is read, it returns a new iterator, which can be used to iterate through all the elements again. The iterators of the same iterable can be stepped through independently, but should return the same elements in the same order, as long as the underlying collection isn't changed.
The following code triggers a runtime error in DDC:
the problem is due to iterator being defined as a field (on the instance) as opposed to a getter/method (on the proto). We get a type error that
iterator
is an undefined property ondefineExtensionMembers
.The text was updated successfully, but these errors were encountered: