/* * Copyright (c) 2020-2024, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace JS { class Cell : public CellImpl { JS_CELL(Cell, CellImpl); public: virtual void initialize(Realm&); ALWAYS_INLINE VM& vm() const { return *reinterpret_cast(private_data()); } }; }