glua_ls 1.0.27

Language server for Garry's Mod Lua (GLua).
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
#[cfg(test)]
mod tests {
    use std::collections::HashSet;

    use crate::handlers::references::{references, search_decl_usages};
    use crate::handlers::test_lib::{ProviderVirtualWorkspace, VirtualLocation, check};
    use glua_code_analysis::{Emmyrc, LuaDeclId};
    use glua_parser::{LuaAstNode, LuaLocalFuncStat, LuaLocalName};
    use googletest::prelude::*;
    use tokio_util::sync::CancellationToken;

    #[gtest]
    fn test_function_references() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        check!(ws.check_references(
            r#"
                local export = {}
                local function fl<??>ush()
                end
                export.flush = flush
                return export
            "#,
            vec![(
                "1.lua",
                r#"
                    local flush = require("virtual_0").flush
                    flush()
                "#,
            )],
            vec![
                VirtualLocation {
                    file: "".to_string(),
                    line: 2,
                },
                VirtualLocation {
                    file: "".to_string(),
                    line: 4,
                },
                VirtualLocation {
                    file: "1.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "1.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "1.lua".to_string(),
                    line: 2,
                },
                VirtualLocation {
                    file: "1.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "".to_string(),
                    line: 4,
                },
            ]
        ));
        Ok(())
    }

    #[gtest]
    fn test_function_references_2() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        check!(ws.check_references(
            r#"
                local function fl<??>ush()
                end
                return {
                    flush = flush,
                }
            "#,
            vec![(
                "1.lua",
                r#"
                    local flush = require("virtual_0").flush
                    flush()
                "#,
            )],
            vec![
                VirtualLocation {
                    file: "".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "".to_string(),
                    line: 4,
                },
                VirtualLocation {
                    file: "1.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "1.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "1.lua".to_string(),
                    line: 2,
                },
                VirtualLocation {
                    file: "1.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "".to_string(),
                    line: 4,
                },
            ]
        ));
        Ok(())
    }

    #[gtest]
    fn test_decl_usages_excludes_forward_declaration_and_function_definition() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        let file_id = ws.def(
            r#"
                local create_initial_simplex4

                function create_initial_simplex4(points, thread_yield)
                    return { points, thread_yield }
                end

                local faces = create_initial_simplex4({}, nil)
            "#,
        );
        let semantic_model = check!(ws.analysis.compilation.get_semantic_model(file_id));
        let local_name = check!(
            semantic_model
                .get_root()
                .descendants::<LuaLocalName>()
                .next()
        );
        let decl_id = LuaDeclId::new(file_id, local_name.get_position());

        let mut results = Vec::new();
        check!(search_decl_usages(
            &ws.analysis.compilation,
            decl_id,
            &mut results,
            &CancellationToken::new()
        ));

        assert_that!(results.len(), eq(1));
        assert_that!(results[0].range.start.line, eq(7));
        Ok(())
    }

    #[gtest]
    fn test_decl_usages_traverses_module_alias_without_counting_alias_binding() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        let module_file_id = ws.def_file(
            "a.lua",
            r#"
                local function init()
                end

                return init
            "#,
        );
        ws.def_file(
            "consumer.lua",
            r#"
                local init = require("a")
                init()
            "#,
        );
        let semantic_model = check!(ws.analysis.compilation.get_semantic_model(module_file_id));
        let local_func = check!(
            semantic_model
                .get_root()
                .descendants::<LuaLocalFuncStat>()
                .next()
        );
        let local_name = check!(local_func.get_local_name());
        let decl_id = LuaDeclId::new(module_file_id, local_name.get_position());

        let mut results = Vec::new();
        check!(search_decl_usages(
            &ws.analysis.compilation,
            decl_id,
            &mut results,
            &CancellationToken::new()
        ));

        let consumer_lines = results
            .iter()
            .filter(|location| location.uri.to_string().contains("consumer.lua"))
            .map(|location| location.range.start.line)
            .collect::<HashSet<_>>();

        assert_that!(consumer_lines.contains(&2), eq(true));
        assert_that!(consumer_lines.contains(&1), eq(false));
        Ok(())
    }

    #[gtest]
    fn test_module_return() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();

        check!(ws.check_references(
            r#"
                local function init()
                end
                return in<??>it
            "#,
            vec![(
                "a.lua",
                r#"
                local init = require("virtual_0")
                init()
            "#,
            )],
            vec![
                VirtualLocation {
                    file: "virtual_0.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "a.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "a.lua".to_string(),
                    line: 2,
                },
                VirtualLocation {
                    file: "virtual_0.lua".to_string(),
                    line: 3,
                },
            ],
        ));
        Ok(())
    }

    #[gtest]
    fn test_module_return_2() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        ws.def_file(
            "a.lua",
            r#"
            local function getA()
            end
            return {
                getA = getA
            }
        "#,
        );

        check!(ws.check_references(
            r#"
                local AModule = require("a")
                AMo<??>dule.getA()
            "#,
            vec![],
            vec![
                VirtualLocation {
                    file: "virtual_0.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "virtual_0.lua".to_string(),
                    line: 2,
                },
            ],
        ));
        Ok(())
    }

    #[gtest]
    fn test_member_references_alias_cycle_does_not_stack_overflow() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();

        let (main_content, position) = check!(ProviderVirtualWorkspace::handle_file_content(
            r#"
                local t = {}
                t.m<??> = function() end
                local x = t.m
                t.m = x
            "#,
        ));
        let file_id = ws.def(&main_content);

        let result = references(
            &ws.analysis,
            file_id,
            position,
            &CancellationToken::new(),
            true,
        )
        .ok_or("failed to get references")
        .or_fail()?;

        let lines: HashSet<u32> = result.iter().map(|l| l.range.start.line).collect();
        assert!(lines.contains(&2));
        assert!(lines.contains(&3));
        assert!(lines.contains(&4));
        Ok(())
    }

    #[gtest]
    fn test_gmod_vgui_panel_string_references() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        let mut emmyrc = Emmyrc::default();
        emmyrc.gmod.enabled = true;
        ws.analysis.update_config(emmyrc.into());

        check!(ws.check_references(
            r#"
                local parent = vgui.Create("MyPa<??>nel")


                parent:Add("MyPanel")
            "#,
            vec![
                (
                    "defs.lua",
                    "\n\n\n\n\n\n\n\nvgui.Register(\"MyPanel\", PANEL, \"DPanel\")\n",
                ),
                (
                    "usage.lua",
                    "\n\n\n\n\n\n\n\n\n\n\n\nlocal created = vgui.Create(\"MyPanel\")\n",
                ),
            ],
            vec![
                VirtualLocation {
                    file: "virtual_0.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "virtual_0.lua".to_string(),
                    line: 4,
                },
                VirtualLocation {
                    file: "defs.lua".to_string(),
                    line: 8,
                },
                VirtualLocation {
                    file: "usage.lua".to_string(),
                    line: 12,
                },
            ],
        ));

        Ok(())
    }

    #[gtest]
    fn test_gmod_net_message_string_references() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        let mut emmyrc = Emmyrc::default();
        emmyrc.gmod.enabled = true;
        ws.analysis.update_config(emmyrc.into());

        check!(ws.check_references(
            r#"
                net.Receive("MyMe<??>ssage", function() end)
            "#,
            vec![(
                "send.lua",
                "\n\n\n\n\n\n\nnet.Start(\"MyMessage\")\nnet.Broadcast()\n",
            )],
            vec![
                VirtualLocation {
                    file: "virtual_0.lua".to_string(),
                    line: 1,
                },
                VirtualLocation {
                    file: "send.lua".to_string(),
                    line: 7,
                },
            ],
        ));

        Ok(())
    }

    #[gtest]
    fn test_member_variable_references_include_usages() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        check!(ws.check_references(
            r#"
                ---@class MyClass
                ---@field myField number

                ---@type MyClass
                local obj

                obj.my<??>Field = 42
                print(obj.myField)
            "#,
            vec![],
            vec![
                VirtualLocation {
                    file: "".to_string(),
                    line: 2,
                },
                VirtualLocation {
                    file: "".to_string(),
                    line: 7,
                },
                VirtualLocation {
                    file: "".to_string(),
                    line: 8,
                },
            ],
        ));
        Ok(())
    }

    #[gtest]
    fn test_member_variable_references_exclude_declaration_when_flag_false() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        // With include_declaration=false, the @field definition (line 2)
        // should be excluded; only usage sites should appear.
        let (main_content, position) = check!(ProviderVirtualWorkspace::handle_file_content(
            r#"
                ---@class MyClass
                ---@field myField number

                ---@type MyClass
                local obj

                obj.my<??>Field = 42
                print(obj.myField)
            "#,
        ));
        let file_id = ws.def(&main_content);
        let result_with_decl = references(
            &ws.analysis,
            file_id,
            position.clone(),
            &CancellationToken::new(),
            true,
        )
        .ok_or("failed to get references")
        .or_fail()?;
        let result_without_decl = references(
            &ws.analysis,
            file_id,
            position,
            &CancellationToken::new(),
            false,
        )
        .ok_or("failed to get references")
        .or_fail()?;

        // With include_declaration=true, the @field line should be present
        let lines_with_decl: HashSet<u32> = result_with_decl
            .iter()
            .map(|l| l.range.start.line)
            .collect();
        assert!(
            lines_with_decl.contains(&2),
            "expected @field definition (line 2) with include_declaration=true, got lines: {lines_with_decl:?}"
        );

        // With include_declaration=false, the @field line should be absent
        let lines_without_decl: HashSet<u32> = result_without_decl
            .iter()
            .map(|l| l.range.start.line)
            .collect();
        assert!(
            !lines_without_decl.contains(&2),
            "expected @field definition (line 2) to be excluded with include_declaration=false, got lines: {lines_without_decl:?}"
        );

        // Usage sites should be present in both
        assert!(
            lines_without_decl.contains(&7),
            "expected usage site (line 7) with include_declaration=false"
        );
        assert!(
            lines_without_decl.contains(&8),
            "expected usage site (line 8) with include_declaration=false"
        );

        Ok(())
    }

    #[gtest]
    fn test_dynamic_key_table_field_references_include_key_source() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        let mut emmyrc = Emmyrc::default();
        emmyrc.gmod.enabled = true;
        emmyrc.gmod.infer_dynamic_fields = true;
        ws.analysis.update_config(emmyrc.into());

        check!(ws.check_references(
            r#"
                local rec = { data = {} }
                local data = rec.data
                for key, value in pairs({ forwardSlip = 1, sideSlip = 2 }) do
                    data[key] = value
                end
                local d = rec.data
                math.abs(d.forw<??>ardSlip or 0)
                print(d.forwardSlip)
            "#,
            vec![],
            vec![
                VirtualLocation {
                    file: "".to_string(),
                    line: 3,
                },
                VirtualLocation {
                    file: "".to_string(),
                    line: 7,
                },
                VirtualLocation {
                    file: "".to_string(),
                    line: 8,
                },
            ],
        ));
        Ok(())
    }

    /// Test A: references includeDeclaration=false for globals
    #[gtest]
    fn test_global_references_exclude_declaration_when_flag_false() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        let (main_content, position) = check!(ProviderVirtualWorkspace::handle_file_content(
            r#"
                MyGl<??>obal = 42
                print(MyGlobal)
                MyGlobal = 99
            "#,
        ));
        let file_id = ws.def(&main_content);

        let result_with_decl = references(
            &ws.analysis,
            file_id,
            position.clone(),
            &CancellationToken::new(),
            true,
        )
        .ok_or("failed to get references")
        .or_fail()?;

        let result_without_decl = references(
            &ws.analysis,
            file_id,
            position,
            &CancellationToken::new(),
            false,
        )
        .ok_or("failed to get references")
        .or_fail()?;

        let lines_with_decl: HashSet<u32> = result_with_decl
            .iter()
            .map(|l| l.range.start.line)
            .collect();
        let lines_without_decl: HashSet<u32> = result_without_decl
            .iter()
            .map(|l| l.range.start.line)
            .collect();

        // With include_declaration=true, the declaration (line 1) should be present
        assert!(
            lines_with_decl.contains(&1),
            "expected declaration (line 1) with include_declaration=true, got lines: {lines_with_decl:?}"
        );

        // With include_declaration=false, the declaration (line 1) should be absent
        assert!(
            !lines_without_decl.contains(&1),
            "expected declaration (line 1) to be excluded with include_declaration=false, got lines: {lines_without_decl:?}"
        );

        // Usage sites should be present in both
        assert!(
            lines_without_decl.contains(&2),
            "expected usage (line 2) with include_declaration=false"
        );
        assert!(
            lines_without_decl.contains(&3),
            "expected write usage (line 3) with include_declaration=false"
        );

        Ok(())
    }

    /// Test B: member references declaration + usage on same line — ensure usage
    /// is kept when includeDeclaration=false
    #[gtest]
    fn test_member_references_same_line_decl_and_usage() -> Result<()> {
        let mut ws = ProviderVirtualWorkspace::new();
        // The @field declaration and a usage on the same logical line should
        // not cause the usage to be filtered when include_declaration=false.
        // We use a pattern where the declaration is an @field and the usage
        // is an index expression on the same source line.
        let (main_content, position) = check!(ProviderVirtualWorkspace::handle_file_content(
            r#"
                ---@class MyClass
                ---@field myField number

                ---@type MyClass
                local obj

                obj.my<??>Field = 42; print(obj.myField)
            "#,
        ));
        let file_id = ws.def(&main_content);

        let result_without_decl = references(
            &ws.analysis,
            file_id,
            position,
            &CancellationToken::new(),
            false,
        )
        .ok_or("failed to get references")
        .or_fail()?;

        let lines_without_decl: HashSet<u32> = result_without_decl
            .iter()
            .map(|l| l.range.start.line)
            .collect();

        // The @field declaration (line 2) should be excluded
        assert!(
            !lines_without_decl.contains(&2),
            "expected @field definition (line 2) to be excluded with include_declaration=false, got lines: {lines_without_decl:?}"
        );

        // Usage on line 7 should be present (both the write and the read)
        assert!(
            lines_without_decl.contains(&7),
            "expected usage site (line 7) with include_declaration=false, got lines: {lines_without_decl:?}"
        );

        let same_line_ranges: HashSet<_> = result_without_decl
            .iter()
            .filter(|location| location.range.start.line == 7)
            .map(|location| {
                (
                    location.range.start.line,
                    location.range.start.character,
                    location.range.end.line,
                    location.range.end.character,
                )
            })
            .collect();
        assert_eq!(
            same_line_ranges.len(),
            2,
            "expected two distinct same-line member references on line 7 (write + read), got: {result_without_decl:?}"
        );

        Ok(())
    }
}