diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-11-26 20:11:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 20:11:27 +0100 |
commit | d8ab492d016f45346002ae0e9bceac7e900b670a (patch) | |
tree | 963d56d516bdcc70ee76d8232c530fe3d915f45a /core/inspector.rs | |
parent | 55da1a2e72a5c961c369d3c41c5b883486741d44 (diff) |
chore: update rusty_v8 to 0.56.1 (#16835)
Diffstat (limited to 'core/inspector.rs')
-rw-r--r-- | core/inspector.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/inspector.rs b/core/inspector.rs index b1047d421..daedd291d 100644 --- a/core/inspector.rs +++ b/core/inspector.rs @@ -183,12 +183,13 @@ impl JsRuntimeInspector { // Tell the inspector about the global context. let context = v8::Local::new(scope, context); let context_name = v8::inspector::StringView::from(&b"global context"[..]); + let aux_data = v8::inspector::StringView::from(&b""[..]); self_ .v8_inspector .borrow_mut() .as_mut() .unwrap() - .context_created(context, Self::CONTEXT_GROUP_ID, context_name); + .context_created(context, Self::CONTEXT_GROUP_ID, context_name, aux_data); // Poll the session handler so we will get notified whenever there is // new incoming debugger activity. |