cruxlines 0.1.0

Ranks symbol definitions by cross-file references using tree-sitter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod analysis;
mod find_references;
mod graph;
mod languages;

pub use analysis::{cruxlines, OutputRow};
pub use find_references::Location;

#[doc(hidden)]
pub fn is_supported_path(path: &std::path::Path) -> bool {
    languages::language_for_path(path).is_some()
}