diff --git a/Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp b/Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp index 585ab89ec2..62965847aa 100644 --- a/Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp +++ b/Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp @@ -72,7 +72,6 @@ JS::Value ClassicScript::run(RethrowErrors rethrow_errors) auto timer = Core::ElapsedTimer::start_new(); // 6. Otherwise, set evaluationStatus to ScriptEvaluation(script's record). - // FIXME: Interpreter::run doesn't currently return a JS::Completion. auto interpreter = JS::Interpreter::create_with_existing_realm(m_script_record->realm()); auto result = interpreter->run(*m_script_record);