From 4fd2b19f640d19e57511eb142b63e16c879ef6fd Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 18 Sep 2018 11:53:16 -0700 Subject: Make Deno multithreaded. By using the tokio default runtime. This patch makes all of the ops thread safe. Adds libdeno to JS globals to make for easier testing. Preliminary work for #733. --- js/globals.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'js') diff --git a/js/globals.ts b/js/globals.ts index 3e40db06c..d88e1b28d 100644 --- a/js/globals.ts +++ b/js/globals.ts @@ -56,8 +56,6 @@ declare global { export const window = globalEval("this"); window.window = window; -window.libdeno = null; - window.setTimeout = timers.setTimeout; window.setInterval = timers.setInterval; window.clearTimeout = timers.clearTimer; -- cgit v1.2.3