tldr-core 0.1.6

Core analysis engine for TLDR code analysis tool
Documentation
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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
//! Language-specific import parsing (spec Section 2.1.4)
//!
//! Parses import statements from source files for various languages:
//! - Python: import X, from X import Y, relative imports
//! - TypeScript: import, require, dynamic import
//! - Go: import "pkg", import alias
//! - Rust: use, mod, extern crate

use std::path::Path;

use tree_sitter::{Node, Tree};

use crate::types::{ImportInfo, Language};
use crate::TldrResult;

use super::parser::parse_file;

/// Parse imports from a source file.
///
/// # Arguments
/// * `file_path` - Path to source file
/// * `language` - Programming language
///
/// # Returns
/// * `Ok(Vec<ImportInfo>)` - List of imports
/// * `Err(TldrError::PathNotFound)` - File doesn't exist
pub fn get_imports(file_path: &Path, language: Language) -> TldrResult<Vec<ImportInfo>> {
    let (tree, source, _) = parse_file(file_path)?;
    extract_imports_from_tree(&tree, &source, language)
}

/// Extract imports from a parsed tree
pub fn extract_imports_from_tree(
    tree: &Tree,
    source: &str,
    language: Language,
) -> TldrResult<Vec<ImportInfo>> {
    let root = tree.root_node();

    let imports = match language {
        Language::Python => extract_python_imports(&root, source),
        Language::TypeScript | Language::JavaScript => extract_ts_imports(&root, source),
        Language::Go => extract_go_imports(&root, source),
        Language::Rust => extract_rust_imports(&root, source),
        Language::Java => extract_java_imports(&root, source),
        Language::C => extract_c_imports(&root, source),
        Language::Cpp => extract_cpp_imports(&root, source),
        Language::Ruby => extract_ruby_imports(&root, source),
        Language::CSharp => extract_csharp_imports(&root, source),
        Language::Scala => extract_scala_imports(&root, source),
        Language::Elixir => extract_elixir_imports(&root, source),
        Language::Ocaml => extract_ocaml_imports(&root, source),
        Language::Php => extract_php_imports(&root, source),
        Language::Lua | Language::Luau => extract_lua_imports(&root, source),
        // Languages with import extraction not yet implemented -- return empty
        Language::Kotlin | Language::Swift => Vec::new(),
    };

    Ok(imports)
}

// =============================================================================
// Python imports
// =============================================================================

fn extract_python_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_python_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_python_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        match child.kind() {
            "import_statement" => {
                // import X, Y, Z
                let mut import_cursor = child.walk();
                for import_child in child.children(&mut import_cursor) {
                    if import_child.kind() == "dotted_name" {
                        let module = get_node_text(&import_child, source);
                        imports.push(ImportInfo {
                            module,
                            names: Vec::new(),
                            is_from: false,
                            alias: None,
                        });
                    } else if import_child.kind() == "aliased_import" {
                        let module = import_child
                            .child_by_field_name("name")
                            .map(|n| get_node_text(&n, source))
                            .unwrap_or_default();
                        let alias = import_child
                            .child_by_field_name("alias")
                            .map(|n| get_node_text(&n, source));
                        imports.push(ImportInfo {
                            module,
                            names: Vec::new(),
                            is_from: false,
                            alias,
                        });
                    }
                }
            }
            "import_from_statement" => {
                // from X import Y, Z
                let module = child
                    .child_by_field_name("module_name")
                    .map(|n| get_node_text(&n, source))
                    .unwrap_or_else(|| {
                        // Handle relative imports (from . import X)
                        let mut module_parts = Vec::new();
                        let mut c = child.walk();
                        for part in child.children(&mut c) {
                            if part.kind() == "." || part.kind() == "relative_import" {
                                module_parts.push(".".to_string());
                            } else if part.kind() == "dotted_name" {
                                module_parts.push(get_node_text(&part, source));
                            }
                        }
                        module_parts.join("")
                    });

                let mut names = Vec::new();
                let mut import_cursor = child.walk();

                for import_child in child.children(&mut import_cursor) {
                    match import_child.kind() {
                        "dotted_name" | "identifier" => {
                            // Skip if this is the module name
                            if import_child.start_byte()
                                > child
                                    .child_by_field_name("module_name")
                                    .map(|n| n.end_byte())
                                    .unwrap_or(0)
                            {
                                names.push(get_node_text(&import_child, source));
                            }
                        }
                        "aliased_import" => {
                            // For aliased imports, create a separate ImportInfo entry
                            let name = import_child
                                .child_by_field_name("name")
                                .map(|n| get_node_text(&n, source))
                                .unwrap_or_default();
                            let alias = import_child
                                .child_by_field_name("alias")
                                .map(|n| get_node_text(&n, source));

                            imports.push(ImportInfo {
                                module: module.clone(),
                                names: vec![name],
                                is_from: true,
                                alias,
                            });
                        }
                        "wildcard_import" => {
                            names.push("*".to_string());
                        }
                        _ => {}
                    }
                }

                // Only push a general import if we collected non-aliased names
                if !names.is_empty() {
                    imports.push(ImportInfo {
                        module,
                        names,
                        is_from: true,
                        alias: None,
                    });
                }
            }
            _ => {
                extract_python_imports_recursive(&child, source, imports);
            }
        }
    }
}

// =============================================================================
// TypeScript/JavaScript imports
// =============================================================================

fn extract_ts_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_ts_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_ts_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        match child.kind() {
            "import_statement" => {
                let module = child
                    .child_by_field_name("source")
                    .map(|n| get_string_content(&n, source))
                    .unwrap_or_default();

                let mut names = Vec::new();
                let mut is_default = false;

                // Parse import clause
                if let Some(clause) = child
                    .children(&mut child.walk())
                    .find(|c| c.kind() == "import_clause")
                {
                    let mut clause_cursor = clause.walk();
                    for clause_child in clause.children(&mut clause_cursor) {
                        match clause_child.kind() {
                            "identifier" => {
                                // Default import
                                is_default = true;
                                names.push(get_node_text(&clause_child, source));
                            }
                            "named_imports" => {
                                // { a, b, c }
                                let mut named_cursor = clause_child.walk();
                                for named in clause_child.children(&mut named_cursor) {
                                    if named.kind() == "import_specifier" {
                                        if let Some(name) = named.child_by_field_name("name") {
                                            names.push(get_node_text(&name, source));
                                        }
                                    }
                                }
                            }
                            "namespace_import" => {
                                // import * as X — extract X as alias
                                names.push("*".to_string());
                                // Find the identifier after "as" in namespace_import
                                let mut ns_cursor = clause_child.walk();
                                for ns_child in clause_child.children(&mut ns_cursor) {
                                    if ns_child.kind() == "identifier" {
                                        is_default = false; // mark as namespace, not default
                                                            // Store alias name temporarily — will be set below
                                        names.push(get_node_text(&ns_child, source));
                                        break;
                                    }
                                }
                            }
                            _ => {}
                        }
                    }
                }

                imports.push(ImportInfo {
                    module,
                    names,
                    is_from: !is_default,
                    alias: None,
                });
            }
            "export_statement" => {
                // export { x } from 'module' - re-exports
                if let Some(source_node) = child.child_by_field_name("source") {
                    let module = get_string_content(&source_node, source);
                    imports.push(ImportInfo {
                        module,
                        names: Vec::new(),
                        is_from: true,
                        alias: None,
                    });
                }
            }
            _ => {
                extract_ts_imports_recursive(&child, source, imports);
            }
        }
    }
}

// =============================================================================
// Go imports
// =============================================================================

fn extract_go_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_go_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_go_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        match child.kind() {
            "import_declaration" => {
                let mut decl_cursor = child.walk();
                for decl_child in child.children(&mut decl_cursor) {
                    match decl_child.kind() {
                        "import_spec" => {
                            let module = decl_child
                                .child_by_field_name("path")
                                .map(|n| get_string_content(&n, source))
                                .unwrap_or_default();

                            let alias = decl_child
                                .child_by_field_name("name")
                                .map(|n| get_node_text(&n, source));

                            imports.push(ImportInfo {
                                module,
                                names: Vec::new(),
                                is_from: false,
                                alias,
                            });
                        }
                        "import_spec_list" => {
                            let mut list_cursor = decl_child.walk();
                            for spec in decl_child.children(&mut list_cursor) {
                                if spec.kind() == "import_spec" {
                                    let module = spec
                                        .child_by_field_name("path")
                                        .map(|n| get_string_content(&n, source))
                                        .unwrap_or_default();

                                    let alias = spec
                                        .child_by_field_name("name")
                                        .map(|n| get_node_text(&n, source));

                                    imports.push(ImportInfo {
                                        module,
                                        names: Vec::new(),
                                        is_from: false,
                                        alias,
                                    });
                                }
                            }
                        }
                        "interpreted_string_literal" => {
                            // Single import without parentheses
                            let module = get_string_content(&decl_child, source);
                            imports.push(ImportInfo {
                                module,
                                names: Vec::new(),
                                is_from: false,
                                alias: None,
                            });
                        }
                        _ => {}
                    }
                }
            }
            _ => {
                extract_go_imports_recursive(&child, source, imports);
            }
        }
    }
}

// =============================================================================
// Rust imports
// =============================================================================

fn extract_rust_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_rust_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_rust_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        match child.kind() {
            "use_declaration" => {
                // use std::collections::HashMap;
                // use crate::module::{A, B};
                // Extract the path and names
                if let Some(arg) = child.child_by_field_name("argument") {
                    let (module, names) = parse_rust_use_path(&arg, source);
                    imports.push(ImportInfo {
                        module,
                        names,
                        is_from: true,
                        alias: None,
                    });
                }
            }
            "mod_item" => {
                // mod module_name;
                if let Some(name) = child.child_by_field_name("name") {
                    let module = get_node_text(&name, source);
                    imports.push(ImportInfo {
                        module,
                        names: Vec::new(),
                        is_from: false,
                        alias: None,
                    });
                }
            }
            "extern_crate_declaration" => {
                // extern crate foo;
                if let Some(name) = child.child_by_field_name("name") {
                    let module = get_node_text(&name, source);
                    let alias = child
                        .child_by_field_name("alias")
                        .map(|n| get_node_text(&n, source));
                    imports.push(ImportInfo {
                        module,
                        names: Vec::new(),
                        is_from: false,
                        alias,
                    });
                }
            }
            _ => {
                extract_rust_imports_recursive(&child, source, imports);
            }
        }
    }
}

fn parse_rust_use_path(node: &Node, source: &str) -> (String, Vec<String>) {
    // Use proper AST traversal for complex use statements
    let mut imports = Vec::new();
    collect_rust_use_paths(node, source, String::new(), &mut imports);

    // If we collected imports, use the first one's module and all names
    if !imports.is_empty() {
        // Find the common module prefix
        let first_module = imports[0].0.clone();
        let names: Vec<String> = imports.into_iter().map(|(_, name)| name).collect();
        return (first_module, names);
    }

    // Fallback to simple text parsing for edge cases
    let text = get_node_text(node, source);

    // Simple heuristic: split on :: and handle {a, b}
    if let Some(brace_pos) = text.find('{') {
        let module = text[..brace_pos].trim_end_matches("::").to_string();
        let names_part = &text[brace_pos..];
        let names: Vec<String> = names_part
            .trim_matches(|c| c == '{' || c == '}')
            .split(',')
            .map(|s| {
                // Handle "self" and aliases like "HashMap as Map"
                let s = s.trim();
                if let Some(as_pos) = s.find(" as ") {
                    s[..as_pos].trim().to_string()
                } else {
                    s.to_string()
                }
            })
            .filter(|s| !s.is_empty())
            .collect();
        (module, names)
    } else {
        // No braces - extract last segment as name
        let parts: Vec<&str> = text.split("::").collect();
        if parts.len() > 1 {
            let module = parts[..parts.len() - 1].join("::");
            let name = parts.last().unwrap().to_string();
            (module, vec![name])
        } else {
            (text, Vec::new())
        }
    }
}

/// Recursively collect all imports from a Rust use tree
/// Handles nested use groups like `use std::{io::{self, Read}, collections::HashMap}`
fn collect_rust_use_paths(
    node: &Node,
    source: &str,
    prefix: String,
    imports: &mut Vec<(String, String)>,
) {
    match node.kind() {
        "scoped_identifier" | "identifier" => {
            // Simple path like `std::collections::HashMap`
            let text = get_node_text(node, source);
            let full_path = if prefix.is_empty() {
                text.clone()
            } else {
                format!("{}::{}", prefix, text)
            };

            // Extract the module and name parts
            let parts: Vec<&str> = full_path.split("::").collect();
            if parts.len() > 1 {
                let module = parts[..parts.len() - 1].join("::");
                let name = parts.last().unwrap().to_string();
                imports.push((module, name));
            } else {
                imports.push((String::new(), full_path));
            }
        }
        "scoped_use_list" => {
            // Handle `std::io::{Read, Write}`
            // First child is the path, second is the use_list
            if let Some(path_node) = node.child_by_field_name("path") {
                let path_text = get_node_text(&path_node, source);
                let new_prefix = if prefix.is_empty() {
                    path_text
                } else {
                    format!("{}::{}", prefix, path_text)
                };

                // Find the use_list child
                let mut cursor = node.walk();
                for child in node.children(&mut cursor) {
                    if child.kind() == "use_list" {
                        collect_rust_use_paths(&child, source, new_prefix.clone(), imports);
                    }
                }
            }
        }
        "use_list" => {
            // Handle `{Read, Write, self}`
            let mut cursor = node.walk();
            for child in node.children(&mut cursor) {
                collect_rust_use_paths(&child, source, prefix.clone(), imports);
            }
        }
        "use_as_clause" => {
            // Handle `HashMap as Map`
            if let Some(path_node) = node.child_by_field_name("path") {
                collect_rust_use_paths(&path_node, source, prefix, imports);
            }
        }
        "use_wildcard" => {
            // Handle `use foo::*`
            imports.push((prefix, "*".to_string()));
        }
        "self" => {
            // Handle `{self, Read}` - self imports the module itself
            imports.push((prefix, "self".to_string()));
        }
        _ => {
            // Recursively check children
            let mut cursor = node.walk();
            for child in node.children(&mut cursor) {
                collect_rust_use_paths(&child, source, prefix.clone(), imports);
            }
        }
    }
}

// =============================================================================
// Java imports
// =============================================================================

fn extract_java_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_java_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_java_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        if child.kind() == "import_declaration" {
            let mut is_static = false;
            let mut is_wildcard = false;
            let mut module = String::new();

            let mut import_cursor = child.walk();
            for import_child in child.children(&mut import_cursor) {
                match import_child.kind() {
                    "static" => is_static = true,
                    "scoped_identifier" | "identifier" => {
                        module = get_node_text(&import_child, source);
                    }
                    "asterisk" => is_wildcard = true,
                    _ => {}
                }
            }

            // Handle wildcard
            if is_wildcard {
                module = format!("{}.*", module);
            }

            imports.push(ImportInfo {
                module,
                names: Vec::new(),
                is_from: is_static,
                alias: None,
            });
        } else {
            extract_java_imports_recursive(&child, source, imports);
        }
    }
}

// =============================================================================
// C imports (#include directives)
// =============================================================================

fn extract_c_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_c_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_c_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        if child.kind() == "preproc_include" {
            // #include <header.h> or #include "header.h"
            if let Some(path_node) = child.child_by_field_name("path") {
                let path_kind = path_node.kind();
                let raw_text = get_node_text(&path_node, source);

                // Extract the header name, stripping quotes or angle brackets
                let module = match path_kind {
                    "system_lib_string" => {
                        // <stdio.h> -> strip < and >
                        raw_text.trim_matches(|c| c == '<' || c == '>').to_string()
                    }
                    "string_literal" => {
                        // "local.h" -> strip quotes
                        raw_text.trim_matches('"').to_string()
                    }
                    _ => raw_text,
                };

                // is_from = true for system headers (<>), false for local headers ("")
                let is_system = path_kind == "system_lib_string";

                imports.push(ImportInfo {
                    module,
                    names: Vec::new(),
                    is_from: is_system, // We use is_from to indicate system vs local
                    alias: None,
                });
            }
        } else {
            // Recurse into other nodes
            extract_c_imports_recursive(&child, source, imports);
        }
    }
}

// =============================================================================
// C++ imports (#include directives)
// =============================================================================

fn extract_cpp_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    // C++ uses the same #include syntax as C
    // The tree-sitter-cpp grammar also uses preproc_include
    let mut imports = Vec::new();
    extract_cpp_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_cpp_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        if child.kind() == "preproc_include" {
            // #include <header> or #include "header"
            if let Some(path_node) = child.child_by_field_name("path") {
                let path_kind = path_node.kind();
                let raw_text = get_node_text(&path_node, source);

                let module = match path_kind {
                    "system_lib_string" => {
                        raw_text.trim_matches(|c| c == '<' || c == '>').to_string()
                    }
                    "string_literal" => raw_text.trim_matches('"').to_string(),
                    _ => raw_text,
                };

                let is_system = path_kind == "system_lib_string";

                imports.push(ImportInfo {
                    module,
                    names: Vec::new(),
                    is_from: is_system,
                    alias: None,
                });
            }
        } else {
            extract_cpp_imports_recursive(&child, source, imports);
        }
    }
}

// =============================================================================
// Ruby imports (require/require_relative)
// =============================================================================

fn extract_ruby_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_ruby_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_ruby_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        if child.kind() == "call" {
            // Check if this is a require/require_relative call
            let mut call_cursor = child.walk();
            let mut method_name = String::new();
            let mut arg_value = String::new();

            for call_child in child.children(&mut call_cursor) {
                match call_child.kind() {
                    "identifier" => {
                        method_name = get_node_text(&call_child, source);
                    }
                    "argument_list" => {
                        // Get the string argument
                        let mut arg_cursor = call_child.walk();
                        for arg_child in call_child.children(&mut arg_cursor) {
                            if arg_child.kind() == "string" {
                                // Look for string_content inside the string node
                                let mut str_cursor = arg_child.walk();
                                for str_child in arg_child.children(&mut str_cursor) {
                                    if str_child.kind() == "string_content" {
                                        arg_value = get_node_text(&str_child, source);
                                        break;
                                    }
                                }
                                if arg_value.is_empty() {
                                    // Fallback: use the whole string text with quotes stripped
                                    arg_value = get_string_content(&arg_child, source);
                                }
                                break;
                            }
                        }
                    }
                    _ => {}
                }
            }

            // Handle different require patterns
            match method_name.as_str() {
                "require" => {
                    if !arg_value.is_empty() {
                        // require 'gem' or require './path'
                        // is_from = false for external gems, true for relative requires
                        let is_relative =
                            arg_value.starts_with("./") || arg_value.starts_with("../");
                        imports.push(ImportInfo {
                            module: arg_value,
                            names: Vec::new(),
                            is_from: is_relative, // is_from indicates relative path
                            alias: None,
                        });
                    }
                }
                "require_relative" => {
                    if !arg_value.is_empty() {
                        // require_relative './path' - always relative
                        imports.push(ImportInfo {
                            module: arg_value,
                            names: Vec::new(),
                            is_from: true, // is_from = true for require_relative (relative import)
                            alias: None,
                        });
                    }
                }
                _ => {}
            }
        }

        // Recurse into other nodes
        extract_ruby_imports_recursive(&child, source, imports);
    }
}

// =============================================================================
// C# imports (using directives)
// =============================================================================

fn extract_csharp_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_csharp_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_csharp_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        if child.kind() == "using_directive" {
            // C# using directives:
            // - using System;
            // - using static System.Math;
            // - global using System;
            // - using Alias = System.Collections.Generic;

            let text = get_node_text(&child, source);
            let is_static = text.contains("static");
            let is_global = text.contains("global");

            let mut module = String::new();
            let mut alias: Option<String> = None;

            let mut using_cursor = child.walk();
            for using_child in child.children(&mut using_cursor) {
                match using_child.kind() {
                    // Handle qualified name (e.g., System.Collections.Generic)
                    "qualified_name" | "identifier" | "name" => {
                        // Only set module if not already set (for alias case)
                        if module.is_empty() {
                            module = get_node_text(&using_child, source);
                        }
                    }
                    // Handle alias: using Alias = Namespace;
                    "name_equals" => {
                        // The alias is in the name_equals node
                        let mut name_cursor = using_child.walk();
                        for name_child in using_child.children(&mut name_cursor) {
                            if name_child.kind() == "identifier" {
                                alias = Some(get_node_text(&name_child, source));
                                break;
                            }
                        }
                        // The actual namespace comes after name_equals
                        // Continue iteration to find it
                    }
                    _ => {}
                }
            }

            // If we found a name_equals but module is the alias, we need to find the real module
            // Re-traverse to get the qualified_name after name_equals
            if alias.is_some() {
                let mut found_name_equals = false;
                let mut using_cursor2 = child.walk();
                for using_child in child.children(&mut using_cursor2) {
                    if using_child.kind() == "name_equals" {
                        found_name_equals = true;
                        continue;
                    }
                    if found_name_equals
                        && (using_child.kind() == "qualified_name"
                            || using_child.kind() == "identifier")
                    {
                        module = get_node_text(&using_child, source);
                        break;
                    }
                }
            }

            if !module.is_empty() {
                imports.push(ImportInfo {
                    module,
                    names: Vec::new(),
                    // Use is_from to indicate static imports (similar to Java pattern)
                    is_from: is_static || is_global,
                    alias,
                });
            }
        } else {
            // Recurse into other nodes (e.g., namespace declarations)
            extract_csharp_imports_recursive(&child, source, imports);
        }
    }
}

// =============================================================================
// Scala imports
// =============================================================================

fn extract_scala_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_scala_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_scala_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        if child.kind() == "import_declaration" {
            // Scala import syntax:
            // - import scala.util.Try                    (simple)
            // - import scala.collection._               (wildcard)
            // - import scala.util.{Try, Success}        (selective)
            // - import scala.util.{Try => T}            (rename with =>)
            // - import scala.util.{Try, Success => S, _} (mixed)

            // Get the full import text for parsing
            let import_text = get_node_text(&child, source);

            // Remove "import " prefix
            let text = import_text
                .strip_prefix("import ")
                .unwrap_or(&import_text)
                .trim();

            // Parse the import text
            parse_scala_import_text(text, imports);
        } else {
            // Recurse into other nodes
            extract_scala_imports_recursive(&child, source, imports);
        }
    }
}

/// Parse Scala import text and extract ImportInfo entries
fn parse_scala_import_text(text: &str, imports: &mut Vec<ImportInfo>) {
    // Check for selective imports with braces: import scala.util.{Try, Success}
    if let Some(brace_pos) = text.find('{') {
        let base_path = text[..brace_pos].trim_end_matches('.').to_string();
        let selectors_part = &text[brace_pos..];

        // Extract content between braces
        let selectors_content = selectors_part
            .trim_start_matches('{')
            .trim_end_matches('}')
            .trim();

        // Parse each selector
        for selector in selectors_content.split(',') {
            let selector = selector.trim();
            if selector.is_empty() {
                continue;
            }

            // Check for rename: member => alias (Scala uses => for rename)
            if selector.contains("=>") {
                let parts: Vec<&str> = selector.split("=>").collect();
                if parts.len() == 2 {
                    let orig = parts[0].trim();
                    let alias = parts[1].trim();

                    // Skip if original is "_" (hide import)
                    if orig == "_" {
                        continue;
                    }

                    let full_module = if base_path.is_empty() {
                        orig.to_string()
                    } else {
                        format!("{}.{}", base_path, orig)
                    };

                    imports.push(ImportInfo {
                        module: full_module,
                        names: Vec::new(),
                        is_from: false,
                        // alias is None if it's "_" (hide), otherwise the alias name
                        alias: if alias == "_" {
                            None
                        } else {
                            Some(alias.to_string())
                        },
                    });
                }
            } else if selector == "_" {
                // Wildcard import inside braces: import scala.util.{_, ...}
                imports.push(ImportInfo {
                    module: base_path.clone(),
                    names: vec!["*".to_string()],
                    is_from: true,
                    alias: None,
                });
            } else {
                // Simple selector: import scala.util.{Try}
                let full_module = if base_path.is_empty() {
                    selector.to_string()
                } else {
                    format!("{}.{}", base_path, selector)
                };

                imports.push(ImportInfo {
                    module: full_module,
                    names: Vec::new(),
                    is_from: false,
                    alias: None,
                });
            }
        }
    } else if text.ends_with("._") {
        // Wildcard import: import scala.collection.mutable._
        let base_path = text.strip_suffix("._").unwrap_or(text).to_string();
        imports.push(ImportInfo {
            module: base_path,
            names: vec!["*".to_string()],
            is_from: true,
            alias: None,
        });
    } else {
        // Simple import: import scala.collection.mutable.ListBuffer
        imports.push(ImportInfo {
            module: text.to_string(),
            names: Vec::new(),
            is_from: false,
            alias: None,
        });
    }
}

// =============================================================================
// Elixir imports (import, alias, require, use)
// =============================================================================

/// Extract imports from Elixir source code.
///
/// Handles:
/// - `import Phoenix.Controller` — imports all functions from a module
/// - `alias Phoenix.LiveView` — creates alias using last segment as short name
/// - `alias Phoenix.LiveView, as: LV` — explicit alias
/// - `require Logger` — requires module for macros
/// - `use GenServer` — imports and extends with macros
fn extract_elixir_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_elixir_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_elixir_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        if child.kind() == "call" {
            // Elixir import-like statements are all `call` nodes.
            // Structure: call -> identifier (keyword) + arguments -> alias (module name)
            let mut call_cursor = child.walk();
            let mut keyword = String::new();
            let mut module_name = String::new();
            let mut explicit_alias: Option<String> = None;

            for call_child in child.children(&mut call_cursor) {
                match call_child.kind() {
                    "identifier" => {
                        keyword = get_node_text(&call_child, source);
                    }
                    "arguments" => {
                        // First alias child is the module name
                        let mut args_cursor = call_child.walk();
                        for arg_child in call_child.children(&mut args_cursor) {
                            match arg_child.kind() {
                                "alias" if module_name.is_empty() => {
                                    module_name = get_node_text(&arg_child, source);
                                }
                                "keywords" => {
                                    // Parse `as: ShortName` from keywords -> pair -> keyword + alias
                                    let mut kw_cursor = arg_child.walk();
                                    for kw_child in arg_child.children(&mut kw_cursor) {
                                        if kw_child.kind() == "pair" {
                                            let mut pair_cursor = kw_child.walk();
                                            let mut is_as_pair = false;
                                            for pair_child in kw_child.children(&mut pair_cursor) {
                                                match pair_child.kind() {
                                                    "keyword" => {
                                                        let kw_text =
                                                            get_node_text(&pair_child, source);
                                                        // keyword text includes trailing colon+space: "as: "
                                                        if kw_text.trim().trim_end_matches(':')
                                                            == "as"
                                                        {
                                                            is_as_pair = true;
                                                        }
                                                    }
                                                    "alias" if is_as_pair => {
                                                        explicit_alias = Some(get_node_text(
                                                            &pair_child,
                                                            source,
                                                        ));
                                                    }
                                                    _ => {}
                                                }
                                            }
                                        }
                                    }
                                }
                                _ => {}
                            }
                        }
                    }
                    _ => {}
                }
            }

            // Only process recognized Elixir import keywords
            match keyword.as_str() {
                "import" => {
                    if !module_name.is_empty() {
                        imports.push(ImportInfo {
                            module: module_name,
                            names: vec!["*".to_string()],
                            is_from: true,
                            alias: None,
                        });
                    }
                }
                "alias" => {
                    if !module_name.is_empty() {
                        // If no explicit alias, Elixir uses the last segment
                        let resolved_alias = explicit_alias
                            .or_else(|| module_name.rsplit('.').next().map(|s| s.to_string()));
                        imports.push(ImportInfo {
                            module: module_name,
                            names: Vec::new(),
                            is_from: false,
                            alias: resolved_alias,
                        });
                    }
                }
                "require" => {
                    if !module_name.is_empty() {
                        imports.push(ImportInfo {
                            module: module_name,
                            names: Vec::new(),
                            is_from: false,
                            alias: None,
                        });
                    }
                }
                "use" => {
                    if !module_name.is_empty() {
                        imports.push(ImportInfo {
                            module: module_name,
                            names: vec!["*".to_string()],
                            is_from: true,
                            alias: None,
                        });
                    }
                }
                _ => {
                    // Non-import call nodes (e.g., defmodule, def, defp) may contain import statements
                    // Recurse into the call node to find nested imports
                    extract_elixir_imports_recursive(&child, source, imports);
                }
            }
        } else {
            // Recurse into other nodes
            extract_elixir_imports_recursive(&child, source, imports);
        }
    }
}

// =============================================================================
// OCaml imports (open, module alias, include)
// =============================================================================

/// Extract imports from OCaml source code.
///
/// Handles:
/// - `open ModuleName` — opens a module (like import *)
/// - `module M = ModuleName` — module alias
/// - `include ModuleName` — includes module contents
fn extract_ocaml_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_ocaml_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_ocaml_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        match child.kind() {
            "open_module" => {
                // Structure: open_module -> "open" + module_path -> module_name
                if let Some(module) = extract_ocaml_module_path(&child, source) {
                    imports.push(ImportInfo {
                        module,
                        names: vec!["*".to_string()],
                        is_from: true,
                        alias: None,
                    });
                }
            }
            "module_definition" => {
                // Structure: module_definition -> "module" + module_binding
                //   module_binding -> module_name (alias) + "=" + module_path (target)
                let mut def_cursor = child.walk();
                for def_child in child.children(&mut def_cursor) {
                    if def_child.kind() == "module_binding" {
                        let mut alias_name: Option<String> = None;
                        let mut target_module: Option<String> = None;

                        let mut bind_cursor = def_child.walk();
                        for bind_child in def_child.children(&mut bind_cursor) {
                            match bind_child.kind() {
                                "module_name" if alias_name.is_none() => {
                                    alias_name = Some(get_node_text(&bind_child, source));
                                }
                                "module_path" => {
                                    target_module =
                                        Some(extract_ocaml_module_path_text(&bind_child, source));
                                }
                                _ => {}
                            }
                        }

                        if let Some(target) = target_module {
                            imports.push(ImportInfo {
                                module: target,
                                names: Vec::new(),
                                is_from: false,
                                alias: alias_name,
                            });
                        }
                    }
                }
                // Recurse into module_definition body to find nested open/include statements
                // (e.g., module M = struct open List end)
                extract_ocaml_imports_recursive(&child, source, imports);
            }
            "include_module" => {
                // Structure: include_module -> "include" + module_path -> module_name
                if let Some(module) = extract_ocaml_module_path(&child, source) {
                    imports.push(ImportInfo {
                        module,
                        names: vec!["*".to_string()],
                        is_from: true,
                        alias: None,
                    });
                }
            }
            _ => {
                // Recurse into other nodes
                extract_ocaml_imports_recursive(&child, source, imports);
            }
        }
    }
}

/// Extract module path from an OCaml node that contains a module_path child.
/// Returns the dot-separated module path (e.g., "Stdlib.Map").
fn extract_ocaml_module_path(node: &Node, source: &str) -> Option<String> {
    let mut node_cursor = node.walk();
    for child in node.children(&mut node_cursor) {
        if child.kind() == "module_path" {
            return Some(extract_ocaml_module_path_text(&child, source));
        }
    }
    None
}

/// Extract text from a module_path node, joining nested module_name children with dots.
fn extract_ocaml_module_path_text(node: &Node, source: &str) -> String {
    let mut parts = Vec::new();
    let mut path_cursor = node.walk();
    for child in node.children(&mut path_cursor) {
        if child.kind() == "module_name" {
            parts.push(get_node_text(&child, source));
        } else if child.kind() == "module_path" {
            // Nested module_path for dotted names
            parts.push(extract_ocaml_module_path_text(&child, source));
        }
    }
    if parts.is_empty() {
        // Fallback: use the entire node text
        get_node_text(node, source)
    } else {
        parts.join(".")
    }
}

// =============================================================================
// Lua imports (require calls)
// =============================================================================

/// Extract Lua imports from `require()` calls.
///
/// Lua patterns:
/// - `local socket = require("socket")`     -- standard with parentheses
/// - `local dict = require"socket.dict"`    -- no parentheses, direct string
/// - `local mime = require "mime"`          -- space before string
/// - `require("module")`                    -- bare require without local
fn extract_lua_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_lua_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_lua_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        // Look for function_call nodes where the function is "require"
        if child.kind() == "function_call" {
            if let Some(import) = extract_lua_require(&child, source) {
                imports.push(import);
                continue;
            }
        }

        // Also check variable_declaration / assignment_statement that may contain require
        // The require call could be nested inside these
        extract_lua_imports_recursive(&child, source, imports);
    }
}

/// Extract a single require() import from a Lua function_call node.
fn extract_lua_require(node: &Node, source: &str) -> Option<ImportInfo> {
    // Structure varies by tree-sitter-lua grammar:
    // function_call -> name: identifier("require") + arguments: (string | arguments(string))
    // OR
    // function_call -> prefix: identifier("require") + arguments(string)

    let mut is_require = false;
    let mut module_name = String::new();

    let mut call_cursor = node.walk();
    for child in node.children(&mut call_cursor) {
        match child.kind() {
            // The function name (could be in "name" field or as first identifier child)
            "identifier" => {
                let text = get_node_text(&child, source);
                if text == "require" {
                    is_require = true;
                }
            }
            // Arguments with parentheses: require("socket")
            "arguments" => {
                if is_require {
                    module_name = extract_string_from_arguments(&child, source);
                }
            }
            // Direct string argument without parens: require"socket.dict" or require "mime"
            "string" => {
                if is_require {
                    module_name = get_string_content(&child, source);
                }
            }
            _ => {}
        }
    }

    if is_require && !module_name.is_empty() {
        Some(ImportInfo {
            module: module_name,
            names: Vec::new(),
            is_from: false,
            alias: None,
        })
    } else {
        None
    }
}

/// Extract a string value from an arguments node.
/// Handles both `(arguments (string "value"))` and nested patterns.
fn extract_string_from_arguments(node: &Node, source: &str) -> String {
    let mut arg_cursor = node.walk();
    for child in node.children(&mut arg_cursor) {
        if child.kind() == "string" {
            return get_string_content(&child, source);
        }
    }
    String::new()
}

// =============================================================================
// PHP imports (use statements, require/include)
// =============================================================================

fn extract_php_imports(node: &Node, source: &str) -> Vec<ImportInfo> {
    let mut imports = Vec::new();
    extract_php_imports_recursive(node, source, &mut imports);
    imports
}

fn extract_php_imports_recursive(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        match child.kind() {
            // PHP use statements: use App\Models\User;
            "namespace_use_declaration" => {
                extract_php_use_declaration(&child, source, imports);
            }
            // PHP require/include expressions
            "expression_statement" => {
                // Check if this contains a require/include
                let mut expr_cursor = child.walk();
                for expr_child in child.children(&mut expr_cursor) {
                    match expr_child.kind() {
                        "require_expression"
                        | "require_once_expression"
                        | "include_expression"
                        | "include_once_expression" => {
                            if let Some(import_info) =
                                extract_php_require_include(&expr_child, source)
                            {
                                imports.push(import_info);
                            }
                        }
                        _ => {}
                    }
                }
            }
            // Direct require/include at statement level
            "require_expression"
            | "require_once_expression"
            | "include_expression"
            | "include_once_expression" => {
                if let Some(import_info) = extract_php_require_include(&child, source) {
                    imports.push(import_info);
                }
            }
            _ => {
                // Recurse into other nodes
                extract_php_imports_recursive(&child, source, imports);
            }
        }
    }
}

/// Extract PHP use declarations
/// Handles:
/// - Simple: use App\Models\User;
/// - Grouped: use App\Models\{User, Post};
/// - Aliased: use App\Models\User as UserModel;
/// - Function use: use function App\helper;
/// - Const use: use const App\CONSTANT;
fn extract_php_use_declaration(node: &Node, source: &str, imports: &mut Vec<ImportInfo>) {
    let mut use_cursor = node.walk();

    // Check if this is a grouped import by looking for namespace_use_group
    let has_group = node
        .children(&mut use_cursor)
        .any(|c| c.kind() == "namespace_use_group");

    if has_group {
        // Grouped imports: use App\Models\{User, Post};
        let mut prefix = String::new();
        let mut group_cursor = node.walk();

        for use_child in node.children(&mut group_cursor) {
            match use_child.kind() {
                "namespace_name" | "qualified_name" | "name" => {
                    // This is the base namespace prefix
                    prefix = get_node_text(&use_child, source);
                }
                "namespace_use_group" => {
                    // Parse each clause in the group
                    let mut group_items_cursor = use_child.walk();
                    for group_item in use_child.children(&mut group_items_cursor) {
                        if group_item.kind() == "namespace_use_clause" {
                            let clause_text = get_node_text(&group_item, source).trim().to_string();

                            // Handle alias: User as UserModel
                            let (name, alias) = parse_php_use_alias(&clause_text);

                            let full_module = if prefix.is_empty() {
                                name
                            } else {
                                format!("{}\\{}", prefix, name)
                            };

                            imports.push(ImportInfo {
                                module: full_module,
                                names: Vec::new(),
                                is_from: true, // use is similar to "from X import Y"
                                alias,
                            });
                        }
                    }
                }
                _ => {}
            }
        }
    } else {
        // Simple or aliased imports
        let mut simple_cursor = node.walk();
        for use_child in node.children(&mut simple_cursor) {
            if use_child.kind() == "namespace_use_clause" {
                let clause_text = get_node_text(&use_child, source).trim().to_string();

                // Handle alias: App\Models\User as UserModel
                let (module, alias) = parse_php_use_alias(&clause_text);

                imports.push(ImportInfo {
                    module,
                    names: Vec::new(),
                    is_from: true,
                    alias,
                });
            }
        }
    }
}

/// Parse PHP use clause for potential alias
/// Returns (module, Option<alias>)
fn parse_php_use_alias(clause: &str) -> (String, Option<String>) {
    // Check for " as " (case insensitive)
    let lower = clause.to_lowercase();
    if let Some(as_pos) = lower.find(" as ") {
        let module = clause[..as_pos].trim().to_string();
        let alias = clause[as_pos + 4..].trim().to_string();
        (module, Some(alias))
    } else {
        (clause.to_string(), None)
    }
}

/// Extract PHP require/include expressions
/// Handles:
/// - require 'config.php';
/// - require_once __DIR__ . '/file.php';
/// - include 'another.php';
fn extract_php_require_include(node: &Node, source: &str) -> Option<ImportInfo> {
    let node_type = node.kind();

    // Determine import type based on node kind
    let is_require = node_type.starts_with("require");
    let is_once = node_type.contains("_once");

    // Find the path argument
    let mut module = String::new();
    let mut arg_cursor = node.walk();

    for child in node.children(&mut arg_cursor) {
        match child.kind() {
            // String literal: 'file.php' or "file.php"
            "string" | "encapsed_string" => {
                let text = get_node_text(&child, source);
                // Strip quotes
                module = text.trim_matches(|c| c == '"' || c == '\'').to_string();
                break;
            }
            // Binary expression: __DIR__ . '/file.php'
            "binary_expression" => {
                // For complex expressions, capture the whole expression
                module = get_node_text(&child, source);
                break;
            }
            // Parenthesized expression: require('file.php')
            "parenthesized_expression" => {
                // Look inside for string
                let mut paren_cursor = child.walk();
                for paren_child in child.children(&mut paren_cursor) {
                    if paren_child.kind() == "string" || paren_child.kind() == "encapsed_string" {
                        let text = get_node_text(&paren_child, source);
                        module = text.trim_matches(|c| c == '"' || c == '\'').to_string();
                        break;
                    }
                }
                if module.is_empty() {
                    // Fallback to whole expression
                    module = get_node_text(&child, source);
                }
                break;
            }
            _ => {}
        }
    }

    if module.is_empty() {
        // Last resort: extract from the whole node text
        let full_text = get_node_text(node, source);
        // Try to extract path from require 'path' or require('path')
        for pattern in ["require_once", "require", "include_once", "include"] {
            if let Some(pos) = full_text.find(pattern) {
                let rest = full_text[pos + pattern.len()..].trim();
                // Remove parentheses and quotes
                let cleaned = rest
                    .trim_start_matches(['(', ' '])
                    .trim_end_matches([')', ';', ' '])
                    .trim_matches(['"', '\'']);
                if !cleaned.is_empty() {
                    module = cleaned.to_string();
                    break;
                }
            }
        }
    }

    if module.is_empty() {
        return None;
    }

    Some(ImportInfo {
        module,
        names: Vec::new(),
        // Use is_from to distinguish require vs include
        // is_from = true for require (must exist), false for include (optional)
        is_from: is_require,
        // Use alias to track _once variants - store "once" if applicable
        alias: if is_once {
            Some("once".to_string())
        } else {
            None
        },
    })
}

// =============================================================================
// Helper functions
// =============================================================================

/// Get text content of a node
fn get_node_text(node: &Node, source: &str) -> String {
    source[node.byte_range()].to_string()
}

/// Get string content (strips quotes)
fn get_string_content(node: &Node, source: &str) -> String {
    let text = get_node_text(node, source);
    text.trim_matches(|c| c == '"' || c == '\'' || c == '`')
        .to_string()
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::ast::parser::parse;

    #[test]
    fn test_c_include_system() {
        let source = "#include <stdio.h>";
        let tree = parse(source, Language::C).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::C).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "stdio.h");
        assert!(
            imports[0].is_from,
            "System headers should have is_from=true"
        );
    }

    #[test]
    fn test_c_include_local() {
        let source = r#"#include "local.h""#;
        let tree = parse(source, Language::C).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::C).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "local.h");
        assert!(
            !imports[0].is_from,
            "Local headers should have is_from=false"
        );
    }

    #[test]
    fn test_c_multiple_includes() {
        let source = r#"
#include <stdio.h>
#include <stdlib.h>
#include "myheader.h"
"#;
        let tree = parse(source, Language::C).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::C).unwrap();

        assert_eq!(imports.len(), 3);
        let modules: Vec<&str> = imports.iter().map(|i| i.module.as_str()).collect();
        assert!(modules.contains(&"stdio.h"));
        assert!(modules.contains(&"stdlib.h"));
        assert!(modules.contains(&"myheader.h"));
    }

    #[test]
    fn test_cpp_includes() {
        let source = r#"
#include <iostream>
#include <string>
#include "local.hpp"
"#;
        let tree = parse(source, Language::Cpp).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Cpp).unwrap();

        assert_eq!(imports.len(), 3);
        let modules: Vec<&str> = imports.iter().map(|i| i.module.as_str()).collect();
        assert!(modules.contains(&"iostream"));
        assert!(modules.contains(&"string"));
        assert!(modules.contains(&"local.hpp"));
    }

    #[test]
    fn test_python_import() {
        let source = "import os";
        let tree = parse(source, Language::Python).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Python).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "os");
        assert!(!imports[0].is_from);
    }

    #[test]
    fn test_python_from_import() {
        let source = "from typing import List, Optional";
        let tree = parse(source, Language::Python).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Python).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "typing");
        assert!(imports[0].is_from);
        assert!(imports[0].names.contains(&"List".to_string()));
        assert!(imports[0].names.contains(&"Optional".to_string()));
    }

    #[test]
    fn test_typescript_import() {
        let source = "import { foo, bar } from './module';";
        let tree = parse(source, Language::TypeScript).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::TypeScript).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "./module");
        assert!(imports[0].names.contains(&"foo".to_string()));
    }

    #[test]
    fn test_go_import() {
        let source = r#"
package main

import "fmt"
"#;
        let tree = parse(source, Language::Go).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Go).unwrap();

        assert!(!imports.is_empty());
        assert!(imports.iter().any(|i| i.module == "fmt"));
    }

    #[test]
    fn test_rust_use() {
        let source = "use std::collections::HashMap;";
        let tree = parse(source, Language::Rust).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Rust).unwrap();

        assert_eq!(imports.len(), 1);
        assert!(imports[0].module.contains("std::collections"));
    }

    #[test]
    fn test_ruby_require_gem() {
        let source = "require 'json'";
        let tree = parse(source, Language::Ruby).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ruby).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "json");
        assert!(
            !imports[0].is_from,
            "External gem require should have is_from=false"
        );
    }

    #[test]
    fn test_ruby_require_relative() {
        let source = "require_relative './helper'";
        let tree = parse(source, Language::Ruby).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ruby).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "./helper");
        assert!(
            imports[0].is_from,
            "require_relative should have is_from=true"
        );
    }

    #[test]
    fn test_ruby_require_explicit_relative() {
        let source = "require './lib/util'";
        let tree = parse(source, Language::Ruby).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ruby).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "./lib/util");
        assert!(
            imports[0].is_from,
            "Explicit relative require should have is_from=true"
        );
    }

    #[test]
    fn test_ruby_multiple_requires() {
        let source = r##"
require 'json'
require 'net/http'
require_relative './local_module'
"##;
        let tree = parse(source, Language::Ruby).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ruby).unwrap();

        assert_eq!(imports.len(), 3);
        let modules: Vec<&str> = imports.iter().map(|i| i.module.as_str()).collect();
        assert!(modules.contains(&"json"));
        assert!(modules.contains(&"net/http"));
        assert!(modules.contains(&"./local_module"));
    }

    // =========================================================================
    // Elixir import tests
    // =========================================================================

    #[test]
    fn test_elixir_import() {
        let source = "import Phoenix.Controller";
        let tree = parse(source, Language::Elixir).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Elixir).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "Phoenix.Controller");
        assert!(
            imports[0].is_from,
            "import should have is_from=true (imports all functions)"
        );
    }

    #[test]
    fn test_elixir_alias_simple() {
        let source = "alias Phoenix.LiveView";
        let tree = parse(source, Language::Elixir).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Elixir).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "Phoenix.LiveView");
        // Simple alias uses last segment as short name
        assert_eq!(imports[0].alias, Some("LiveView".to_string()));
    }

    #[test]
    fn test_elixir_alias_with_as() {
        let source = "alias Phoenix.LiveView, as: LV";
        let tree = parse(source, Language::Elixir).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Elixir).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "Phoenix.LiveView");
        assert_eq!(imports[0].alias, Some("LV".to_string()));
    }

    #[test]
    fn test_elixir_require() {
        let source = "require Logger";
        let tree = parse(source, Language::Elixir).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Elixir).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "Logger");
    }

    #[test]
    fn test_elixir_use() {
        let source = "use GenServer";
        let tree = parse(source, Language::Elixir).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Elixir).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "GenServer");
        assert!(
            imports[0].is_from,
            "use should have is_from=true (imports macros)"
        );
    }

    #[test]
    fn test_elixir_multiple_imports() {
        let source = r#"import Phoenix.Controller
alias Phoenix.LiveView, as: LV
require Logger
use GenServer
"#;
        let tree = parse(source, Language::Elixir).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Elixir).unwrap();

        assert_eq!(imports.len(), 4);
        let modules: Vec<&str> = imports.iter().map(|i| i.module.as_str()).collect();
        assert!(modules.contains(&"Phoenix.Controller"));
        assert!(modules.contains(&"Phoenix.LiveView"));
        assert!(modules.contains(&"Logger"));
        assert!(modules.contains(&"GenServer"));
    }

    #[test]
    fn test_elixir_imports_inside_defmodule() {
        let source = r#"defmodule MyApp.Router do
  alias Phoenix.Socket
  import Plug.Conn
  use Phoenix.Router
  require Logger
end"#;
        let tree = parse(source, Language::Elixir).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Elixir).unwrap();

        assert_eq!(
            imports.len(),
            4,
            "Should find all 4 imports inside defmodule"
        );
        let modules: Vec<&str> = imports.iter().map(|i| i.module.as_str()).collect();
        assert!(
            modules.contains(&"Phoenix.Socket"),
            "Should find alias Phoenix.Socket"
        );
        assert!(
            modules.contains(&"Plug.Conn"),
            "Should find import Plug.Conn"
        );
        assert!(
            modules.contains(&"Phoenix.Router"),
            "Should find use Phoenix.Router"
        );
        assert!(modules.contains(&"Logger"), "Should find require Logger");
    }

    // =========================================================================
    // OCaml import tests
    // =========================================================================

    #[test]
    fn test_ocaml_open() {
        let source = "open List";
        let tree = parse(source, Language::Ocaml).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ocaml).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "List");
        assert!(
            imports[0].is_from,
            "open should have is_from=true (like import *)"
        );
    }

    #[test]
    fn test_ocaml_module_alias() {
        let source = "module M = Hashtbl";
        let tree = parse(source, Language::Ocaml).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ocaml).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "Hashtbl");
        assert_eq!(imports[0].alias, Some("M".to_string()));
    }

    #[test]
    fn test_ocaml_include() {
        let source = "include Set";
        let tree = parse(source, Language::Ocaml).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ocaml).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "Set");
        assert!(imports[0].is_from, "include should have is_from=true");
    }

    #[test]
    fn test_ocaml_multiple_imports() {
        let source = r#"open List
module M = Hashtbl
include Set
"#;
        let tree = parse(source, Language::Ocaml).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ocaml).unwrap();

        assert_eq!(imports.len(), 3);
        let modules: Vec<&str> = imports.iter().map(|i| i.module.as_str()).collect();
        assert!(modules.contains(&"List"));
        assert!(modules.contains(&"Hashtbl"));
        assert!(modules.contains(&"Set"));
    }

    #[test]
    fn test_ocaml_nested_module() {
        let source = "open Stdlib.Map";
        let tree = parse(source, Language::Ocaml).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ocaml).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "Stdlib.Map");
    }

    #[test]
    fn test_ocaml_open_inside_module() {
        let source = r#"module M = struct
  open List
  open Hashtbl
end"#;
        let tree = parse(source, Language::Ocaml).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Ocaml).unwrap();

        assert_eq!(
            imports.len(),
            2,
            "Should find 2 open statements inside module struct"
        );
        let modules: Vec<&str> = imports.iter().map(|i| i.module.as_str()).collect();
        assert!(modules.contains(&"List"), "Should find open List");
        assert!(modules.contains(&"Hashtbl"), "Should find open Hashtbl");
    }

    // =========================================================================
    // PHP import tests
    // =========================================================================

    #[test]
    fn test_php_use_simple() {
        let source = "<?php\nuse App\\Models\\User;";
        let tree = parse(source, Language::Php).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Php).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "App\\Models\\User");
    }

    #[test]
    fn test_php_use_alias() {
        let source = "<?php\nuse App\\Models\\User as UserModel;";
        let tree = parse(source, Language::Php).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Php).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "App\\Models\\User");
        assert_eq!(imports[0].alias, Some("UserModel".to_string()));
    }

    #[test]
    fn test_php_require() {
        let source = "<?php\nrequire 'config.php';";
        let tree = parse(source, Language::Php).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Php).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "config.php");
        assert!(imports[0].is_from, "require should have is_from=true");
    }

    #[test]
    fn test_php_require_once() {
        let source = "<?php\nrequire_once 'autoload.php';";
        let tree = parse(source, Language::Php).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Php).unwrap();

        assert_eq!(imports.len(), 1);
        assert_eq!(imports[0].module, "autoload.php");
        assert_eq!(
            imports[0].alias,
            Some("once".to_string()),
            "require_once should have alias='once'"
        );
    }

    #[test]
    fn test_php_multiple_imports() {
        let source = r#"<?php
use App\Models\User;
use App\Models\Post as BlogPost;
require_once 'vendor/autoload.php';
"#;
        let tree = parse(source, Language::Php).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Php).unwrap();

        assert!(
            imports.len() >= 3,
            "Expected at least 3 imports, got {}",
            imports.len()
        );
    }

    // =========================================================================
    // Lua imports
    // =========================================================================

    /// Test: Lua standard require with parentheses
    /// `local socket = require("socket")`
    #[test]
    fn test_lua_require_standard() {
        let source = r#"local socket = require("socket")"#;
        let tree = parse(source, Language::Lua).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Lua).unwrap();

        assert_eq!(imports.len(), 1, "Expected 1 import, got {}", imports.len());
        assert_eq!(imports[0].module, "socket");
    }

    /// Test: Lua require without parentheses
    /// `local dict = require"socket.dict"`
    #[test]
    fn test_lua_require_no_parens() {
        let source = r#"local dict = require"socket.dict""#;
        let tree = parse(source, Language::Lua).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Lua).unwrap();

        assert_eq!(imports.len(), 1, "Expected 1 import, got {}", imports.len());
        assert_eq!(imports[0].module, "socket.dict");
    }

    /// Test: Lua require with space before string (no parens)
    /// `local mime = require "mime"`
    #[test]
    fn test_lua_require_space_string() {
        let source = r#"local mime = require "mime""#;
        let tree = parse(source, Language::Lua).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Lua).unwrap();

        assert_eq!(imports.len(), 1, "Expected 1 import, got {}", imports.len());
        assert_eq!(imports[0].module, "mime");
    }

    /// Test: Lua local require with nested module path
    /// `local http = require("socket.http")`
    #[test]
    fn test_lua_require_local() {
        let source = r#"local http = require("socket.http")"#;
        let tree = parse(source, Language::Lua).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Lua).unwrap();

        assert_eq!(imports.len(), 1, "Expected 1 import, got {}", imports.len());
        assert_eq!(imports[0].module, "socket.http");
    }

    /// Test: Multiple Lua requires in a file
    #[test]
    fn test_lua_multiple_requires() {
        let source = r#"
local socket = require("socket")
local url = require("socket.url")
local ltn12 = require("ltn12")
local mime = require("mime")
"#;
        let tree = parse(source, Language::Lua).unwrap();
        let imports = extract_imports_from_tree(&tree, source, Language::Lua).unwrap();

        assert!(
            imports.len() >= 4,
            "Expected at least 4 imports, got {}",
            imports.len()
        );
        let modules: Vec<&str> = imports.iter().map(|i| i.module.as_str()).collect();
        assert!(modules.contains(&"socket"), "Missing 'socket' import");
        assert!(
            modules.contains(&"socket.url"),
            "Missing 'socket.url' import"
        );
        assert!(modules.contains(&"ltn12"), "Missing 'ltn12' import");
        assert!(modules.contains(&"mime"), "Missing 'mime' import");
    }
}