Lines Matching refs:Proxy
96 class Proxy;
2288 * an Proxy for an array.
2504 * Returns true if this value is a JavaScript Proxy.
3426 * For example, calling Has() on a revoked proxy will throw an exception.
4026 * than the global proxy).
4330 * An instance of the built-in Proxy constructor (ECMA-262, 6th Edition,
4333 class V8_EXPORT Proxy : public Object {
4341 * Creates a new Proxy for the target object.
4343 static MaybeLocal<Proxy> New(Local<Context> context,
4347 V8_INLINE static Proxy* Cast(Value* obj);
4350 Proxy();
8649 * The snapshot will not contain the global proxy, and we expect one or a
8660 * The snapshot will include the global proxy.
9008 * Returns the global proxy object.
9010 * Global proxy object is a thin wrapper whose prototype points to actual
9015 * Please note that changes to global proxy object prototype most probably
9017 * proxy object.
9086 * the global proxy will fail. Instead, the access check handlers are invoked.
10438 Proxy* Proxy::Cast(v8::Value* value) {
10442 return static_cast<Proxy*>(value);