2020-01-19 21:16:37 -05:00
|
|
|
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
pub fn main() {
|
2020-02-11 17:01:27 -05:00
|
|
|
let mut isolate = v8::Isolate::new(mock());
|
2020-06-03 01:38:34 -04:00
|
|
|
let mut scope1 = v8::HandleScope::new(&mut isolate);
|
2020-01-19 21:16:37 -05:00
|
|
|
|
2020-02-12 18:20:24 -05:00
|
|
|
let _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);
|
|
|
|
let mut scope4 = v8::EscapableHandleScope::new(&mut scope3);
|
|
|
|
let value = v8::Integer::new(&mut scope4, 42);
|
|
|
|
scope4.escape(value)
|
2020-01-19 21:16:37 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mock<T>() -> T {
|
|
|
|
unimplemented!()
|
|
|
|
}
|