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:
Bartek Iwańczuk 2024-02-07 02:16:08 +01:00 committed by GitHub
parent e54684864d
commit 043fee48fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 19 additions and 65 deletions

View file

@ -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);
}