Accessor.cpp 199 B

12345678910111213
  1. /*
  2. * Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibJS/Runtime/Accessor.h>
  7. namespace JS {
  8. JS_DEFINE_ALLOCATOR(Accessor);
  9. }