v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
v8::internal::HandleHelper Class Referencefinal

#include <v8-internal.h>

Collaboration diagram for v8::internal::HandleHelper:

Static Public Member Functions

template<typename T1 , typename T2 >
static V8_INLINE bool EqualHandles (const T1 &lhs, const T2 &rhs)
 

Detailed Description

Helper functions about handles.

Definition at line 1714 of file v8-internal.h.

Member Function Documentation

◆ EqualHandles()

template<typename T1 , typename T2 >
static V8_INLINE bool v8::internal::HandleHelper::EqualHandles ( const T1 & lhs,
const T2 & rhs )
inlinestatic

Checks whether two handles are equal. They are equal iff they are both empty or they are both non-empty and the objects to which they refer are physically equal.

If both handles refer to JS objects, this is the same as strict equality. For primitives, such as numbers or strings, a false return value does not indicate that the values aren't equal in the JavaScript sense. Use Value::StrictEquals() to check primitives for equality.

Definition at line 1727 of file v8-internal.h.

Here is the caller graph for this function:

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