repotoire 0.3.47

Graph-powered code analysis CLI. 81 detectors for security, architecture, and code quality.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
//! C++ parser using tree-sitter
//!
//! Extracts classes, structs, functions, methods, imports, and call relationships from C++ source code.

use crate::models::{Class, Function};
use crate::parsers::ParseResult;
use anyhow::{Context, Result};
use std::collections::HashMap;
use std::path::Path;
use streaming_iterator::StreamingIterator;
use tree_sitter::{Node, Parser, Query, QueryCursor};

/// Parse a C++ file and extract all code entities
pub fn parse(path: &Path) -> Result<ParseResult> {
    let source = std::fs::read_to_string(path)
        .with_context(|| format!("Failed to read file: {}", path.display()))?;

    parse_source(&source, path)
}

/// Parse C++ source code directly (useful for testing)
pub fn parse_source(source: &str, path: &Path) -> Result<ParseResult> {
    let mut parser = Parser::new();
    let language = tree_sitter_cpp::LANGUAGE;
    parser
        .set_language(&language.into())
        .context("Failed to set C++ language")?;

    let tree = parser
        .parse(source, None)
        .context("Failed to parse C++ source")?;

    let root = tree.root_node();
    let source_bytes = source.as_bytes();

    let mut result = ParseResult::default();

    extract_functions(&root, source_bytes, path, &mut result)?;
    extract_classes(&root, source_bytes, path, &mut result)?;
    extract_includes(&root, source_bytes, &mut result)?;
    extract_calls(&root, source_bytes, path, &mut result)?;

    Ok(result)
}

/// Extract function definitions from the AST
fn extract_functions(
    root: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
) -> Result<()> {
    extract_functions_recursive(root, source, path, result, None);
    Ok(())
}

/// Recursively extract functions (handles namespace scope)
fn extract_functions_recursive(
    node: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
    namespace: Option<&str>,
) {
    for child in node.children(&mut node.walk()) {
        match child.kind() {
            "function_definition" => {
                if let Some(func) = parse_function_node(&child, source, path, namespace) {
                    result.functions.push(func);
                }
            }
            "namespace_definition" => {
                let ns_name = child
                    .child_by_field_name("name")
                    .and_then(|n| n.utf8_text(source).ok())
                    .unwrap_or("");
                let full_ns = if let Some(parent_ns) = namespace {
                    format!("{}::{}", parent_ns, ns_name)
                } else {
                    ns_name.to_string()
                };

                if let Some(body) = child.child_by_field_name("body") {
                    extract_functions_recursive(&body, source, path, result, Some(&full_ns));
                }
            }
            "template_declaration" => {
                // Handle templated functions
                for grandchild in child.children(&mut child.walk()) {
                    if grandchild.kind() == "function_definition" {
                        if let Some(func) = parse_function_node(&grandchild, source, path, namespace) {
                            result.functions.push(func);
                        }
                    }
                }
            }
            _ => {
                extract_functions_recursive(&child, source, path, result, namespace);
            }
        }
    }
}

/// Parse a function definition node
fn parse_function_node(node: &Node, source: &[u8], path: &Path, namespace: Option<&str>) -> Option<Function> {
    let declarator = node.child_by_field_name("declarator")?;
    let (name, class_scope) = extract_function_name(&declarator, source)?;

    // Skip if this is a method definition (handled in class extraction)
    if class_scope.is_some() {
        return parse_method_definition(node, source, path, &name, class_scope.as_deref());
    }

    let params_node = find_parameters(&declarator);
    let parameters = extract_parameters(params_node, source);

    let return_type = node
        .child_by_field_name("type")
        .and_then(|n| n.utf8_text(source).ok())
        .map(|s| s.to_string());

    let line_start = node.start_position().row as u32 + 1;
    let line_end = node.end_position().row as u32 + 1;

    let full_name = if let Some(ns) = namespace {
        format!("{}::{}", ns, name)
    } else {
        name.clone()
    };

    let qualified_name = format!("{}::{}:{}", path.display(), full_name, line_start);

    Some(Function {
        name,
        qualified_name,
        file_path: path.to_path_buf(),
        line_start,
        line_end,
        parameters,
        return_type,
        is_async: false,
        complexity: Some(calculate_complexity(node, source)),
    })
}

/// Parse a method definition outside class body
fn parse_method_definition(
    node: &Node,
    source: &[u8],
    path: &Path,
    name: &str,
    class_scope: Option<&str>,
) -> Option<Function> {
    let declarator = node.child_by_field_name("declarator")?;
    let params_node = find_parameters(&declarator);
    let parameters = extract_parameters(params_node, source);

    let return_type = node
        .child_by_field_name("type")
        .and_then(|n| n.utf8_text(source).ok())
        .map(|s| s.to_string());

    let line_start = node.start_position().row as u32 + 1;
    let line_end = node.end_position().row as u32 + 1;

    let full_name = if let Some(class) = class_scope {
        format!("{}::{}", class, name)
    } else {
        name.to_string()
    };

    let qualified_name = format!("{}::{}:{}", path.display(), full_name, line_start);

    Some(Function {
        name: name.to_string(),
        qualified_name,
        file_path: path.to_path_buf(),
        line_start,
        line_end,
        parameters,
        return_type,
        is_async: false,
        complexity: Some(calculate_complexity(node, source)),
    })
}

/// Extract function name and optional class scope from declarator
fn extract_function_name(declarator: &Node, source: &[u8]) -> Option<(String, Option<String>)> {
    match declarator.kind() {
        "function_declarator" => {
            let inner = declarator.child_by_field_name("declarator")?;
            extract_function_name(&inner, source)
        }
        "qualified_identifier" => {
            // Class::method
            let scope_text = declarator.utf8_text(source).ok()?;
            let parts: Vec<&str> = scope_text.rsplitn(2, "::").collect();
            if parts.len() == 2 {
                Some((parts[0].to_string(), Some(parts[1].to_string())))
            } else {
                Some((scope_text.to_string(), None))
            }
        }
        "identifier" => {
            let name = declarator.utf8_text(source).ok()?.to_string();
            Some((name, None))
        }
        "pointer_declarator" | "reference_declarator" => {
            for child in declarator.children(&mut declarator.walk()) {
                if let Some(result) = extract_function_name(&child, source) {
                    return Some(result);
                }
            }
            None
        }
        "destructor_name" => {
            let name = declarator.utf8_text(source).ok()?.to_string();
            Some((name, None))
        }
        "template_function" => {
            if let Some(name_node) = declarator.child_by_field_name("name") {
                let name = name_node.utf8_text(source).ok()?.to_string();
                Some((name, None))
            } else {
                None
            }
        }
        "operator_name" => {
            let name = declarator.utf8_text(source).ok()?.to_string();
            Some((name, None))
        }
        _ => None,
    }
}

/// Find parameters node in a declarator
fn find_parameters(declarator: &Node) -> Option<Node> {
    if declarator.kind() == "function_declarator" {
        return declarator.child_by_field_name("parameters");
    }

    for child in declarator.children(&mut declarator.walk()) {
        if let Some(params) = find_parameters(&child) {
            return Some(params);
        }
    }
    None
}

/// Extract parameter names from a parameter list
fn extract_parameters(params_node: Option<Node>, source: &[u8]) -> Vec<String> {
    let Some(node) = params_node else {
        return vec![];
    };

    let mut params = Vec::new();

    for child in node.children(&mut node.walk()) {
        match child.kind() {
            "parameter_declaration" => {
                if let Some(name) = find_parameter_name(&child, source) {
                    params.push(name);
                }
            }
            "optional_parameter_declaration" => {
                if let Some(name) = find_parameter_name(&child, source) {
                    params.push(name);
                }
            }
            "variadic_parameter_declaration" => {
                params.push("...".to_string());
            }
            _ => {}
        }
    }

    params
}

/// Find the parameter name from a parameter declaration
fn find_parameter_name(param_node: &Node, source: &[u8]) -> Option<String> {
    if let Some(decl) = param_node.child_by_field_name("declarator") {
        return extract_declarator_name(&decl, source);
    }

    // Fallback: look for identifier
    for child in param_node.children(&mut param_node.walk()) {
        if child.kind() == "identifier" {
            return child.utf8_text(source).ok().map(|s| s.to_string());
        }
    }
    None
}

/// Extract name from a declarator node
fn extract_declarator_name(node: &Node, source: &[u8]) -> Option<String> {
    match node.kind() {
        "identifier" => node.utf8_text(source).ok().map(|s| s.to_string()),
        "pointer_declarator" | "reference_declarator" | "array_declarator" => {
            for child in node.children(&mut node.walk()) {
                if let Some(name) = extract_declarator_name(&child, source) {
                    return Some(name);
                }
            }
            None
        }
        _ => None,
    }
}

/// Extract class and struct definitions from the AST
fn extract_classes(
    root: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
) -> Result<()> {
    extract_classes_recursive(root, source, path, result, None);
    Ok(())
}

/// Recursively extract classes
fn extract_classes_recursive(
    node: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
    namespace: Option<&str>,
) {
    for child in node.children(&mut node.walk()) {
        match child.kind() {
            "class_specifier" | "struct_specifier" => {
                if let Some(class) = parse_class_node(&child, source, path, namespace, child.kind() == "struct_specifier") {
                    let class_name = class.name.clone();
                    extract_class_members(&child, source, path, result, &class_name);
                    result.classes.push(class);
                }
            }
            "namespace_definition" => {
                let ns_name = child
                    .child_by_field_name("name")
                    .and_then(|n| n.utf8_text(source).ok())
                    .unwrap_or("");
                let full_ns = if let Some(parent_ns) = namespace {
                    format!("{}::{}", parent_ns, ns_name)
                } else {
                    ns_name.to_string()
                };

                if let Some(body) = child.child_by_field_name("body") {
                    extract_classes_recursive(&body, source, path, result, Some(&full_ns));
                }
            }
            "template_declaration" => {
                // Handle templated classes
                for grandchild in child.children(&mut child.walk()) {
                    if grandchild.kind() == "class_specifier" || grandchild.kind() == "struct_specifier" {
                        if let Some(class) = parse_class_node(&grandchild, source, path, namespace, grandchild.kind() == "struct_specifier") {
                            let class_name = class.name.clone();
                            extract_class_members(&grandchild, source, path, result, &class_name);
                            result.classes.push(class);
                        }
                    }
                }
            }
            _ => {
                extract_classes_recursive(&child, source, path, result, namespace);
            }
        }
    }
}

/// Parse a class/struct specifier node
fn parse_class_node(
    node: &Node,
    source: &[u8],
    path: &Path,
    namespace: Option<&str>,
    is_struct: bool,
) -> Option<Class> {
    let name_node = node.child_by_field_name("name")?;
    let name = name_node.utf8_text(source).ok()?.to_string();

    let full_name = if let Some(ns) = namespace {
        format!("{}::{}", ns, name)
    } else {
        name.clone()
    };

    let line_start = node.start_position().row as u32 + 1;
    let line_end = node.end_position().row as u32 + 1;

    let kind = if is_struct { "struct" } else { "class" };
    let qualified_name = format!("{}::{}::{}:{}", path.display(), kind, full_name, line_start);

    let bases = extract_base_classes(node, source);
    let methods = extract_method_names(node, source);

    Some(Class {
        name: full_name,
        qualified_name,
        file_path: path.to_path_buf(),
        line_start,
        line_end,
        methods,
        bases,
    })
}

/// Extract base class names
fn extract_base_classes(class_node: &Node, source: &[u8]) -> Vec<String> {
    let mut bases = Vec::new();

    for child in class_node.children(&mut class_node.walk()) {
        if child.kind() == "base_class_clause" {
            for specifier in child.children(&mut child.walk()) {
                if specifier.kind() == "base_specifier" {
                    if let Some(type_node) = specifier.child_by_field_name("type") {
                        if let Ok(text) = type_node.utf8_text(source) {
                            bases.push(text.to_string());
                        }
                    }
                }
            }
        }
    }

    bases
}

/// Extract method names from class body
fn extract_method_names(class_node: &Node, source: &[u8]) -> Vec<String> {
    let mut methods = Vec::new();

    if let Some(body) = class_node.child_by_field_name("body") {
        for child in body.children(&mut body.walk()) {
            if child.kind() == "function_definition" || child.kind() == "declaration" {
                if let Some(declarator) = child.child_by_field_name("declarator") {
                    if let Some((name, _)) = extract_function_name(&declarator, source) {
                        methods.push(name);
                    }
                }
            } else if child.kind() == "access_specifier" {
                // Skip
            } else if child.kind() == "field_declaration" {
                // Check if it's a method declaration
                for grandchild in child.children(&mut child.walk()) {
                    if grandchild.kind() == "function_declarator" {
                        if let Some((name, _)) = extract_function_name(&grandchild, source) {
                            methods.push(name);
                        }
                    }
                }
            }
        }
    }

    methods
}

/// Extract method definitions from class body
fn extract_class_members(
    class_node: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
    class_name: &str,
) {
    if let Some(body) = class_node.child_by_field_name("body") {
        for child in body.children(&mut body.walk()) {
            if child.kind() == "function_definition" {
                if let Some(func) = parse_class_method(&child, source, path, class_name) {
                    result.functions.push(func);
                }
            }
        }
    }
}

/// Parse a method defined inside class body
fn parse_class_method(node: &Node, source: &[u8], path: &Path, class_name: &str) -> Option<Function> {
    let declarator = node.child_by_field_name("declarator")?;
    let (name, _) = extract_function_name(&declarator, source)?;

    let params_node = find_parameters(&declarator);
    let parameters = extract_parameters(params_node, source);

    let return_type = node
        .child_by_field_name("type")
        .and_then(|n| n.utf8_text(source).ok())
        .map(|s| s.to_string());

    let line_start = node.start_position().row as u32 + 1;
    let line_end = node.end_position().row as u32 + 1;
    let qualified_name = format!("{}::{}::{}:{}", path.display(), class_name, name, line_start);

    Some(Function {
        name,
        qualified_name,
        file_path: path.to_path_buf(),
        line_start,
        line_end,
        parameters,
        return_type,
        is_async: false,
        complexity: Some(calculate_complexity(node, source)),
    })
}

/// Extract #include statements from the AST
fn extract_includes(root: &Node, source: &[u8], result: &mut ParseResult) -> Result<()> {
    let query_str = r#"
        (preproc_include
            path: (_) @include_path
        )
    "#;

    let language = tree_sitter_cpp::LANGUAGE;
    let query = Query::new(&language.into(), query_str).context("Failed to create include query")?;

    let mut cursor = QueryCursor::new();
    let mut matches = cursor.matches(&query, *root, source);

    while let Some(m) = matches.next() {
        for capture in m.captures.iter() {
            if let Ok(text) = capture.node.utf8_text(source) {
                let import = text
                    .trim_start_matches(|c| c == '"' || c == '<')
                    .trim_end_matches(|c| c == '"' || c == '>')
                    .to_string();
                if !import.is_empty() {
                    result.imports.push(import);
                }
            }
        }
    }

    Ok(())
}

/// Extract function calls from the AST
fn extract_calls(
    root: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
) -> Result<()> {
    let mut scope_map: HashMap<(u32, u32), String> = HashMap::new();

    for func in &result.functions {
        scope_map.insert(
            (func.line_start, func.line_end),
            func.qualified_name.clone(),
        );
    }

    extract_calls_recursive(root, source, path, &scope_map, result);

    Ok(())
}

/// Recursively extract calls from the AST
fn extract_calls_recursive(
    node: &Node,
    source: &[u8],
    path: &Path,
    scope_map: &HashMap<(u32, u32), String>,
    result: &mut ParseResult,
) {
    if node.kind() == "call_expression" {
        let call_line = node.start_position().row as u32 + 1;
        let caller = find_containing_scope(call_line, scope_map);

        if let Some(func_node) = node.child_by_field_name("function") {
            let callee = extract_call_target(&func_node, source);

            if let (Some(caller), Some(callee)) = (caller, callee) {
                result.calls.push((caller, callee));
            }
        }
    }

    // Handle new expressions
    if node.kind() == "new_expression" {
        let call_line = node.start_position().row as u32 + 1;
        let caller = find_containing_scope(call_line, scope_map);

        if let Some(type_node) = node.child_by_field_name("type") {
            if let Ok(callee) = type_node.utf8_text(source) {
                if let Some(caller) = caller {
                    result.calls.push((caller, format!("new {}", callee)));
                }
            }
        }
    }

    for child in node.children(&mut node.walk()) {
        extract_calls_recursive(&child, source, path, scope_map, result);
    }
}

/// Find which scope contains a given line
fn find_containing_scope(line: u32, scope_map: &HashMap<(u32, u32), String>) -> Option<String> {
    let mut best_match: Option<(&(u32, u32), &String)> = None;

    for (range, name) in scope_map {
        if line >= range.0 && line <= range.1 {
            match best_match {
                None => best_match = Some((range, name)),
                Some((best_range, _)) => {
                    if (range.1 - range.0) < (best_range.1 - best_range.0) {
                        best_match = Some((range, name));
                    }
                }
            }
        }
    }

    best_match.map(|(_, name)| name.clone())
}

/// Extract the target of a function call
fn extract_call_target(node: &Node, source: &[u8]) -> Option<String> {
    match node.kind() {
        "identifier" => node.utf8_text(source).ok().map(|s| s.to_string()),
        "qualified_identifier" | "field_expression" => {
            node.utf8_text(source).ok().map(|s| s.to_string())
        }
        "template_function" => {
            node.child_by_field_name("name")
                .and_then(|n| n.utf8_text(source).ok())
                .map(|s| s.to_string())
        }
        _ => node.utf8_text(source).ok().map(|s| s.to_string()),
    }
}

/// Calculate cyclomatic complexity of a function
fn calculate_complexity(node: &Node, _source: &[u8]) -> u32 {
    let mut complexity = 1;

    fn count_branches(node: &Node, complexity: &mut u32) {
        match node.kind() {
            "if_statement" | "while_statement" | "for_statement" | "do_statement" | "for_range_loop" => {
                *complexity += 1;
            }
            "case_statement" | "default_statement" => {
                *complexity += 1;
            }
            "catch_clause" => {
                *complexity += 1;
            }
            "conditional_expression" => {
                *complexity += 1;
            }
            "binary_expression" => {
                for child in node.children(&mut node.walk()) {
                    if child.kind() == "&&" || child.kind() == "||" {
                        *complexity += 1;
                    }
                }
            }
            "lambda_expression" => {
                *complexity += 1;
            }
            _ => {}
        }

        for child in node.children(&mut node.walk()) {
            count_branches(&child, complexity);
        }
    }

    count_branches(node, &mut complexity);
    complexity
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::path::PathBuf;

    #[test]
    fn test_parse_simple_function() {
        let source = r#"
int add(int a, int b) {
    return a + b;
}
"#;
        let path = PathBuf::from("test.cpp");
        let result = parse_source(source, &path).unwrap();

        assert_eq!(result.functions.len(), 1);
        let func = &result.functions[0];
        assert_eq!(func.name, "add");
    }

    #[test]
    fn test_parse_class() {
        let source = r#"
class MyClass {
public:
    void doSomething() {
        // implementation
    }
};
"#;
        let path = PathBuf::from("test.cpp");
        let result = parse_source(source, &path).unwrap();

        assert_eq!(result.classes.len(), 1);
        let class = &result.classes[0];
        assert_eq!(class.name, "MyClass");
    }

    #[test]
    fn test_parse_class_with_inheritance() {
        let source = r#"
class Derived : public Base, public Interface {
public:
    void method() {}
};
"#;
        let path = PathBuf::from("test.cpp");
        let result = parse_source(source, &path).unwrap();

        assert_eq!(result.classes.len(), 1);
        let class = &result.classes[0];
        assert!(class.bases.contains(&"Base".to_string()));
    }

    #[test]
    fn test_parse_namespace() {
        let source = r#"
namespace myns {
    void helper() {}
}
"#;
        let path = PathBuf::from("test.cpp");
        let result = parse_source(source, &path).unwrap();

        assert_eq!(result.functions.len(), 1);
        let func = &result.functions[0];
        assert!(func.qualified_name.contains("myns"));
    }

    #[test]
    fn test_parse_includes() {
        let source = r#"
#include <iostream>
#include <vector>
#include "myheader.h"

int main() {
    return 0;
}
"#;
        let path = PathBuf::from("test.cpp");
        let result = parse_source(source, &path).unwrap();

        assert!(result.imports.contains(&"iostream".to_string()));
        assert!(result.imports.contains(&"vector".to_string()));
        assert!(result.imports.contains(&"myheader.h".to_string()));
    }

    #[test]
    fn test_parse_method_definition() {
        let source = r#"
class MyClass {
public:
    void method();
};

void MyClass::method() {
    // implementation
}
"#;
        let path = PathBuf::from("test.cpp");
        let result = parse_source(source, &path).unwrap();

        // Should have the out-of-class method definition
        assert!(result.functions.iter().any(|f| f.name == "method"));
    }

    #[test]
    fn test_parse_template_function() {
        let source = r#"
template<typename T>
T max(T a, T b) {
    return a > b ? a : b;
}
"#;
        let path = PathBuf::from("test.cpp");
        let result = parse_source(source, &path).unwrap();

        assert_eq!(result.functions.len(), 1);
        let func = &result.functions[0];
        assert_eq!(func.name, "max");
    }
}