mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
committed by
Andreas Kling
parent
950e819ee7
commit
93712b24bf
20
Libraries/LibWeb/HTML/Scripting/SyntheticRealmSettings.cpp
Normal file
20
Libraries/LibWeb/HTML/Scripting/SyntheticRealmSettings.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibWeb/HTML/Scripting/ModuleMap.h>
|
||||
#include <LibWeb/HTML/Scripting/SyntheticRealmSettings.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
void SyntheticRealmSettings::visit_edges(JS::Cell::Visitor& visitor)
|
||||
{
|
||||
execution_context->visit_edges(visitor);
|
||||
visitor.visit(principal_realm);
|
||||
visitor.visit(underlying_realm);
|
||||
visitor.visit(module_map);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user