mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 01:55:07 +00:00

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);
|
|
}
|
|
|
|
}
|