mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	 b105c06824
			
		
	
	
		b105c06824
		
	
	
	
	
		
			
			This class is the host defined field of a synthetic realm created as part of a shadow realm.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			466 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			466 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * 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);
 | |
| }
 | |
| 
 | |
| }
 |