Add back in root().

This commit is contained in:
James Pace 2026-07-05 09:26:53 -04:00
parent 9b0fe183e0
commit 465d94b6ad
1 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,12 @@ impl DiagnosticGraph {
}
}
/// Get the root key.
/// Needed to do searches in the graph outside of this crate.
pub fn root(&self) -> limbo_graph::Key {
self.graph.root_key()
}
/// Get the value of a specific element of the graph.
/// Will error if the key is not in the graph, or if the key
/// is the root, which doesn't have a value.