summaryrefslogtreecommitdiff
path: root/core/core_isolate.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-06-05 18:36:54 -0400
committerGitHub <noreply@github.com>2020-06-05 18:36:54 -0400
commit79d9cf52d0298ba85e0ac4a58014116bb84bfc59 (patch)
tree87d9855045812a5f14672a3f14c4b9b7be1b0c8f /core/core_isolate.rs
parentd2243b1125722e775b1f9719197260d1cda1220d (diff)
fix(core): ES module snapshots (#6111)
Co-authored-by: Bert Belder <bertbelder@gmail.com>
Diffstat (limited to 'core/core_isolate.rs')
-rw-r--r--core/core_isolate.rs2
1 files changed, 1 insertions, 1 deletions
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")));