mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 18:35:07 +00:00
LibWeb: Add the ImportMap struct
This commit is contained in:
parent
ee27d8cdfd
commit
d7947995d9
1 changed files with 31 additions and 0 deletions
31
Userland/Libraries/LibWeb/HTML/Scripting/ImportMap.h
Normal file
31
Userland/Libraries/LibWeb/HTML/Scripting/ImportMap.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Copyright (c) 2022, networkException <networkexception@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/HashMap.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
using ModuleSpecifierMap = HashMap<String, Optional<AK::URL>>;
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/webappapis.html#import-map
|
||||
class ImportMap {
|
||||
public:
|
||||
ImportMap() = default;
|
||||
|
||||
ModuleSpecifierMap const& imports() const { return m_imports; }
|
||||
ModuleSpecifierMap& imports() { return m_imports; }
|
||||
|
||||
HashMap<AK::URL, ModuleSpecifierMap> const& scopes() const { return m_scopes; }
|
||||
HashMap<AK::URL, ModuleSpecifierMap>& scopes() { return m_scopes; }
|
||||
|
||||
private:
|
||||
ModuleSpecifierMap m_imports;
|
||||
HashMap<AK::URL, ModuleSpecifierMap> m_scopes;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue