From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- js/src/vm/Modules.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 js/src/vm/Modules.h (limited to 'js/src/vm/Modules.h') diff --git a/js/src/vm/Modules.h b/js/src/vm/Modules.h new file mode 100644 index 0000000000..18b97ac3d7 --- /dev/null +++ b/js/src/vm/Modules.h @@ -0,0 +1,45 @@ +/* -*- Mode: javascript; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 + * -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef vm_Modules_h +#define vm_Modules_h + +#include "NamespaceImports.h" + +#include "builtin/ModuleObject.h" +#include "js/AllocPolicy.h" +#include "js/GCVector.h" +#include "js/RootingAPI.h" + +struct JSContext; + +namespace js { + +using ModuleVector = GCVector; + +bool ModuleResolveExport(JSContext* cx, Handle module, + Handle exportName, + MutableHandle result); + +ModuleNamespaceObject* GetOrCreateModuleNamespace(JSContext* cx, + Handle module); + +bool ModuleInitializeEnvironment(JSContext* cx, Handle module); + +bool ModuleLink(JSContext* cx, Handle module); + +// Start evaluating the module. If TLA is enabled, result will be a promise. +bool ModuleEvaluate(JSContext* cx, Handle module, + MutableHandle result); + +void AsyncModuleExecutionFulfilled(JSContext* cx, Handle module); + +void AsyncModuleExecutionRejected(JSContext* cx, Handle module, + HandleValue error); + +} // namespace js + +#endif // vm_Modules_h -- cgit v1.2.3