mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
18 lines
286 B
C++
18 lines
286 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibJS/Runtime/Realm.h>
|
||
|
|
||
|
namespace JS {
|
||
|
|
||
|
void Realm::visit_edges(Visitor& visitor)
|
||
|
{
|
||
|
visitor.visit(m_global_object);
|
||
|
visitor.visit(m_global_environment);
|
||
|
}
|
||
|
|
||
|
}
|