diff --git a/Userland/Libraries/LibJS/Bytecode/Interpreter.cpp b/Userland/Libraries/LibJS/Bytecode/Interpreter.cpp index e6b4e6ff5e..e59c3e7d1f 100644 --- a/Userland/Libraries/LibJS/Bytecode/Interpreter.cpp +++ b/Userland/Libraries/LibJS/Bytecode/Interpreter.cpp @@ -273,7 +273,7 @@ ThrowCompletionOr Interpreter::run(SourceTextModule& module) return js_undefined(); } -FLATTEN void Interpreter::run_bytecode() +void Interpreter::run_bytecode() { auto* locals = vm().running_execution_context().locals.data(); auto& accumulator = this->accumulator();