From d8ab492d016f45346002ae0e9bceac7e900b670a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 26 Nov 2022 20:11:27 +0100 Subject: chore: update rusty_v8 to 0.56.1 (#16835) --- core/inspector.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core') 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. -- cgit v1.2.3