Bug 854503 - Rename JS unwrapping functions. r=bholley

This commit is contained in:
Jacek Szpot
2013-04-11 11:50:18 -07:00
parent dfbad4695c
commit cb202e52fa
45 changed files with 135 additions and 136 deletions

View File

@@ -339,7 +339,7 @@ JS_FRIEND_API(JSBool)
JS_NondeterministicGetWeakMapKeys(JSContext *cx, JSObject *objArg, JSObject **ret)
{
RootedObject obj(cx, objArg);
obj = UnwrapObject(obj);
obj = UncheckedUnwrap(obj);
if (!obj || !obj->isWeakMap()) {
*ret = NULL;
return true;