pub mod block_handling;
pub mod common;
pub mod factory;
pub mod language_trait;
pub mod parser;
pub mod test_detection;
pub mod tree_cache;
pub mod c;
pub mod cpp;
pub mod csharp;
pub mod go;
pub mod java;
pub mod javascript;
pub mod php;
pub mod python;
pub mod ruby;
pub mod rust;
pub mod swift;
pub mod typescript;
pub use parser::parse_file_for_code_blocks;
pub use test_detection::is_test_file;
#[allow(unused_imports)]
pub use tree_cache::{clear_tree_cache, get_cache_size, invalidate_cache_entry};
#[cfg(test)]
mod tests;