/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web { namespace Bindings { Wrappable::~Wrappable() { } void Wrappable::set_wrapper(Wrapper& wrapper) { VERIFY(!m_wrapper); m_wrapper = wrapper.make_weak_ptr(); } } }