Updates:
Status: PendingFurtherInfo
Cc: [email protected]
Comment #1 on issue 344 by [email protected]: Enumeration order does not
match WebKit nightlies
http://code.google.com/p/v8/issues/detail?id=344
In your example, there are properties with integer names. V8 has never
enumerated
these elements in insertion order. Elements are enumerated in numerical
order. For
your example, the only change after r1722 is that the elements are
enumerated first
instead of last (to match the JSC behavior for arrays).
Chrome 1.0.154.65:
two,four,six, (named properties in insertion order)
one,seven,three,five, (integer named properties in numerical order)
ToT:
one,seven,three,five, (integer named properties in numerical order)
two,four,six, (named properties in insertion order)
If it is worse to enumerate the elements first I can change that, but I
don't think
r1722 made anything worse than it was before?
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---