/* * Copyright (c) 2020-2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include namespace JS { void JS::Cell::initialize(JS::Realm&) { } void JS::Cell::Visitor::visit(JS::Value value) { if (value.is_cell()) visit_impl(value.as_cell()); } }