V8 API Reference, 7.2.502.16 (for Deno 0.2.4)
|
#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 | IsBigInt () const |
bool | IsBoolean () const |
bool | IsNumber () const |
bool | IsExternal () const |
bool | IsInt32 () const |
bool | IsUint32 () const |
bool | IsDate () const |
bool | IsArgumentsObject () const |
bool | IsBigIntObject () 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 | IsBigInt64Array () const |
bool | IsBigUint64Array () const |
bool | IsDataView () const |
bool | IsSharedArrayBuffer () const |
bool | IsProxy () const |
bool | IsWebAssemblyCompiledModule () const |
bool | IsModuleNamespaceObject () const |
V8_WARN_UNUSED_RESULT MaybeLocal< BigInt > | ToBigInt (Local< Context > context) const |
V8_DEPRECATE_SOON ("ToBoolean can never throw. Use Local version.", 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 |
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< Object > ToObject(Isolate *isolate) const) | |
V8_DEPRECATE_SOON ("Use maybe version", Local< Integer > ToInteger(Isolate *isolate) const) | |
V8_DEPRECATE_SOON ("Use maybe version", Local< Int32 > ToInt32(Isolate *isolate) const) | |
V8_WARN_UNUSED_RESULT MaybeLocal< Uint32 > | ToArrayIndex (Local< Context > context) const |
bool | BooleanValue (Isolate *isolate) const |
V8_DEPRECATE_SOON ("BooleanValue can never throw. Use Isolate version.", 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_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) |
Static Public Member Functions | |
template<class T > | |
static V8_INLINE Value * | Cast (T *value) |
bool v8::Value::IsArgumentsObject | ( | ) | const |
Returns true if this value is an Arguments object.
bool v8::Value::IsArray | ( | ) | const |
bool v8::Value::IsArrayBuffer | ( | ) | const |
Returns true if this value is an ArrayBuffer.
bool v8::Value::IsArrayBufferView | ( | ) | const |
Returns true if this value is an ArrayBufferView.
bool v8::Value::IsAsyncFunction | ( | ) | const |
bool v8::Value::IsBigInt | ( | ) | const |
bool v8::Value::IsBigInt64Array | ( | ) | const |
Returns true if this value is a BigInt64Array.
bool v8::Value::IsBigUint64Array | ( | ) | const |
Returns true if this value is a BigUint64Array.
bool v8::Value::IsBoolean | ( | ) | const |
bool v8::Value::IsDataView | ( | ) | const |
bool v8::Value::IsExternal | ( | ) | const |
bool v8::Value::IsFalse | ( | ) | const |
bool v8::Value::IsFloat32Array | ( | ) | const |
Returns true if this value is a Float32Array.
bool v8::Value::IsFloat64Array | ( | ) | const |
Returns true if this value is a Float64Array.
bool v8::Value::IsFunction | ( | ) | const |
bool v8::Value::IsGeneratorFunction | ( | ) | const |
bool v8::Value::IsGeneratorObject | ( | ) | const |
bool v8::Value::IsInt16Array | ( | ) | const |
Returns true if this value is an Int16Array.
bool v8::Value::IsInt32 | ( | ) | const |
bool v8::Value::IsInt32Array | ( | ) | const |
Returns true if this value is an Int32Array.
bool v8::Value::IsMapIterator | ( | ) | const |
bool v8::Value::IsModuleNamespaceObject | ( | ) | const |
bool v8::Value::IsName | ( | ) | const |
bool v8::Value::IsNativeError | ( | ) | const |
bool v8::Value::IsNull | ( | ) | const |
bool v8::Value::IsNullOrUndefined | ( | ) | const |
bool v8::Value::IsNumber | ( | ) | const |
bool v8::Value::IsObject | ( | ) | const |
bool v8::Value::IsPromise | ( | ) | const |
bool v8::Value::IsProxy | ( | ) | const |
bool v8::Value::IsRegExp | ( | ) | const |
bool v8::Value::IsSetIterator | ( | ) | const |
bool v8::Value::IsSharedArrayBuffer | ( | ) | const |
Returns true if this value is a SharedArrayBuffer. This is an experimental feature.
bool v8::Value::IsString | ( | ) | const |
bool v8::Value::IsSymbol | ( | ) | const |
bool v8::Value::IsTrue | ( | ) | const |
bool v8::Value::IsTypedArray | ( | ) | const |
bool v8::Value::IsUint16Array | ( | ) | const |
Returns true if this value is an Uint16Array.
bool v8::Value::IsUint32 | ( | ) | const |
bool v8::Value::IsUint32Array | ( | ) | const |
Returns true if this value is an Uint32Array.
bool v8::Value::IsUint8Array | ( | ) | const |
Returns true if this value is an Uint8Array.
bool v8::Value::IsUint8ClampedArray | ( | ) | const |
Returns true if this value is an Uint8ClampedArray.
bool v8::Value::IsUndefined | ( | ) | const |
bool v8::Value::IsWeakMap | ( | ) | const |
Returns true if this value is a WeakMap.
bool v8::Value::IsWeakSet | ( | ) | const |
Returns true if this value is a WeakSet.
MaybeLocal< Uint32 > v8::Value::ToArrayIndex | ( | Local< Context > | context | ) | const |