mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
merge libdeno::DenoIsolate into core::Isolate (#3605)
This commit is contained in:
parent
4e1a638bc5
commit
870622d3cc
7 changed files with 1399 additions and 1644 deletions
|
@ -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...");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue