tokensave 3.4.1

Code intelligence tool that builds a semantic knowledge graph from Rust, Go, Java, Scala, TypeScript, Python, C, C++, Kotlin, C#, Swift, and many more codebases
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
/// Tree-sitter based GW-BASIC source code extractor.
///
/// Parses GW-BASIC source files and emits nodes and edges for the code graph.
/// GW-BASIC extends MS BASIC 2.0 with DEF FN, WHILE/WEND, and more string
/// functions. This extractor synthesizes Function nodes from REM-labelled
/// sections that end with RETURN, extracts LET/assignments as Const, DEF FN
/// as Function, GOSUB/GOTO as call references, and REM lines as docstrings.
use std::time::{Instant, SystemTime, UNIX_EPOCH};

use tree_sitter::{Node as TsNode, Parser, Tree};

use crate::types::{
    generate_node_id, Edge, EdgeKind, ExtractionResult, Node, NodeKind, UnresolvedRef, Visibility,
};

/// Extracts code graph nodes and edges from GW-BASIC source files using tree-sitter.
pub struct GwBasicExtractor;

/// Internal state used during AST traversal.
struct ExtractionState {
    nodes: Vec<Node>,
    edges: Vec<Edge>,
    unresolved_refs: Vec<UnresolvedRef>,
    errors: Vec<String>,
    /// Stack of (name, node_id) for building qualified names and parent edges.
    node_stack: Vec<(String, String)>,
    file_path: String,
    source: Vec<u8>,
    timestamp: u64,
}

impl ExtractionState {
    fn new(file_path: &str, source: &str) -> Self {
        let timestamp = SystemTime::now()
            .duration_since(UNIX_EPOCH)
            .unwrap_or_default()
            .as_secs();
        Self {
            nodes: Vec::new(),
            edges: Vec::new(),
            unresolved_refs: Vec::new(),
            errors: Vec::new(),
            node_stack: Vec::new(),
            file_path: file_path.to_string(),
            source: source.as_bytes().to_vec(),
            timestamp,
        }
    }

    /// Returns the current qualified name prefix from the node stack.
    fn qualified_prefix(&self) -> String {
        let mut parts = vec![self.file_path.clone()];
        for (name, _) in &self.node_stack {
            parts.push(name.clone());
        }
        parts.join("::")
    }

    /// Returns the current parent node ID, or None if at file root level.
    fn parent_node_id(&self) -> Option<&str> {
        self.node_stack.last().map(|(_, id)| id.as_str())
    }

    /// Gets the text of a tree-sitter node from the source.
    fn node_text(&self, node: TsNode<'_>) -> String {
        node.utf8_text(&self.source)
            .unwrap_or("<invalid utf8>")
            .to_string()
    }
}

/// Represents a collected line from the BASIC program for subroutine synthesis.
struct BasicLine<'a> {
    /// The `line` AST node.
    node: TsNode<'a>,
    /// The line number (e.g. 10, 20, 100).
    line_number: u32,
    /// The kind of the first statement on this line.
    statement_kind: String,
    /// The text of the REM comment, if this line is a REM.
    comment_text: Option<String>,
}

impl GwBasicExtractor {
    /// Extract code graph nodes and edges from a GW-BASIC source file.
    ///
    /// `file_path` is used for qualified names and node IDs (not for I/O).
    /// `source` is the BASIC source code to parse.
    pub fn extract_gwbasic(file_path: &str, source: &str) -> ExtractionResult {
        let start = Instant::now();
        let mut state = ExtractionState::new(file_path, source);

        let tree = match Self::parse_source(source) {
            Ok(tree) => tree,
            Err(msg) => {
                state.errors.push(msg);
                return Self::build_result(state, start);
            }
        };

        // Create the File root node.
        let file_node = Node {
            id: generate_node_id(file_path, &NodeKind::File, file_path, 0),
            kind: NodeKind::File,
            name: file_path.to_string(),
            qualified_name: file_path.to_string(),
            file_path: file_path.to_string(),
            start_line: 0,
            end_line: source.lines().count().saturating_sub(1) as u32,
            start_column: 0,
            end_column: 0,
            signature: None,
            docstring: None,
            visibility: Visibility::Pub,
            is_async: false,
            branches: 0,
            loops: 0,
            returns: 0,
            max_nesting: 0,
            unsafe_blocks: 0,
            unchecked_calls: 0,
            assertions: 0,
            updated_at: state.timestamp,
        };
        let file_node_id = file_node.id.clone();
        state.nodes.push(file_node);
        state
            .node_stack
            .push((file_path.to_string(), file_node_id));

        // Collect all lines from the AST.
        let root = tree.root_node();
        let lines = Self::collect_lines(&state, root);

        // First pass: extract DEF FN definitions as Function nodes.
        Self::extract_def_fn(&mut state, &lines);

        // Second pass: extract top-level LET constants (before the first subroutine).
        Self::extract_top_level_lets(&mut state, &lines);

        // Third pass: synthesize subroutine Function nodes from REM ... RETURN blocks.
        Self::extract_subroutines(&mut state, &lines);

        // Fourth pass: extract GOSUB/GOTO references at the file level (those not in subroutines).
        Self::extract_top_level_calls(&mut state, &lines);

        state.node_stack.pop();

        Self::build_result(state, start)
    }

    /// Parse source code into a tree-sitter AST.
    fn parse_source(source: &str) -> Result<Tree, String> {
        let mut parser = Parser::new();
        let language = crate::extraction::ts_provider::language("gwbasic");
        parser
            .set_language(&language)
            .map_err(|e| format!("failed to load GW-BASIC grammar: {e}"))?;
        parser
            .parse(source, None)
            .ok_or_else(|| "tree-sitter parse returned None".to_string())
    }

    /// Collect all lines from the program into a structured list.
    fn collect_lines<'a>(state: &ExtractionState, root: TsNode<'a>) -> Vec<BasicLine<'a>> {
        let mut lines = Vec::new();
        let mut cursor = root.walk();
        if cursor.goto_first_child() {
            loop {
                let node = cursor.node();
                if node.kind() == "line" {
                    if let Some(basic_line) = Self::parse_line(state, node) {
                        lines.push(basic_line);
                    }
                }
                if !cursor.goto_next_sibling() {
                    break;
                }
            }
        }
        lines
    }

    /// Parse a single `line` node into a BasicLine struct.
    fn parse_line<'a>(state: &ExtractionState, node: TsNode<'a>) -> Option<BasicLine<'a>> {
        let line_number_node = Self::find_child_by_kind(node, "line_number")?;
        let line_number_text = state.node_text(line_number_node);
        let line_number: u32 = line_number_text.trim().parse().unwrap_or(0);

        // Navigate: line -> statement_list -> statement -> specific_kind
        let statement_list = Self::find_child_by_kind(node, "statement_list")?;
        let statement = Self::find_child_by_kind(statement_list, "statement")?;

        // Get the first named child of statement (the actual statement type).
        let mut stmt_cursor = statement.walk();
        let mut statement_kind = String::new();
        let mut comment_text = None;
        if stmt_cursor.goto_first_child() {
            let child = stmt_cursor.node();
            statement_kind = child.kind().to_string();
            if child.kind() == "comment" {
                let text = state.node_text(child);
                // Strip "REM " prefix.
                let stripped = if text.len() > 4 {
                    text[4..].trim().to_string()
                } else {
                    text.trim_start_matches("REM").trim().to_string()
                };
                comment_text = Some(stripped);
            }
        }

        Some(BasicLine {
            node,
            line_number,
            statement_kind,
            comment_text,
        })
    }

    /// Extract DEF FN definitions as Function nodes.
    ///
    /// GW-BASIC supports `DEF FNname(params) = expression` for user-defined functions.
    fn extract_def_fn(state: &mut ExtractionState, lines: &[BasicLine<'_>]) {
        for basic_line in lines {
            if basic_line.statement_kind != "def_fn_statement" {
                continue;
            }
            let statement_list = match Self::find_child_by_kind(basic_line.node, "statement_list") {
                Some(sl) => sl,
                None => continue,
            };
            let statement = match Self::find_child_by_kind(statement_list, "statement") {
                Some(s) => s,
                None => continue,
            };
            let def_fn = match Self::find_child_by_kind(statement, "def_fn_statement") {
                Some(d) => d,
                None => continue,
            };

            // Extract function name from user_function child.
            let fn_name_node = match Self::find_child_by_kind(def_fn, "user_function") {
                Some(n) => n,
                None => continue,
            };
            let fn_name = state.node_text(fn_name_node);

            let start_line = basic_line.node.start_position().row as u32;
            let end_line = basic_line.node.end_position().row as u32;
            let start_column = basic_line.node.start_position().column as u32;
            let end_column = basic_line.node.end_position().column as u32;
            let qualified_name = format!("{}::{}", state.qualified_prefix(), fn_name);
            let id = generate_node_id(
                &state.file_path,
                &NodeKind::Function,
                &fn_name,
                start_line,
            );
            let text = state.node_text(basic_line.node);

            let graph_node = Node {
                id: id.clone(),
                kind: NodeKind::Function,
                name: fn_name,
                qualified_name,
                file_path: state.file_path.clone(),
                start_line,
                end_line,
                start_column,
                end_column,
                signature: Some(text.trim().to_string()),
                docstring: None,
                visibility: Visibility::Pub,
                is_async: false,
                branches: 0,
                loops: 0,
                returns: 0,
                max_nesting: 0,
                unsafe_blocks: 0,
                unchecked_calls: 0,
                assertions: 0,
                updated_at: state.timestamp,
            };
            state.nodes.push(graph_node);

            // Contains edge from parent.
            if let Some(parent_id) = state.parent_node_id() {
                state.edges.push(Edge {
                    source: parent_id.to_string(),
                    target: id,
                    kind: EdgeKind::Contains,
                    line: Some(start_line),
                });
            }
        }
    }

    /// Extract LET statements that are outside subroutines as top-level constants.
    ///
    /// In GW-BASIC, lines like `40 MR = 3` serve as variable initialization.
    /// We treat only top-level LET assignments (those not inside subroutines) as constants.
    fn extract_top_level_lets(state: &mut ExtractionState, lines: &[BasicLine<'_>]) {
        let subroutine_ranges = Self::find_subroutine_ranges(lines);
        for (idx, basic_line) in lines.iter().enumerate() {
            // Skip lines that are inside subroutines.
            if subroutine_ranges
                .iter()
                .any(|(start, end)| idx >= *start && idx < *end)
            {
                continue;
            }
            if basic_line.statement_kind == "let_statement" {
                Self::visit_let_statement(state, basic_line);
            }
        }
    }

    /// Extract a LET statement as a Const node.
    fn visit_let_statement(state: &mut ExtractionState, basic_line: &BasicLine<'_>) {
        let statement_list = match Self::find_child_by_kind(basic_line.node, "statement_list") {
            Some(sl) => sl,
            None => return,
        };
        let statement = match Self::find_child_by_kind(statement_list, "statement") {
            Some(s) => s,
            None => return,
        };
        let let_stmt = match Self::find_child_by_kind(statement, "let_statement") {
            Some(ls) => ls,
            None => return,
        };

        // Extract the variable name from: let_statement -> variable -> identifier
        let var_node = match Self::find_child_by_kind(let_stmt, "variable") {
            Some(v) => v,
            None => return,
        };
        let id_node = match Self::find_child_by_kind(var_node, "identifier") {
            Some(i) => i,
            None => return,
        };
        let name = state.node_text(id_node);

        let start_line = basic_line.node.start_position().row as u32;
        let end_line = basic_line.node.end_position().row as u32;
        let start_column = basic_line.node.start_position().column as u32;
        let end_column = basic_line.node.end_position().column as u32;
        let qualified_name = format!("{}::{}", state.qualified_prefix(), name);
        let id = generate_node_id(&state.file_path, &NodeKind::Const, &name, start_line);
        let text = state.node_text(basic_line.node);

        let graph_node = Node {
            id: id.clone(),
            kind: NodeKind::Const,
            name,
            qualified_name,
            file_path: state.file_path.clone(),
            start_line,
            end_line,
            start_column,
            end_column,
            signature: Some(text.trim().to_string()),
            docstring: None,
            visibility: Visibility::Pub,
            is_async: false,
            branches: 0,
            loops: 0,
            returns: 0,
            max_nesting: 0,
            unsafe_blocks: 0,
            unchecked_calls: 0,
            assertions: 0,
            updated_at: state.timestamp,
        };
        state.nodes.push(graph_node);

        // Contains edge from parent.
        if let Some(parent_id) = state.parent_node_id() {
            state.edges.push(Edge {
                source: parent_id.to_string(),
                target: id,
                kind: EdgeKind::Contains,
                line: Some(start_line),
            });
        }
    }

    /// Synthesize subroutine Function nodes from REM-labelled sections that end with RETURN.
    ///
    /// GW-BASIC has no formal subroutine syntax. We detect patterns like:
    /// ```basic
    /// 1000 REM VALIDATE CONFIGURATION
    /// 1010 IF H$ = "" THEN PRINT "ERROR": RETURN
    /// 1040 RETURN
    /// ```
    /// A REM line (or consecutive REM lines) followed by code ending with RETURN
    /// is treated as a subroutine. The REM text becomes the docstring, and a
    /// function name is derived from the first REM text.
    fn extract_subroutines(state: &mut ExtractionState, lines: &[BasicLine<'_>]) {
        let mut i = 0;
        while i < lines.len() {
            // Look for a REM line that starts a potential subroutine.
            if lines[i].statement_kind == "comment" {
                // Gather consecutive REM lines.
                let rem_start = i;
                let mut rem_comments: Vec<String> = Vec::new();
                while i < lines.len() && lines[i].statement_kind == "comment" {
                    if let Some(ref text) = lines[i].comment_text {
                        rem_comments.push(text.clone());
                    }
                    i += 1;
                }

                // Check if the lines following the REM block end with RETURN.
                let body_start = i;
                let mut body_end = i;
                let mut has_return = false;
                while body_end < lines.len() {
                    if lines[body_end].statement_kind == "return_statement" {
                        has_return = true;
                        body_end += 1;
                        break;
                    }
                    // Also check for inline RETURN in IF statements
                    // (e.g. `1010 IF ... THEN PRINT "ERROR": RETURN`)
                    if Self::line_has_return(lines[body_end].node) {
                        // Keep going — the inline RETURN doesn't end the subroutine
                        // unless it's the last statement before the next REM block.
                    }
                    // Stop at the next REM block (which would be the start of another subroutine).
                    if lines[body_end].statement_kind == "comment" {
                        break;
                    }
                    body_end += 1;
                }

                if has_return && body_start < body_end {
                    // Derive a function name from the first REM comment.
                    let fn_name = Self::derive_function_name(&rem_comments);
                    let docstring = if rem_comments.is_empty() {
                        None
                    } else {
                        Some(rem_comments.join("\n"))
                    };

                    // The subroutine spans from the first REM line to the RETURN line.
                    let first_node = lines[rem_start].node;
                    let last_node = lines[body_end - 1].node;
                    let start_line = first_node.start_position().row as u32;
                    let end_line = last_node.end_position().row as u32;
                    let start_column = first_node.start_position().column as u32;
                    let end_column = last_node.end_position().column as u32;
                    let qualified_name = format!("{}::{}", state.qualified_prefix(), fn_name);
                    let fn_id = generate_node_id(
                        &state.file_path,
                        &NodeKind::Function,
                        &fn_name,
                        start_line,
                    );

                    // Count complexity by walking body lines' AST nodes.
                    let mut branches: u32 = 0;
                    let mut loops: u32 = 0;
                    let mut returns: u32 = 0;
                    for line in &lines[body_start..body_end] {
                        Self::count_line_complexity(line.node, &mut branches, &mut loops, &mut returns);
                    }

                    // Use the line number of the first code line (after REMs) as the
                    // signature, so callers can reference it by GOSUB <line_number>.
                    let sig_line_num = lines[body_start].line_number;
                    let signature = format!("GOSUB {}", sig_line_num);

                    let graph_node = Node {
                        id: fn_id.clone(),
                        kind: NodeKind::Function,
                        name: fn_name.clone(),
                        qualified_name,
                        file_path: state.file_path.clone(),
                        start_line,
                        end_line,
                        start_column,
                        end_column,
                        signature: Some(signature),
                        docstring,
                        visibility: Visibility::Pub,
                        is_async: false,
                        branches,
                        loops,
                        returns,
                        max_nesting: 0,
                        unsafe_blocks: 0,
                        unchecked_calls: 0,
                        assertions: 0,
                        updated_at: state.timestamp,
                    };
                    state.nodes.push(graph_node);

                    // Contains edge from parent.
                    if let Some(parent_id) = state.parent_node_id() {
                        state.edges.push(Edge {
                            source: parent_id.to_string(),
                            target: fn_id.clone(),
                            kind: EdgeKind::Contains,
                            line: Some(start_line),
                        });
                    }

                    // Extract GOSUB/GOTO call sites from the body.
                    for line in &lines[body_start..body_end] {
                        Self::extract_calls_from_line(state, line, &fn_id);
                    }

                    i = body_end;
                } else {
                    // REM block not followed by RETURN — skip.
                    i = body_end;
                }
            } else {
                i += 1;
            }
        }
    }

    /// Count complexity metrics for a single line node by recursively walking its AST.
    fn count_line_complexity(
        node: TsNode<'_>,
        branches: &mut u32,
        loops: &mut u32,
        returns: &mut u32,
    ) {
        let kind = node.kind();
        match kind {
            "if_statement" => *branches += 1,
            "for_statement" | "while_statement" => *loops += 1,
            "return_statement" => *returns += 1,
            _ => {}
        }
        // Recurse into children.
        let mut cursor = node.walk();
        if cursor.goto_first_child() {
            loop {
                let child = cursor.node();
                Self::count_line_complexity(child, branches, loops, returns);
                if !cursor.goto_next_sibling() {
                    break;
                }
            }
        }
    }

    /// Check if a line node contains a return_statement anywhere in its AST.
    fn line_has_return(node: TsNode<'_>) -> bool {
        if node.kind() == "return_statement" {
            return true;
        }
        let mut cursor = node.walk();
        if cursor.goto_first_child() {
            loop {
                let child = cursor.node();
                if Self::line_has_return(child) {
                    return true;
                }
                if !cursor.goto_next_sibling() {
                    break;
                }
            }
        }
        false
    }

    /// Extract GOSUB/GOTO references from top-level lines (those not part of subroutines).
    fn extract_top_level_calls(state: &mut ExtractionState, lines: &[BasicLine<'_>]) {
        // Determine which lines are part of subroutines (between first REM and RETURN).
        let subroutine_ranges = Self::find_subroutine_ranges(lines);

        let file_node_id = state
            .node_stack
            .last()
            .map(|(_, id)| id.clone())
            .unwrap_or_default();

        for (idx, line) in lines.iter().enumerate() {
            // Skip lines that are inside subroutines.
            if subroutine_ranges
                .iter()
                .any(|(start, end)| idx >= *start && idx < *end)
            {
                continue;
            }
            Self::extract_calls_from_line(state, line, &file_node_id);
        }
    }

    /// Find ranges of lines that belong to subroutines (REM ... RETURN blocks).
    fn find_subroutine_ranges(lines: &[BasicLine<'_>]) -> Vec<(usize, usize)> {
        let mut ranges = Vec::new();
        let mut i = 0;
        while i < lines.len() {
            if lines[i].statement_kind == "comment" {
                let rem_start = i;
                while i < lines.len() && lines[i].statement_kind == "comment" {
                    i += 1;
                }
                let mut body_end = i;
                let mut has_return = false;
                while body_end < lines.len() {
                    if lines[body_end].statement_kind == "return_statement" {
                        has_return = true;
                        body_end += 1;
                        break;
                    }
                    if lines[body_end].statement_kind == "comment" {
                        break;
                    }
                    body_end += 1;
                }
                if has_return {
                    ranges.push((rem_start, body_end));
                }
                i = body_end;
            } else {
                i += 1;
            }
        }
        ranges
    }

    /// Extract GOSUB/GOTO call references from a single line.
    fn extract_calls_from_line(
        state: &mut ExtractionState,
        line: &BasicLine<'_>,
        from_node_id: &str,
    ) {
        Self::walk_for_calls(state, line.node, from_node_id);
    }

    /// Recursively walk AST nodes looking for gosub_statement and goto_statement.
    fn walk_for_calls(state: &mut ExtractionState, node: TsNode<'_>, from_node_id: &str) {
        let kind = node.kind();
        match kind {
            "gosub_statement" | "goto_statement" => {
                // Extract the target line number.
                if let Some(ln_node) = Self::find_child_by_kind(node, "line_number") {
                    let target = state.node_text(ln_node);
                    state.unresolved_refs.push(UnresolvedRef {
                        from_node_id: from_node_id.to_string(),
                        reference_name: target,
                        reference_kind: EdgeKind::Calls,
                        line: node.start_position().row as u32,
                        column: node.start_position().column as u32,
                        file_path: state.file_path.clone(),
                    });
                }
            }
            _ => {}
        }
        // Recurse into children.
        let mut cursor = node.walk();
        if cursor.goto_first_child() {
            loop {
                let child = cursor.node();
                Self::walk_for_calls(state, child, from_node_id);
                if !cursor.goto_next_sibling() {
                    break;
                }
            }
        }
    }

    /// Derive a function name from REM comment text.
    ///
    /// Takes the first REM line text and converts it into a snake_case-like
    /// identifier. For example, "VALIDATE CONFIGURATION" becomes "VALIDATE_CONFIGURATION".
    fn derive_function_name(rem_comments: &[String]) -> String {
        if rem_comments.is_empty() {
            return "UNNAMED_SUB".to_string();
        }
        let first = &rem_comments[0];
        // Replace spaces with underscores and keep alphanumeric + underscore.
        let name: String = first
            .chars()
            .map(|c| if c.is_alphanumeric() || c == '_' { c } else { '_' })
            .collect();
        // Collapse multiple underscores and trim.
        let mut collapsed = String::new();
        let mut prev_underscore = false;
        for c in name.chars() {
            if c == '_' {
                if !prev_underscore && !collapsed.is_empty() {
                    collapsed.push('_');
                }
                prev_underscore = true;
            } else {
                collapsed.push(c);
                prev_underscore = false;
            }
        }
        let trimmed = collapsed.trim_end_matches('_').to_string();
        if trimmed.is_empty() {
            "UNNAMED_SUB".to_string()
        } else {
            trimmed
        }
    }

    /// Find the first child of a node with a given kind.
    fn find_child_by_kind<'a>(node: TsNode<'a>, kind: &str) -> Option<TsNode<'a>> {
        let mut cursor = node.walk();
        if cursor.goto_first_child() {
            loop {
                let child = cursor.node();
                if child.kind() == kind {
                    return Some(child);
                }
                if !cursor.goto_next_sibling() {
                    break;
                }
            }
        }
        None
    }

    /// Build the final ExtractionResult from the accumulated state.
    fn build_result(state: ExtractionState, start: Instant) -> ExtractionResult {
        ExtractionResult {
            nodes: state.nodes,
            edges: state.edges,
            unresolved_refs: state.unresolved_refs,
            errors: state.errors,
            duration_ms: start.elapsed().as_millis() as u64,
        }
    }
}

impl crate::extraction::LanguageExtractor for GwBasicExtractor {
    fn extensions(&self) -> &[&str] {
        &["gw"]
    }

    fn language_name(&self) -> &str {
        "GW-BASIC"
    }

    fn extract(&self, file_path: &str, source: &str) -> ExtractionResult {
        Self::extract_gwbasic(file_path, source)
    }
}