
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
55 lines
2 KiB
C++
55 lines
2 KiB
C++
/*
|
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/MutationRecordPrototype.h>
|
|
#include <LibWeb/DOM/MutationRecord.h>
|
|
#include <LibWeb/DOM/Node.h>
|
|
#include <LibWeb/DOM/NodeList.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
GC_DEFINE_ALLOCATOR(MutationRecord);
|
|
|
|
GC::Ref<MutationRecord> MutationRecord::create(JS::Realm& realm, FlyString const& type, Node const& target, NodeList& added_nodes, NodeList& removed_nodes, Node* previous_sibling, Node* next_sibling, Optional<String> const& attribute_name, Optional<String> const& attribute_namespace, Optional<String> const& old_value)
|
|
{
|
|
return realm.create<MutationRecord>(realm, type, target, added_nodes, removed_nodes, previous_sibling, next_sibling, attribute_name, attribute_namespace, old_value);
|
|
}
|
|
|
|
MutationRecord::MutationRecord(JS::Realm& realm, FlyString const& type, Node const& target, NodeList& added_nodes, NodeList& removed_nodes, Node* previous_sibling, Node* next_sibling, Optional<String> const& attribute_name, Optional<String> const& attribute_namespace, Optional<String> const& old_value)
|
|
: PlatformObject(realm)
|
|
, m_type(type)
|
|
, m_target(GC::make_root(target))
|
|
, m_added_nodes(added_nodes)
|
|
, m_removed_nodes(removed_nodes)
|
|
, m_previous_sibling(GC::make_root(previous_sibling))
|
|
, m_next_sibling(GC::make_root(next_sibling))
|
|
, m_attribute_name(attribute_name)
|
|
, m_attribute_namespace(attribute_namespace)
|
|
, m_old_value(old_value)
|
|
{
|
|
}
|
|
|
|
MutationRecord::~MutationRecord() = default;
|
|
|
|
void MutationRecord::initialize(JS::Realm& realm)
|
|
{
|
|
Base::initialize(realm);
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(MutationRecord);
|
|
}
|
|
|
|
void MutationRecord::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_target);
|
|
visitor.visit(m_added_nodes);
|
|
visitor.visit(m_removed_nodes);
|
|
visitor.visit(m_previous_sibling);
|
|
visitor.visit(m_next_sibling);
|
|
}
|
|
|
|
}
|