#include <v8.h>
Public メソッド | |
int | Length () const |
Local< Value > | operator[] (int i) const |
Local< Function > | Callee () const |
Local< Object > | This () const |
Local< Object > | Holder () const |
bool | IsConstructCall () const |
Local< Value > | Data () const |
Private メソッド | |
Arguments () | |
Arguments (Local< Value > data, Local< Object > holder, Local< Function > callee, bool is_construct_call, void **values, int length) | |
Private 変数 | |
Local< Value > | data_ |
Local< Object > | holder_ |
Local< Function > | callee_ |
bool | is_construct_call_ |
void ** | values_ |
int | length_ |
フレンド | |
class | ImplementationUtilities |
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.
v8::Arguments::Arguments | ( | ) | [private] |
bool v8::Arguments::IsConstructCall | ( | ) | const [inline] |
参照先 is_construct_call_.
int v8::Arguments::Length | ( | ) | const [inline] |
参照先 length_, v8::Undefined(), と values_.
friend class ImplementationUtilities [friend] |
bool v8::Arguments::is_construct_call_ [private] |
参照元 IsConstructCall().
int v8::Arguments::length_ [private] |
参照元 Length(), と operator[]().
void** v8::Arguments::values_ [private] |
参照元 operator[](), と This().