Loading...
Searching...
No Matches
Public Member Functions | Friends | List of all members
v8::PropertyCallbackInfo< T > Class Template Reference

#include <v8-function-callback.h>

Inheritance diagram for v8::PropertyCallbackInfo< T >:
[legend]

Public Member Functions

IsolateGetIsolate () const
 
Local< ValueData () const
 
Local< ObjectThis () const
 
Local< ObjectHolder () const
 
ReturnValue< T > GetReturnValue () const
 
bool ShouldThrowOnError () const
 
 PropertyCallbackInfo (const PropertyCallbackInfo< void > &info)
 

Friends

template<typename U >
class PropertyCallbackInfo
 
class MacroAssembler
 
class internal::PropertyCallbackArguments
 
class internal::CustomArguments< PropertyCallbackInfo >
 

Detailed Description

template<typename T>
class v8::PropertyCallbackInfo< T >

The information passed to a property callback about the context of the property access.

Examples
process.cc.

Constructor & Destructor Documentation

◆ PropertyCallbackInfo()

template<typename T >
v8::PropertyCallbackInfo< T >::PropertyCallbackInfo ( const PropertyCallbackInfo< void > &  info)
inlineexplicit

Member Function Documentation

◆ Data()

template<typename T >
Local< Value > v8::PropertyCallbackInfo< T >::Data
inline
Returns
The data set in the configuration, i.e., in NamedPropertyHandlerConfiguration or IndexedPropertyHandlerConfiguration.

◆ GetIsolate()

template<typename T >
Isolate * v8::PropertyCallbackInfo< T >::GetIsolate
inline
Returns
The isolate of the property access.

◆ GetReturnValue()

template<typename T >
ReturnValue< T > v8::PropertyCallbackInfo< T >::GetReturnValue
inline
Returns
The return value of the callback. Can be changed by calling Set().
info.GetReturnValue().Set(...)

◆ Holder()

template<typename T >
Local< Object > v8::PropertyCallbackInfo< T >::Holder
inline
Returns
The object in the prototype chain of the receiver that has the interceptor. Suppose you have x and its prototype is y, and y has an interceptor. Then info.This() is x and info.Holder() is y. The Holder() could be a hidden object (the global object, rather than the global proxy).
Note
For security reasons, do not pass the object back into the runtime.

◆ ShouldThrowOnError()

template<typename T >
bool v8::PropertyCallbackInfo< T >::ShouldThrowOnError
inline
Returns
True if the intercepted function should throw if an error occurs. Usually, true corresponds to ‘'use strict’`.
Note
Always false when intercepting Reflect.set() independent of the language mode.
Here is the call graph for this function:

◆ This()

template<typename T >
Local< Object > v8::PropertyCallbackInfo< T >::This
inline
Returns
The receiver. In many cases, this is the object on which the property access was intercepted. When using Reflect.get, Function.prototype.call, or similar functions, it is the object passed in as receiver or thisArg.
void GetterCallback(Local<Name> name,
auto context = info.GetIsolate()->GetCurrentContext();
info.This()
->GetRealNamedProperty(context, v8_str("a"))
.ToLocalChecked();
info.Holder()
->GetRealNamedProperty(context, v8_str("a"))
.ToLocalChecked();
CHECK(v8_str("r")->Equals(context, a_this).FromJust());
CHECK(v8_str("obj")->Equals(context, a_holder).FromJust());
info.GetReturnValue().Set(name);
}
templ->InstanceTemplate()->SetHandler(
LocalContext env;
env->Global()
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
.ToLocalChecked()
->NewInstance(env.local())
.ToLocalChecked())
.FromJust();
CompileRun("obj.a = 'obj'; var r = {a: 'r'}; Reflect.get(obj, 'x', r)");
static Local< FunctionTemplate > New(Isolate *isolate, FunctionCallback callback=nullptr, Local< Value > data=Local< Value >(), Local< Signature > signature=Local< Signature >(), int length=0, ConstructorBehavior behavior=ConstructorBehavior::kAllow, SideEffectType side_effect_type=SideEffectType::kHasSideEffect, const CFunction *c_function=nullptr, uint16_t instance_type=0, uint16_t allowed_receiver_instance_type_range_start=0, uint16_t allowed_receiver_instance_type_range_end=0)
Local< Context > GetCurrentContext()
Definition: v8-local-handle.h:258
friend class Global
Definition: v8-local-handle.h:358
MaybeLocal< Value > GetRealNamedProperty(Local< Context > context, Local< Name > key)
Definition: v8-function-callback.h:192
Local< Object > Holder() const
Definition: v8-function-callback.h:609
ReturnValue< T > GetReturnValue() const
Definition: v8-function-callback.h:614
Local< Object > This() const
Definition: v8-function-callback.h:604
Isolate * GetIsolate() const
Definition: v8-function-callback.h:594
Definition: v8-template.h:739

Friends And Related Function Documentation

◆ internal::CustomArguments< PropertyCallbackInfo >

template<typename T >
friend class internal::CustomArguments< PropertyCallbackInfo >
friend

◆ internal::PropertyCallbackArguments

template<typename T >
friend class internal::PropertyCallbackArguments
friend

◆ MacroAssembler

template<typename T >
friend class MacroAssembler
friend

◆ PropertyCallbackInfo

template<typename T >
template<typename U >
friend class PropertyCallbackInfo
friend

The documentation for this class was generated from the following file: