From d4807f458e852e6a8385a852e7caf9dd4a5b54f7 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Sun, 5 Mar 2023 16:46:43 +0530 Subject: chore(core): remove argc field from OpDecl (#18024) https://github.com/denoland/deno/pull/18023#discussion_r1125611859 --- core/extensions.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'core/extensions.rs') 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>, } -- cgit v1.2.3