refactor: extract DenoDir, Emitter, EmitCache and ParsedSourceCache from cli crate (#29961)

This commit is contained in:
David Sherret 2025-07-02 08:56:02 -04:00 committed by GitHub
parent 45dfae18ee
commit 7a1e949c47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 490 additions and 406 deletions

View file

@ -109,7 +109,7 @@ pub async fn doc(
let factory = CliFactory::from_flags(flags);
let cli_options = factory.cli_options()?;
let module_info_cache = factory.module_info_cache()?;
let parsed_source_cache = factory.parsed_source_cache();
let parsed_source_cache = factory.parsed_source_cache()?;
let capturing_parser = parsed_source_cache.as_capturing_parser();
let analyzer = module_info_cache.as_module_analyzer();