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: nodejs#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 Apr 3, 2020
1 parent 37aee30 commit e147f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/modules/esm/module_job.js
Original file line number Diff line number Diff line change
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 e147f61

Please sign in to comment.