mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 09:27:00 +02:00
Previously we were inconsistent by generating code for enum definitions but not generating code for dictionaries. With future changes to the IDL generator to expose helpers to convert to and from IDL values this produced circular depdendencies. To solve this problem, also generate the dictionary definitions in bindings headers.
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/PromiseRejectionEvent.h>
|
|
#include <LibWeb/HTML/PromiseRejectionEvent.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
GC_DEFINE_ALLOCATOR(PromiseRejectionEvent);
|
|
|
|
GC::Ref<PromiseRejectionEvent> PromiseRejectionEvent::create(JS::Realm& realm, FlyString const& event_name, Bindings::PromiseRejectionEventInit const& event_init)
|
|
{
|
|
auto event = realm.create<PromiseRejectionEvent>(realm, event_name, event_init);
|
|
event->set_is_trusted(true);
|
|
return event;
|
|
}
|
|
|
|
WebIDL::ExceptionOr<GC::Ref<PromiseRejectionEvent>> PromiseRejectionEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, Bindings::PromiseRejectionEventInit const& event_init)
|
|
{
|
|
return realm.create<PromiseRejectionEvent>(realm, event_name, event_init);
|
|
}
|
|
|
|
PromiseRejectionEvent::PromiseRejectionEvent(JS::Realm& realm, FlyString const& event_name, Bindings::PromiseRejectionEventInit const& event_init)
|
|
: DOM::Event(realm, event_name, event_init)
|
|
, m_promise(*event_init.promise)
|
|
, m_reason(event_init.reason.value_or(JS::js_undefined()))
|
|
{
|
|
}
|
|
|
|
PromiseRejectionEvent::~PromiseRejectionEvent() = default;
|
|
|
|
void PromiseRejectionEvent::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_promise);
|
|
visitor.visit(m_reason);
|
|
}
|
|
|
|
void PromiseRejectionEvent::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(PromiseRejectionEvent);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
}
|