mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 14:28:11 +00:00

Similar to create() in LibJS, wrap() et al. are on a low enough level to warrant passing a Realm directly instead of relying on the current realm from the VM, as a wrapper may need to be allocated while no JS is being executed.
17 lines
340 B
C++
17 lines
340 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/EventTargetWrapperFactory.h>
|
|
#include <LibWeb/DOM/EventTarget.h>
|
|
|
|
namespace Web::Bindings {
|
|
|
|
JS::Object* wrap(JS::Realm& realm, DOM::EventTarget& target)
|
|
{
|
|
return target.create_wrapper(realm);
|
|
}
|
|
|
|
}
|