diff --git a/source b/source
index 620d36919d7..f0c50d53027 100644
--- a/source
+++ b/source
@@ -3043,7 +3043,6 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
The HostMakeJobCallback abstract operation
The HostPromiseRejectionTracker abstract operation
The InitializeHostDefinedRealm abstract operation
- The SetRealmGlobalObject abstract operation
The IsAccessorDescriptor abstract operation
The IsCallable abstract operation
The IsConstructor abstract operation
@@ -3074,6 +3073,7 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
The SameValue abstract operation
The ScriptEvaluation abstract operation
The SetDefaultGlobalBindings abstract operation
+ The NewGlobalEnvironment abstract operation
The SetImmutablePrototype abstract operation
The ToBoolean abstract operation
The ToString abstract operation
@@ -111475,7 +111475,14 @@ import "https://example.com/foo/../module2.mjs";
Set realm.[[HostDefined]] to settings.
- Return globalObject.
+ Set realm.[[GlobalObject]] to globalObject.
+
+ Set realm.[[GlobalEnv]] to
+ NewGlobalEnvironment(globalObject, globalObject).
+
+ Perform ? SetDefaultGlobalBindings(realm).
+
+ Return NormalCompletion(unused).
The ShadowRealmGlobalScope
interface