diff --git a/src/NetscriptFunctions.js b/src/NetscriptFunctions.js index e1746e55b..009c4be2a 100644 --- a/src/NetscriptFunctions.js +++ b/src/NetscriptFunctions.js @@ -133,7 +133,7 @@ import { NetscriptPorts, runScriptFromScript, startWorkerScript } from "./Netscr import { killWorkerScript } from "./Netscript/killWorkerScript"; import { workerScripts } from "./Netscript/WorkerScripts"; import { makeRuntimeRejectMsg, netscriptDelay, resolveNetscriptRequestedThreads } from "./NetscriptEvaluator"; -import { Interpreter } from "./JSInterpreter"; +import { Interpreter } from "./ThirdParty/JSInterpreter"; import { NetscriptPort } from "./NetscriptPort"; import { SleeveTaskType } from "./PersonObjects/Sleeve/SleeveTaskTypesEnum"; import { findSleevePurchasableAugs } from "./PersonObjects/Sleeve/SleeveHelpers"; diff --git a/src/NetscriptWorker.ts b/src/NetscriptWorker.ts index 0ad932bef..471aa75b3 100644 --- a/src/NetscriptWorker.ts +++ b/src/NetscriptWorker.ts @@ -9,7 +9,7 @@ import { WorkerScriptStartStopEventEmitter } from "./Netscript/WorkerScriptStart import { generateNextPid } from "./Netscript/Pid"; import { CONSTANTS } from "./Constants"; -import { Interpreter } from "./JSInterpreter"; +import { Interpreter } from "./ThirdParty/JSInterpreter"; import { isScriptErrorMessage, makeRuntimeRejectMsg } from "./NetscriptEvaluator"; import { NetscriptFunctions } from "./NetscriptFunctions"; import { executeJSScript } from "./NetscriptJSEvaluator"; diff --git a/src/JSInterpreter.d.ts b/src/ThirdParty/JSInterpreter.d.ts similarity index 100% rename from src/JSInterpreter.d.ts rename to src/ThirdParty/JSInterpreter.d.ts diff --git a/src/JSInterpreter.js b/src/ThirdParty/JSInterpreter.js similarity index 100% rename from src/JSInterpreter.js rename to src/ThirdParty/JSInterpreter.js