diff options
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index c9dd611da..59b3a428f 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -37,7 +37,6 @@ delete Object.prototype.__proto__; const encoding = window.__bootstrap.encoding; const Console = window.__bootstrap.console.Console; const worker = window.__bootstrap.worker; - const signals = window.__bootstrap.signals; const internals = window.__bootstrap.internals; const performance = window.__bootstrap.performance; const crypto = window.__bootstrap.crypto; @@ -609,7 +608,6 @@ delete Object.prototype.__proto__; // `Deno` with `Deno` namespace from "./deno.ts". ObjectDefineProperty(globalThis, "Deno", util.readOnly(finalDenoNs)); ObjectFreeze(globalThis.Deno.core); - signals.setSignals(); util.log("args", args); } @@ -697,7 +695,6 @@ delete Object.prototype.__proto__; // existing global `Deno` with `Deno` namespace from "./deno.ts". ObjectDefineProperty(globalThis, "Deno", util.readOnly(finalDenoNs)); ObjectFreeze(globalThis.Deno.core); - signals.setSignals(); } else { delete globalThis.Deno; util.assert(globalThis.Deno === undefined); |