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:
parent
2fe4285693
commit
3ba17d8df7
3 changed files with 4 additions and 4 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue