mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
fix(runtime/web_worker): populate SnapshotOptions
for WebWorker
when instantiated without snapshot (#25280)
Fixes #25277
This commit is contained in:
parent
7e142f0167
commit
23383e5a91
1 changed files with 7 additions and 1 deletions
|
@ -505,7 +505,13 @@ impl WebWorker {
|
|||
ops::signal::deno_signal::init_ops_and_esm(),
|
||||
ops::tty::deno_tty::init_ops_and_esm(),
|
||||
ops::http::deno_http_runtime::init_ops_and_esm(),
|
||||
ops::bootstrap::deno_bootstrap::init_ops_and_esm(None),
|
||||
ops::bootstrap::deno_bootstrap::init_ops_and_esm(
|
||||
if options.startup_snapshot.is_some() {
|
||||
None
|
||||
} else {
|
||||
Some(Default::default())
|
||||
},
|
||||
),
|
||||
deno_permissions_web_worker::init_ops_and_esm(
|
||||
permissions,
|
||||
enable_testing_features,
|
||||
|
|
Loading…
Reference in a new issue