diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-01-06 16:24:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-06 16:24:44 +0100 |
commit | 870622d3ccb3589eeb72a439717edf7e40d9b093 (patch) | |
tree | e5ec609e0c7d2ba701a7ff29e79982faaffb08d5 /cli/worker.rs | |
parent | 4e1a638bc53bbc0e73418271053e7ca2e6389a8e (diff) |
merge libdeno::DenoIsolate into core::Isolate (#3605)
Diffstat (limited to 'cli/worker.rs')
-rw-r--r-- | cli/worker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/worker.rs b/cli/worker.rs index c2e480c1f..e25aa8018 100644 --- a/cli/worker.rs +++ b/cli/worker.rs @@ -35,7 +35,7 @@ pub struct WorkerChannels { #[derive(Clone)] pub struct Worker { pub name: String, - isolate: Arc<Mutex<deno_core::Isolate>>, + isolate: Arc<Mutex<Box<deno_core::Isolate>>>, pub state: ThreadSafeState, external_channels: Arc<Mutex<WorkerChannels>>, } |