mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 02:48:24 +00:00
chore: upgrade deno_core to 0.259.0 (#22311)
This update brings number of ops available to user code down to 45.
This commit is contained in:
parent
e54684864d
commit
043fee48fd
10 changed files with 19 additions and 65 deletions
|
@ -172,7 +172,7 @@ function assertOps(fn) {
|
|||
opIdHostRecvCtrl,
|
||||
);
|
||||
}
|
||||
const preTraces = new Map(core.opCallTraces);
|
||||
const preTraces = core.getAllOpCallTraces();
|
||||
let postTraces;
|
||||
let report = null;
|
||||
|
||||
|
@ -195,7 +195,7 @@ function assertOps(fn) {
|
|||
opIdHostRecvCtrl,
|
||||
);
|
||||
}
|
||||
postTraces = new Map(core.opCallTraces);
|
||||
postTraces = core.getAllOpCallTraces();
|
||||
if (res === 3) {
|
||||
report = op_test_op_sanitizer_report(desc.id);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue