summaryrefslogtreecommitdiff
path: root/cli/cache/node.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-04-21 16:38:10 -0400
committerGitHub <noreply@github.com>2023-04-21 16:38:10 -0400
commit4a33c349afd4b2728eb8c3c29676651353282d3b (patch)
treea21ff79a51f9842347bab48051f5987f53bd018a /cli/cache/node.rs
parent065d8771adfae6aa75cdd367741468c823fbae4a (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.rs8
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),