diff options
author | Matt Mastracci <matthew@mastracci.com> | 2024-02-10 19:08:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 19:08:02 -0700 |
commit | 26d9b2f3174030138a13bdb60c6c76a38fa0df19 (patch) | |
tree | be524bf55f7cb0d7e7fdd761e4cd045d5dbf6f31 /cli/worker.rs | |
parent | f5e46c9bf2f50d66a953fa133161fc829cecff06 (diff) |
chore: deno_core bump (#22379)
- Updates to V8 12.1.285.27
https://github.com/denoland/rusty_v8/pull/1383
- Swaps Box for Rc for `source_map_getter`
Diffstat (limited to 'cli/worker.rs')
-rw-r--r-- | cli/worker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/worker.rs b/cli/worker.rs index e5a750597..e897c1a86 100644 --- a/cli/worker.rs +++ b/cli/worker.rs @@ -73,7 +73,7 @@ pub trait ModuleLoaderFactory: Send + Sync { dynamic_permissions: PermissionsContainer, ) -> Rc<dyn ModuleLoader>; - fn create_source_map_getter(&self) -> Option<Box<dyn SourceMapGetter>>; + fn create_source_map_getter(&self) -> Option<Rc<dyn SourceMapGetter>>; } // todo(dsherret): this is temporary and we should remove this |