2020-02-12 18:20:24 -05:00
|
|
|
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
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);
|
|
|
|
let context = v8::Context::new(&mut scope1);
|
|
|
|
let mut scope2 = v8::ContextScope::new(&mut scope1, context);
|
|
|
|
|
2020-02-12 18:20:24 -05:00
|
|
|
let _exception = {
|
2020-06-03 01:38:34 -04:00
|
|
|
let mut scope3 = v8::HandleScope::new(&mut scope2);
|
|
|
|
let mut scope4 = v8::HandleScope::new(&mut scope3);
|
2020-06-25 19:40:53 -04:00
|
|
|
let mut try_catch = v8::TryCatch::new(&mut scope4);
|
|
|
|
try_catch.exception().unwrap()
|
2020-02-12 18:20:24 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mock<T>() -> T {
|
|
|
|
unimplemented!()
|
|
|
|
}
|