summaryrefslogtreecommitdiffstats
path: root/js/src/jsapi.h
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-07-03 14:21:27 +0000
committerMoonchild <moonchild@palemoon.org>2020-07-03 14:21:27 +0000
commit10e26244192e7cb25663f6dbf47aec215563c038 (patch)
treebb23c8bbe09768b3f614293f9824bf1054e25e2e /js/src/jsapi.h
parent74c48bcc74fe566d8555eed6792d0bdb2003fff3 (diff)
downloadUXP-10e26244192e7cb25663f6dbf47aec215563c038.tar
UXP-10e26244192e7cb25663f6dbf47aec215563c038.tar.gz
UXP-10e26244192e7cb25663f6dbf47aec215563c038.tar.lz
UXP-10e26244192e7cb25663f6dbf47aec215563c038.tar.xz
UXP-10e26244192e7cb25663f6dbf47aec215563c038.zip
Issue #618 - Match JSAPI names with the changes in 9ca74147225eed305e28c7887f9b2251aeeb0f36
Ref: BZ 1388728
Diffstat (limited to 'js/src/jsapi.h')
-rw-r--r--js/src/jsapi.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/js/src/jsapi.h b/js/src/jsapi.h
index 5e0259587..9c3bf8151 100644
--- a/js/src/jsapi.h
+++ b/js/src/jsapi.h
@@ -4356,28 +4356,27 @@ extern JS_PUBLIC_API(JS::Value)
GetModuleHostDefinedField(JSObject* module);
/*
- * Perform the ModuleDeclarationInstantiation operation on on the give source
- * text module record.
+ * Perform the ModuleInstantiate operation on the given source text module
+ * record.
*
* This transitively resolves all module dependencies (calling the
* HostResolveImportedModule hook) and initializes the environment record for
* the module.
*/
extern JS_PUBLIC_API(bool)
-ModuleDeclarationInstantiation(JSContext* cx, JS::HandleObject moduleRecord);
+ModuleInstantiate(JSContext* cx, JS::HandleObject moduleRecord);
/*
- * Perform the ModuleEvaluation operation on on the give source text module
- * record.
+ * Perform the ModuleEvaluate operation on the given source text module record.
*
* This does nothing if this module has already been evaluated. Otherwise, it
* transitively evaluates all dependences of this module and then evaluates this
* module.
*
- * ModuleDeclarationInstantiation must have completed prior to calling this.
+ * ModuleInstantiate must have completed prior to calling this.
*/
extern JS_PUBLIC_API(bool)
-ModuleEvaluation(JSContext* cx, JS::HandleObject moduleRecord);
+ModuleEvaluate(JSContext* cx, JS::HandleObject moduleRecord);
/*
* Get a list of the module specifiers used by a source text module