mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 15:04:33 -05:00
19 lines
533 B
Rust
19 lines
533 B
Rust
// 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());
|
|
let mut scope1 = v8::HandleScope::new(&mut isolate);
|
|
|
|
let _local = {
|
|
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)
|
|
};
|
|
}
|
|
|
|
fn mock<T>() -> T {
|
|
unimplemented!()
|
|
}
|