diff options
author | Matt Mastracci <matthew@mastracci.com> | 2024-05-22 21:04:59 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 03:04:59 +0000 |
commit | b009c84bc6f773326d41bbd7f86cec2a5309291a (patch) | |
tree | 22e3f63a2f1485eb9445bbe52506814da04f9a74 /runtime/js | |
parent | 71375491d135b7e5e48a09a39317aa7510594a35 (diff) |
feat: enable pointer compression via deno_core bump (#23838)
v8 12.6 w/pointer compression enabled.
Closes https://github.com/denoland/deno/issues/18935
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/99_main.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 6e423af6b..3fa9fc41b 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -98,8 +98,6 @@ import { SymbolMetadata, } from "ext:deno_web/00_infra.js"; // deno-lint-ignore prefer-primordials -if (Symbol.dispose) throw "V8 supports Symbol.dispose now, no need to shim it!"; -// deno-lint-ignore prefer-primordials if (Symbol.asyncDispose) { throw "V8 supports Symbol.asyncDispose now, no need to shim it!"; } |