mir-analyzer 0.59.2

Analysis engine for the mir PHP static analyzer
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
// Integration tests for symbol_reference_locations (mir#184).

mod common;

use std::sync::Arc;

use mir_analyzer::{AnalysisSession, BatchOptions, PhpVersion};

use self::common::{create_temp_dir, pathbuf_to_arc_str, write_file};

#[test]
fn function_call_records_reference_location() {
    let dir = create_temp_dir("test");
    // The call must be inside a function body — analyze_bodies only processes declarations.
    let file = write_file(
        &dir,
        "a.php",
        "<?php\nfunction greet(): void {}\nfunction caller(): void { greet(); }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs = analyzer.reference_locations("fn:greet");
    assert!(
        locs.iter().any(|(f, ..)| f == &file_arc),
        "reference location should be recorded for the analyzed file"
    );
    assert!(!locs.is_empty(), "at least one span recorded");
}

#[test]
fn function_call_span_covers_only_name() {
    let dir = create_temp_dir("test");
    //                  0123456789...
    // "<?php\n"        = 6 bytes
    // "function greet(): void {}\n"
    // "function caller(): void { greet(); }\n"
    //                            ^-- 'greet' starts here
    let src = "<?php\nfunction greet(): void {}\nfunction caller(): void { greet(); }\n";
    let file = write_file(&dir, "b.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("fn:greet")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(locs.len(), 1);
    let (_, _line, col_start, col_end) = locs[0];
    // The span should cover only the 5-byte identifier "greet", not the full call
    assert_eq!(
        col_end - col_start,
        5,
        "span should cover only 'greet' (5 bytes), got col_start={col_start} col_end={col_end}"
    );
}

#[test]
fn method_call_span_covers_only_name() {
    let dir = create_temp_dir("test");
    // "<?php\n"                                          = 6 bytes
    // "class Svc { public function run(): void {} }\n"   = 45 bytes  (offset 6)
    // "function caller(): void { $s = new Svc(); $s->run(); }\n"
    //                                             ^-- 'run' starts at offset 97
    let src = "<?php\nclass Svc { public function run(): void {} }\nfunction caller(): void { $s = new Svc(); $s->run(); }\n";
    let file = write_file(&dir, "h.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("meth:Svc::run")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(locs.len(), 1);
    let (_, _line, col_start, col_end) = locs[0];
    // The span should cover only the 3-byte identifier "run", not the full call
    assert_eq!(
        col_end - col_start,
        3,
        "span should cover only 'run' (3 bytes), got col_start={col_start} col_end={col_end}"
    );
}

#[test]
fn static_method_call_via_class_string_variable_records_reference() {
    // `$cls::method()` where `$cls` holds a class-string variable must record
    // a reference, matching the plain `Math::sq()` form.
    let dir = create_temp_dir("test");
    let src = "<?php\nclass Math { public static function sq(int $n): int { return $n * $n; } }\nfunction caller(): void { $cls = Math::class; $cls::sq(3); }\n";
    let file = write_file(&dir, "dyn_static.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("meth:Math::sq")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(
        locs.len(),
        1,
        "expected exactly one reference to Math::sq from $cls::sq(3)"
    );
}

#[test]
fn dynamic_invoke_call_records_reference_to_invoke_method() {
    // `$obj(...)` invoking an object's __invoke() must record a reference,
    // matching every other call form ($obj->run(), Svc::run(), etc.).
    let dir = create_temp_dir("test");
    let src = "<?php\nclass Svc { public function __invoke(): void {} }\nfunction caller(Svc $s): void { $s(); }\n";
    let file = write_file(&dir, "i.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("meth:Svc::__invoke")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(
        locs.len(),
        1,
        "expected exactly one reference to Svc::__invoke from $s()"
    );
}

#[test]
fn property_access_span_covers_only_name() {
    let dir = create_temp_dir("test");
    // "<?php\n"                                          = 6 bytes
    // "class Counter { public int $count = 0; }\n"      = 41 bytes  (offset 6)
    // "function read(Counter $c): int { return $c->count; }\n"
    //                                              ^-- 'count' starts at offset 91
    let src = "<?php\nclass Counter { public int $count = 0; }\nfunction read(Counter $c): int { return $c->count; }\n";
    let file = write_file(&dir, "i.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("prop:Counter::count")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(locs.len(), 1);
    let (_, _line, col_start, col_end) = locs[0];
    // The span should cover only the 5-byte identifier "count", not the full "$c->count"
    assert_eq!(
        col_end - col_start,
        5,
        "span should cover only 'count' (5 bytes), got col_start={col_start} col_end={col_end}"
    );
}

#[test]
fn nullsafe_property_access_records_reference_location() {
    let dir = create_temp_dir("test");
    // "<?php\n"                                     = 6 bytes
    // "class Box { public int $val = 0; }\n"        = 35 bytes  (offset 6)
    // "function read(?Box $b): void { $b?->val; }\n"
    //                                        ^-- 'val' starts at offset 77
    let src =
        "<?php\nclass Box { public int $val = 0; }\nfunction read(?Box $b): void { $b?->val; }\n";
    let file = write_file(&dir, "j.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("prop:Box::val")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(locs.len(), 1);
    let (_, _line, col_start, col_end) = locs[0];
    // The span should cover only the 3-byte identifier "val", not "$b?->val"
    assert_eq!(
        col_end - col_start,
        3,
        "span should cover only 'val' (3 bytes), got col_start={col_start} col_end={col_end}"
    );
}

#[test]
fn method_call_records_reference_location() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "c.php",
        "<?php\nclass Svc { public function run(): void {} }\nfunction caller(): void { $s = new Svc(); $s->run(); }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("meth:Svc::run").is_empty(),
        "Svc::run should be in symbol_reference_locations"
    );
}

#[test]
fn multiple_calls_in_same_file_produce_multiple_spans() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "d.php",
        "<?php\nfunction ping(): void {}\nfunction caller(): void { ping(); ping(); ping(); }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let count = analyzer
        .reference_locations("fn:ping")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .count();

    assert_eq!(count, 3, "three calls should produce three spans");
}

#[test]
fn new_expression_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "e.php",
        "<?php\nclass Widget {}\nfunction make(): void { $w = new Widget(); }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs = analyzer.reference_locations("cls:Widget");
    assert!(
        locs.iter().any(|(f, ..)| f == &file_arc),
        "new Widget() should record a reference to Widget"
    );
}

#[test]
fn new_expression_via_class_string_variable_records_class_reference() {
    // `new $cls()` where `$cls` holds a known class-string must record a
    // reference, matching the plain `new Widget()` form.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "e2.php",
        "<?php\nclass Widget {}\nfunction make(): void { $cls = Widget::class; $w = new $cls(); }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs = analyzer.reference_locations("cls:Widget");
    assert!(
        locs.iter().any(|(f, ..)| f == &file_arc),
        "new $cls() should record a reference to Widget"
    );
}

#[test]
fn instanceof_via_class_string_variable_records_class_reference() {
    // `$x instanceof $cls` where `$cls` holds a known class-string must
    // record a reference, matching the plain `$x instanceof Widget` form.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "e3.php",
        "<?php\nclass Widget {}\nfunction check(object $o): bool { $cls = Widget::class; return $o instanceof $cls; }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs = analyzer.reference_locations("cls:Widget");
    assert!(
        locs.iter().any(|(f, ..)| f == &file_arc),
        "$o instanceof $cls should record a reference to Widget"
    );
}

#[test]
fn re_analyze_removes_stale_reference_locations() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "f.php",
        "<?php\nfunction helper(): void {}\nfunction caller(): void { helper(); }\n",
    );
    let file_str = file.to_str().unwrap().to_string();
    let file_arc: Arc<str> = Arc::from(file_str.as_str());

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        analyzer
            .reference_locations("fn:helper")
            .iter()
            .any(|(f, ..)| f == &file_arc),
        "initial analysis should record location"
    );

    // Re-analyze with content that no longer calls helper()
    analyzer.re_analyze_file(
        &file_str,
        "<?php\nfunction helper(): void {}\nfunction caller(): void {}\n",
        &BatchOptions::new(),
    );

    let stale = analyzer
        .reference_locations("fn:helper")
        .iter()
        .any(|(f, ..)| f == &file_arc);

    assert!(
        !stale,
        "stale reference location should be removed after re-analysis"
    );
}

#[test]
fn static_method_call_span_covers_only_name() {
    let dir = create_temp_dir("test");
    // "<?php\n"                                                                    = 6 bytes
    // "class Math { public static function sq(int $n): int { return $n * $n; } }\n" = 74 bytes
    // "function caller(): void { Math::sq(3); }\n"
    //                                    ^-- 'sq' starts at byte 6+74+32 = 112
    let src = "<?php\nclass Math { public static function sq(int $n): int { return $n * $n; } }\nfunction caller(): void { Math::sq(3); }\n";
    let file = write_file(&dir, "static_span.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("meth:Math::sq")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(locs.len(), 1);
    let (_, _line, col_start, col_end) = locs[0];
    // The span should cover only the 2-byte identifier "sq", not the full call
    assert_eq!(
        col_end - col_start,
        2,
        "span should cover only 'sq' (2 bytes), got col_start={col_start} col_end={col_end}"
    );
}

#[test]
fn cache_hit_replays_reference_locations() {
    let dir = create_temp_dir("test");
    let cache_dir = dir.path().join("cache");
    let file = write_file(
        &dir,
        "g.php",
        "<?php\nfunction cached_fn(): void {}\nfunction caller(): void { cached_fn(); }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    // First run — populates cache
    {
        let analyzer = AnalysisSession::new(PhpVersion::LATEST).with_cache_dir(&cache_dir);
        analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());
        assert!(
            !analyzer.reference_locations("fn:cached_fn").is_empty(),
            "first run should record reference"
        );
    }

    // Second run — file unchanged, cache hit
    {
        let analyzer = AnalysisSession::new(PhpVersion::LATEST).with_cache_dir(&cache_dir);
        analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

        let locs = analyzer.reference_locations("fn:cached_fn");
        assert!(
            !locs.is_empty(),
            "cache hit should replay reference locations"
        );
        assert!(
            locs.iter().any(|(f, ..)| f == &file_arc),
            "replayed locations should include the correct file"
        );
    }
}

#[test]
fn compact_index_preserves_reference_locations() {
    // After analyze() calls compact_reference_index(), queries must return the
    // same results as before compaction.
    let dir = create_temp_dir("test");
    let src = "<?php\nfunction ping(): void {}\nfunction caller(): void { ping(); ping(); }\n";
    let file = write_file(&dir, "compact.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    // After analyze(), the reference index must hold both call sites.
    let locs: Vec<_> = analyzer
        .reference_locations("fn:ping")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(
        locs.len(),
        2,
        "two calls → two spans in the reference index"
    );
}

#[test]
fn compact_index_survives_re_analyze() {
    // re_analyze_file() must work correctly even when the index was compacted
    // by a preceding full analyze() call.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "reanalyze.php",
        "<?php\nfunction helper(): void {}\nfunction caller(): void { helper(); }\n",
    );
    let file_str = file.to_str().unwrap().to_string();
    let file_arc: Arc<str> = Arc::from(file_str.as_str());

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    // Index is now compact; verify initial state.
    assert!(
        analyzer
            .reference_locations("fn:helper")
            .iter()
            .any(|(f, ..)| f == &file_arc),
        "initial reference should be recorded"
    );

    // Re-analyze without the call — compact index must be expanded, stale entry removed.
    analyzer.re_analyze_file(
        &file_str,
        "<?php\nfunction helper(): void {}\nfunction caller(): void {}\n",
        &BatchOptions::new(),
    );

    let stale = analyzer
        .reference_locations("fn:helper")
        .iter()
        .any(|(f, ..)| f == &file_arc);
    assert!(
        !stale,
        "stale span must be removed after re-analysis through compact index"
    );
}

#[test]
fn this_method_call_records_reference_location() {
    // $this->method() calls were previously invisible to the reference index
    // because $this was untyped and the mixed-receiver guard fired before
    // record_symbol could be called (issue #191).
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "this_ref.php",
        "<?php\nclass Svc { public function helper(): void {}\npublic function run(): void { $this->helper(); } }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("meth:Svc::helper").is_empty(),
        "$this->helper() should record a reference to Svc::helper"
    );
}

#[test]
fn this_method_call_span_covers_only_name() {
    // The recorded span for $this->helper() must cover only the method name
    // identifier, matching the behaviour for non-$this receivers.
    let dir = create_temp_dir("test");
    let src = "<?php\nclass Svc { public function helper(): void {}\npublic function run(): void { $this->helper(); } }\n";
    let file = write_file(&dir, "this_span.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("meth:Svc::helper")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(locs.len(), 1, "one $this->helper() call → one span");

    let (_, _line, col_start, col_end) = locs[0];
    assert_eq!(
        col_end - col_start,
        6, // "helper" = 6 bytes
        "span must cover only the identifier 'helper' (6 bytes), got col_start={col_start} col_end={col_end}"
    );
}

#[test]
fn nullsafe_method_call_records_reference_location() {
    let dir = create_temp_dir("test");
    // "<?php\n"                                       = 6 bytes
    // "class Svc { public function run(): void {} }\n" = 45 bytes  (offset 6)
    // "function caller(?Svc $s): void { $s?->run(); }\n"
    //                                          ^-- 'run' starts at offset 88
    let src = "<?php\nclass Svc { public function run(): void {} }\nfunction caller(?Svc $s): void { $s?->run(); }\n";
    let file = write_file(&dir, "nullsafe_method.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("meth:Svc::run")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert_eq!(locs.len(), 1);
    let (_, _line, col_start, col_end) = locs[0];
    // The span should cover only the 3-byte identifier "run", not "$s?->run()"
    assert_eq!(
        col_end - col_start,
        3,
        "span should cover only 'run' (3 bytes), got col_start={col_start} col_end={col_end}"
    );
}

#[test]
fn instanceof_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "instanceof_ref.php",
        "<?php\nclass Widget {}\nfunction check(mixed $v): bool { return $v instanceof Widget; }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("cls:Widget").is_empty(),
        "instanceof Widget should record a reference to Widget"
    );
}

#[test]
fn catch_type_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "catch_ref.php",
        "<?php\nclass AppEx extends \\Exception {}\nfunction run(): void { try {} catch (AppEx $e) { echo $e->getMessage(); } }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("cls:AppEx").is_empty(),
        "catch (AppEx $e) should record a reference to AppEx"
    );
}

#[test]
fn multi_type_catch_records_all_class_references() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "multi_catch_ref.php",
        "<?php\nclass ErrA extends \\Exception {}\nclass ErrB extends \\Exception {}\nfunction run(): void { try {} catch (ErrA | ErrB $e) { echo $e->getMessage(); } }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs_a: Vec<_> = analyzer
        .reference_locations("cls:ErrA")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();
    let locs_b: Vec<_> = analyzer
        .reference_locations("cls:ErrB")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs_a.is_empty(),
        "catch (ErrA | ErrB $e) should record a reference to ErrA"
    );
    assert!(
        !locs_b.is_empty(),
        "catch (ErrA | ErrB $e) should record a reference to ErrB"
    );
}

#[test]
fn class_const_syntax_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "classconst_ref.php",
        "<?php\nclass Router {}\nfunction getClass(): string { return Router::class; }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("cls:Router").is_empty(),
        "Router::class should record a reference to Router"
    );
}

#[test]
fn static_const_access_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "static_const_ref.php",
        "<?php\nclass Config { const VERSION = '1.0'; }\nfunction ver(): string { return Config::VERSION; }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("cls:Config").is_empty(),
        "Config::VERSION should record a reference to Config"
    );
}

#[test]
fn function_param_type_hint_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "param_hint_ref.php",
        "<?php\nclass Service {}\nfunction process(Service $svc): void { echo get_class($svc); }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Service")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "function param type hint Service $svc should record a reference to Service"
    );
}

#[test]
fn return_type_hint_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "return_hint_ref.php",
        "<?php\nclass Repo {}\nfunction make(): Repo { return new Repo(); }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Repo")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "return type hint Repo should record a reference to Repo"
    );
}

#[test]
fn property_type_hint_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "prop_hint_ref.php",
        "<?php\nclass Logger {}\nclass App { public Logger $logger; }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Logger")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "property type hint Logger should record a reference to Logger"
    );
}

#[test]
fn self_const_access_records_constant_reference() {
    // self::CONST inside the declaring class was silently dropped — no record_ref
    // was emitted for the constant key, so findReferences returned nothing.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "self_const.php",
        "<?php\nfinal class Foo {\n    public const string SEP = ':';\n    public function build(string $a, string $b): string {\n        return $a . self::SEP . $b;\n    }\n}\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("cnst:Foo::SEP").is_empty(),
        "self::SEP should record a reference to Foo::SEP"
    );
}

#[test]
fn static_const_access_records_constant_reference() {
    // static::CONST (late static binding) should also record the constant reference.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "static_const.php",
        "<?php\nclass Bar {\n    public const string PREFIX = 'x';\n    public function go(): string {\n        return static::PREFIX;\n    }\n}\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("cnst:Bar::PREFIX").is_empty(),
        "static::PREFIX should record a reference to Bar::PREFIX"
    );
}

#[test]
fn parent_const_access_records_constant_reference() {
    // parent::CONST should record a reference to the parent class's constant.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "parent_const.php",
        "<?php\nclass Base {\n    public const string TAG = 'base';\n}\nclass Child extends Base {\n    public function tag(): string {\n        return parent::TAG;\n    }\n}\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("cnst:Base::TAG").is_empty(),
        "parent::TAG should record a reference to Base::TAG"
    );
}

#[test]
fn trait_constant_accessed_via_consuming_class_records_reference_to_trait() {
    // `ClassUsingTrait::CONST` where the constant is declared in a used trait
    // must record a reference against the trait itself (Trait::CONST is
    // never a legal access target, so this is the only way to ever record a
    // usage of the trait's own constant declaration).
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "trait_const.php",
        "<?php\ntrait HasVersion {\n    public const string VERSION = '1.0';\n}\nclass Config {\n    use HasVersion;\n}\nfunction ver(): string { return Config::VERSION; }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer
            .reference_locations("cnst:HasVersion::VERSION")
            .is_empty(),
        "Config::VERSION should record a reference to HasVersion::VERSION, not Config::VERSION"
    );
}

#[test]
fn explicit_class_const_access_records_constant_reference() {
    // ClassName::CONST should record a reference to the constant, not just the class.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "explicit_const.php",
        "<?php\nclass Config {\n    public const string VERSION = '1.0';\n}\nfunction ver(): string { return Config::VERSION; }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer
            .reference_locations("cnst:Config::VERSION")
            .is_empty(),
        "Config::VERSION should record a reference to Config::VERSION"
    );
}

#[test]
fn inherited_static_method_call_keys_by_declaring_class() {
    // Child::foo() where foo is declared on Base must record "Base::foo",
    // not "Child::foo", so that reference_locations("meth:Base::foo") finds the call.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "inherited_static.php",
        "<?php\nclass Base { public static function foo(): void {} }\nclass Child extends Base {}\nfunction caller(): void { Child::foo(); }\n",
    );

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    assert!(
        !analyzer.reference_locations("meth:Base::foo").is_empty(),
        "Child::foo() should record a reference to the declaring class Base::foo"
    );
    assert!(
        analyzer.reference_locations("meth:Child::foo").is_empty(),
        "Child::foo() must not be recorded under the called subclass key Child::foo"
    );
}

#[test]
fn static_property_access_records_class_reference() {
    // Foo::$bar should record a class reference to Foo so that
    // reference_locations("cls:Foo") includes the static property access.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "static_prop_class_ref.php",
        "<?php\nclass Config { public static int $timeout = 30; }\nfunction read(): int { return Config::$timeout; }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let class_locs: Vec<_> = analyzer
        .reference_locations("cls:Config")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !class_locs.is_empty(),
        "Config::$timeout should record a class reference to Config"
    );
}

#[test]
fn static_property_access_records_property_reference() {
    // Foo::$bar should also record a property reference so that
    // reference_locations("prop:Foo::timeout") finds the static property access.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "static_prop_ref.php",
        "<?php\nclass Config { public static int $timeout = 30; }\nfunction read(): int { return Config::$timeout; }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let prop_locs: Vec<_> = analyzer
        .reference_locations("prop:Config::timeout")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !prop_locs.is_empty(),
        "Config::$timeout should record a property reference to Config::timeout"
    );
}

#[test]
fn static_method_call_records_class_reference() {
    // Widget::foo() should record a class reference to Widget, consistent with
    // Widget::VERSION, Widget::$bar, and new Widget() all recording one.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "static_method_class_ref.php",
        "<?php\nclass Widget { public static function make(): void {} }\nfunction caller(): void { Widget::make(); }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Widget")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "Widget::make() should record a class reference to Widget"
    );
}

#[test]
fn closure_param_type_hint_records_class_reference() {
    // Type hints in closure parameters (`function(Foo $x)`) should record a
    // ClassReference so that find-references on Foo includes closure usages.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "closure_hint.php",
        "<?php\nclass Logger {}\n$fn = function(Logger $l): void {};\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Logger")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "closure param type hint Logger should record a reference to Logger"
    );
}

#[test]
fn arrow_function_param_type_hint_records_class_reference() {
    // Same requirement for arrow functions (`fn(Foo $x) => $x`).
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "arrow_hint.php",
        "<?php\nclass Formatter {}\n$fn = fn(Formatter $f) => $f;\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Formatter")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "arrow function param type hint Formatter should record a reference to Formatter"
    );
}

#[test]
fn anonymous_class_extends_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "anon_extends.php",
        "<?php\nclass Base {}\nfunction make(): object { return new class extends Base {}; }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Base")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "anonymous class `extends Base` should record a reference to Base"
    );
}

#[test]
fn anonymous_class_implements_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "anon_implements.php",
        "<?php\ninterface Greets {}\nfunction make(): object { return new class implements Greets {}; }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Greets")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "anonymous class `implements Greets` should record a reference to Greets"
    );
}

#[test]
fn anonymous_class_use_trait_records_class_reference() {
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "anon_use_trait.php",
        "<?php\ntrait Helper {}\nfunction make(): object { return new class { use Helper; }; }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Helper")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "anonymous class `use Helper;` should record a reference to Helper"
    );
}

#[test]
fn interface_declared_property_access_records_reference_location() {
    let dir = create_temp_dir("test");
    // Accessing a `@property`-declared interface property through an
    // interface-typed receiver must record a reference the same way a
    // class/trait-declared property access already does.
    let src = "<?php\n/**\n * @property string $name\n */\ninterface HasName {}\nfunction show(HasName $x): string { return $x->name; }\n";
    let file = write_file(&dir, "k.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("prop:HasName::name")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "property access through an interface-typed receiver should record a reference"
    );
}

#[test]
fn inherited_static_property_access_via_subclass_name_keys_by_declaring_class() {
    // Child::$shared for a $shared declared on ParentC must record
    // prop:ParentC::shared (the declaring owner), not prop:Child::shared —
    // otherwise find-references from the declaration never sees usages
    // reached only through a subclass name, mirroring the analogous fix
    // already applied to constants and instance properties.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "inherited_static_prop.php",
        "<?php\nclass ParentC { protected static ?string $shared = null; }\nclass Child extends ParentC {}\nfunction read(): ?string { return Child::$shared; }\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let owner_locs: Vec<_> = analyzer
        .reference_locations("prop:ParentC::shared")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();
    assert!(
        !owner_locs.is_empty(),
        "Child::$shared should record a reference keyed by the declaring class ParentC"
    );

    let subclass_locs: Vec<_> = analyzer
        .reference_locations("prop:Child::shared")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();
    assert!(
        subclass_locs.is_empty(),
        "Child::$shared must not also record a reference keyed by the accessed-through class"
    );
}

#[test]
fn inherited_static_property_access_via_self_keys_by_declaring_class() {
    // self::$shared inside a Child method, for a $shared declared on
    // ParentC, must also key by the declaring owner ParentC.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "inherited_static_prop_self.php",
        "<?php\nclass ParentC { protected static ?string $shared = null; }\nclass Child extends ParentC {\n    public static function read(): ?string { return self::$shared; }\n}\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let owner_locs: Vec<_> = analyzer
        .reference_locations("prop:ParentC::shared")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();
    assert!(
        !owner_locs.is_empty(),
        "self::$shared inside Child should record a reference keyed by the declaring class ParentC"
    );
}

#[test]
fn attribute_argument_class_constant_records_constant_reference() {
    // #[Route(Target::VERSION)] must record a reference to the specific
    // constant Target::VERSION, not just the class Target — otherwise
    // find-references from the constant declaration misses this usage.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "attr_const_ref.php",
        "<?php\nclass Target {\n    const VERSION = 'v1';\n}\n#[Attribute]\nclass Route {\n    public function __construct(public string $v) {}\n}\n#[Route(Target::VERSION)]\nclass Consumer {}\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cnst:Target::VERSION")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "attribute argument Target::VERSION should record a constant reference"
    );
}

#[test]
fn attribute_argument_enum_case_records_constant_reference() {
    // #[Route(Status::Active)] must record a reference to the specific enum
    // case Status::Active, not just the enum class Status.
    let dir = create_temp_dir("test");
    let file = write_file(
        &dir,
        "attr_enum_case_ref.php",
        "<?php\nenum Status {\n    case Active;\n    case Inactive;\n}\n#[Attribute]\nclass Route {\n    public function __construct(public Status $s) {}\n}\n#[Route(Status::Active)]\nclass Consumer {}\n",
    );
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cnst:Status::Active")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "attribute argument Status::Active should record a reference to the specific case"
    );

    let inactive_locs: Vec<_> = analyzer
        .reference_locations("cnst:Status::Inactive")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();
    assert!(
        inactive_locs.is_empty(),
        "Status::Inactive was never referenced and must not show up"
    );
}

#[test]
fn trait_composing_trait_records_reference_at_use_site() {
    // A trait consuming another trait (`trait A { use B; }`) previously had no
    // location storage for its own `use` tokens, so the reference fell back to
    // a dummy line-1/col-0 location instead of the real `use B;` line.
    let dir = create_temp_dir("test");
    let src = "<?php\ntrait Greets {\n    public function greet(): void {}\n}\ntrait Person {\n    use Greets;\n}\n";
    let file = write_file(&dir, "a.php", src);
    let file_arc = pathbuf_to_arc_str(&file);

    let analyzer = AnalysisSession::new(PhpVersion::LATEST);
    analyzer.analyze_paths(std::slice::from_ref(&file), &BatchOptions::new());

    let locs: Vec<_> = analyzer
        .reference_locations("cls:Greets")
        .into_iter()
        .filter(|(f, ..)| f == &file_arc)
        .collect();

    assert!(
        !locs.is_empty(),
        "use Greets; inside trait Person should record a reference to Greets"
    );
    let (_, line, col_start, _) = locs[0];
    assert_eq!(
        (line, col_start),
        (6, 8),
        "reference should point at the real `use Greets;` line/column, not the line-1/col-0 fallback"
    );
}