tokensave 7.11.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
/// Reference resolution module.
///
/// Resolves unresolved references (from tree-sitter extraction) into concrete
/// edges by matching them against known nodes in the database.
mod resolver;
mod touched;
mod variants;

pub use resolver::{simple_ref_name, ReferenceResolver};
pub use touched::{index_keys_for_test, AmbiguityRefKey, TouchedNode, TouchedSet};
pub use variants::{
    emit_variant_edges, propagate_variant_edges, variant_groups_from_candidates,
    CALLABLE_KIND_NAMES,
};