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.
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGC/Heap.h>
|
|
#include <LibJS/Runtime/Realm.h>
|
|
#include <LibWeb/Bindings/HashChangeEvent.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/HTML/HashChangeEvent.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
GC_DEFINE_ALLOCATOR(HashChangeEvent);
|
|
|
|
[[nodiscard]] GC::Ref<HashChangeEvent> HashChangeEvent::create(JS::Realm& realm, FlyString const& event_name, Bindings::HashChangeEventInit const& event_init)
|
|
{
|
|
return realm.create<HashChangeEvent>(realm, event_name, event_init);
|
|
}
|
|
|
|
GC::Ref<HashChangeEvent> HashChangeEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, Bindings::HashChangeEventInit const& event_init)
|
|
{
|
|
return realm.create<HashChangeEvent>(realm, event_name, event_init);
|
|
}
|
|
|
|
HashChangeEvent::HashChangeEvent(JS::Realm& realm, FlyString const& event_name, Bindings::HashChangeEventInit const& event_init)
|
|
: DOM::Event(realm, event_name, event_init)
|
|
, m_old_url(event_init.old_url)
|
|
, m_new_url(event_init.new_url)
|
|
{
|
|
}
|
|
|
|
void HashChangeEvent::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(HashChangeEvent);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
void HashChangeEvent::visit_edges(JS::Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
}
|
|
|
|
}
|