2021-11-15 01:53:24 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, David Tuin <davidot@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibJS/Runtime/NativeFunction.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
class AsyncGeneratorFunctionConstructor final : public NativeFunction {
|
|
|
|
JS_OBJECT(AsyncGeneratorFunctionConstructor, NativeFunction);
|
|
|
|
|
|
|
|
public:
|
2022-08-16 00:20:49 +01:00
|
|
|
explicit AsyncGeneratorFunctionConstructor(Realm&);
|
2021-11-15 01:53:24 +01:00
|
|
|
virtual void initialize(GlobalObject&) override;
|
|
|
|
virtual ~AsyncGeneratorFunctionConstructor() override = default;
|
|
|
|
|
|
|
|
virtual ThrowCompletionOr<Value> call() override;
|
|
|
|
virtual ThrowCompletionOr<Object*> construct(FunctionObject& new_target) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual bool has_constructor() const override { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|