From a4aec92c7114d8f0296c2e6b6b6d5cc91d63e14b Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Wed, 3 Nov 2021 21:54:31 +0900 Subject: [PATCH] chore: fmt --- core/runtime.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/runtime.rs b/core/runtime.rs index ac25e94f81577..7fe6d6f2f7b61 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -1163,7 +1163,10 @@ impl JsRuntime { if let Ok(err_class) = v8::Local::::try_from( v8::Local::::new(scope, err_class), ) { - return err_class.new_instance(scope, &[message.into()]).unwrap().into(); + return err_class + .new_instance(scope, &[message.into()]) + .unwrap() + .into(); } } v8::Exception::type_error(scope, message)