diff options
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/06_util.js | 2 | ||||
-rw-r--r-- | runtime/js/10_permissions.js | 2 | ||||
-rw-r--r-- | runtime/js/11_workers.js | 10 | ||||
-rw-r--r-- | runtime/js/13_buffer.js | 2 | ||||
-rw-r--r-- | runtime/js/30_os.js | 2 | ||||
-rw-r--r-- | runtime/js/40_files.js | 2 | ||||
-rw-r--r-- | runtime/js/40_http.js | 2 | ||||
-rw-r--r-- | runtime/js/40_process.js | 2 | ||||
-rw-r--r-- | runtime/js/40_read_file.js | 2 | ||||
-rw-r--r-- | runtime/js/40_spawn.js | 4 | ||||
-rw-r--r-- | runtime/js/40_write_file.js | 4 | ||||
-rw-r--r-- | runtime/js/90_deno_ns.js | 16 | ||||
-rw-r--r-- | runtime/js/98_global_scope.js | 60 | ||||
-rw-r--r-- | runtime/js/99_main.js | 26 |
14 files changed, 68 insertions, 68 deletions
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js index 6ad1b3ce1..435a55a61 100644 --- a/runtime/js/06_util.js +++ b/runtime/js/06_util.js @@ -11,7 +11,7 @@ const { TypeError, } = primordials; import { build } from "internal:runtime/js/01_build.js"; -import { URLPrototype } from "internal:ext/url/00_url.js"; +import { URLPrototype } from "internal:deno_url/00_url.js"; let logDebug = false; let logSource = "JS"; diff --git a/runtime/js/10_permissions.js b/runtime/js/10_permissions.js index 6019302e4..e8243153d 100644 --- a/runtime/js/10_permissions.js +++ b/runtime/js/10_permissions.js @@ -2,7 +2,7 @@ const core = globalThis.Deno.core; const ops = core.ops; -import { Event, EventTarget } from "internal:ext/web/02_event.js"; +import { Event, EventTarget } from "internal:deno_web/02_event.js"; import { pathFromURL } from "internal:runtime/js/06_util.js"; const primordials = globalThis.__bootstrap.primordials; const { diff --git a/runtime/js/11_workers.js b/runtime/js/11_workers.js index 56ceb92f3..7b5090dc5 100644 --- a/runtime/js/11_workers.js +++ b/runtime/js/11_workers.js @@ -11,9 +11,9 @@ const { SymbolIterator, SymbolToStringTag, } = primordials; -import * as webidl from "internal:ext/webidl/00_webidl.js"; -import { URL } from "internal:ext/url/00_url.js"; -import { getLocationHref } from "internal:ext/web/12_location.js"; +import * as webidl from "internal:deno_webidl/00_webidl.js"; +import { URL } from "internal:deno_url/00_url.js"; +import { getLocationHref } from "internal:deno_web/12_location.js"; import { serializePermissions } from "internal:runtime/js/10_permissions.js"; import { log } from "internal:runtime/js/06_util.js"; import { @@ -21,12 +21,12 @@ import { ErrorEvent, EventTarget, MessageEvent, -} from "internal:ext/web/02_event.js"; +} from "internal:deno_web/02_event.js"; import { deserializeJsMessageData, MessagePortPrototype, serializeJsMessageData, -} from "internal:ext/web/13_message_port.js"; +} from "internal:deno_web/13_message_port.js"; function createWorker( specifier, diff --git a/runtime/js/13_buffer.js b/runtime/js/13_buffer.js index 8e87eefa5..be3aed390 100644 --- a/runtime/js/13_buffer.js +++ b/runtime/js/13_buffer.js @@ -4,7 +4,7 @@ // Copyright 2009 The Go Authors. All rights reserved. BSD license. // https://github.com/golang/go/blob/master/LICENSE -import { assert } from "internal:ext/web/00_infra.js"; +import { assert } from "internal:deno_web/00_infra.js"; const primordials = globalThis.__bootstrap.primordials; const { TypedArrayPrototypeSubarray, diff --git a/runtime/js/30_os.js b/runtime/js/30_os.js index 720545b40..b09f25797 100644 --- a/runtime/js/30_os.js +++ b/runtime/js/30_os.js @@ -2,7 +2,7 @@ const core = globalThis.Deno.core; const ops = core.ops; -import { Event, EventTarget } from "internal:ext/web/02_event.js"; +import { Event, EventTarget } from "internal:deno_web/02_event.js"; const primordials = globalThis.__bootstrap.primordials; const { Error, diff --git a/runtime/js/40_files.js b/runtime/js/40_files.js index 98c569a09..f380ca7eb 100644 --- a/runtime/js/40_files.js +++ b/runtime/js/40_files.js @@ -13,7 +13,7 @@ import { pathFromURL } from "internal:runtime/js/06_util.js"; import { readableStreamForRid, writableStreamForRid, -} from "internal:ext/web/06_streams.js"; +} from "internal:deno_web/06_streams.js"; const primordials = globalThis.__bootstrap.primordials; const { ArrayPrototypeFilter, diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js index afacf7b27..026234f79 100644 --- a/runtime/js/40_http.js +++ b/runtime/js/40_http.js @@ -1,7 +1,7 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. const core = globalThis.Deno.core; const ops = core.ops; -import { HttpConn } from "internal:ext/http/01_http.js"; +import { HttpConn } from "internal:deno_http/01_http.js"; function serveHttp(conn) { const rid = ops.op_http_start(conn.rid); diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js index 87e898b56..a949e48ed 100644 --- a/runtime/js/40_process.js +++ b/runtime/js/40_process.js @@ -5,7 +5,7 @@ const ops = core.ops; import { FsFile } from "internal:runtime/js/40_files.js"; import { readAll } from "internal:runtime/js/12_io.js"; import { pathFromURL } from "internal:runtime/js/06_util.js"; -import { assert } from "internal:ext/web/00_infra.js"; +import { assert } from "internal:deno_web/00_infra.js"; const primordials = globalThis.__bootstrap.primordials; const { ArrayPrototypeMap, diff --git a/runtime/js/40_read_file.js b/runtime/js/40_read_file.js index b7f0a7012..317875f73 100644 --- a/runtime/js/40_read_file.js +++ b/runtime/js/40_read_file.js @@ -3,7 +3,7 @@ const core = globalThis.Deno.core; const ops = core.ops; import { pathFromURL } from "internal:runtime/js/06_util.js"; -import * as abortSignal from "internal:ext/web/03_abort_signal.js"; +import * as abortSignal from "internal:deno_web/03_abort_signal.js"; function readFileSync(path) { return ops.op_readfile_sync(pathFromURL(path)); diff --git a/runtime/js/40_spawn.js b/runtime/js/40_spawn.js index dfccec5d7..f153b93a5 100644 --- a/runtime/js/40_spawn.js +++ b/runtime/js/40_spawn.js @@ -4,7 +4,7 @@ const core = globalThis.Deno.core; const ops = core.ops; const primordials = globalThis.__bootstrap.primordials; import { pathFromURL } from "internal:runtime/js/06_util.js"; -import { add, remove } from "internal:ext/web/03_abort_signal.js"; +import { add, remove } from "internal:deno_web/03_abort_signal.js"; const { ArrayPrototypeMap, ObjectEntries, @@ -23,7 +23,7 @@ import { readableStreamForRidUnrefableUnref, ReadableStreamPrototype, writableStreamForRid, -} from "internal:ext/web/06_streams.js"; +} from "internal:deno_web/06_streams.js"; const illegalConstructorKey = Symbol("illegalConstructorKey"); diff --git a/runtime/js/40_write_file.js b/runtime/js/40_write_file.js index a9c870ca3..255def09f 100644 --- a/runtime/js/40_write_file.js +++ b/runtime/js/40_write_file.js @@ -2,10 +2,10 @@ const core = globalThis.Deno.core; const ops = core.ops; const primordials = globalThis.__bootstrap.primordials; -import * as abortSignal from "internal:ext/web/03_abort_signal.js"; +import * as abortSignal from "internal:deno_web/03_abort_signal.js"; import { pathFromURL } from "internal:runtime/js/06_util.js"; import { open } from "internal:runtime/js/40_files.js"; -import { ReadableStreamPrototype } from "internal:ext/web/06_streams.js"; +import { ReadableStreamPrototype } from "internal:deno_web/06_streams.js"; const { ObjectPrototypeIsPrototypeOf } = primordials; function writeFileSync( diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 7b791017b..5321bf1d3 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -2,14 +2,14 @@ const core = globalThis.Deno.core; const ops = core.ops; -import * as timers from "internal:ext/web/02_timers.js"; -import * as httpClient from "internal:ext/fetch/22_http_client.js"; -import * as console from "internal:ext/console/02_console.js"; -import * as ffi from "internal:ext/ffi/00_ffi.js"; -import * as net from "internal:ext/net/01_net.js"; -import * as tls from "internal:ext/net/02_tls.js"; -import * as http from "internal:ext/http/01_http.js"; -import * as flash from "internal:ext/flash/01_http.js"; +import * as timers from "internal:deno_web/02_timers.js"; +import * as httpClient from "internal:deno_fetch/22_http_client.js"; +import * as console from "internal:deno_console/02_console.js"; +import * as ffi from "internal:deno_ffi/00_ffi.js"; +import * as net from "internal:deno_net/01_net.js"; +import * as tls from "internal:deno_net/02_tls.js"; +import * as http from "internal:deno_http/01_http.js"; +import * as flash from "internal:deno_flash/01_http.js"; import * as build from "internal:runtime/js/01_build.js"; import * as errors from "internal:runtime/js/01_errors.js"; import * as version from "internal:runtime/js/01_version.js"; diff --git a/runtime/js/98_global_scope.js b/runtime/js/98_global_scope.js index dcb3bd486..da892f44a 100644 --- a/runtime/js/98_global_scope.js +++ b/runtime/js/98_global_scope.js @@ -8,37 +8,37 @@ const { } = primordials; import * as util from "internal:runtime/js/06_util.js"; -import * as location from "internal:ext/web/12_location.js"; -import * as event from "internal:ext/web/02_event.js"; -import * as timers from "internal:ext/web/02_timers.js"; -import * as base64 from "internal:ext/web/05_base64.js"; -import * as encoding from "internal:ext/web/08_text_encoding.js"; -import * as console from "internal:ext/console/02_console.js"; -import * as caches from "internal:ext/cache/01_cache.js"; -import * as compression from "internal:ext/web/14_compression.js"; +import * as location from "internal:deno_web/12_location.js"; +import * as event from "internal:deno_web/02_event.js"; +import * as timers from "internal:deno_web/02_timers.js"; +import * as base64 from "internal:deno_web/05_base64.js"; +import * as encoding from "internal:deno_web/08_text_encoding.js"; +import * as console from "internal:deno_console/02_console.js"; +import * as caches from "internal:deno_cache/01_cache.js"; +import * as compression from "internal:deno_web/14_compression.js"; import * as worker from "internal:runtime/js/11_workers.js"; -import * as performance from "internal:ext/web/15_performance.js"; -import * as crypto from "internal:ext/crypto/00_crypto.js"; -import * as url from "internal:ext/url/00_url.js"; -import * as urlPattern from "internal:ext/url/01_urlpattern.js"; -import * as headers from "internal:ext/fetch/20_headers.js"; -import * as streams from "internal:ext/web/06_streams.js"; -import * as fileReader from "internal:ext/web/10_filereader.js"; -import * as webgpu from "internal:ext/webgpu/01_webgpu.js"; -import * as webSocket from "internal:ext/websocket/01_websocket.js"; -import * as webSocketStream from "internal:ext/websocket/02_websocketstream.js"; -import * as broadcastChannel from "internal:ext/broadcast_channel/01_broadcast_channel.js"; -import * as file from "internal:ext/web/09_file.js"; -import * as formData from "internal:ext/fetch/21_formdata.js"; -import * as request from "internal:ext/fetch/23_request.js"; -import * as response from "internal:ext/fetch/23_response.js"; -import * as fetch from "internal:ext/fetch/26_fetch.js"; -import * as messagePort from "internal:ext/web/13_message_port.js"; -import * as webidl from "internal:ext/webidl/00_webidl.js"; -import DOMException from "internal:ext/web/01_dom_exception.js"; -import * as abortSignal from "internal:ext/web/03_abort_signal.js"; -import * as globalInterfaces from "internal:ext/web/04_global_interfaces.js"; -import * as webStorage from "internal:ext/webstorage/01_webstorage.js"; +import * as performance from "internal:deno_web/15_performance.js"; +import * as crypto from "internal:deno_crypto/00_crypto.js"; +import * as url from "internal:deno_url/00_url.js"; +import * as urlPattern from "internal:deno_url/01_urlpattern.js"; +import * as headers from "internal:deno_fetch/20_headers.js"; +import * as streams from "internal:deno_web/06_streams.js"; +import * as fileReader from "internal:deno_web/10_filereader.js"; +import * as webgpu from "internal:deno_webgpu/01_webgpu.js"; +import * as webSocket from "internal:deno_websocket/01_websocket.js"; +import * as webSocketStream from "internal:deno_websocket/02_websocketstream.js"; +import * as broadcastChannel from "internal:deno_broadcast_channel/01_broadcast_channel.js"; +import * as file from "internal:deno_web/09_file.js"; +import * as formData from "internal:deno_fetch/21_formdata.js"; +import * as request from "internal:deno_fetch/23_request.js"; +import * as response from "internal:deno_fetch/23_response.js"; +import * as fetch from "internal:deno_fetch/26_fetch.js"; +import * as messagePort from "internal:deno_web/13_message_port.js"; +import * as webidl from "internal:deno_webidl/00_webidl.js"; +import DOMException from "internal:deno_web/01_dom_exception.js"; +import * as abortSignal from "internal:deno_web/03_abort_signal.js"; +import * as globalInterfaces from "internal:deno_web/04_global_interfaces.js"; +import * as webStorage from "internal:deno_webstorage/01_webstorage.js"; import * as prompt from "internal:runtime/js/41_prompt.js"; // https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 797007168..5d9012bc4 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -40,28 +40,28 @@ const { WeakMapPrototypeSet, } = primordials; import * as util from "internal:runtime/js/06_util.js"; -import * as event from "internal:ext/web/02_event.js"; -import * as location from "internal:ext/web/12_location.js"; +import * as event from "internal:deno_web/02_event.js"; +import * as location from "internal:deno_web/12_location.js"; import * as build from "internal:runtime/js/01_build.js"; import * as version from "internal:runtime/js/01_version.js"; import * as os from "internal:runtime/js/30_os.js"; -import * as timers from "internal:ext/web/02_timers.js"; -import * as colors from "internal:ext/console/01_colors.js"; -import * as net from "internal:ext/net/01_net.js"; +import * as timers from "internal:deno_web/02_timers.js"; +import * as colors from "internal:deno_console/01_colors.js"; +import * as net from "internal:deno_net/01_net.js"; import { inspectArgs, quoteString, wrapConsole, -} from "internal:ext/console/02_console.js"; -import * as performance from "internal:ext/web/15_performance.js"; -import * as url from "internal:ext/url/00_url.js"; -import * as fetch from "internal:ext/fetch/26_fetch.js"; -import * as messagePort from "internal:ext/web/13_message_port.js"; +} from "internal:deno_console/02_console.js"; +import * as performance from "internal:deno_web/15_performance.js"; +import * as url from "internal:deno_url/00_url.js"; +import * as fetch from "internal:deno_fetch/26_fetch.js"; +import * as messagePort from "internal:deno_web/13_message_port.js"; import { denoNs, denoNsUnstable } from "internal:runtime/js/90_deno_ns.js"; import { errors } from "internal:runtime/js/01_errors.js"; -import * as webidl from "internal:ext/webidl/00_webidl.js"; -import DOMException from "internal:ext/web/01_dom_exception.js"; -import * as flash from "internal:ext/flash/01_http.js"; +import * as webidl from "internal:deno_webidl/00_webidl.js"; +import DOMException from "internal:deno_web/01_dom_exception.js"; +import * as flash from "internal:deno_flash/01_http.js"; import * as spawn from "internal:runtime/js/40_spawn.js"; import { mainRuntimeGlobalProperties, |