Comment #77 on issue 164 by brettz9: Wrong order in Object properties interation
http://code.google.com/p/v8/issues/detail?id=164

Sorry for the spam, but now it seems it is already back again... Anyways, the code in question is this:

let obj = { width: 3, length: 1.5, color: "orange" };
for (let [name, value] in Iterator(obj)) {
  document.write ("Name: " + name + ", Value: " + value + "<br>\n");
}

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to