diff --git a/Libraries/LibJS/Interpreter.h b/Libraries/LibJS/Interpreter.h index 7f26cd58fe..5757e92fc7 100644 --- a/Libraries/LibJS/Interpreter.h +++ b/Libraries/LibJS/Interpreter.h @@ -104,7 +104,7 @@ public: void enter_scope(const ScopeNode&, ArgumentVector, ScopeType); void exit_scope(const ScopeNode&); - Value call(Function&, Value this_value = {}, Optional arguments = {}); + Value call(Function&, Value this_value, Optional arguments = {}); Value construct(Function&, Function& new_target, Optional arguments = {}); CallFrame& push_call_frame()