summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/WrappedFunction.h
blob: 89770c02ea310ee0f019383496a0be71ea163c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * 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);

public:
    static WrappedFunction* create(GlobalObject&, Realm& caller_realm, FunctionObject& target_function);

    WrappedFunction(Realm&, FunctionObject&, Object& prototype);
    virtual ~WrappedFunction() = default;

    virtual ThrowCompletionOr<Value> internal_call(Value this_argument, MarkedValueList arguments_list) override;

    // FIXME: Remove this (and stop inventing random internal slots that shouldn't exist, jeez)
    virtual FlyString const& name() const override { return m_wrapped_target_function.name(); }

    virtual Realm* realm() const override { return &m_realm; }

private:
    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
    FunctionObject& m_wrapped_target_function; // [[WrappedTargetFunction]]
    Realm& m_realm;                            // [[Realm]]
};

}