diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-06-03 21:22:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-03 14:22:32 -0600 |
commit | 34dac6c6efa75f38c29031a65db1ee3332a67259 (patch) | |
tree | 5facbc9c0631feebc23ed2f2d9ea37643d0e7086 /ops/lib.rs | |
parent | 7d0853d15863b2fb61bcf5927139cfdd3d869d73 (diff) |
refactor(core): remove force_op_registration and cleanup JsRuntimeForSnapshot (#19353)
Addresses
https://github.com/denoland/deno/pull/19308#discussion_r1212248194.
Removes force_op_registration as it is no longer necessary.
Diffstat (limited to 'ops/lib.rs')
-rw-r--r-- | ops/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ops/lib.rs b/ops/lib.rs index d4fa0bb82..d7c8b0640 100644 --- a/ops/lib.rs +++ b/ops/lib.rs @@ -143,7 +143,6 @@ impl Op { is_async: #is_async, is_unstable: #is_unstable, is_v8: #is_v8, - force_registration: false, // TODO(mmastrac) arg_count: 0, } @@ -206,7 +205,6 @@ impl Op { is_async: #is_async, is_unstable: #is_unstable, is_v8: #is_v8, - force_registration: false, arg_count: #arg_count as u8, } } |