#include "js/Proxy.h"
#include "mozilla/Attributes.h"
#include <string.h>
#include "jsapi.h"
#include "js/PropertySpec.h"
#include "js/StableStringChars.h"
#include "js/Wrapper.h"
#include "proxy/DeadObjectProxy.h"
#include "proxy/ScriptedProxyHandler.h"
#include "vm/JSContext.h"
#include "vm/JSFunction.h"
#include "vm/JSObject.h"
#include "vm/WrapperObject.h"
#include "gc/Marking-inl.h"
#include "vm/JSAtom-inl.h"
#include "vm/JSObject-inl.h"
#include "vm/NativeObject-inl.h"
using namespace js;
void js::AutoEnterPolicy::reportErrorIfExceptionIsNotPending(JSContext* cx,
HandleId id) {
if (JS_IsExceptionPending(cx)) {
return;
}
if (JSID_IS_VOID(id)) {
ReportAccessDenied(cx);
} else {
Throw(cx, id, JSMSG_PROPERTY_ACCESS_DENIED);
}
}
#ifdef DEBUG
void js::AutoEnterPolicy::recordEnter(JSContext* cx, HandleObject proxy,
HandleId id, Action act) {
if (allowed()) {
context = cx;
enteredProxy.emplace(proxy);
enteredId.emplace(id);
enteredAction = act;
prev = cx->enteredPolicy;
cx->enteredPolicy = this;
}
}
void js::AutoEnterPolicy::recordLeave() {
if (enteredProxy) {
MOZ_ASSERT(context->enteredPolicy == this);
context->enteredPolicy = prev;
}
}
JS_FRIEND_API void js::assertEnteredPolicy(JSContext* cx, JSObject* proxy,
jsid id,
BaseProxyHandler::Action act) {
MOZ_ASSERT(proxy->is<ProxyObject>());
MOZ_ASSERT(cx->enteredPolicy);
MOZ_ASSERT(cx->enteredPolicy->enteredProxy->get() == proxy);
MOZ_ASSERT(cx->enteredPolicy->enteredId->get() == id);
MOZ_ASSERT(cx->enteredPolicy->enteredAction & act);
}
#endif
bool Proxy::getOwnPropertyDescriptor(JSContext* cx, HandleObject proxy,
HandleId id,
MutableHandle<PropertyDescriptor> desc) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
desc.object().set(
nullptr); AutoEnterPolicy policy(cx, handler, proxy, id,
BaseProxyHandler::GET_PROPERTY_DESCRIPTOR, true);
if (!policy.allowed()) {
return policy.returnValue();
}
return handler->getOwnPropertyDescriptor(cx, proxy, id, desc);
}
bool Proxy::defineProperty(JSContext* cx, HandleObject proxy, HandleId id,
Handle<PropertyDescriptor> desc,
ObjectOpResult& result) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, id, BaseProxyHandler::SET, true);
if (!policy.allowed()) {
if (!policy.returnValue()) {
return false;
}
return result.succeed();
}
return proxy->as<ProxyObject>().handler()->defineProperty(cx, proxy, id, desc,
result);
}
bool Proxy::ownPropertyKeys(JSContext* cx, HandleObject proxy,
AutoIdVector& props) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::ENUMERATE, true);
if (!policy.allowed()) {
return policy.returnValue();
}
return proxy->as<ProxyObject>().handler()->ownPropertyKeys(cx, proxy, props);
}
bool Proxy::delete_(JSContext* cx, HandleObject proxy, HandleId id,
ObjectOpResult& result) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, id, BaseProxyHandler::SET, true);
if (!policy.allowed()) {
bool ok = policy.returnValue();
if (ok) {
result.succeed();
}
return ok;
}
return proxy->as<ProxyObject>().handler()->delete_(cx, proxy, id, result);
}
JS_FRIEND_API bool js::AppendUnique(JSContext* cx, AutoIdVector& base,
AutoIdVector& others) {
AutoIdVector uniqueOthers(cx);
if (!uniqueOthers.reserve(others.length())) {
return false;
}
for (size_t i = 0; i < others.length(); ++i) {
bool unique = true;
for (size_t j = 0; j < base.length(); ++j) {
if (others[i].get() == base[j]) {
unique = false;
break;
}
}
if (unique) {
if (!uniqueOthers.append(others[i])) {
return false;
}
}
}
return base.appendAll(uniqueOthers);
}
bool Proxy::getPrototype(JSContext* cx, HandleObject proxy,
MutableHandleObject proto) {
MOZ_ASSERT(proxy->hasDynamicPrototype());
if (!CheckRecursionLimit(cx)) {
return false;
}
return proxy->as<ProxyObject>().handler()->getPrototype(cx, proxy, proto);
}
bool Proxy::setPrototype(JSContext* cx, HandleObject proxy, HandleObject proto,
ObjectOpResult& result) {
MOZ_ASSERT(proxy->hasDynamicPrototype());
if (!CheckRecursionLimit(cx)) {
return false;
}
return proxy->as<ProxyObject>().handler()->setPrototype(cx, proxy, proto,
result);
}
bool Proxy::getPrototypeIfOrdinary(JSContext* cx, HandleObject proxy,
bool* isOrdinary,
MutableHandleObject proto) {
if (!CheckRecursionLimit(cx)) {
return false;
}
return proxy->as<ProxyObject>().handler()->getPrototypeIfOrdinary(
cx, proxy, isOrdinary, proto);
}
bool Proxy::setImmutablePrototype(JSContext* cx, HandleObject proxy,
bool* succeeded) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
return handler->setImmutablePrototype(cx, proxy, succeeded);
}
bool Proxy::preventExtensions(JSContext* cx, HandleObject proxy,
ObjectOpResult& result) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
return handler->preventExtensions(cx, proxy, result);
}
bool Proxy::isExtensible(JSContext* cx, HandleObject proxy, bool* extensible) {
if (!CheckRecursionLimit(cx)) {
return false;
}
return proxy->as<ProxyObject>().handler()->isExtensible(cx, proxy,
extensible);
}
bool Proxy::has(JSContext* cx, HandleObject proxy, HandleId id, bool* bp) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
*bp = false; AutoEnterPolicy policy(cx, handler, proxy, id, BaseProxyHandler::GET, true);
if (!policy.allowed()) {
return policy.returnValue();
}
if (handler->hasPrototype()) {
if (!handler->hasOwn(cx, proxy, id, bp)) {
return false;
}
if (*bp) {
return true;
}
RootedObject proto(cx);
if (!GetPrototype(cx, proxy, &proto)) {
return false;
}
if (!proto) {
return true;
}
return HasProperty(cx, proto, id, bp);
}
return handler->has(cx, proxy, id, bp);
}
bool js::ProxyHas(JSContext* cx, HandleObject proxy, HandleValue idVal,
MutableHandleValue result) {
RootedId id(cx);
if (!ValueToId<CanGC>(cx, idVal, &id)) {
return false;
}
bool has;
if (!Proxy::has(cx, proxy, id, &has)) {
return false;
}
result.setBoolean(has);
return true;
}
bool Proxy::hasOwn(JSContext* cx, HandleObject proxy, HandleId id, bool* bp) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
*bp = false; AutoEnterPolicy policy(cx, handler, proxy, id, BaseProxyHandler::GET, true);
if (!policy.allowed()) {
return policy.returnValue();
}
return handler->hasOwn(cx, proxy, id, bp);
}
bool js::ProxyHasOwn(JSContext* cx, HandleObject proxy, HandleValue idVal,
MutableHandleValue result) {
RootedId id(cx);
if (!ValueToId<CanGC>(cx, idVal, &id)) {
return false;
}
bool hasOwn;
if (!Proxy::hasOwn(cx, proxy, id, &hasOwn)) {
return false;
}
result.setBoolean(hasOwn);
return true;
}
static MOZ_ALWAYS_INLINE Value ValueToWindowProxyIfWindow(const Value& v,
JSObject* proxy) {
if (v.isObject() && v != ObjectValue(*proxy)) {
return ObjectValue(*ToWindowProxyIfWindow(&v.toObject()));
}
return v;
}
MOZ_ALWAYS_INLINE bool Proxy::getInternal(JSContext* cx, HandleObject proxy,
HandleValue receiver, HandleId id,
MutableHandleValue vp) {
MOZ_ASSERT_IF(receiver.isObject(), !IsWindow(&receiver.toObject()));
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
vp.setUndefined(); AutoEnterPolicy policy(cx, handler, proxy, id, BaseProxyHandler::GET, true);
if (!policy.allowed()) {
return policy.returnValue();
}
if (handler->hasPrototype()) {
bool own;
if (!handler->hasOwn(cx, proxy, id, &own)) {
return false;
}
if (!own) {
RootedObject proto(cx);
if (!GetPrototype(cx, proxy, &proto)) {
return false;
}
if (!proto) {
return true;
}
return GetProperty(cx, proto, receiver, id, vp);
}
}
return handler->get(cx, proxy, receiver, id, vp);
}
bool Proxy::get(JSContext* cx, HandleObject proxy, HandleValue receiver_,
HandleId id, MutableHandleValue vp) {
RootedValue receiver(cx, ValueToWindowProxyIfWindow(receiver_, proxy));
return getInternal(cx, proxy, receiver, id, vp);
}
bool js::ProxyGetProperty(JSContext* cx, HandleObject proxy, HandleId id,
MutableHandleValue vp) {
RootedValue receiver(cx, ObjectValue(*proxy));
return Proxy::getInternal(cx, proxy, receiver, id, vp);
}
bool js::ProxyGetPropertyByValue(JSContext* cx, HandleObject proxy,
HandleValue idVal, MutableHandleValue vp) {
RootedId id(cx);
if (!ValueToId<CanGC>(cx, idVal, &id)) {
return false;
}
RootedValue receiver(cx, ObjectValue(*proxy));
return Proxy::getInternal(cx, proxy, receiver, id, vp);
}
MOZ_ALWAYS_INLINE bool Proxy::setInternal(JSContext* cx, HandleObject proxy,
HandleId id, HandleValue v,
HandleValue receiver,
ObjectOpResult& result) {
MOZ_ASSERT_IF(receiver.isObject(), !IsWindow(&receiver.toObject()));
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, id, BaseProxyHandler::SET, true);
if (!policy.allowed()) {
if (!policy.returnValue()) {
return false;
}
return result.succeed();
}
if (handler->hasPrototype()) {
return handler->BaseProxyHandler::set(cx, proxy, id, v, receiver, result);
}
return handler->set(cx, proxy, id, v, receiver, result);
}
bool Proxy::set(JSContext* cx, HandleObject proxy, HandleId id, HandleValue v,
HandleValue receiver_, ObjectOpResult& result) {
RootedValue receiver(cx, ValueToWindowProxyIfWindow(receiver_, proxy));
return setInternal(cx, proxy, id, v, receiver, result);
}
bool js::ProxySetProperty(JSContext* cx, HandleObject proxy, HandleId id,
HandleValue val, bool strict) {
ObjectOpResult result;
RootedValue receiver(cx, ObjectValue(*proxy));
if (!Proxy::setInternal(cx, proxy, id, val, receiver, result)) {
return false;
}
return result.checkStrictErrorOrWarning(cx, proxy, id, strict);
}
bool js::ProxySetPropertyByValue(JSContext* cx, HandleObject proxy,
HandleValue idVal, HandleValue val,
bool strict) {
RootedId id(cx);
if (!ValueToId<CanGC>(cx, idVal, &id)) {
return false;
}
ObjectOpResult result;
RootedValue receiver(cx, ObjectValue(*proxy));
if (!Proxy::setInternal(cx, proxy, id, val, receiver, result)) {
return false;
}
return result.checkStrictErrorOrWarning(cx, proxy, id, strict);
}
bool Proxy::getOwnEnumerablePropertyKeys(JSContext* cx, HandleObject proxy,
AutoIdVector& props) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::ENUMERATE, true);
if (!policy.allowed()) {
return policy.returnValue();
}
return handler->getOwnEnumerablePropertyKeys(cx, proxy, props);
}
bool Proxy::enumerate(JSContext* cx, HandleObject proxy, AutoIdVector& props) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
if (handler->hasPrototype()) {
if (!Proxy::getOwnEnumerablePropertyKeys(cx, proxy, props)) {
return false;
}
RootedObject proto(cx);
if (!GetPrototype(cx, proxy, &proto)) {
return false;
}
if (!proto) {
return true;
}
cx->check(proxy, proto);
AutoIdVector protoProps(cx);
if (!GetPropertyKeys(cx, proto, 0, &protoProps)) {
return false;
}
return AppendUnique(cx, props, protoProps);
}
AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::ENUMERATE, true);
if (!policy.allowed()) {
MOZ_ASSERT(props.empty());
return policy.returnValue();
}
return handler->enumerate(cx, proxy, props);
}
bool Proxy::call(JSContext* cx, HandleObject proxy, const CallArgs& args) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::CALL, true);
if (!policy.allowed()) {
args.rval().setUndefined();
return policy.returnValue();
}
return handler->call(cx, proxy, args);
}
bool Proxy::construct(JSContext* cx, HandleObject proxy, const CallArgs& args) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::CALL, true);
if (!policy.allowed()) {
args.rval().setUndefined();
return policy.returnValue();
}
return handler->construct(cx, proxy, args);
}
bool Proxy::nativeCall(JSContext* cx, IsAcceptableThis test, NativeImpl impl,
const CallArgs& args) {
if (!CheckRecursionLimit(cx)) {
return false;
}
RootedObject proxy(cx, &args.thisv().toObject());
return proxy->as<ProxyObject>().handler()->nativeCall(cx, test, impl, args);
}
bool Proxy::hasInstance(JSContext* cx, HandleObject proxy, MutableHandleValue v,
bool* bp) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
*bp = false; AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::GET, true);
if (!policy.allowed()) {
return policy.returnValue();
}
return proxy->as<ProxyObject>().handler()->hasInstance(cx, proxy, v, bp);
}
bool Proxy::getBuiltinClass(JSContext* cx, HandleObject proxy, ESClass* cls) {
if (!CheckRecursionLimit(cx)) {
return false;
}
return proxy->as<ProxyObject>().handler()->getBuiltinClass(cx, proxy, cls);
}
bool Proxy::isArray(JSContext* cx, HandleObject proxy,
JS::IsArrayAnswer* answer) {
if (!CheckRecursionLimit(cx)) {
return false;
}
return proxy->as<ProxyObject>().handler()->isArray(cx, proxy, answer);
}
const char* Proxy::className(JSContext* cx, HandleObject proxy) {
int stackDummy;
if (!JS_CHECK_STACK_SIZE(GetNativeStackLimit(cx), &stackDummy)) {
return "too much recursion";
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::GET, false);
if (!policy.allowed()) {
return handler->BaseProxyHandler::className(cx, proxy);
}
return handler->className(cx, proxy);
}
JSString* Proxy::fun_toString(JSContext* cx, HandleObject proxy,
bool isToSource) {
if (!CheckRecursionLimit(cx)) {
return nullptr;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::GET, false);
if (!policy.allowed()) {
return handler->BaseProxyHandler::fun_toString(cx, proxy, isToSource);
}
return handler->fun_toString(cx, proxy, isToSource);
}
RegExpShared* Proxy::regexp_toShared(JSContext* cx, HandleObject proxy) {
if (!CheckRecursionLimit(cx)) {
return nullptr;
}
return proxy->as<ProxyObject>().handler()->regexp_toShared(cx, proxy);
}
bool Proxy::boxedValue_unbox(JSContext* cx, HandleObject proxy,
MutableHandleValue vp) {
if (!CheckRecursionLimit(cx)) {
return false;
}
return proxy->as<ProxyObject>().handler()->boxedValue_unbox(cx, proxy, vp);
}
JSObject* const TaggedProto::LazyProto = reinterpret_cast<JSObject*>(0x1);
bool Proxy::getElements(JSContext* cx, HandleObject proxy, uint32_t begin,
uint32_t end, ElementAdder* adder) {
if (!CheckRecursionLimit(cx)) {
return false;
}
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
AutoEnterPolicy policy(cx, handler, proxy, JSID_VOIDHANDLE,
BaseProxyHandler::GET,
true);
if (!policy.allowed()) {
if (policy.returnValue()) {
MOZ_ASSERT(!cx->isExceptionPending());
return js::GetElementsWithAdder(cx, proxy, proxy, begin, end, adder);
}
return false;
}
return handler->getElements(cx, proxy, begin, end, adder);
}
void Proxy::trace(JSTracer* trc, JSObject* proxy) {
const BaseProxyHandler* handler = proxy->as<ProxyObject>().handler();
handler->trace(trc, proxy);
}
static bool proxy_LookupProperty(JSContext* cx, HandleObject obj, HandleId id,
MutableHandleObject objp,
MutableHandle<JS::PropertyResult> propp) {
bool found;
if (!Proxy::has(cx, obj, id, &found)) {
return false;
}
if (found) {
propp.setNonNativeProperty();
objp.set(obj);
} else {
propp.setNotFound();
objp.set(nullptr);
}
return true;
}
static bool proxy_DeleteProperty(JSContext* cx, HandleObject obj, HandleId id,
ObjectOpResult& result) {
if (!Proxy::delete_(cx, obj, id, result)) {
return false;
}
return SuppressDeletedProperty(cx, obj, id); }
void ProxyObject::traceEdgeToTarget(JSTracer* trc, ProxyObject* obj) {
TraceCrossCompartmentEdge(trc, obj, obj->slotOfPrivate(), "proxy target");
}
void ProxyObject::trace(JSTracer* trc, JSObject* obj) {
ProxyObject* proxy = &obj->as<ProxyObject>();
TraceEdge(trc, proxy->shapePtr(), "ProxyObject_shape");
#ifdef DEBUG
if (TlsContext.get()->isStrictProxyCheckingEnabled() &&
proxy->is<WrapperObject>()) {
JSObject* referent = MaybeForwarded(proxy->target());
if (referent->compartment() != proxy->compartment()) {
Value key = ObjectValue(*referent);
WrapperMap::Ptr p = proxy->compartment()->lookupWrapper(key);
MOZ_ASSERT(p);
MOZ_ASSERT(*p->value().unsafeGet() == ObjectValue(*proxy));
}
}
#endif
traceEdgeToTarget(trc, proxy);
size_t nreserved = proxy->numReservedSlots();
for (size_t i = 0; i < nreserved; i++) {
if (proxy->is<CrossCompartmentWrapperObject>() &&
i == CrossCompartmentWrapperObject::GrayLinkReservedSlot) {
continue;
}
TraceEdge(trc, proxy->reservedSlotPtr(i), "proxy_reserved");
}
Proxy::trace(trc, obj);
}
static void proxy_Finalize(FreeOp* fop, JSObject* obj) {
JS::AutoSuppressGCAnalysis nogc;
MOZ_ASSERT(obj->is<ProxyObject>());
obj->as<ProxyObject>().handler()->finalize(fop, obj);
if (!obj->as<ProxyObject>().usingInlineValueArray()) {
js_free(js::detail::GetProxyDataLayout(obj)->values());
}
}
size_t js::proxy_ObjectMoved(JSObject* obj, JSObject* old) {
ProxyObject& proxy = obj->as<ProxyObject>();
if (IsInsideNursery(old)) {
MOZ_ASSERT(old->as<ProxyObject>().usingInlineValueArray());
proxy.setInlineValueArray();
}
return proxy.handler()->objectMoved(obj, old);
}
const ClassOps js::ProxyClassOps = {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
proxy_Finalize,
nullptr,
Proxy::hasInstance,
nullptr,
ProxyObject::trace,
};
const ClassExtension js::ProxyClassExtension = {proxy_ObjectMoved};
const ObjectOps js::ProxyObjectOps = {
proxy_LookupProperty, Proxy::defineProperty,
Proxy::has, Proxy::get,
Proxy::set, Proxy::getOwnPropertyDescriptor,
proxy_DeleteProperty, Proxy::getElements,
Proxy::fun_toString};
const Class js::ProxyClass =
PROXY_CLASS_DEF("Proxy", JSCLASS_HAS_CACHED_PROTO(JSProto_Proxy) |
JSCLASS_HAS_RESERVED_SLOTS(2));
JS_FRIEND_API JSObject* js::NewProxyObject(JSContext* cx,
const BaseProxyHandler* handler,
HandleValue priv, JSObject* proto_,
const ProxyOptions& options) {
if (options.lazyProto()) {
MOZ_ASSERT(!proto_);
proto_ = TaggedProto::LazyProto;
}
return ProxyObject::New(cx, handler, priv, TaggedProto(proto_), options);
}
void ProxyObject::renew(const BaseProxyHandler* handler, const Value& priv) {
MOZ_ASSERT(!IsInsideNursery(this));
MOZ_ASSERT_IF(IsCrossCompartmentWrapper(this), IsDeadProxyObject(this));
MOZ_ASSERT(getClass() == &ProxyClass);
MOZ_ASSERT(!IsWindowProxy(this));
MOZ_ASSERT(hasDynamicPrototype());
setHandler(handler);
setCrossCompartmentPrivate(priv);
for (size_t i = 0; i < numReservedSlots(); i++) {
setReservedSlot(i, UndefinedValue());
}
}
JSObject* js::InitProxyClass(JSContext* cx, Handle<GlobalObject*> global) {
static const JSFunctionSpec static_methods[] = {
JS_FN("revocable", proxy_revocable, 2, 0), JS_FS_END};
RootedFunction ctor(cx);
ctor = GlobalObject::createConstructor(cx, proxy, cx->names().Proxy, 2);
if (!ctor) {
return nullptr;
}
if (!JS_DefineFunctions(cx, ctor, static_methods)) {
return nullptr;
}
if (!JS_DefineProperty(cx, global, "Proxy", ctor, JSPROP_RESOLVING)) {
return nullptr;
}
global->setConstructor(JSProto_Proxy, ObjectValue(*ctor));
return ctor;
}