codesearch 0.1.9

A fast, intelligent CLI tool with multiple search modes (regex, fuzzy, semantic), code analysis, and dead code detection for popular programming languages
Documentation
1
2
3
4
5
6
7
8
9
10
//! Regex-based code extraction for analysis modules
//!
//! Provides lightweight extraction of functions, classes, and references from source code.

mod regex_extractor;

pub use regex_extractor::{
    extract_classes, extract_function_calls, extract_functions, extract_identifier_from_match,
    extract_identifier_references, is_keyword_or_builtin,
};