token-codegraph 0.6.0

Code intelligence tool that builds a semantic knowledge graph from Rust, Go, Java, and Scala codebases
1
2
3
4
5
6
7
8
/// Graph traversal algorithms for the code graph.
pub mod traversal;

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

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