llman 0.0.39

A tool for managing LLM application rules(prompts) ...
Documentation
1
2
3
4
5
6
7
8
9
10
11
use llman::tool::tree_sitter_processor::TreeSitterProcessor;

/// Basic test for Tree-sitter processor functionality
/// Tests that the processor can be created successfully with all supported languages

#[test]
fn test_tree_sitter_processor_creation() {
    // Should successfully create processor with all supported languages
    let processor = TreeSitterProcessor::new();
    assert!(processor.is_ok(), "Failed to create TreeSitterProcessor");
}