Skip to content

Commit

Permalink
feat: enable pointer compression via deno_core bump (#23838)
Browse files Browse the repository at this point in the history
v8 12.6 w/pointer compression enabled.

Closes #18935
  • Loading branch information
mmastrac authored May 23, 2024
1 parent 7137549 commit b009c84
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 44,7 @@ repository = "https://github.com/denoland/deno"

[workspace.dependencies]
deno_ast = { version = "=0.38.2", features = ["transpiling"] }
deno_core = { version = "0.280.0" }
deno_core = { version = "0.282.0" }

deno_bench_util = { version = "0.147.0", path = "./bench_util" }
deno_lockfile = "0.19.0"
Expand Down
2 changes: 0 additions & 2 deletions runtime/js/99_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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!";
}
Expand Down
4 changes: 2 additions & 2 deletions tests/testdata/run/heapstats.js.out
Original file line number Diff line number Diff line change
@@ -1,2 1,2 @@
Allocated: 8MB
Freed: -8MB
Allocated: 4MB
Freed: -4MB

0 comments on commit b009c84

Please sign in to comment.