2020-03-28 17:23:54 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2021-04-06 22:06:11 +02:00
|
|
|
* Copyright (c) 2020-2021, Linus Groh <mail@linusgroh.de>
|
2020-03-28 17:23:54 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibJS/Runtime/NativeFunction.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
class ObjectConstructor final : public NativeFunction {
|
2020-06-21 15:14:02 +02:00
|
|
|
JS_OBJECT(ObjectConstructor, NativeFunction);
|
|
|
|
|
2020-03-28 17:23:54 +01:00
|
|
|
public:
|
2020-06-20 15:40:48 +02:00
|
|
|
explicit ObjectConstructor(GlobalObject&);
|
2020-07-22 17:50:18 +02:00
|
|
|
virtual void initialize(GlobalObject&) override;
|
2020-03-28 17:23:54 +01:00
|
|
|
virtual ~ObjectConstructor() override;
|
|
|
|
|
2020-09-27 17:24:14 +02:00
|
|
|
virtual Value call() override;
|
2020-09-27 18:45:21 +02:00
|
|
|
virtual Value construct(Function& new_target) override;
|
2020-03-28 17:23:54 +01:00
|
|
|
|
|
|
|
private:
|
2020-04-01 18:31:24 +01:00
|
|
|
virtual bool has_constructor() const override { return true; }
|
2020-03-28 22:48:35 +01:00
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(define_property_);
|
2021-04-10 18:39:11 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(define_properties);
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(is);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(get_own_property_descriptor);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(get_own_property_names);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(get_prototype_of);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(set_prototype_of);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(is_extensible);
|
2021-04-06 22:45:12 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(is_frozen);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(is_sealed);
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(prevent_extensions);
|
2021-04-06 22:06:11 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(seal);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(freeze);
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(keys);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(values);
|
|
|
|
JS_DECLARE_NATIVE_FUNCTION(entries);
|
2021-04-10 18:40:12 +02:00
|
|
|
JS_DECLARE_NATIVE_FUNCTION(create);
|
2020-03-28 17:23:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|