1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/runtime/js
Matt Mastracci 0efe438f7c
perf: remove opAsync (#21690)
`opAsync` requires a lookup by name on each async call. This is a
mechanical translation of all opAsync calls to ensureFastOps.

The `opAsync` API on Deno.core will be removed at a later time.
2023-12-27 02:30:26 +01:00
..
01_errors.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
01_version.ts refactor: internal runtime code TS support (#17672) 2023-02-08 22:40:18 +01:00
06_util.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
10_permissions.js chore: use primordials in 40_testing.js (#21422) 2023-12-08 08:33:25 +01:00
11_workers.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
13_buffer.js chore: Turn back on dlintPreferPrimordials (#17715) 2023-04-02 19:41:41 +02:00
30_os.js chore: use primordials in 40_testing.js (#21422) 2023-12-08 08:33:25 +01:00
40_fs_events.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
40_http.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
40_process.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
40_signals.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
40_tty.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
41_prompt.js fix(runtime): Make native modal keyboard interaction consistent with browsers (#18453) 2023-12-13 11:31:12 +01:00
90_deno_ns.js feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
98_global_scope.js feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
99_main.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
README.md feat: add --location=<href> and globalThis.location (#7369) 2021-01-07 19:06:08 +01:00

Runtime JavaScript Code

This directory contains Deno runtime code written in plain JavaScript.

Each file is a plain, old script, not ES modules. The reason is that snapshotting ES modules is much harder, especially if one needs to manipulate global scope (like in case of Deno).

Each file is prefixed with a number, telling in which order scripts should be loaded into V8 isolate. This is temporary solution and we're striving not to require specific order (though it's not 100% obvious if that's feasible).

Deno Web APIs

This directory facilities Web APIs that are available in Deno.

Please note, that some implementations might not be completely aligned with specification.

Some Web APIs are using ops under the hood, eg. console, performance.

Implemented Web APIs