/* * Copyright (c) 2025, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace JS { GC_DEFINE_ALLOCATOR(CompletionCell); CompletionCell::~CompletionCell() = default; void CompletionCell::visit_edges(Cell::Visitor& visitor) { Base::visit_edges(visitor); visitor.visit(m_completion.value()); } }