diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-08-01 23:15:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-01 22:15:20 +0000 |
commit | 5c54dc5840e26410e364619b73b4721ce1815cef (patch) | |
tree | 6e1c637939361820b31b4e8188308c7299573240 /cli/main.rs | |
parent | ba932782817b1961aac89f741bf05a2c32c1bf15 (diff) |
fix: regressions around Error.prepareStackTrace (#24839)
Includes:
- https://github.com/denoland/deno_core/pull/858
- https://github.com/denoland/deno_core/pull/856
Fixes https://github.com/denoland/deno/issues/24782
Fixes https://github.com/denoland/deno/issues/24825
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 760151d09..d17f0f260 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -399,7 +399,7 @@ fn resolve_flags_and_init( }; init_v8_flags(&default_v8_flags, &flags.v8_flags, get_v8_flags_from_env()); - deno_core::JsRuntime::init_platform(None); + deno_core::JsRuntime::init_platform(None, !*DENO_FUTURE); util::logger::init(flags.log_level); Ok(flags) |