mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 06:48:49 +00:00
18 lines
369 B
C++
18 lines
369 B
C++
/*
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/HostDefined.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
|
|
namespace Web::Bindings {
|
|
|
|
void HostDefined::visit_edges(JS::Cell::Visitor& visitor)
|
|
{
|
|
JS::Realm::HostDefined::visit_edges(visitor);
|
|
visitor.visit(intrinsics);
|
|
}
|
|
|
|
}
|