Back out changeset aff171a8c4f0 (bug 471214).

This commit is contained in:
Brendan Eich
2009-08-26 09:34:41 -07:00
parent 0c5ab6faae
commit 8746bd1aac
17 changed files with 188 additions and 528 deletions

View File

@@ -374,7 +374,7 @@ js_ValueToIterator(JSContext *cx, uintN flags, jsval *vp)
*vp = OBJECT_TO_JSVAL(iterobj);
} else {
atom = cx->runtime->atomState.iteratorAtom;
if (!js_GetMethod(cx, obj, ATOM_TO_JSID(atom), 0, vp))
if (!js_GetMethod(cx, obj, ATOM_TO_JSID(atom), false, vp))
goto bad;
if (JSVAL_IS_VOID(*vp)) {
default_iter: