diff options
Diffstat (limited to 'runtime/worker.rs')
-rw-r--r-- | runtime/worker.rs | 12 |
1 files changed, 7 insertions, 5 deletions
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<v8::Global<v8::Value>, 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 |