1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09:00

LibWeb: Add AO for 'module map of realm'

This allows you to get the module map for any realm, whether it is a
principal or synthetic realm. We don't yet have the concept of a
synethetic realm, but this puts the groundwork in place for it.
This commit is contained in:
Shannon Booth 2024-10-26 19:19:04 +13:00 committed by Andrew Kaster
parent 1871b744ff
commit 0382933a0a
Notes: github-actions[bot] 2024-11-02 00:56:26 +00:00
2 changed files with 10 additions and 0 deletions

View file

@ -286,6 +286,15 @@ void EnvironmentSettingsObject::disallow_further_import_maps()
verify_cast<Window>(global).set_import_maps_allowed(false);
}
// https://whatpr.org/html/9893/webappapis.html#concept-realm-module-map
ModuleMap& module_map_of_realm(JS::Realm& realm)
{
// FIXME: 1. If realm is a principal realm, then return the module map of the environment settings object of realm.
// FIXME: 2. Assert: realm is a synthetic realm.
// FIXME: 3. Return the module map of the synthetic realm settings object of realm.
return principal_realm_settings_object(realm).module_map();
}
// https://html.spec.whatwg.org/multipage/webappapis.html#concept-incumbent-realm
// https://whatpr.org/html/9893/b8ea975...df5706b/webappapis.html#concept-incumbent-realm
JS::Realm& incumbent_realm()