diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-07-23 19:53:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 10:53:51 -0700 |
commit | 3e08b6ae89f9d29d5249345697fca6f86284bc3d (patch) | |
tree | ed7698ea222e22fb7fd09d40719d4cc212c03545 | |
parent | 28f2f02b7a72154458762c0c152fe598c489e4c7 (diff) |
cleanup(runtime): remove last references to Deno.core.sharedQueue (#11503)
`Deno.core.sharedQueue` was killed in #9843
-rw-r--r-- | runtime/js/99_main.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 71480e5a0..834e692f6 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -526,7 +526,6 @@ delete Object.prototype.__proto__; // `Deno` with `Deno` namespace from "./deno.ts". ObjectDefineProperty(globalThis, "Deno", util.readOnly(finalDenoNs)); ObjectFreeze(globalThis.Deno.core); - ObjectFreeze(globalThis.Deno.core.sharedQueue); signals.setSignals(); util.log("args", args); @@ -599,7 +598,6 @@ delete Object.prototype.__proto__; util.immutableDefine(globalThis, "Deno", finalDenoNs); ObjectFreeze(globalThis.Deno); ObjectFreeze(globalThis.Deno.core); - ObjectFreeze(globalThis.Deno.core.sharedQueue); signals.setSignals(); } else { delete globalThis.Deno; |