diff --git a/Libraries/LibJS/Interpreter.cpp b/Libraries/LibJS/Interpreter.cpp index 17236cf335..1c96f23b7f 100644 --- a/Libraries/LibJS/Interpreter.cpp +++ b/Libraries/LibJS/Interpreter.cpp @@ -59,7 +59,7 @@ Value Interpreter::run(const Statement& statement, Vector arguments, S if (!statement.is_scope_node()) return statement.execute(*this); - auto& block = static_cast(statement); + auto& block = static_cast(statement); enter_scope(block, move(arguments), scope_type); Value last_value = js_undefined();