diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-03-05 16:46:43 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 11:16:43 +0000 |
commit | d4807f458e852e6a8385a852e7caf9dd4a5b54f7 (patch) | |
tree | 15306cf8fe47f086a3ea928a413df971fcfdac63 /core/extensions.rs | |
parent | da201d9ea5e00f7fd2aefc3222759f3c253c1882 (diff) |
chore(core): remove argc field from OpDecl (#18024)
https://github.com/denoland/deno/pull/18023#discussion_r1125611859
Diffstat (limited to 'core/extensions.rs')
-rw-r--r-- | core/extensions.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/extensions.rs b/core/extensions.rs index 4f68ecf6c..ead1fa354 100644 --- a/core/extensions.rs +++ b/core/extensions.rs @@ -51,9 +51,6 @@ pub struct OpDecl { pub enabled: bool, pub is_async: bool, pub is_unstable: bool, - /// V8 argument count. Used as an optimization - /// hint by `core.initalizeAsyncOps`. - pub argc: usize, pub is_v8: bool, pub fast_fn: Option<Box<dyn FastFunction>>, } |