diff --git a/Libraries/LibJS/Module.cpp b/Libraries/LibJS/Module.cpp index 2f2d238f8f1..6f566e21a6f 100644 --- a/Libraries/LibJS/Module.cpp +++ b/Libraries/LibJS/Module.cpp @@ -123,7 +123,7 @@ void finish_loading_imported_module(ImportedModuleReferrer referrer, ModuleReque ThrowCompletionOr Module::get_module_namespace(VM& vm) { // 1. Assert: If module is a Cyclic Module Record, then module.[[Status]] is not unlinked. - // FIXME: How do we check this without breaking encapsulation? + // FIXME: Spec bug: https://github.com/tc39/ecma262/issues/3114 // 2. Let namespace be module.[[Namespace]]. auto* namespace_ = m_namespace.ptr();