v8 130.0.7

Rust bindings to V8
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0308]: mismatched types
 --> tests/compile_fail/object_without_context_scope.rs:6:33
  |
6 |   let _object = v8::Object::new(&mut scope);
  |                 --------------- ^^^^^^^^^^ expected `&mut HandleScope<'_>`, found `&mut HandleScope<'_, ()>`
  |                 |
  |                 arguments to this function are incorrect
  |
  = note: expected mutable reference `&mut HandleScope<'_, v8::Context>`
             found mutable reference `&mut HandleScope<'_, ()>`
note: associated function defined here
 --> src/object.rs
  |
  |   pub fn new<'s>(scope: &mut HandleScope<'s>) -> Local<'s, Object> {
  |          ^^^