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