v8
10.1.124 (node 18.2.0)
V8 is Google's open source JavaScript engine
|
#include <v8-function-callback.h>
Public Member Functions | |
V8_INLINE int | Length () const |
V8_INLINE Local< Value > | operator[] (int i) const |
V8_INLINE Local< Object > | This () const |
V8_INLINE Local< Object > | Holder () const |
V8_INLINE Local< Value > | NewTarget () const |
V8_INLINE bool | IsConstructCall () const |
V8_INLINE Local< Value > | Data () const |
V8_INLINE Isolate * | GetIsolate () const |
V8_INLINE ReturnValue< T > | GetReturnValue () const |
Static Public Attributes | |
static const int | kArgsLength = 6 |
Protected Member Functions | |
V8_INLINE | FunctionCallbackInfo (internal::Address *implicit_args, internal::Address *values, int length) |
Protected Attributes | |
internal::Address * | implicit_args_ |
internal::Address * | values_ |
int | length_ |
Static Protected Attributes | |
static const int | kHolderIndex = 0 |
static const int | kIsolateIndex = 1 |
static const int | kReturnValueDefaultValueIndex = 2 |
static const int | kReturnValueIndex = 3 |
static const int | kDataIndex = 4 |
static const int | kNewTargetIndex = 5 |
Friends | |
class | internal::FunctionCallbackArguments |
class | internal::CustomArguments< FunctionCallbackInfo > |
class | debug::ConsoleCallArguments |
The argument information given to function call callbacks. This class provides access to information about the context of the call, including the receiver, the number and values of arguments, and the holder of the function.
Definition at line 87 of file v8-function-callback.h.
|
protected |
Definition at line 382 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::implicit_args_, FunctionCallbackInfo< T >::length_, and FunctionCallbackInfo< T >::values_.
The data argument specified when creating the callback.
Definition at line 413 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::implicit_args_, FunctionCallbackInfo< T >::kDataIndex, and HandleScope::Local.
Isolate * GetIsolate |
The current Isolate.
Definition at line 418 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::implicit_args_, and FunctionCallbackInfo< T >::kIsolateIndex.
Referenced by FunctionCallbackInfo< T >::operator[]().
ReturnValue< T > GetReturnValue |
The ReturnValue for the call.
Definition at line 423 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::implicit_args_, and FunctionCallbackInfo< T >::kReturnValueIndex.
If the callback was created without a Signature, this is the same value as This(). If there is a signature, and the signature didn't match This() but one of its hidden prototypes, this will be the respective hidden prototype.
Note that this is not the prototype of This() on which the accessor referencing this callback was found (which in V8 internally is often referred to as holder [sic]).
Definition at line 401 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::implicit_args_, FunctionCallbackInfo< T >::kHolderIndex, and HandleScope::Local.
bool IsConstructCall |
Indicates whether this is a regular call or a construct call.
Definition at line 428 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::NewTarget().
int Length |
The number of available arguments.
Definition at line 433 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::length_.
For construct calls, this returns the "new.target" value.
Definition at line 407 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::implicit_args_, FunctionCallbackInfo< T >::kNewTargetIndex, and HandleScope::Local.
Referenced by FunctionCallbackInfo< T >::IsConstructCall().
Accessor for the available arguments. Returns undefined
if the index is out of bounds.
Definition at line 388 of file v8-function-callback.h.
References FunctionCallbackInfo< T >::GetIsolate(), FunctionCallbackInfo< T >::length_, HandleScope::Local, and FunctionCallbackInfo< T >::values_.
Returns the receiver. This corresponds to the "this" value.
Definition at line 395 of file v8-function-callback.h.
References HandleScope::Local, and FunctionCallbackInfo< T >::values_.
|
friend |
Definition at line 125 of file v8-function-callback.h.
|
friend |
Definition at line 123 of file v8-function-callback.h.
|
friend |
Definition at line 123 of file v8-function-callback.h.
|
protected |
Definition at line 135 of file v8-function-callback.h.
Referenced by FunctionCallbackInfo< T >::Data(), FunctionCallbackInfo< T >::FunctionCallbackInfo(), FunctionCallbackInfo< T >::GetIsolate(), FunctionCallbackInfo< T >::GetReturnValue(), FunctionCallbackInfo< T >::Holder(), and FunctionCallbackInfo< T >::NewTarget().
|
static |
Definition at line 120 of file v8-function-callback.h.
|
staticprotected |
Definition at line 130 of file v8-function-callback.h.
Referenced by FunctionCallbackInfo< T >::Data().
|
staticprotected |
Definition at line 126 of file v8-function-callback.h.
Referenced by FunctionCallbackInfo< T >::Holder().
|
staticprotected |
Definition at line 127 of file v8-function-callback.h.
Referenced by FunctionCallbackInfo< T >::GetIsolate().
|
staticprotected |
Definition at line 131 of file v8-function-callback.h.
Referenced by FunctionCallbackInfo< T >::NewTarget().
|
staticprotected |
Definition at line 128 of file v8-function-callback.h.
|
staticprotected |
Definition at line 129 of file v8-function-callback.h.
Referenced by FunctionCallbackInfo< T >::GetReturnValue().
|
protected |
Definition at line 137 of file v8-function-callback.h.
Referenced by FunctionCallbackInfo< T >::FunctionCallbackInfo(), FunctionCallbackInfo< T >::Length(), and FunctionCallbackInfo< T >::operator[]().
|
protected |
Definition at line 136 of file v8-function-callback.h.
Referenced by FunctionCallbackInfo< T >::FunctionCallbackInfo(), FunctionCallbackInfo< T >::operator[](), and FunctionCallbackInfo< T >::This().