Skip to main content

EditorSessionParseCounts

Type Alias EditorSessionParseCounts 

Source
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: usize

Files parsed from source.

§disk_cache_hits: usize

Files served from the persisted parse cache.

§modules_reused: usize

Files served from the in-memory modules of the session.