2020-02-12 17:45:14 -05:00
|
|
|
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use rusty_v8 as v8;
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let mut isolate = v8::Isolate::new(mock());
|
2020-06-03 01:38:34 -04:00
|
|
|
let mut scope1 = v8::HandleScope::new(&mut isolate);
|
2020-02-12 17:45:14 -05:00
|
|
|
|
2020-02-12 18:20:24 -05:00
|
|
|
let _boxed_local = {
|
2020-06-03 01:38:34 -04:00
|
|
|
let mut scope2 = v8::HandleScope::new(&mut scope1);
|
|
|
|
let mut scope3 = v8::HandleScope::new(&mut scope2);
|
|
|
|
Box::new(v8::Integer::new(&mut scope3, 123))
|
2020-02-12 17:45:14 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mock<T>() -> T {
|
|
|
|
unimplemented!()
|
|
|
|
}
|