//! Incremental project database for inkle's ink narrative scripting language.
//!
//! `ProjectDb` caches parsed trees and lowered HIR per file, enabling
//! efficient re-analysis when individual files change. Both the compiler
//! (one-shot) and LSP (long-lived) use this as their project model.
pub use FileId;
pub use ;