diff options
author | snek <snek@deno.com> | 2024-08-02 08:14:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-02 08:14:35 -0700 |
commit | 3a1a1cc030fb7fc90d51ee27162466d6ac924926 (patch) | |
tree | b23cc115bbe39d25eb8ff7dc410700b7f42cf46d /runtime/shared.rs | |
parent | b82a2f114c7c936bf4398669453513ace478cb1d (diff) |
feat: async context (#24402)
We are switching to ContinuationPreservedEmbedderData. This allows
adding async context tracking to the various async operations that deno
provides.
Fixes: https://github.com/denoland/deno/issues/7010
Fixes: https://github.com/denoland/deno/issues/22886
Fixes: https://github.com/denoland/deno/issues/24368
Diffstat (limited to 'runtime/shared.rs')
-rw-r--r-- | runtime/shared.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/shared.rs b/runtime/shared.rs index 1b2136c63..185cbc0a9 100644 --- a/runtime/shared.rs +++ b/runtime/shared.rs @@ -38,6 +38,7 @@ extension!(runtime, dir "js", "01_errors.js", "01_version.ts", + "01_async_context.js", "06_util.js", "10_permissions.js", "11_workers.js", |