repotoire 0.9.0

Graph-powered code analysis CLI. 110 detectors for security, architecture, bus factor, and code quality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! TypeScript/JavaScript parser using tree-sitter
//!
//! Extracts functions, classes, interfaces, imports, and call relationships from TypeScript/JavaScript source code.

mod extractors;
mod parser;

// Re-export the public API so external callers are unaffected
#[allow(unused_imports)]
pub use parser::{parse, parse_source, parse_source_with_tree};

#[cfg(test)]
mod tests;