Skip to content

Commit

Permalink
esm: remove unused parameter on module.instantiate
Browse files Browse the repository at this point in the history
PR-URL: #32147
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
himself65 authored and MylesBorins committed Mar 11, 2020
1 parent fe34da8 commit 4c2e4d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/modules/esm/module_job.js
Expand Up @@ -89,7 +89,7 @@ class ModuleJob {
const initWrapper = internalBinding('inspector').callAndPauseOnStart;
initWrapper(this.module.instantiate, this.module);
} else {
this.module.instantiate(true);
this.module.instantiate();
}
} catch (e) {
decorateErrorStack(e);
Expand Down

0 comments on commit 4c2e4d1

Please sign in to comment.