diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-08-22 12:14:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-22 12:14:59 -0400 |
commit | 7a1a082876298a4c9e37237074ea62942180d083 (patch) | |
tree | 690b46889987a9f576a1b0601a322141b51b0660 /cli/cache/mod.rs | |
parent | c66386dbd20b735161017a239c6af013da1f1718 (diff) |
perf: cache swc dependency analysis and don't hold onto `ParsedSource`s in memory (#15502)
Diffstat (limited to 'cli/cache/mod.rs')
-rw-r--r-- | cli/cache/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/cache/mod.rs b/cli/cache/mod.rs index d7cf8aca4..6769f153d 100644 --- a/cli/cache/mod.rs +++ b/cli/cache/mod.rs @@ -19,12 +19,14 @@ mod common; mod disk_cache; mod emit; mod incremental; +mod parsed_source; pub use check::TypeCheckCache; pub use common::FastInsecureHasher; pub use disk_cache::DiskCache; pub use emit::EmitCache; pub use incremental::IncrementalCache; +pub use parsed_source::ParsedSourceCache; /// A "wrapper" for the FileFetcher and DiskCache for the Deno CLI that provides /// a concise interface to the DENO_DIR when building module graphs. |