LibJS: Pass JS::Function around by reference more

This commit is contained in:
Andreas Kling 2020-04-29 13:43:57 +02:00
commit aaf35112a4
Notes: sideshowbarker 2024-07-19 07:11:39 +09:00
8 changed files with 22 additions and 22 deletions

View file

@ -103,7 +103,7 @@ public:
void enter_scope(const ScopeNode&, ArgumentVector, ScopeType);
void exit_scope(const ScopeNode&);
Value call(Function*, Value this_value = {}, Optional<MarkedValueList> arguments = {});
Value call(Function&, Value this_value = {}, Optional<MarkedValueList> arguments = {});
CallFrame& push_call_frame()
{