2020-04-04 14:34:31 +01:00
|
|
|
/*
|
2021-04-22 22:51:19 +02:00
|
|
|
* Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
|
2020-04-04 14:34:31 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-04-04 14:34:31 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-01-15 17:26:06 +01:00
|
|
|
#include <LibJS/Runtime/FunctionKind.h>
|
2020-04-04 14:34:31 +01:00
|
|
|
#include <LibJS/Runtime/NativeFunction.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
class FunctionConstructor final : public NativeFunction {
|
2020-06-21 15:14:02 +02:00
|
|
|
JS_OBJECT(FunctionConstructor, NativeFunction);
|
|
|
|
|
2020-04-04 14:34:31 +01:00
|
|
|
public:
|
2022-02-09 10:06:40 +00:00
|
|
|
static ThrowCompletionOr<ECMAScriptFunctionObject*> create_dynamic_function(GlobalObject& global_object, FunctionObject& constructor, FunctionObject* new_target, FunctionKind kind, MarkedVector<Value> const& args);
|
2021-06-16 10:52:48 -07:00
|
|
|
|
2020-06-20 15:40:48 +02:00
|
|
|
explicit FunctionConstructor(GlobalObject&);
|
2020-07-22 17:50:18 +02:00
|
|
|
virtual void initialize(GlobalObject&) override;
|
2020-04-04 14:34:31 +01:00
|
|
|
virtual ~FunctionConstructor() override;
|
|
|
|
|
2021-10-20 21:16:30 +01:00
|
|
|
virtual ThrowCompletionOr<Value> call() override;
|
|
|
|
virtual ThrowCompletionOr<Object*> construct(FunctionObject& new_target) override;
|
2020-04-04 14:34:31 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual bool has_constructor() const override { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|