mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
24 lines
418 B
C
24 lines
418 B
C
![]() |
/*
|
||
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibJS/Runtime/Object.h>
|
||
|
|
||
|
namespace JS {
|
||
|
|
||
|
class ArgumentsObject final : public Object {
|
||
|
JS_OBJECT(ArgumentsObject, Object);
|
||
|
|
||
|
public:
|
||
|
explicit ArgumentsObject(GlobalObject&);
|
||
|
|
||
|
virtual void initialize(GlobalObject&) override;
|
||
|
virtual ~ArgumentsObject() override;
|
||
|
};
|
||
|
|
||
|
}
|