brink-db 0.0.10

Incremental project database for inkle's ink narrative scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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.

mod db;
mod file_state;
mod include_graph;
mod knot_cache;

pub use brink_ir::FileId;
pub use db::{ProjectDb, compute_relative_path, resolve_include_path};