diff options
Diffstat (limited to 'cli/js/main.ts')
-rw-r--r-- | cli/js/main.ts | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/cli/js/main.ts b/cli/js/main.ts index b48277960..fbebfefe4 100644 --- a/cli/js/main.ts +++ b/cli/js/main.ts @@ -1,9 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { bootstrapMainRuntime } from "./runtime_main.ts"; -import { - bootstrapWorkerRuntime, - runWorkerMessageLoop -} from "./runtime_worker.ts"; +import { bootstrapWorkerRuntime } from "./runtime_worker.ts"; Object.defineProperties(globalThis, { bootstrapMainRuntime: { @@ -17,11 +14,5 @@ Object.defineProperties(globalThis, { enumerable: false, writable: false, configurable: false - }, - runWorkerMessageLoop: { - value: runWorkerMessageLoop, - enumerable: false, - writable: false, - configurable: false } }); |