summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-12-19 03:55:50 +0100
committerGitHub <noreply@github.com>2022-12-19 03:55:50 +0100
commit1d18b65edcc4398c7badcf4ad0a367cb1e585a68 (patch)
treee53b02e7d5ef2fb15666897e90babaefab311511 /core
parent97f280eb9b28f1b7743eb73cea817f3a5d122b83 (diff)
fix(runtime): expose `extensions_with_js` from WorkerOptions (#17109)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'core')
-rw-r--r--core/runtime.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/runtime.rs b/core/runtime.rs
index a95ca0ca6..498441a6d 100644
--- a/core/runtime.rs
+++ b/core/runtime.rs
@@ -258,14 +258,10 @@ pub struct RuntimeOptions {
pub extensions_with_js: Vec<Extension>,
/// V8 snapshot that should be loaded on startup.
- ///
- /// Currently can't be used with `will_snapshot`.
pub startup_snapshot: Option<Snapshot>,
/// Prepare runtime to take snapshot of loaded code.
/// The snapshot is determinstic and uses predictable random numbers.
- ///
- /// Currently can't be used with `startup_snapshot`.
pub will_snapshot: bool,
/// Isolate creation parameters.