tokensave 5.1.1

Code intelligence tool that builds a semantic knowledge graph from Rust, Go, Java, Scala, TypeScript, Python, C, C++, Kotlin, C#, Swift, and many more codebases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Graph traversal algorithms for the code graph.
pub mod traversal;

/// Query operations for analyzing the code graph.
pub mod queries;

/// Tarjan's strongly-connected-components algorithm.
pub mod scc;

/// Structural health analysis algorithms.
pub mod health;

/// Git integration helpers for churn analysis.
pub mod git;

pub use queries::{GraphQueryManager, NodeMetrics};
pub use traversal::GraphTraverser;