From 97f280eb9b28f1b7743eb73cea817f3a5d122b83 Mon Sep 17 00:00:00 2001 From: Fenix Date: Mon, 19 Dec 2022 04:34:33 +0800 Subject: refactor(runtime): "Worker::execute_script" returns value (#17092) This commit changes "Worker::execute_script" to return a global handle to "v8::Value". --- runtime/worker.rs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'runtime') diff --git a/runtime/worker.rs b/runtime/worker.rs index b184ac3fa..41da8588b 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -13,6 +13,7 @@ use deno_core::error::AnyError; use deno_core::error::JsError; use deno_core::futures::Future; use deno_core::located_script_name; +use deno_core::v8; use deno_core::CompiledWasmModuleStore; use deno_core::Extension; use deno_core::FsModuleLoader; @@ -288,9 +289,8 @@ impl MainWorker { &mut self, script_name: &str, source_code: &str, - ) -> Result<(), AnyError> { - self.js_runtime.execute_script(script_name, source_code)?; - Ok(()) + ) -> Result, AnyError> { + self.js_runtime.execute_script(script_name, source_code) } /// Loads and instantiates specified JavaScript module as "main" module. @@ -431,7 +431,8 @@ impl MainWorker { // it. Instead we're using global `dispatchEvent` function which will // used a saved reference to global scope. "dispatchEvent(new Event('load'))", - ) + )?; + Ok(()) } /// Dispatches "unload" event to the JavaScript runtime. @@ -447,7 +448,8 @@ impl MainWorker { // it. Instead we're using global `dispatchEvent` function which will // used a saved reference to global scope. "dispatchEvent(new Event('unload'))", - ) + )?; + Ok(()) } /// Dispatches "beforeunload" event to the JavaScript runtime. Returns a boolean -- cgit v1.2.3