Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: remove imported ops from Deno.core.ops #22194

Merged
merged 11 commits into from
Jan 31, 2024
Merged
Prev Previous commit
Next Next commit
napi
  • Loading branch information
bartlomieju committed Jan 30, 2024
commit c8db6bea72e06d3ec75f454fe79fd3014dccf46d
2 changes: 1 addition & 1 deletion cli/tests/unit/ops_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

const EXPECTED_OP_COUNT = 156;
const EXPECTED_OP_COUNT = 157;

Deno.test(function checkExposedOps() {
// @ts-ignore TS doesn't allow to index with symbol
Expand Down
1 change: 1 addition & 0 deletions runtime/js/99_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,7 @@ const NOT_IMPORTED_OPS = [
"op_is_weak_set",
"op_main_module",
"op_memory_usage",
"op_napi_open",
"op_npm_process_state",
"op_op_names",
"op_panic",
Expand Down
Loading