ArgumentsObject.cpp 474 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibJS/Runtime/ArgumentsObject.h>
  7. #include <LibJS/Runtime/GlobalObject.h>
  8. namespace JS {
  9. ArgumentsObject::ArgumentsObject(GlobalObject& global_object)
  10. : Object(*global_object.object_prototype())
  11. {
  12. }
  13. void ArgumentsObject::initialize(GlobalObject& global_object)
  14. {
  15. Base::initialize(global_object);
  16. }
  17. ArgumentsObject::~ArgumentsObject()
  18. {
  19. }
  20. }