v8  4.6.85 (node 5.12.0)
V8 is Google's open source JavaScript engine
Value Class Reference

#include <v8.h>

Inheritance diagram for Value:
Collaboration diagram for Value:

Public Member Functions

V8_INLINE bool IsUndefined () const
 
V8_INLINE bool IsNull () const
 
bool IsTrue () const
 
bool IsFalse () const
 
bool IsName () const
 
V8_INLINE bool IsString () const
 
bool IsSymbol () const
 
bool IsFunction () const
 
bool IsArray () const
 
bool IsObject () const
 
bool IsBoolean () const
 
bool IsNumber () const
 
bool IsExternal () const
 
bool IsInt32 () const
 
bool IsUint32 () const
 
bool IsDate () const
 
bool IsArgumentsObject () const
 
bool IsBooleanObject () const
 
bool IsNumberObject () const
 
bool IsStringObject () const
 
bool IsSymbolObject () const
 
bool IsNativeError () const
 
bool IsRegExp () const
 
bool IsGeneratorFunction () const
 
bool IsGeneratorObject () const
 
bool IsPromise () const
 
bool IsMap () const
 
bool IsSet () const
 
bool IsMapIterator () const
 
bool IsSetIterator () const
 
bool IsWeakMap () const
 
bool IsWeakSet () const
 
bool IsArrayBuffer () const
 
bool IsArrayBufferView () const
 
bool IsTypedArray () const
 
bool IsUint8Array () const
 
bool IsUint8ClampedArray () const
 
bool IsInt8Array () const
 
bool IsUint16Array () const
 
bool IsInt16Array () const
 
bool IsUint32Array () const
 
bool IsInt32Array () const
 
bool IsFloat32Array () const
 
bool IsFloat64Array () const
 
bool IsFloat32x4 () const
 
bool IsDataView () const
 
bool IsSharedArrayBuffer () const
 
V8_WARN_UNUSED_RESULT MaybeLocal< BooleanToBoolean (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT MaybeLocal< NumberToNumber (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT MaybeLocal< StringToString (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT MaybeLocal< StringToDetailString (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT MaybeLocal< ObjectToObject (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT MaybeLocal< IntegerToInteger (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT MaybeLocal< Uint32ToUint32 (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT MaybeLocal< Int32ToInt32 (Local< Context > context) const
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Boolean > ToBoolean(Isolate *isolate) const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Number > ToNumber(Isolate *isolate) const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< String > ToString(Isolate *isolate) const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< String > ToDetailString(Isolate *isolate) const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Object > ToObject(Isolate *isolate) const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Integer > ToInteger(Isolate *isolate) const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Uint32 > ToUint32(Isolate *isolate) const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Int32 > ToInt32(Isolate *isolate) const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Boolean > ToBoolean() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Number > ToNumber() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< String > ToString() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< String > ToDetailString() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Object > ToObject() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Integer > ToInteger() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Uint32 > ToUint32() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Int32 > ToInt32() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", Local< Uint32 > ToArrayIndex() const)
 
V8_WARN_UNUSED_RESULT MaybeLocal< Uint32ToArrayIndex (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT Maybe< bool > BooleanValue (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT Maybe< double > NumberValue (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT Maybe< int64_t > IntegerValue (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT Maybe< uint32_t > Uint32Value (Local< Context > context) const
 
V8_WARN_UNUSED_RESULT Maybe< int32_t > Int32Value (Local< Context > context) const
 
 V8_DEPRECATE_SOON ("Use maybe version", bool BooleanValue() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", double NumberValue() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", int64_t IntegerValue() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", uint32_t Uint32Value() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", int32_t Int32Value() const)
 
 V8_DEPRECATE_SOON ("Use maybe version", bool Equals(Local< Value > that) const)
 
V8_WARN_UNUSED_RESULT Maybe< bool > Equals (Local< Context > context, Local< Value > that) const
 
bool StrictEquals (Local< Value > that) const
 
bool SameValue (Local< Value > that) const
 
template<class T >
ValueCast (T *value)
 

Static Public Member Functions

template<class T >
static V8_INLINE ValueCast (T *value)
 

Detailed Description

The superclass of all JavaScript values and objects.

Definition at line 1683 of file v8.h.

Member Function Documentation

◆ BooleanValue()

V8_WARN_UNUSED_RESULT Maybe<bool> BooleanValue ( Local< Context context) const

◆ Cast() [1/2]

static V8_INLINE Value* Cast ( T *  value)
static

◆ Cast() [2/2]

Value* Cast ( T *  value)

Definition at line 7735 of file v8.h.

◆ Equals()

V8_WARN_UNUSED_RESULT Maybe<bool> Equals ( Local< Context context,
Local< Value that 
) const

◆ Int32Value()

V8_WARN_UNUSED_RESULT Maybe<int32_t> Int32Value ( Local< Context context) const

◆ IntegerValue()

V8_WARN_UNUSED_RESULT Maybe<int64_t> IntegerValue ( Local< Context context) const

◆ IsArgumentsObject()

bool IsArgumentsObject ( ) const

Returns true if this value is an Arguments object.

◆ IsArray()

bool IsArray ( ) const

Returns true if this value is an array.

◆ IsArrayBuffer()

bool IsArrayBuffer ( ) const

Returns true if this value is an ArrayBuffer. This is an experimental feature.

◆ IsArrayBufferView()

bool IsArrayBufferView ( ) const

Returns true if this value is an ArrayBufferView. This is an experimental feature.

◆ IsBoolean()

bool IsBoolean ( ) const

Returns true if this value is boolean.

◆ IsBooleanObject()

bool IsBooleanObject ( ) const

Returns true if this value is a Boolean object.

◆ IsDataView()

bool IsDataView ( ) const

Returns true if this value is a DataView. This is an experimental feature.

◆ IsDate()

bool IsDate ( ) const

Returns true if this value is a Date.

◆ IsExternal()

bool IsExternal ( ) const

Returns true if this value is external.

◆ IsFalse()

bool IsFalse ( ) const

Returns true if this value is false.

◆ IsFloat32Array()

bool IsFloat32Array ( ) const

Returns true if this value is a Float32Array. This is an experimental feature.

◆ IsFloat32x4()

bool IsFloat32x4 ( ) const

Returns true if this value is a SIMD Float32x4. This is an experimental feature.

◆ IsFloat64Array()

bool IsFloat64Array ( ) const

Returns true if this value is a Float64Array. This is an experimental feature.

◆ IsFunction()

bool IsFunction ( ) const

Returns true if this value is a function.

◆ IsGeneratorFunction()

bool IsGeneratorFunction ( ) const

Returns true if this value is a Generator function. This is an experimental feature.

◆ IsGeneratorObject()

bool IsGeneratorObject ( ) const

Returns true if this value is a Generator object (iterator). This is an experimental feature.

◆ IsInt16Array()

bool IsInt16Array ( ) const

Returns true if this value is an Int16Array. This is an experimental feature.

◆ IsInt32()

bool IsInt32 ( ) const

Returns true if this value is a 32-bit signed integer.

◆ IsInt32Array()

bool IsInt32Array ( ) const

Returns true if this value is an Int32Array. This is an experimental feature.

◆ IsInt8Array()

bool IsInt8Array ( ) const

Returns true if this value is an Int8Array. This is an experimental feature.

◆ IsMap()

bool IsMap ( ) const

Returns true if this value is a Map.

◆ IsMapIterator()

bool IsMapIterator ( ) const

Returns true if this value is a Map Iterator.

◆ IsName()

bool IsName ( ) const

Returns true if this value is a symbol or a string. This is an experimental feature.

◆ IsNativeError()

bool IsNativeError ( ) const

Returns true if this value is a NativeError.

◆ IsNull()

bool IsNull ( ) const

Returns true if this value is the null value. See ECMA-262 4.3.11.

Definition at line 7700 of file v8.h.

◆ IsNumber()

bool IsNumber ( ) const

Returns true if this value is a number.

◆ IsNumberObject()

bool IsNumberObject ( ) const

Returns true if this value is a Number object.

◆ IsObject()

bool IsObject ( ) const

Returns true if this value is an object.

◆ IsPromise()

bool IsPromise ( ) const

Returns true if this value is a Promise. This is an experimental feature.

◆ IsRegExp()

bool IsRegExp ( ) const

Returns true if this value is a RegExp.

◆ IsSet()

bool IsSet ( ) const

Returns true if this value is a Set.

◆ IsSetIterator()

bool IsSetIterator ( ) const

Returns true if this value is a Set Iterator.

◆ IsSharedArrayBuffer()

bool IsSharedArrayBuffer ( ) const

Returns true if this value is a SharedArrayBuffer. This is an experimental feature.

◆ IsString()

bool IsString ( ) const

Returns true if this value is an instance of the String type. See ECMA-262 8.4.

Definition at line 7718 of file v8.h.

◆ IsStringObject()

bool IsStringObject ( ) const

Returns true if this value is a String object.

◆ IsSymbol()

bool IsSymbol ( ) const

Returns true if this value is a symbol. This is an experimental feature.

◆ IsSymbolObject()

bool IsSymbolObject ( ) const

Returns true if this value is a Symbol object. This is an experimental feature.

◆ IsTrue()

bool IsTrue ( ) const

Returns true if this value is true.

Referenced by ScriptOrigin::ScriptOrigin().

◆ IsTypedArray()

bool IsTypedArray ( ) const

Returns true if this value is one of TypedArrays. This is an experimental feature.

◆ IsUint16Array()

bool IsUint16Array ( ) const

Returns true if this value is an Uint16Array. This is an experimental feature.

◆ IsUint32()

bool IsUint32 ( ) const

Returns true if this value is a 32-bit unsigned integer.

◆ IsUint32Array()

bool IsUint32Array ( ) const

Returns true if this value is an Uint32Array. This is an experimental feature.

◆ IsUint8Array()

bool IsUint8Array ( ) const

Returns true if this value is an Uint8Array. This is an experimental feature.

◆ IsUint8ClampedArray()

bool IsUint8ClampedArray ( ) const

Returns true if this value is an Uint8ClampedArray. This is an experimental feature.

◆ IsUndefined()

bool IsUndefined ( ) const

Returns true if this value is the undefined value. See ECMA-262 4.3.10.

Definition at line 7682 of file v8.h.

◆ IsWeakMap()

bool IsWeakMap ( ) const

Returns true if this value is a WeakMap.

◆ IsWeakSet()

bool IsWeakSet ( ) const

Returns true if this value is a WeakSet.

◆ NumberValue()

V8_WARN_UNUSED_RESULT Maybe<double> NumberValue ( Local< Context context) const

◆ SameValue()

bool SameValue ( Local< Value that) const

◆ StrictEquals()

bool StrictEquals ( Local< Value that) const

◆ ToArrayIndex()

V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToArrayIndex ( Local< Context context) const

◆ ToBoolean()

Local< Boolean > ToBoolean ( Local< Context context) const

◆ ToDetailString()

Local< String > ToDetailString ( Local< Context context) const

◆ ToInt32()

Local< Int32 > ToInt32 ( Local< Context context) const

◆ ToInteger()

Local< Integer > ToInteger ( Local< Context context) const

◆ ToNumber()

Local< Number > ToNumber ( Local< Context context) const

◆ ToObject()

Local< Object > ToObject ( Local< Context context) const

◆ ToString()

Local< String > ToString ( Local< Context context) const

◆ ToUint32()

Local< Uint32 > ToUint32 ( Local< Context context) const

◆ Uint32Value()

V8_WARN_UNUSED_RESULT Maybe<uint32_t> Uint32Value ( Local< Context context) const

◆ V8_DEPRECATE_SOON() [1/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
bool BooleanValue() const   
)

◆ V8_DEPRECATE_SOON() [2/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
bool Equals(Local< Value > that) const   
)

JS ==

◆ V8_DEPRECATE_SOON() [3/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
double NumberValue() const   
)

◆ V8_DEPRECATE_SOON() [4/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
int32_t Int32Value() const   
)

◆ V8_DEPRECATE_SOON() [5/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
int64_t IntegerValue() const   
)

◆ V8_DEPRECATE_SOON() [6/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Boolean > ToBoolean() const   
)
inline

◆ V8_DEPRECATE_SOON() [7/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Boolean > ToBoolean(Isolate *isolate) const   
)

◆ V8_DEPRECATE_SOON() [8/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Int32 > ToInt32() const   
)
inline

◆ V8_DEPRECATE_SOON() [9/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Int32 > ToInt32(Isolate *isolate) const   
)

◆ V8_DEPRECATE_SOON() [10/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Integer > ToInteger() const   
)
inline

◆ V8_DEPRECATE_SOON() [11/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Integer > ToInteger(Isolate *isolate) const   
)

◆ V8_DEPRECATE_SOON() [12/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Number > ToNumber() const   
)
inline

◆ V8_DEPRECATE_SOON() [13/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Number > ToNumber(Isolate *isolate) const   
)

◆ V8_DEPRECATE_SOON() [14/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Object > ToObject() const   
)
inline

◆ V8_DEPRECATE_SOON() [15/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Object > ToObject(Isolate *isolate) const   
)

◆ V8_DEPRECATE_SOON() [16/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< String > ToDetailString() const   
)
inline

◆ V8_DEPRECATE_SOON() [17/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< String > ToDetailString(Isolate *isolate) const   
)

◆ V8_DEPRECATE_SOON() [18/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< String > ToString() const   
)
inline

◆ V8_DEPRECATE_SOON() [19/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< String > ToString(Isolate *isolate) const   
)

◆ V8_DEPRECATE_SOON() [20/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Uint32 > ToArrayIndex() const   
)

Attempts to convert a string to an array index. Returns an empty handle if the conversion fails.

◆ V8_DEPRECATE_SOON() [21/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Uint32 > ToUint32() const   
)
inline

◆ V8_DEPRECATE_SOON() [22/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
Local< Uint32 > ToUint32(Isolate *isolate) const   
)

◆ V8_DEPRECATE_SOON() [23/23]

V8_DEPRECATE_SOON ( "Use maybe version"  ,
uint32_t Uint32Value() const   
)

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