forked from colbymchenry/codegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.rs
More file actions
1223 lines (1150 loc) · 47.2 KB
/
Copy pathgo.rs
File metadata and controls
1223 lines (1150 loc) · 47.2 KB
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
//! Go extraction — a faithful Rust port of `TreeSitterExtractor`'s Go paths
//! (src/extraction/tree-sitter.ts) plus languages/go.ts.
//!
//! Go's shape quirks, mirrored exactly: methods are top-level with a receiver
//! (qualifiedName override `Recv::name` + a contains edge to the FIRST
//! earlier-in-file struct of that name), structs/interfaces arrive as
//! `type_spec` and classify via the inner type node (struct embedding →
//! extends; interface method_elems become method nodes), composite literals
//! (`pkga.Widget{}`) keep their package qualifier as `instantiates` refs,
//! top-level var/const specs walk their initializers ATTRIBUTED to the
//! declared symbol (#693), 2-hop field chains (`t.conn.Exec`) keep the chain
//! (#1276), and `New().Method()` re-encodes as `New().Method` (#645/#608)
//! only for bare-identifier factories. Files with parse errors defer to wasm.
use crate::buffers::{
build_meta, edge_kind_index, node_kind_index, Arena, BoolFlags, EdgeRow, EmitOut, NodeRow,
RefRow, StrRef, Tables, FLAG_IS_EXPORTED, FUNCTION_REF_CODE, NONE, NONE_STR,
};
use crate::docstring::preceding_docstring;
use crate::ids;
use crate::textutil as util;
use regex::Regex;
use std::collections::{HashMap, HashSet};
use std::sync::OnceLock;
use tree_sitter::{Node, Parser};
const MAX_VALUE_REF_NODES: usize = 20_000;
fn receiver_re() -> &'static Regex {
static RE: OnceLock<Regex> = OnceLock::new();
RE.get_or_init(|| Regex::new(r"\(\s*(?:[A-Za-z_]\w*\s+)?\*?\s*([A-Za-z_]\w*)").unwrap())
}
fn simple_ident_re() -> &'static Regex {
static RE: OnceLock<Regex> = OnceLock::new();
RE.get_or_init(|| Regex::new(r"^[A-Za-z_]\w*$").unwrap())
}
fn go_two_hop_re() -> &'static Regex {
static RE: OnceLock<Regex> = OnceLock::new();
RE.get_or_init(|| Regex::new(r"^[A-Za-z_]\w*\.[A-Za-z_]\w*$").unwrap())
}
fn generic_angle_re() -> &'static Regex {
static RE: OnceLock<Regex> = OnceLock::new();
RE.get_or_init(|| Regex::new(r"<[^>]*>").unwrap())
}
fn bracket_args_re() -> &'static Regex {
static RE: OnceLock<Regex> = OnceLock::new();
RE.get_or_init(|| Regex::new(r"\[[^\]]*\]").unwrap())
}
struct Scope {
row: u32,
kind: &'static str,
name: String,
}
#[derive(Default)]
struct Extra {
docstring: Option<String>,
signature: Option<String>,
is_exported: Option<bool>,
return_type: Option<String>,
qualified_name: Option<String>,
}
struct ValueScope<'t> {
row: u32,
node: Node<'t>,
name: String,
}
struct Cand {
from: u32,
name: String,
line: u32,
column_byte: usize,
row: usize,
}
/// Per-node metadata for the receiver-method owner lookup (mirrors the TS
/// side's scan over `this.nodes` — FIRST match wins, earlier-in-file only).
struct NodeMeta {
kind: &'static str,
name: String,
}
pub struct Walker<'t> {
src: &'t str,
file_path: &'t str,
line_starts: Vec<usize>,
arena: Arena,
tables: Tables,
stack: Vec<Scope>,
nodes_meta: Vec<NodeMeta>,
node_ids: Vec<String>,
defined_fn_names: HashSet<String>,
imported_names: HashSet<String>,
fn_ref_cands: Vec<Cand>,
fs_values: HashMap<String, u32>,
fs_value_counts: HashMap<String, u32>,
value_scopes: Vec<ValueScope<'t>>,
}
pub fn extract(file_path: &str, source: &str) -> Result<EmitOut, String> {
let grammar = crate::langs::grammar_for("go").ok_or("no go grammar")?;
let t0 = std::time::Instant::now();
let mut parser = Parser::new();
parser
.set_language(&grammar)
.map_err(|e| format!("set_language(go) failed: {e}"))?;
let tree = parser
.parse(source, None)
.ok_or_else(|| "parser returned null tree".to_string())?;
if tree.root_node().has_error() {
return Err("defer: parse tree contains errors — wasm recovery is canonical".to_string());
}
let mut w = Walker {
src: source,
file_path,
line_starts: util::line_starts(source),
arena: Arena::default(),
tables: Tables::default(),
stack: Vec::new(),
nodes_meta: Vec::new(),
node_ids: Vec::new(),
defined_fn_names: HashSet::new(),
imported_names: HashSet::new(),
fn_ref_cands: Vec::new(),
fs_values: HashMap::new(),
fs_value_counts: HashMap::new(),
value_scopes: Vec::new(),
};
let line_count = source.bytes().filter(|b| *b == b'\n').count() as u32 + 1;
let base_name = file_path.rsplit(['/', '\\']).next().unwrap_or(file_path);
let mut flags = BoolFlags::default();
flags.set(FLAG_IS_EXPORTED, false);
let file_id = w.arena.put(&ids::file_node_id(file_path));
let name_ref = w.arena.put(base_name);
let qn_ref = w.arena.put(file_path);
w.tables.push_node(&NodeRow {
kind: node_kind_index("file").unwrap(),
visibility: 0,
flags,
start_line: 1,
end_line: line_count,
start_column: 0,
end_column: 0,
name: name_ref,
qualified_name: qn_ref,
id: file_id,
docstring: NONE_STR,
signature: NONE_STR,
decorators: NONE_STR,
type_parameters: NONE_STR,
return_type: NONE_STR,
extra_json: NONE_STR,
});
w.nodes_meta.push(NodeMeta { kind: "file", name: base_name.to_string() });
w.node_ids.push(ids::file_node_id(file_path));
w.stack.push(Scope { row: 0, kind: "file", name: base_name.to_string() });
w.visit_node(tree.root_node());
w.flush_fn_ref_candidates();
w.flush_value_refs(tree.root_node());
w.stack.pop();
let duration_ms = t0.elapsed().as_secs_f64() * 1000.0;
let meta = build_meta(&w.tables, w.arena.len(), NONE_STR, duration_ms);
Ok(EmitOut {
meta,
nodes: w.tables.nodes,
edges: w.tables.edges,
refs: w.tables.refs,
arena: w.arena.into_vec(),
})
}
impl<'t> Walker<'t> {
fn text(&self, node: Node) -> &'t str {
&self.src[node.byte_range()]
}
fn line_of(&self, node: Node) -> u32 {
node.start_position().row as u32 + 1
}
fn col_of(&self, node: Node) -> u32 {
util::col16(self.src, &self.line_starts, node.start_position().row, node.start_byte())
}
fn end_col_of(&self, node: Node) -> u32 {
util::col16(self.src, &self.line_starts, node.end_position().row, node.end_byte())
}
fn top_row(&self) -> u32 {
self.stack.last().map(|s| s.row).unwrap_or(0)
}
fn inside_class_like(&self) -> bool {
self.stack
.last()
.map(|s| matches!(s.kind, "class" | "struct" | "interface" | "trait" | "enum" | "module"))
.unwrap_or(false)
}
fn push_ref_at(&mut self, from_row: u32, name: &str, kind_code: u8, node: Node) {
let name_ref = self.arena.put(name);
self.tables.push_ref(&RefRow {
from_idx: from_row,
kind: kind_code,
line: self.line_of(node),
column: self.col_of(node),
reference_name: name_ref,
candidates: NONE_STR,
from_id_str: NONE_STR,
});
if kind_code == edge_kind_index("imports").unwrap() {
if util::simple_name().is_match(name) {
self.imported_names.insert(name.to_string());
} else if let Some(c) = util::qualified_import().captures(name) {
self.imported_names.insert(c[1].to_string());
}
}
}
fn create_node(&mut self, kind: &'static str, name: &str, node: Node<'t>, extra: Extra) -> Option<u32> {
if name.is_empty() {
return None;
}
let start_line = self.line_of(node);
let id = ids::node_id(self.file_path, kind, name, start_line);
let end_line = node.end_position().row as u32 + 1;
let qualified = extra.qualified_name.unwrap_or_else(|| {
let mut parts: Vec<&str> = Vec::new();
for s in &self.stack {
if s.kind != "file" {
parts.push(&s.name);
}
}
let mut qn = parts.join("::");
if !qn.is_empty() {
qn.push_str("::");
}
qn.push_str(name);
qn
});
let mut flags = BoolFlags::default();
if let Some(v) = extra.is_exported {
flags.set(FLAG_IS_EXPORTED, v);
}
let name_ref = self.arena.put(name);
let qn_ref = self.arena.put(&qualified);
let id_ref = self.arena.put(&id);
let doc_ref = opt_str(&mut self.arena, extra.docstring.as_deref());
let sig_ref = opt_str(&mut self.arena, extra.signature.as_deref());
let ret_ref = opt_str(&mut self.arena, extra.return_type.as_deref());
let row = self.tables.push_node(&NodeRow {
kind: node_kind_index(kind).unwrap(),
visibility: 0,
flags,
start_line,
end_line,
start_column: self.col_of(node),
end_column: self.end_col_of(node),
name: name_ref,
qualified_name: qn_ref,
id: id_ref,
docstring: doc_ref,
signature: sig_ref,
decorators: NONE_STR,
type_parameters: NONE_STR,
return_type: ret_ref,
extra_json: NONE_STR,
});
self.nodes_meta.push(NodeMeta { kind, name: name.to_string() });
self.node_ids.push(id);
let parent_row = self.top_row();
self.tables.push_edge(&EdgeRow {
source_idx: parent_row,
target_idx: row,
kind: edge_kind_index("contains").unwrap(),
provenance: 0,
line: NONE,
column: NONE,
metadata_json: NONE_STR,
source_id_str: NONE_STR,
target_id_str: NONE_STR,
});
if kind == "function" || kind == "method" {
self.defined_fn_names.insert(name.to_string());
}
let target_kind_ok = kind == "constant" || kind == "variable";
if target_kind_ok
&& util::utf16_len(name) >= 3
&& util::has_upper_or_underscore().is_match(name)
{
let parent_ok = self
.stack
.last()
.map(|s| matches!(s.kind, "file" | "class" | "module" | "struct" | "enum"))
.unwrap_or(false);
if parent_ok {
self.fs_values.insert(name.to_string(), row);
*self.fs_value_counts.entry(name.to_string()).or_insert(0) += 1;
}
}
if matches!(kind, "function" | "method" | "constant" | "variable") {
self.value_scopes.push(ValueScope { row, node, name: name.to_string() });
}
Some(row)
}
fn extract_name(&self, node: Node) -> String {
if let Some(name_node) = node.child_by_field_name("name") {
return self.text(name_node).to_string();
}
for i in 0..node.named_child_count() {
if let Some(c) = node.named_child(i) {
if matches!(c.kind(), "identifier" | "type_identifier" | "simple_identifier" | "constant") {
return self.text(c).to_string();
}
}
}
"<anonymous>".to_string()
}
/// goExtractor.getSignature: params + ' ' + result.
fn signature_of(&self, node: Node) -> Option<String> {
let params = node.child_by_field_name("parameters")?;
let mut sig = self.text(params).to_string();
if let Some(result) = node.child_by_field_name("result") {
sig.push(' ');
sig.push_str(self.text(result));
}
Some(sig)
}
/// goExtractor.isExported: uppercase first letter of the name field.
fn is_exported(&self, node: Node) -> bool {
if let Some(name_node) = node.child_by_field_name("name") {
let text = self.text(name_node);
return text.as_bytes().first().map(|b| b.is_ascii_uppercase()).unwrap_or(false);
}
false
}
/// extractGoReturnType (languages/go.ts).
fn return_type_of(&self, node: Node) -> Option<String> {
let mut result = node.child_by_field_name("result")?;
if result.kind() == "parameter_list" {
let first = (0..result.named_child_count())
.filter_map(|i| result.named_child(i))
.find(|c| c.kind() == "parameter_declaration")?;
result = first.child_by_field_name("type").unwrap_or(first);
}
if result.kind() == "pointer_type" {
result = (0..result.named_child_count())
.filter_map(|i| result.named_child(i))
.find(|c| matches!(c.kind(), "type_identifier" | "qualified_type" | "generic_type"))
.unwrap_or(result);
}
let text = self.text(result).trim();
let text = text.strip_prefix('*').unwrap_or(text);
let text = generic_angle_re().replace_all(text, "");
let text = bracket_args_re().replace_all(&text, "");
let last = text.rsplit('.').next().unwrap_or("").trim().to_string();
if last.is_empty() || !simple_ident_re().is_match(&last) {
return None;
}
Some(last)
}
/// goExtractor.getReceiverType: the regex over the receiver's text.
fn receiver_type_of(&self, node: Node) -> Option<String> {
let receiver = node.child_by_field_name("receiver")?;
let text = self.text(receiver);
receiver_re().captures(text).map(|c| c[1].to_string())
}
// --- visitNode ------------------------------------------------------------
fn visit_node(&mut self, node: Node<'t>) {
let kind = node.kind();
let mut skip_children = false;
self.maybe_capture_fn_refs(node);
if kind == "function_declaration" {
self.extract_function(node);
skip_children = true;
} else if kind == "method_declaration" {
self.extract_method(node);
skip_children = true;
} else if kind == "type_spec" {
skip_children = self.extract_type_alias(node);
} else if matches!(kind, "var_declaration" | "short_var_declaration" | "const_declaration")
&& !self.inside_class_like()
{
self.extract_variable(node);
self.scan_fn_ref_subtree(node, 0);
skip_children = true;
} else if kind == "import_declaration" {
self.extract_import(node);
} else if kind == "call_expression" {
self.extract_call(node);
} else if kind == "composite_literal" {
self.extract_instantiation(node);
}
if !skip_children {
for i in 0..node.named_child_count() {
if let Some(c) = node.named_child(i) {
self.visit_node(c);
}
}
}
}
fn visit_function_body(&mut self, body: Node<'t>) {
self.visit_for_calls_and_structure(body);
}
fn visit_for_calls_and_structure(&mut self, node: Node<'t>) {
let kind = node.kind();
self.maybe_capture_fn_refs(node);
if kind == "call_expression" {
self.extract_call(node);
} else if kind == "composite_literal" {
self.extract_instantiation(node);
}
if kind == "function_declaration" {
let name = self.extract_name(node);
if name != "<anonymous>" {
self.extract_function(node);
return;
}
}
for i in 0..node.named_child_count() {
if let Some(c) = node.named_child(i) {
self.visit_for_calls_and_structure(c);
}
}
}
// --- extractors --------------------------------------------------------------
fn extract_function(&mut self, node: Node<'t>) {
// (getReceiverType only matches method_declaration's receiver field —
// function_declaration has none, so no reroute happens here)
let name = self.extract_name(node);
if name == "<anonymous>" {
if let Some(body) = node.child_by_field_name("body") {
self.visit_function_body(body);
}
return;
}
let extra = Extra {
docstring: preceding_docstring(node, self.src),
signature: self.signature_of(node),
is_exported: Some(self.is_exported(node)),
return_type: self.return_type_of(node),
..Extra::default()
};
let Some(row) = self.create_node("function", &name, node, extra) else { return };
self.extract_type_annotations(node, row);
self.stack.push(Scope { row, kind: "function", name });
if let Some(body) = node.child_by_field_name("body") {
self.visit_function_body(body);
}
self.stack.pop();
}
fn extract_method(&mut self, node: Node<'t>) {
// methodsAreTopLevel: always a method. Receiver-qualified name +
// a contains edge from the FIRST earlier struct/class/enum/trait
// node of the receiver's name (mirrors the this.nodes.find scan).
let receiver_type = self.receiver_type_of(node);
let name = self.extract_name(node);
let extra = Extra {
docstring: preceding_docstring(node, self.src),
signature: self.signature_of(node),
return_type: self.return_type_of(node),
qualified_name: receiver_type.as_ref().map(|r| format!("{r}::{name}")),
..Extra::default() // extractMethod passes no isExported
};
let Some(row) = self.create_node("method", &name, node, extra) else { return };
if let Some(receiver_type) = &receiver_type {
if !self.inside_class_like() {
let owner_row = self
.nodes_meta
.iter()
.position(|m| {
m.name == *receiver_type
&& matches!(m.kind, "struct" | "class" | "enum" | "trait")
})
.map(|i| i as u32);
if let Some(owner_row) = owner_row {
self.tables.push_edge(&EdgeRow {
source_idx: owner_row,
target_idx: row,
kind: edge_kind_index("contains").unwrap(),
provenance: 0,
line: NONE,
column: NONE,
metadata_json: NONE_STR,
source_id_str: NONE_STR,
target_id_str: NONE_STR,
});
}
}
}
self.extract_type_annotations(node, row);
self.stack.push(Scope { row, kind: "method", name });
if let Some(body) = node.child_by_field_name("body") {
self.visit_function_body(body);
}
self.stack.pop();
}
/// extractTypeAlias for Go: type_spec → struct / interface / plain alias.
fn extract_type_alias(&mut self, node: Node<'t>) -> bool {
let name = self.extract_name(node);
if name == "<anonymous>" {
return false;
}
let docstring = preceding_docstring(node, self.src);
let is_exported = Some(self.is_exported(node));
let type_child = node.child_by_field_name("type");
let resolved = type_child.map(|t| t.kind());
if resolved == Some("struct_type") {
let Some(row) = self.create_node(
"struct",
&name,
node,
Extra { docstring, is_exported, ..Extra::default() },
) else {
return true;
};
self.stack.push(Scope { row, kind: "struct", name });
if let Some(type_child) = type_child {
// Struct embedding → extends (field_declaration without a
// field_identifier), reached via the inheritance recursion.
self.extract_inheritance(type_child, row);
let body = type_child.child_by_field_name("body").unwrap_or(type_child);
for i in 0..body.named_child_count() {
if let Some(c) = body.named_child(i) {
self.visit_node(c);
}
}
}
self.stack.pop();
return true;
}
if resolved == Some("interface_type") {
let Some(row) = self.create_node(
"interface",
&name,
node,
Extra { docstring, is_exported, ..Extra::default() },
) else {
return true;
};
if let Some(type_child) = type_child {
self.extract_inheritance(type_child, row);
self.extract_go_interface_methods(type_child, row, &name);
}
return true;
}
self.create_node(
"type_alias",
&name,
node,
Extra { docstring, is_exported, ..Extra::default() },
);
// (go type_spec has no `value` field — no type-ref walk; TS/tsx member
// extraction is TS-family-only)
false
}
/// extractGoInterfaceMethods: method_elem/method_spec → method nodes.
fn extract_go_interface_methods(&mut self, interface_type: Node<'t>, iface_row: u32, iface_name: &str) {
self.stack.push(Scope { row: iface_row, kind: "interface", name: iface_name.to_string() });
for i in 0..interface_type.named_child_count() {
let Some(m) = interface_type.named_child(i) else { continue };
if !matches!(m.kind(), "method_elem" | "method_spec") {
continue;
}
let name_node = m.child_by_field_name("name").or_else(|| m.named_child(0));
let Some(name_node) = name_node else { continue };
let mname = self.text(name_node).to_string();
if !mname.is_empty() {
let signature = self.signature_of(m);
self.create_node("method", &mname, m, Extra { signature, ..Extra::default() });
}
}
self.stack.pop();
}
/// extractVariable's Go branch: var/const specs + short_var_declaration.
fn extract_variable(&mut self, node: Node<'t>) {
let docstring = preceding_docstring(node, self.src);
let is_const_decl = node.kind() == "const_declaration";
for i in 0..node.named_child_count() {
let Some(spec) = node.named_child(i) else { continue };
if !matches!(spec.kind(), "var_spec" | "const_spec") {
continue;
}
let mut var_row: Option<u32> = None;
if let Some(name_node) = spec.named_child(0) {
if name_node.kind() == "identifier" {
let name = self.text(name_node).to_string();
let value_node = if spec.named_child_count() > 1 {
spec.named_child(spec.named_child_count() - 1)
} else {
None
};
let signature = value_node.map(|v| util::init_signature(self.text(v)));
var_row = self.create_node(
if is_const_decl { "constant" } else { "variable" },
&name,
spec,
Extra { docstring: docstring.clone(), signature, ..Extra::default() },
);
}
}
// Walk the initializer ATTRIBUTED to the declared symbol (#693).
if let Some(value_field) = spec.child_by_field_name("value") {
if let Some(row) = var_row {
let name = self.nodes_meta[row as usize].name.clone();
self.stack.push(Scope { row, kind: "variable", name });
self.visit_function_body(value_field);
self.stack.pop();
} else {
self.visit_function_body(value_field);
}
}
}
if node.kind() == "short_var_declaration" {
let left = node.child_by_field_name("left");
let right = node.child_by_field_name("right");
if let Some(left) = left {
let identifiers: Vec<Node> = if left.kind() == "expression_list" {
(0..left.named_child_count())
.filter_map(|i| left.named_child(i))
.filter(|c| c.kind() == "identifier")
.collect()
} else {
vec![left]
};
for id in identifiers {
let name = self.text(id).to_string();
let signature = right.map(|r| util::init_signature(self.text(r)));
self.create_node(
"variable",
&name,
node,
Extra { docstring: docstring.clone(), signature, ..Extra::default() },
);
}
}
}
}
/// extractImport's Go branch: one import node + ref per import_spec.
fn extract_import(&mut self, node: Node<'t>) {
let parent = self.top_row();
let imports_kind = edge_kind_index("imports").unwrap();
let mut handle_spec = |w: &mut Self, spec: Node<'t>| {
let lit = (0..spec.named_child_count())
.filter_map(|i| spec.named_child(i))
.find(|c| c.kind() == "interpreted_string_literal");
let Some(lit) = lit else { return };
let import_path: String = w
.text(lit)
.chars()
.filter(|c| *c != '\'' && *c != '"')
.collect();
if import_path.is_empty() {
return;
}
let signature = w.text(spec).trim().to_string();
w.create_node(
"import",
&import_path,
spec,
Extra { signature: Some(signature), ..Extra::default() },
);
w.push_ref_at(parent, &import_path, imports_kind, spec);
};
let spec_list = (0..node.named_child_count())
.filter_map(|i| node.named_child(i))
.find(|c| c.kind() == "import_spec_list");
if let Some(list) = spec_list {
for i in 0..list.named_child_count() {
if let Some(spec) = list.named_child(i) {
if spec.kind() == "import_spec" {
handle_spec(self, spec);
}
}
}
} else {
let spec = (0..node.named_child_count())
.filter_map(|i| node.named_child(i))
.find(|c| c.kind() == "import_spec");
if let Some(spec) = spec {
handle_spec(self, spec);
}
}
}
/// extractCall — Go's generic-tail paths (selector_expression callees).
fn extract_call(&mut self, node: Node<'t>) {
if self.stack.is_empty() {
return;
}
let func = node
.child_by_field_name("function")
.or_else(|| node.named_child(0));
let mut callee_name = String::new();
if let Some(func) = func {
if func.kind() == "selector_expression" {
let property = func
.child_by_field_name("property")
.or_else(|| func.child_by_field_name("field"));
if let Some(property) = property {
let method_name = self.text(property);
let receiver = func
.child_by_field_name("object")
.or_else(|| func.child_by_field_name("operand"))
.or_else(|| func.child_by_field_name("argument"))
.or_else(|| func.named_child(0));
if let Some(r) = receiver {
if is_literal_receiver(r.kind()) {
return;
}
}
if let Some(r) = receiver {
match r.kind() {
"identifier" | "simple_identifier" | "field_identifier" => {
let receiver_name = self.text(r);
if !matches!(receiver_name, "self" | "this" | "cls" | "super") {
callee_name = format!("{receiver_name}.{method_name}");
} else {
callee_name = method_name.to_string();
}
}
"call_expression" => {
// Bare package-level factory chain `New().Method()`
// re-encodes; instance chains keep the bare name.
let inner_fn = r.child_by_field_name("function");
let reencode =
inner_fn.map(|f| f.kind() == "identifier").unwrap_or(false);
if reencode {
let inner: String = self
.text(inner_fn.unwrap())
.replace("->", ".")
.chars()
.filter(|c| !c.is_whitespace())
.collect();
callee_name = format!("{inner}().{method_name}");
} else {
callee_name = method_name.to_string();
}
}
"selector_expression" => {
// 2-hop field chain `t.conn.Exec` (#1276).
let chain: String = self
.text(r)
.chars()
.filter(|c| !c.is_whitespace())
.collect();
if go_two_hop_re().is_match(&chain) {
callee_name = format!("{chain}.{method_name}");
} else {
callee_name = method_name.to_string();
}
}
_ => {
callee_name = method_name.to_string();
}
}
} else {
callee_name = method_name.to_string();
}
}
} else {
callee_name = self.text(func).to_string();
}
}
if !callee_name.is_empty() {
// `(*T)(x)` conversions normalize to `T`.
if let Some(c) = util::paren_conversion().captures(&callee_name) {
callee_name = c[1].to_string();
}
let from = self.top_row();
self.push_ref_at(from, &callee_name.clone(), edge_kind_index("calls").unwrap(), node);
}
}
/// extractInstantiation's composite_literal branch: named struct types
/// only; the package qualifier is KEPT.
fn extract_instantiation(&mut self, node: Node<'t>) {
if self.stack.is_empty() {
return;
}
let ctor = node
.child_by_field_name("constructor")
.or_else(|| node.child_by_field_name("type"))
.or_else(|| node.child_by_field_name("name"))
.or_else(|| node.named_child(0));
let Some(ctor) = ctor else { return };
if !matches!(ctor.kind(), "type_identifier" | "qualified_type") {
return;
}
let mut go_type = self.text(ctor).trim().to_string();
if let Some(br) = go_type.find('[') {
if br > 0 {
go_type.truncate(br);
go_type = go_type.trim().to_string();
}
}
if !go_type.is_empty() {
let from = self.top_row();
self.push_ref_at(from, &go_type, edge_kind_index("instantiates").unwrap(), node);
}
}
/// extractInheritance — the Go branches: interface embedding
/// (constraint_elem) and struct embedding (field_declaration without a
/// field_identifier), plus the field_declaration_list recursion.
fn extract_inheritance(&mut self, node: Node<'t>, class_row: u32) {
let extends_kind = edge_kind_index("extends").unwrap();
for i in 0..node.named_child_count() {
let Some(child) = node.named_child(i) else { continue };
match child.kind() {
"constraint_elem" => {
let type_id = (0..child.named_child_count())
.filter_map(|j| child.named_child(j))
.find(|c| c.kind() == "type_identifier");
if let Some(type_id) = type_id {
let name = self.text(type_id).to_string();
self.push_ref_at(class_row, &name, extends_kind, type_id);
}
}
"field_declaration" => {
let has_field_identifier = (0..child.named_child_count())
.filter_map(|j| child.named_child(j))
.any(|c| c.kind() == "field_identifier");
if !has_field_identifier {
let type_id = (0..child.named_child_count())
.filter_map(|j| child.named_child(j))
.find(|c| c.kind() == "type_identifier");
if let Some(type_id) = type_id {
let name = self.text(type_id).to_string();
self.push_ref_at(class_row, &name, extends_kind, type_id);
}
}
}
"field_declaration_list" | "class_heritage" => {
self.extract_inheritance(child, class_row);
}
_ => {}
}
}
}
/// extractTypeAnnotations — Go's returnField is `result`.
fn extract_type_annotations(&mut self, node: Node<'t>, from_row: u32) {
if let Some(params) = node.child_by_field_name("parameters") {
self.extract_type_refs_from_subtree(params, from_row);
}
if let Some(ret) = node.child_by_field_name("result") {
self.extract_type_refs_from_subtree(ret, from_row);
}
let type_annotation = (0..node.named_child_count())
.filter_map(|i| node.named_child(i))
.find(|c| c.kind() == "type_annotation");
if let Some(ta) = type_annotation {
self.extract_type_refs_from_subtree(ta, from_row);
}
}
fn extract_type_refs_from_subtree(&mut self, node: Node<'t>, from_row: u32) {
if node.kind() == "type_identifier" {
let type_name = self.text(node).to_string();
if !type_name.is_empty() && !is_builtin_type(&type_name) {
self.push_ref_at(from_row, &type_name, edge_kind_index("references").unwrap(), node);
}
return;
}
for i in 0..node.named_child_count() {
if let Some(c) = node.named_child(i) {
self.extract_type_refs_from_subtree(c, from_row);
}
}
}
// --- fn refs (GO_SPEC, with the literal_element/expression_list layers) --------
fn maybe_capture_fn_refs(&mut self, node: Node<'t>) {
let (mode, field): (&str, &str) = match node.kind() {
"argument_list" => ("args", ""),
"assignment_statement" => ("rhs", "right"),
"short_var_declaration" => ("rhs", "right"),
"var_spec" => ("varinit", "value"),
"keyed_element" => ("value", ""), // value = LAST named child
"literal_value" => ("list", ""),
_ => return,
};
if self.stack.is_empty() {
return;
}
let from = self.top_row();
let mut values: Vec<Node> = Vec::new();
match mode {
"args" | "list" => {
for i in 0..node.named_child_count() {
if let Some(c) = node.named_child(i) {
values.push(c);
}
}
}
"rhs" => {
if let Some(rhs) = node.child_by_field_name(field) {
let lhs_text = node
.child_by_field_name("left")
.map(|l| self.text(l))
.unwrap_or("");
let lhs_last = util::lhs_last_name()
.captures(lhs_text)
.and_then(|c| c.get(1))
.map(|m| m.as_str());
if !(lhs_last.is_some() && lhs_last == Some(self.text(rhs).trim())) {
values.push(rhs);
}
}
}
"value" => {
let v = node
.child_by_field_name("value")
.or_else(|| {
if node.named_child_count() > 0 {
node.named_child(node.named_child_count() - 1)
} else {
None
}
});
if let Some(v) = v {
values.push(v);
}
}
_ => {
// varinit — Go var_spec names are plain identifiers (no
// destructuring patterns to skip).
if let Some(v) = node.child_by_field_name(field) {
values.push(v);
}
}
}
for v in values {
self.normalize_fn_ref_value(v, from, 0);
}
}
/// normalizeValue with GO_SPEC's transparent layers (literal_element,
/// expression_list — both fan out to named children).
fn normalize_fn_ref_value(&mut self, v: Node<'t>, from: u32, depth: u32) {
if depth > 4 {
return;
}
match v.kind() {
"identifier" => {
let name = self.text(v).to_string();
if name.is_empty() || is_stoplisted(&name) {
return;
}
let p = v.start_position();
self.fn_ref_cands.push(Cand {
from,
name,
line: p.row as u32 + 1,
column_byte: v.start_byte(),
row: p.row,
});
}