summaryrefslogtreecommitdiffstats
path: root/js/src/builtin/Module.js
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-07-07 12:27:02 +0000
committerMoonchild <moonchild@palemoon.org>2020-07-10 18:31:16 +0000
commite29a8bd113594a55d5087989c90317cc86d03f48 (patch)
tree76c7a20724b0ab23fb5e6ee8ed25888df89ea55e /js/src/builtin/Module.js
parent83abc5af599d4531c68c2e7a84caab9545854594 (diff)
downloadUXP-e29a8bd113594a55d5087989c90317cc86d03f48.tar
UXP-e29a8bd113594a55d5087989c90317cc86d03f48.tar.gz
UXP-e29a8bd113594a55d5087989c90317cc86d03f48.tar.lz
UXP-e29a8bd113594a55d5087989c90317cc86d03f48.tar.xz
UXP-e29a8bd113594a55d5087989c90317cc86d03f48.zip
Issue #618 - Fix typo and remove old function declarations.
Diffstat (limited to 'js/src/builtin/Module.js')
-rw-r--r--js/src/builtin/Module.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/builtin/Module.js b/js/src/builtin/Module.js
index b3365b505..64d62d216 100644
--- a/js/src/builtin/Module.js
+++ b/js/src/builtin/Module.js
@@ -509,7 +509,7 @@ function ResolutionError(resolution, kind, name, line, column)
function ModuleEvaluate()
{
if (!IsObject(this) || !IsModule(this))
- return callFunction(CallModuleMethodIfWrapped, this, "ModuleEvaluatie");
+ return callFunction(CallModuleMethodIfWrapped, this, "ModuleEvaluate");
// Step 1
let module = this;