2022-11-23 14:18:38 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021-2022, David Tuin <davidot@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/FlyString.h>
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
// 2.9 ModuleRequest Records, https://tc39.es/proposal-import-assertions/#sec-modulerequest-record
|
|
|
|
struct ModuleRequest {
|
|
|
|
struct Assertion {
|
2022-12-04 18:02:33 +00:00
|
|
|
DeprecatedString key;
|
|
|
|
DeprecatedString value;
|
2022-11-23 14:18:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
ModuleRequest() = default;
|
|
|
|
|
|
|
|
explicit ModuleRequest(FlyString specifier)
|
|
|
|
: module_specifier(move(specifier))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ModuleRequest(FlyString module_specifier, Vector<Assertion> assertions);
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void add_assertion(DeprecatedString key, DeprecatedString value)
|
2022-11-23 14:18:38 +01:00
|
|
|
{
|
|
|
|
assertions.empend(move(key), move(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
FlyString module_specifier; // [[Specifier]]
|
|
|
|
Vector<Assertion> assertions; // [[Assertions]]
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|