pub type EditorSessionParseCounts = SessionParseCounts;Expand description
The parse work of an editor session. See
fallow_engine::session::SessionParseCounts.
Aliased Type§
pub struct EditorSessionParseCounts {
pub modules_parsed: usize,
pub disk_cache_hits: usize,
pub modules_reused: usize,
}Fields§
§modules_parsed: usizeFiles parsed from source.
disk_cache_hits: usizeFiles served from the persisted parse cache.
modules_reused: usizeFiles served from the in-memory modules of the session.