diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-28 14:44:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 14:44:22 +0200 |
commit | e5b2815b3943cd39038bba00da462082c6988e6e (patch) | |
tree | 54953513a9c2947dcb2611f079512d07a0f5a0c9 /runtime/js | |
parent | 10012c2fe312a4f7ddc5217adaa6718c91bfb819 (diff) |
Reland "refactor: remove Deno[Deno.internal].nodeUnstable namespace" (#18475)
This reverts commit 357bcfcf79fee92195e37bb3f05e247908f207c5.
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 6 | ||||
-rw-r--r-- | runtime/js/99_main.js | 64 |
2 files changed, 5 insertions, 65 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 54480c9c7..cada4615e 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -153,7 +153,10 @@ const denoNs = { }; const denoNsUnstable = { - listenDatagram: net.listenDatagram, + listenDatagram: net.createListenDatagram( + ops.op_net_listen_udp, + ops.op_net_listen_unixpacket, + ), umask: fs.umask, HttpClient: httpClient.HttpClient, createHttpClient: httpClient.createHttpClient, @@ -170,6 +173,7 @@ const denoNsUnstable = { funlockSync: fs.funlockSync, upgradeHttp: http.upgradeHttp, upgradeHttpRaw: flash.upgradeHttpRaw, + serve: flash.createServe(ops.op_flash_serve), openKv: kv.openKv, Kv: kv.Kv, KvU64: kv.KvU64, diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 9102500bf..956f35d0a 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -45,7 +45,6 @@ import * as version from "ext:runtime/01_version.ts"; import * as os from "ext:runtime/30_os.js"; import * as timers from "ext:deno_web/02_timers.js"; import * as colors from "ext:deno_console/01_colors.js"; -import * as net from "ext:deno_net/01_net.js"; import { inspectArgs, quoteString, @@ -59,7 +58,6 @@ import { denoNs, denoNsUnstable } from "ext:runtime/90_deno_ns.js"; import { errors } from "ext:runtime/01_errors.js"; import * as webidl from "ext:deno_webidl/00_webidl.js"; import DOMException from "ext:deno_web/01_dom_exception.js"; -import * as flash from "ext:deno_flash/01_http.js"; import { mainRuntimeGlobalProperties, setLanguage, @@ -493,27 +491,6 @@ function bootstrapMainRuntime(runtimeOptions) { setUserAgent(userAgent); setLanguage(locale); - // These have to initialized here and not in `90_deno_ns.js` because - // the op function that needs to be passed will be invalidated by creating - // a snapshot - ObjectAssign(internals, { - nodeUnstable: { - serve: flash.createServe(ops.op_node_unstable_flash_serve), - upgradeHttpRaw: flash.upgradeHttpRaw, - listenDatagram: net.createListenDatagram( - ops.op_node_unstable_net_listen_udp, - ops.op_node_unstable_net_listen_unixpacket, - ), - }, - }); - - // FIXME(bartlomieju): temporarily add whole `Deno.core` to - // `Deno[Deno.internal]` namespace. It should be removed and only necessary - // methods should be left there. - ObjectAssign(internals, { - core, - }); - ObjectDefineProperties(finalDenoNs, { pid: util.readOnly(pid), ppid: util.readOnly(ppid), @@ -524,16 +501,6 @@ function bootstrapMainRuntime(runtimeOptions) { if (unstableFlag) { ObjectAssign(finalDenoNs, denoNsUnstable); - // These have to initialized here and not in `90_deno_ns.js` because - // the op function that needs to be passed will be invalidated by creating - // a snapshot - ObjectAssign(finalDenoNs, { - serve: flash.createServe(ops.op_flash_serve), - listenDatagram: net.createListenDatagram( - ops.op_net_listen_udp, - ops.op_net_listen_unixpacket, - ), - }); } // Setup `Deno` global - we're actually overriding already existing global @@ -637,39 +604,8 @@ function bootstrapWorkerRuntime( globalThis.pollForMessages = pollForMessages; - // These have to initialized here and not in `90_deno_ns.js` because - // the op function that needs to be passed will be invalidated by creating - // a snapshot - ObjectAssign(internals, { - nodeUnstable: { - serve: flash.createServe(ops.op_node_unstable_flash_serve), - upgradeHttpRaw: flash.upgradeHttpRaw, - listenDatagram: net.createListenDatagram( - ops.op_node_unstable_net_listen_udp, - ops.op_node_unstable_net_listen_unixpacket, - ), - }, - }); - - // FIXME(bartlomieju): temporarily add whole `Deno.core` to - // `Deno[Deno.internal]` namespace. It should be removed and only necessary - // methods should be left there. - ObjectAssign(internals, { - core, - }); - if (unstableFlag) { ObjectAssign(finalDenoNs, denoNsUnstable); - // These have to initialized here and not in `90_deno_ns.js` because - // the op function that needs to be passed will be invalidated by creating - // a snapshot - ObjectAssign(finalDenoNs, { - serve: flash.createServe(ops.op_flash_serve), - listenDatagram: net.createListenDatagram( - ops.op_net_listen_udp, - ops.op_net_listen_unixpacket, - ), - }); } ObjectDefineProperties(finalDenoNs, { pid: util.readOnly(pid), |