Lines Matching refs:Proxy
95 class Proxy;
1946 * an Proxy for an array.
2165 * Returns true if this value is a JavaScript Proxy.
2983 * For example, calling Has() on a revoked proxy will throw an exception.
3576 * than the global proxy).
3864 * An instance of the built-in Proxy constructor (ECMA-262, 6th Edition,
3867 class V8_EXPORT Proxy : public Object {
3875 * Creates a new Proxy for the target object.
3877 static MaybeLocal<Proxy> New(Local<Context> context,
3881 V8_INLINE static Proxy* Cast(Value* obj);
3884 Proxy();
7883 * Returns the global proxy object.
7885 * Global proxy object is a thin wrapper whose prototype points to actual
7890 * Please note that changes to global proxy object prototype most probably
7892 * proxy object.
7939 * the global proxy will fail. Instead, the access check handlers are invoked.
9274 Proxy* Proxy::Cast(v8::Value* value) {
9278 return static_cast<Proxy*>(value);