1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-05 13:59:01 -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 Levente Kurusa
parent 2acb5ce635
commit 5fc9c72b10
No known key found for this signature in database
GPG key ID: 9F72F3C05BA137C4

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",
);