Remove JSObject::capacity and JSObject::initializedLength, split JSObject::slots into slots and elements, bug 693221.

This commit is contained in:
Brian Hackett
2011-10-10 11:41:03 -07:00
parent 43a6a0454e
commit 2e9764e92f
46 changed files with 1167 additions and 1042 deletions

View File

@@ -418,7 +418,7 @@ NewIteratorObject(JSContext *cx, uintN flags)
return NULL;
obj->init(cx, type, NULL, NULL, false);
obj->setMap(emptyEnumeratorShape);
obj->setInitialPropertyInfallible(emptyEnumeratorShape);
return obj;
}