Home | History | Annotate | Download | only in include

Lines Matching refs:Proxy

95 class Proxy;
1991 * an Proxy for an array.
2187 * Returns true if this value is a JavaScript Proxy.
3007 * For example, calling Has() on a revoked proxy will throw an exception.
3600 * than the global proxy).
3904 * An instance of the built-in Proxy constructor (ECMA-262, 6th Edition,
3907 class V8_EXPORT Proxy : public Object {
3915 * Creates a new Proxy for the target object.
3917 static MaybeLocal<Proxy> New(Local<Context> context,
3921 V8_INLINE static Proxy* Cast(Value* obj);
3924 Proxy();
7766 * The snapshot will not contain the global proxy, and we expect one or a
7773 * The snapshot will include the global proxy.
8058 * Returns the global proxy object.
8060 * Global proxy object is a thin wrapper whose prototype points to actual
8065 * Please note that changes to global proxy object prototype most probably
8067 * proxy object.
8134 * the global proxy will fail. Instead, the access check handlers are invoked.
9488 Proxy* Proxy::Cast(v8::Value* value) {
9492 return static_cast<Proxy*>(value);