Revert "perf(core): generate inlined wrappers for async ops (#16428)" (#16443)

This commit is contained in:
Divy Srivastava 2022-10-27 07:58:27 -07:00 committed by GitHub
parent 02187966c1
commit 115cc1e6ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 112 additions and 265 deletions

View file

@ -84,6 +84,6 @@ Deno.test(function opNamesMatch() {
// @ts-ignore: Deno.core allowed
Deno.core.opNames().sort(),
// @ts-ignore: Deno.core allowed
Object.keys(Deno.core.ops).sort().filter((name) => name !== "asyncOpsInfo"),
Object.keys(Deno.core.ops).sort(),
);
});