v8
6.2.414 (node 8.16.2)
V8 is Google's open source JavaScript engine
|
#include <v8.h>
Public Member Functions | |
V8_INLINE bool | IsUndefined () const |
V8_INLINE bool | IsNull () const |
V8_INLINE bool | IsNullOrUndefined () 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 | IsAsyncFunction () 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 | IsDataView () const |
bool | IsSharedArrayBuffer () const |
bool | IsProxy () const |
bool | IsWebAssemblyCompiledModule () const |
V8_WARN_UNUSED_RESULT MaybeLocal< Boolean > | ToBoolean (Local< Context > context) const |
V8_WARN_UNUSED_RESULT MaybeLocal< Number > | ToNumber (Local< Context > context) const |
V8_WARN_UNUSED_RESULT MaybeLocal< String > | ToString (Local< Context > context) const |
V8_WARN_UNUSED_RESULT MaybeLocal< String > | ToDetailString (Local< Context > context) const |
V8_WARN_UNUSED_RESULT MaybeLocal< Object > | ToObject (Local< Context > context) const |
V8_WARN_UNUSED_RESULT MaybeLocal< Integer > | ToInteger (Local< Context > context) const |
V8_WARN_UNUSED_RESULT MaybeLocal< Uint32 > | ToUint32 (Local< Context > context) const |
V8_WARN_UNUSED_RESULT MaybeLocal< Int32 > | ToInt32 (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_DEPRECATED ("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_DEPRECATED ("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_DEPRECATED ("Use maybe version", Local< Number > ToNumber() const) | |
V8_DEPRECATE_SOON ("Use maybe version", Local< String > ToString() const) | |
V8_DEPRECATED ("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_DEPRECATED ("Use maybe version", Local< Uint32 > ToUint32() const) | |
V8_DEPRECATED ("Use maybe version", Local< Int32 > ToInt32() const) | |
V8_DEPRECATED ("Use maybe version", Local< Uint32 > ToArrayIndex() const) | |
V8_WARN_UNUSED_RESULT MaybeLocal< Uint32 > | ToArrayIndex (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 |
Local< String > | TypeOf (Isolate *) |
Maybe< bool > | InstanceOf (Local< Context > context, Local< Object > object) |
template<class T > | |
Value * | Cast (T *value) |
Static Public Member Functions | |
template<class T > | |
static V8_INLINE Value * | Cast (T *value) |
V8_WARN_UNUSED_RESULT Maybe<bool> BooleanValue | ( | Local< Context > | context | ) | const |
V8_WARN_UNUSED_RESULT Maybe<int32_t> Int32Value | ( | Local< Context > | context | ) | const |
V8_WARN_UNUSED_RESULT Maybe<int64_t> IntegerValue | ( | Local< Context > | context | ) | const |
bool IsArgumentsObject | ( | ) | const |
Returns true if this value is an Arguments object.
bool IsArray | ( | ) | const |
Returns true if this value is an array. Note that it will return false for an Proxy for an array.
bool IsArrayBuffer | ( | ) | const |
Returns true if this value is an ArrayBuffer.
bool IsArrayBufferView | ( | ) | const |
Returns true if this value is an ArrayBufferView.
bool IsAsyncFunction | ( | ) | const |
Returns true if this value is an async function.
bool IsBoolean | ( | ) | const |
Returns true if this value is boolean.
bool IsBooleanObject | ( | ) | const |
Returns true if this value is a Boolean object.
bool IsDataView | ( | ) | const |
Returns true if this value is a DataView.
bool IsDate | ( | ) | const |
Returns true if this value is a Date.
bool IsExternal | ( | ) | const |
Returns true if this value is external.
bool IsFalse | ( | ) | const |
Returns true if this value is false.
bool IsFloat32Array | ( | ) | const |
Returns true if this value is a Float32Array.
bool IsFloat64Array | ( | ) | const |
Returns true if this value is a Float64Array.
bool IsFunction | ( | ) | const |
Returns true if this value is a function.
bool IsGeneratorFunction | ( | ) | const |
Returns true if this value is a Generator function.
bool IsGeneratorObject | ( | ) | const |
Returns true if this value is a Generator object (iterator).
bool IsInt16Array | ( | ) | const |
Returns true if this value is an Int16Array.
bool IsInt32 | ( | ) | const |
Returns true if this value is a 32-bit signed integer.
bool IsInt32Array | ( | ) | const |
Returns true if this value is an Int32Array.
bool IsInt8Array | ( | ) | const |
Returns true if this value is an Int8Array.
bool IsMap | ( | ) | const |
Returns true if this value is a Map.
bool IsMapIterator | ( | ) | const |
Returns true if this value is a Map Iterator.
bool IsName | ( | ) | const |
Returns true if this value is a symbol or a string.
bool IsNativeError | ( | ) | const |
Returns true if this value is a NativeError.
bool IsNull | ( | ) | const |
bool IsNullOrUndefined | ( | ) | const |
bool IsNumber | ( | ) | const |
Returns true if this value is a number.
bool IsNumberObject | ( | ) | const |
Returns true if this value is a Number object.
bool IsObject | ( | ) | const |
Returns true if this value is an object.
bool IsPromise | ( | ) | const |
Returns true if this value is a Promise.
bool IsProxy | ( | ) | const |
Returns true if this value is a JavaScript Proxy.
bool IsRegExp | ( | ) | const |
Returns true if this value is a RegExp.
bool IsSet | ( | ) | const |
Returns true if this value is a Set.
bool IsSetIterator | ( | ) | const |
Returns true if this value is a Set Iterator.
bool IsSharedArrayBuffer | ( | ) | const |
Returns true if this value is a SharedArrayBuffer. This is an experimental feature.
bool IsString | ( | ) | const |
bool IsStringObject | ( | ) | const |
Returns true if this value is a String object.
bool IsSymbol | ( | ) | const |
Returns true if this value is a symbol.
bool IsSymbolObject | ( | ) | const |
Returns true if this value is a Symbol object.
bool IsTrue | ( | ) | const |
Returns true if this value is true.
Referenced by ScriptOrigin::ScriptOrigin().
bool IsTypedArray | ( | ) | const |
Returns true if this value is one of TypedArrays.
bool IsUint16Array | ( | ) | const |
Returns true if this value is an Uint16Array.
bool IsUint32 | ( | ) | const |
Returns true if this value is a 32-bit unsigned integer.
bool IsUint32Array | ( | ) | const |
Returns true if this value is an Uint32Array.
bool IsUint8Array | ( | ) | const |
Returns true if this value is an Uint8Array.
bool IsUint8ClampedArray | ( | ) | const |
Returns true if this value is an Uint8ClampedArray.
bool IsUndefined | ( | ) | const |
bool IsWeakMap | ( | ) | const |
Returns true if this value is a WeakMap.
bool IsWeakSet | ( | ) | const |
Returns true if this value is a WeakSet.
bool IsWebAssemblyCompiledModule | ( | ) | const |
V8_WARN_UNUSED_RESULT Maybe<double> NumberValue | ( | Local< Context > | context | ) | const |
V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToArrayIndex | ( | Local< Context > | context | ) | const |
Definition at line 9774 of file v8.h.
References Isolate::GetCurrent(), Isolate::GetCurrentContext(), Local< T >::Local, and Value::ToBoolean().
Referenced by Value::ToBoolean().
Definition at line 9792 of file v8.h.
References Isolate::GetCurrent(), Isolate::GetCurrentContext(), Local< T >::Local, and Value::ToDetailString().
Referenced by Value::ToDetailString().
Definition at line 9816 of file v8.h.
References Isolate::GetCurrent(), Isolate::GetCurrentContext(), Local< T >::Local, and Value::ToInt32().
Referenced by Value::ToInt32().
Definition at line 9804 of file v8.h.
References Isolate::GetCurrent(), Isolate::GetCurrentContext(), Local< T >::Local, and Value::ToInteger().
Referenced by Value::ToInteger().
Definition at line 9780 of file v8.h.
References Isolate::GetCurrent(), Isolate::GetCurrentContext(), Local< T >::Local, and Value::ToNumber().
Referenced by Value::ToNumber().
Definition at line 9798 of file v8.h.
References Isolate::GetCurrent(), Isolate::GetCurrentContext(), Local< T >::Local, and Value::ToObject().
Referenced by Value::ToObject().
Definition at line 9786 of file v8.h.
References Isolate::GetCurrent(), Isolate::GetCurrentContext(), Local< T >::Local, and Value::ToString().
Referenced by Value::ToString().
Definition at line 9810 of file v8.h.
References Isolate::GetCurrent(), Isolate::GetCurrentContext(), Local< T >::Local, and Value::ToUint32().
Referenced by Value::ToUint32().
V8_WARN_UNUSED_RESULT Maybe<uint32_t> Uint32Value | ( | 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" | , |
int32_t Int32Value() const | |||
) |
V8_DEPRECATE_SOON | ( | "Use maybe version" | , |
int64_t IntegerValue() const | |||
) |
V8_DEPRECATE_SOON | ( | "Use maybe version" | , |
uint32_t Uint32Value() const | |||
) |
|
inline |
V8_DEPRECATED | ( | "Use maybe version" | , |
Local< String > ToDetailString(Isolate *isolate) const | |||
) |
V8_DEPRECATED | ( | "Use maybe version" | , |
Local< Uint32 > ToArrayIndex() const | |||
) |
Attempts to convert a string to an array index. Returns an empty handle if the conversion fails.