From 870622d3ccb3589eeb72a439717edf7e40d9b093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 6 Jan 2020 16:24:44 +0100 Subject: merge libdeno::DenoIsolate into core::Isolate (#3605) --- deno_typescript/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deno_typescript/lib.rs') diff --git a/deno_typescript/lib.rs b/deno_typescript/lib.rs index c7de33215..2d459f98f 100644 --- a/deno_typescript/lib.rs +++ b/deno_typescript/lib.rs @@ -62,7 +62,7 @@ where } pub struct TSIsolate { - isolate: Isolate, + isolate: Box, state: Arc>, } @@ -220,7 +220,7 @@ pub fn mksnapshot_bundle_ts( } fn write_snapshot( - mut runtime_isolate: Isolate, + mut runtime_isolate: Box, bundle: &Path, ) -> Result<(), ErrBox> { println!("creating snapshot..."); -- cgit v1.2.3