Fixed bug with Corporaiton healthcare. Fixed bug with new netscript 1.0 JS Interpreter properly throwing errors

This commit is contained in:
danielyxie
2018-07-15 13:03:33 -05:00
parent 2b38a8cd2a
commit c449dee97e
4 changed files with 4299 additions and 4241 deletions
+7 -7
View File
@@ -228,20 +228,20 @@ function startNetscript1Script(workerScript) {
resolve(workerScript);
}
} catch(e) {
if (isString(e)) {
workerScript.errorMessage = e;
return reject(workerScript);
} else if (e instanceof WorkerScript) {
return reject(e);
} else {
return reject(workerScript);
e = e.toString();
if (!isScriptErrorMessage(e)) {
e = makeRuntimeRejectMsg(workerScript, e);
}
workerScript.errorMessage = e;
return reject(workerScript);
}
}
try {
runInterpreter();
} catch(e) {
console.log("Caught in original");
console.log(e);
if (isString(e)) {
workerScript.errorMessage = e;
return reject(workerScript);