diff options
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. |