mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
LibJS: Allow comparing module records by equality
This commit is contained in:
committed by
Andreas Kling
parent
431faa1044
commit
1a15e2cec6
@@ -22,6 +22,8 @@ struct ModuleWithSpecifier {
|
||||
struct ImportAttribute {
|
||||
ByteString key;
|
||||
ByteString value;
|
||||
|
||||
bool operator==(ImportAttribute const&) const = default;
|
||||
};
|
||||
|
||||
// https://tc39.es/proposal-import-attributes/#modulerequest-record
|
||||
@@ -42,6 +44,8 @@ struct ModuleRequest {
|
||||
|
||||
DeprecatedFlyString module_specifier; // [[Specifier]]
|
||||
Vector<ImportAttribute> attributes; // [[Attributes]]
|
||||
|
||||
bool operator==(ModuleRequest const&) const = default;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user