SyntheticHostDefined.cpp 466 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibJS/Heap/Cell.h>
  7. #include <LibJS/Runtime/Realm.h>
  8. #include <LibWeb/Bindings/SyntheticHostDefined.h>
  9. #include <LibWeb/HTML/Scripting/Environments.h>
  10. namespace Web::Bindings {
  11. void SyntheticHostDefined::visit_edges(JS::Cell::Visitor& visitor)
  12. {
  13. HostDefined::visit_edges(visitor);
  14. synthetic_realm_settings.visit_edges(visitor);
  15. }
  16. }