2022-01-27 16:51:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, David Tuin <davidot@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibJS/Module.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
// 1.2 Synthetic Module Records, https://tc39.es/proposal-json-modules/#sec-synthetic-module-records
|
|
|
|
class SyntheticModule final : public Module {
|
2022-09-05 15:31:25 +03:00
|
|
|
JS_CELL(SyntheticModule, Module);
|
|
|
|
|
2022-01-27 16:51:21 +03:00
|
|
|
public:
|
|
|
|
using EvaluationFunction = Function<ThrowCompletionOr<void>(SyntheticModule&)>;
|
|
|
|
|
2022-09-05 15:31:25 +03:00
|
|
|
static NonnullGCPtr<SyntheticModule> create_default_export_synthetic_module(Value default_export, Realm& realm, StringView filename);
|
2022-01-27 16:51:21 +03:00
|
|
|
|
|
|
|
ThrowCompletionOr<void> set_synthetic_module_export(FlyString const& export_name, Value export_value);
|
|
|
|
|
|
|
|
virtual ThrowCompletionOr<void> link(VM& vm) override;
|
|
|
|
virtual ThrowCompletionOr<Promise*> evaluate(VM& vm) override;
|
|
|
|
virtual ThrowCompletionOr<Vector<FlyString>> get_exported_names(VM& vm, Vector<Module*> export_star_set) override;
|
|
|
|
virtual ThrowCompletionOr<ResolvedBinding> resolve_export(VM& vm, FlyString const& export_name, Vector<ResolvedBinding> resolve_set) override;
|
|
|
|
|
|
|
|
private:
|
2022-09-05 15:31:25 +03:00
|
|
|
SyntheticModule(Vector<FlyString> export_names, EvaluationFunction evaluation_steps, Realm& realm, StringView filename);
|
|
|
|
|
2022-01-27 16:51:21 +03:00
|
|
|
Vector<FlyString> m_export_names; // [[ExportNames]]
|
|
|
|
EvaluationFunction m_evaluation_steps; // [[EvaluationSteps]]
|
|
|
|
};
|
|
|
|
|
2022-09-05 15:31:25 +03:00
|
|
|
ThrowCompletionOr<NonnullGCPtr<Module>> parse_json_module(StringView source_text, Realm& realm, StringView filename);
|
2022-01-27 16:51:21 +03:00
|
|
|
|
|
|
|
}
|