From 79d9cf52d0298ba85e0ac4a58014116bb84bfc59 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 5 Jun 2020 18:36:54 -0400 Subject: fix(core): ES module snapshots (#6111) Co-authored-by: Bert Belder --- core/core_isolate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/core_isolate.rs') diff --git a/core/core_isolate.rs b/core/core_isolate.rs index 984a6a2a6..dc22d821a 100644 --- a/core/core_isolate.rs +++ b/core/core_isolate.rs @@ -270,7 +270,7 @@ impl CoreIsolate { } /// Executes a bit of built-in JavaScript to provide Deno.sharedQueue. - fn shared_init(&mut self) { + pub(crate) fn shared_init(&mut self) { if self.needs_init { self.needs_init = false; js_check(self.execute("core.js", include_str!("core.js"))); -- cgit v1.2.3