2024-10-26 03:46:13 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibJS/Heap/Cell.h>
|
|
|
|
|
#include <LibJS/Runtime/Realm.h>
|
|
|
|
|
#include <LibWeb/Bindings/SyntheticHostDefined.h>
|
|
|
|
|
#include <LibWeb/HTML/Scripting/Environments.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::Bindings {
|
|
|
|
|
|
|
|
|
|
void SyntheticHostDefined::visit_edges(JS::Cell::Visitor& visitor)
|
|
|
|
|
{
|
2024-11-26 13:58:06 -03:00
|
|
|
HostDefined::visit_edges(visitor);
|
2024-10-26 03:46:13 -03:00
|
|
|
synthetic_realm_settings.visit_edges(visitor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|