#include #include #include namespace JS { HandleImpl::HandleImpl(Cell* cell) : m_cell(cell) { m_cell->heap().did_create_handle({}, *this); } HandleImpl::~HandleImpl() { m_cell->heap().did_destroy_handle({}, *this); } }