Cell.cpp 200 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2020-2022, Andreas Kling <andreas@ladybird.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibJS/Heap/Cell.h>
  7. namespace JS {
  8. void Cell::initialize(Realm&)
  9. {
  10. }
  11. }