From 870622d3ccb3589eeb72a439717edf7e40d9b093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 6 Jan 2020 16:24:44 +0100 Subject: merge libdeno::DenoIsolate into core::Isolate (#3605) --- core/modules.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/modules.rs') diff --git a/core/modules.rs b/core/modules.rs index 0248e338d..68c500604 100644 --- a/core/modules.rs +++ b/core/modules.rs @@ -198,7 +198,7 @@ impl RecursiveLoad { /// This future needs to take ownership of the isolate. pub fn get_future( self, - isolate: Arc>, + isolate: Arc>>, ) -> impl Future> { async move { let mut load = self; @@ -619,7 +619,7 @@ mod tests { struct MockLoader { pub loads: Arc>>, - pub isolate: Arc>, + pub isolate: Arc>>, pub modules: Arc>, } -- cgit v1.2.3