mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 01:31:02 +00:00
23 lines
528 B
C++
23 lines
528 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <LibJS/Heap/Cell.h>
|
||
|
|
#include <LibJS/Runtime/Realm.h>
|
||
|
|
#include <LibWeb/Bindings/HostDefined.h>
|
||
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
||
|
|
#include <LibWeb/HTML/Scripting/Environments.h>
|
||
|
|
|
||
|
|
namespace Web::Bindings {
|
||
|
|
|
||
|
|
void HostDefined::visit_edges(JS::Cell::Visitor& visitor)
|
||
|
|
{
|
||
|
|
JS::Realm::HostDefined::visit_edges(visitor);
|
||
|
|
visitor.visit(environment_settings_object);
|
||
|
|
visitor.visit(*intrinsics);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|