fixed nsjs script with no main causing unkillable zombie scripts

This commit is contained in:
Olivier Gagnon 2018-07-30 21:01:09 -04:00
parent fabc45f496
commit 8b49a68f85

@ -39,8 +39,7 @@ export async function executeJSScript(scripts = [], workerScript) {
// TODO: putting await in a non-async function yields unhelpful // TODO: putting await in a non-async function yields unhelpful
// "SyntaxError: unexpected reserved word" with no line number information. // "SyntaxError: unexpected reserved word" with no line number information.
if (!loadedModule.main) { if (!loadedModule.main) {
throw makeRuntimeRejectMsg(script.filename + throw makeRuntimeRejectMsg(workerScript, `${script.filename} cannot be run because it does not have a main function.`);
" did not have a main function, cannot run it.");
} }
return loadedModule.main(ns); return loadedModule.main(ns);
} finally { } finally {