-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Editorial: iterator object != iterator record #1022
Comments
I'd prefer the former, to avoid complicating the spec steps for |
I don't understand why changing |
I was thinking that it would be better to change |
|
Yeah, I copy pasted wrong the wrong word... That's what I get for commenting past my bed time... of 9pm. |
Okay, the sample code in |
@kmiller68: Are you still happy to make the change? |
It looks like PR #1969 fixed this. |
ForIn/OfHeadEvaluation
invokesEnumerateObjectProperties
and returns its result.But
EnumerateObjectProperties
returns an iterator object andForIn/OfHeadEvaluation
should be returning an iterator record (since aa16347, see issue #988 from @kmiller68).So either:
ForIn/OfHeadEvaluation
should be altered to construct an iterator record from the iterator object thatEnumerateObjectProperties
returns, orEnumerateObjectProperties
should be altered to return an iterator record.(I think.)
The text was updated successfully, but these errors were encountered: