| 304 | } |
| 305 | |
| 306 | inline void |
| 307 | SetProxyExtra(RawObject obj, size_t n, const Value &extra) |
| 308 | { |
| 309 | JS_ASSERT(IsProxy(obj)); |
| 310 | JS_ASSERT(n <= 1); |
| 311 | SetReservedSlot(obj, JSSLOT_PROXY_EXTRA + n, extra); |
| 312 | } |
| 313 | |
| 314 | JS_FRIEND_API(JSObject *) |
| 315 | NewProxyObject(JSContext *cx, BaseProxyHandler *handler, const Value &priv, |
nothing calls this directly
no test coverage detected