diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-04-21 16:38:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 16:38:10 -0400 |
commit | 4a33c349afd4b2728eb8c3c29676651353282d3b (patch) | |
tree | a21ff79a51f9842347bab48051f5987f53bd018a /cli/cache/node.rs | |
parent | 065d8771adfae6aa75cdd367741468c823fbae4a (diff) |
refactor: move some CJS and ESM code analysis to ext/node (#18789)
Diffstat (limited to 'cli/cache/node.rs')
-rw-r--r-- | cli/cache/node.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/cache/node.rs b/cli/cache/node.rs index f42f132fd..298d81e2f 100644 --- a/cli/cache/node.rs +++ b/cli/cache/node.rs @@ -42,14 +42,6 @@ pub struct NodeAnalysisCache { } impl NodeAnalysisCache { - #[cfg(test)] - pub fn new_in_memory() -> Self { - Self::new(CacheDB::in_memory( - &NODE_ANALYSIS_CACHE_DB, - crate::version::deno(), - )) - } - pub fn new(db: CacheDB) -> Self { Self { inner: NodeAnalysisCacheInner::new(db), |