1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

LibJS: Make Interpreter::construct() take a GlobalObject&

This commit is contained in:
Andreas Kling 2020-06-20 17:53:33 +02:00
parent 2fe4285693
commit 3ba17d8df7
3 changed files with 4 additions and 4 deletions

View file

@ -117,7 +117,7 @@ public:
void exit_scope(const ScopeNode&);
Value call(Function&, Value this_value, Optional<MarkedValueList> arguments = {});
Value construct(Function&, Function& new_target, Optional<MarkedValueList> arguments = {});
Value construct(Function&, Function& new_target, Optional<MarkedValueList> arguments, GlobalObject&);
CallFrame& push_call_frame()
{