diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2023-05-24 03:56:29 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-23 20:56:29 +0200 |
commit | 26f42a248f4764f85c1c3c3c511b82a990e4b651 (patch) | |
tree | 04281d6d58fa0f5fba8946481dd13fcd4becf4b2 /ext/node/polyfills/02_init.js | |
parent | 3d865949c2f9f0cb61031bcc2b9e81a4ca623109 (diff) |
fix(ext/node): add basic node:worker_threads support (#19192)
This PR restores `node:worker_threads` implementation and test cases
from
[`std@0.175.0/node`](https://github.com/denoland/deno_std/blob/0.175.0/node/worker_threads.ts).
---------
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'ext/node/polyfills/02_init.js')
-rw-r--r-- | ext/node/polyfills/02_init.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/polyfills/02_init.js b/ext/node/polyfills/02_init.js index dc8955d83..a2fba8c0c 100644 --- a/ext/node/polyfills/02_init.js +++ b/ext/node/polyfills/02_init.js @@ -46,6 +46,7 @@ function initialize( // FIXME(bartlomieju): not nice to depend on `Deno` namespace here // but it's the only way to get `args` and `version` and this point. internals.__bootstrapNodeProcess(argv0, Deno.args, Deno.version); + internals.__initWorkerThreads(); // `Deno[Deno.internal].requireImpl` will be unreachable after this line. delete internals.requireImpl; } |