summaryrefslogtreecommitdiff
path: root/core/core_isolate.rs
diff options
context:
space:
mode:
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")));