1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

bench: fix benchmarks again (#18942)

This commit is contained in:
Bartek Iwańczuk 2023-05-01 21:57:58 +02:00 committed by GitHub
parent 13c16d9cfd
commit ecc70eb58f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,11 +5,11 @@
// deno-lint-ignore-file camelcase
const { op_listen } = Deno[Deno.internal].core.ops;
const { op_listen } = Deno.core.ops;
const {
op_accept,
op_read_socket,
} = core.generateAsyncOpHandler(
} = Deno.core.generateAsyncOpHandler(
"op_accept",
"op_read_socket",
);