gobby-code 1.0.0

Fast Rust CLI for Gobby's code index — AST-aware search, symbol navigation, and dependency graph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod context;
mod helpers;
mod parser;
mod predicates;

#[cfg(test)]
mod tests;

pub(crate) const UNPARSED_IMPORT_PREFIX: &str = "UNPARSED:";

pub(crate) use context::{ExtractedImports, ImportBindings};
pub use context::{
    ImportResolutionContext, build_import_resolution_context,
    build_import_resolution_context_with_overrides,
};
pub(crate) use parser::{parse_import_statement, resolve_external_callee, seed_import_bindings};