Bug 693124 - Remove invalid assert in Proxy::objectClassIs (r=waldo)

--HG--
extra : rebase_source : 9bf62c06fb92b13d6b855f6e0ca6a32efb302de1
This commit is contained in:
Luke Wagner 2011-10-11 08:14:56 -07:00
parent 084ef18d4e
commit 43de1f74ee

View File

@ -877,7 +877,6 @@ Proxy::typeOf(JSContext *cx, JSObject *proxy)
bool
Proxy::objectClassIs(JSObject *proxy, ESClassValue classValue, JSContext *cx)
{
JS_CHECK_RECURSION(cx, JS_NOT_REACHED("cannot reenter"));
AutoPendingProxyOperation pending(cx, proxy);
return GetProxyHandler(proxy)->objectClassIs(proxy, classValue, cx);
}