Home | History | Annotate | Download | only in src

Lines Matching refs:Proxy

3646 void v8::Proxy::CheckCast(Value* that) {
3647 Utils::ApiCheck(that->IsProxy(), "v8::Proxy::Cast",
3648 "Could not convert to proxy");
4358 // IsTemplateFor() ensures that iter.GetCurrent() can't be a Proxy here.
6112 // Create a fresh template for the global proxy object.
6118 // global proxy template.
6271 // TODO(dcarney): This should always return the global proxy
6393 // If it's a global proxy object, then test with the global object.
7228 Local<Object> Proxy::GetTarget() {
7235 Local<Value> Proxy::GetHandler() {
7242 bool Proxy::IsRevoked() {
7248 void Proxy::Revoke() {
7254 MaybeLocal<Proxy> Proxy::New(Local<Context> context, Local<Object> local_target,
7256 PREPARE_FOR_EXECUTION(context, Proxy, New, Proxy);
7259 Local<Proxy> result;
7261 !ToLocal<Proxy>(i::JSProxy::New(isolate, target, handler), &result);
7262 RETURN_ON_FAILED_EXECUTION(Proxy);