2021-10-13 20:08:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibJS/Runtime/FunctionObject.h>
|
|
|
|
#include <LibJS/Runtime/Realm.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
class WrappedFunction final : public FunctionObject {
|
|
|
|
JS_OBJECT(WrappedFunction, FunctionObject);
|
2024-11-14 15:01:23 +00:00
|
|
|
GC_DECLARE_ALLOCATOR(WrappedFunction);
|
2021-10-13 20:08:48 +00:00
|
|
|
|
|
|
|
public:
|
2024-11-14 15:01:23 +00:00
|
|
|
static ThrowCompletionOr<GC::Ref<WrappedFunction>> create(Realm&, Realm& caller_realm, FunctionObject& target_function);
|
2021-10-13 20:08:48 +00:00
|
|
|
|
|
|
|
virtual ~WrappedFunction() = default;
|
|
|
|
|
2023-11-27 11:56:20 +00:00
|
|
|
virtual ThrowCompletionOr<Value> internal_call(Value this_argument, ReadonlySpan<Value> arguments_list) override;
|
2021-10-13 20:08:48 +00:00
|
|
|
|
|
|
|
// FIXME: Remove this (and stop inventing random internal slots that shouldn't exist, jeez)
|
2023-02-26 23:09:02 +00:00
|
|
|
virtual DeprecatedFlyString const& name() const override { return m_wrapped_target_function->name(); }
|
2021-10-13 20:08:48 +00:00
|
|
|
|
2023-02-26 23:09:02 +00:00
|
|
|
virtual Realm* realm() const override { return m_realm; }
|
2021-10-13 20:08:48 +00:00
|
|
|
|
2022-07-31 10:13:33 +00:00
|
|
|
FunctionObject const& wrapped_target_function() const { return m_wrapped_target_function; }
|
|
|
|
FunctionObject& wrapped_target_function() { return m_wrapped_target_function; }
|
|
|
|
|
2021-10-13 20:08:48 +00:00
|
|
|
private:
|
2022-08-28 21:51:28 +00:00
|
|
|
WrappedFunction(Realm&, FunctionObject&, Object& prototype);
|
|
|
|
|
2021-10-13 20:08:48 +00:00
|
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
|
|
|
|
// Internal Slots of Wrapped Function Exotic Objects, https://tc39.es/proposal-shadowrealm/#table-internal-slots-of-wrapped-function-exotic-objects
|
2024-11-14 15:01:23 +00:00
|
|
|
GC::Ref<FunctionObject> m_wrapped_target_function; // [[WrappedTargetFunction]]
|
|
|
|
GC::Ref<Realm> m_realm; // [[Realm]]
|
2021-10-13 20:08:48 +00:00
|
|
|
};
|
|
|
|
|
2023-11-27 11:56:20 +00:00
|
|
|
ThrowCompletionOr<Value> ordinary_wrapped_function_call(WrappedFunction const&, Value this_argument, ReadonlySpan<Value> arguments_list);
|
2022-07-31 10:13:33 +00:00
|
|
|
void prepare_for_wrapped_function_call(WrappedFunction const&, ExecutionContext& callee_context);
|
|
|
|
|
2021-10-13 20:08:48 +00:00
|
|
|
}
|