mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:42:43 +00:00 
			
		
		
		
	 3deb8e322f
			
		
	
	
		3deb8e322f
		
	
	
	
	
		
			
			It's now unused, and won't be safe to use once Web constructors and prototypes are lazily created.
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			575 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			575 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <AK/DeprecatedString.h>
 | |
| #include <AK/HashMap.h>
 | |
| #include <LibJS/Forward.h>
 | |
| #include <LibJS/Runtime/NativeFunction.h>
 | |
| #include <LibJS/Runtime/Object.h>
 | |
| #include <LibWeb/Bindings/Intrinsics.h>
 | |
| 
 | |
| namespace Web::Bindings {
 | |
| 
 | |
| void Intrinsics::visit_edges(JS::Cell::Visitor& visitor)
 | |
| {
 | |
|     Base::visit_edges(visitor);
 | |
| 
 | |
|     for (auto& it : m_prototypes)
 | |
|         visitor.visit(it.value);
 | |
|     for (auto& it : m_constructors)
 | |
|         visitor.visit(it.value);
 | |
| }
 | |
| 
 | |
| }
 |