merge libdeno::DenoIsolate into core::Isolate (#3605)

This commit is contained in:
Bartek Iwańczuk 2020-01-06 16:24:44 +01:00 committed by GitHub
parent 4e1a638bc5
commit 870622d3cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 1399 additions and 1644 deletions

View file

@ -62,7 +62,7 @@ where
}
pub struct TSIsolate {
isolate: Isolate,
isolate: Box<Isolate>,
state: Arc<Mutex<TSState>>,
}
@ -220,7 +220,7 @@ pub fn mksnapshot_bundle_ts(
}
fn write_snapshot(
mut runtime_isolate: Isolate,
mut runtime_isolate: Box<Isolate>,
bundle: &Path,
) -> Result<(), ErrBox> {
println!("creating snapshot...");