harn-stdlib 0.10.18

Embedded Harn standard library source catalog
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
import { diff_summary, unified_diff } from "std/diff"
pub import { edit_capabilities } from "std/edit/capabilities"
pub import { edit_fast_apply, fast_apply } from "std/edit/fast_apply"
import { edit_refactor_content_hash } from "std/edit/internal"
pub import {
  edit_apply_node,
  edit_apply_old_new_patch,
  edit_batch_apply,
  edit_changed_regions,
  edit_check_lazy_truncation,
  edit_explain_whitespace_difference,
  edit_insert_at_anchor,
  edit_splice_lines,
  edit_strip_line_number_prefixes,
  edit_validate_changed_regions,
} from "std/edit/patch"
pub import { edit_dry_run, edit_rename_symbol, edit_safe_text_patch } from "std/edit/safe_patch"

/**
 * Structured refactorings (B.8, issue #2520).
 *
 * Higher-level, compound, language-aware edits composed on top of the
 * B.1-B.5 primitives above (`edit_apply_node`, `edit_insert_at_anchor`,
 * `edit_rename_symbol`, `edit_safe_text_patch`, `edit_dry_run`) plus the
 * host AST analyzers (`hostlib_ast_symbols`, `hostlib_ast_function_body`,
 * `hostlib_ast_undefined_names`).
 *
 * Every refactoring shares one driver, `__refactor_run`, which lowers a
 * list of typed ops into staged-fs writes (#1722): a `dry_run` previews
 * the change as a per-file unified diff against a throw-away overlay and
 * touches no bytes, while an apply stages all ops into one session and
 * commits them atomically (or discards on the first conflict). Callers
 * that already own a staged session pass `session_id`; the driver then
 * stages into it and leaves the commit to the caller.
 *
 * Each public entry point first consults a per-(operation, language)
 * capability matrix and returns `result: "unsupported"` rather than
 * guessing when a language lacks the structure a refactoring needs.
 *
 * All of these route through gated host builtins (`apply_node`,
 * `insert_at_anchor`, `read_text`, `safe_text_patch`), so callers must
 * hold the `tools:deterministic` capability.
 */
fn __refactor_normalize_lang(name) {
  const n = lowercase(trim(name ?? ""))
  const alias = {golang: "go", js: "javascript", py: "python", rb: "ruby", rs: "rust", ts: "typescript"}
  return alias.get(n, n)
}

fn __refactor_detect_language(params) {
  const hint = params?.language
  if hint != nil && hint != "" {
    return __refactor_normalize_lang(hint)
  }
  const path = params?.path ?? ""
  const segments = split(path, "/")
  const filename = if len(segments) > 0 {
    segments[-1]
  } else {
    path
  }
  const dotted = split(filename, ".")
  if len(dotted) < 2 {
    return ""
  }
  return __refactor_normalize_lang(dotted[-1])
}

fn __refactor_member(list, item) {
  for x in list ?? [] {
    if x == item {
      return true
    }
  }
  return false
}

fn __refactor_touched_paths(ops) {
  let seen = []
  for op in ops ?? [] {
    const path = op?.path
    if path != nil && !__refactor_member(seen, path) {
      seen = seen + [path]
    }
  }
  return seen
}

fn __refactor_common_root(paths) {
  if len(paths) == 0 {
    return "."
  }
  const first = split(paths[0], "/")
  let common = if len(first) > 0 {
    first[:len(first) - 1]
  } else {
    first
  }
  for p in paths {
    const segs = split(p, "/")
    const dir = if len(segs) > 0 {
      segs[:len(segs) - 1]
    } else {
      segs
    }
    let prefix = []
    let idx = 0
    while idx < len(common) && idx < len(dir) && common[idx] == dir[idx] {
      prefix = prefix + [common[idx]]
      idx = idx + 1
    }
    common = prefix
  }
  const root = join(common, "/")
  if root == "" {
    return "."
  }
  return root
}

fn __refactor_new_session(operation) {
  return "harn-refactor-" + operation + "-" + uuid_v7()
}

fn __refactor_leading_ws(line) {
  const raw = line ?? ""
  const body = regex_replace("^[ \\t]+", "", raw)
  return raw.substring(0, len(raw) - len(body))
}

fn __refactor_result(operation, language, fields) {
  const base = {
    ok: false,
    applied: false,
    result: "unsupported",
    operation: operation,
    language: language,
    dry_run: false,
    touched_files: [],
    unified_diff: [],
    summary: {files_touched: 0, lines_added: 0, lines_removed: 0},
    conflicts: [],
    details: nil,
    errors: [],
    warnings: [],
    provenance: {module: "std/edit", helper: "edit_" + operation, operation: operation, language: language},
  }
  return base.merge(fields ?? {})
}

fn __refactor_unsupported(operation, language, reason) {
  return __refactor_result(
    operation,
    language,
    {result: "unsupported", details: reason, errors: [{code: "unsupported", message: reason}]},
  )
}

fn __refactor_invalid(operation, language, reason) {
  return __refactor_result(
    operation,
    language,
    {result: "invalid_params", details: reason, errors: [{code: "invalid_params", message: reason}]},
  )
}

fn __refactor_conflict(operation, language, conflicts) {
  return __refactor_result(
    operation,
    language,
    {
      result: "conflict",
      conflicts: conflicts,
      details: if len(conflicts) > 0 {
        conflicts[0].message
      } else {
        nil
      },
      errors: conflicts.map({ c -> {code: c.code, message: c.message} }),
    },
  )
}

fn __refactor_exec_op(op, session_id, before_map) {
  const kind = op?.kind
  if kind == "content" {
    const before = before_map.get(op.path, "")
    const res = hostlib_fs_safe_text_patch(
      {
        path: op.path,
        content: op.after,
        expected_hash: edit_refactor_content_hash(before),
        session_id: session_id,
        create_parents: true,
        overwrite: true,
      },
    )
    const tag = res?.result ?? "applied"
    return {
      ok: tag == "applied",
      result: tag,
      conflict: {code: tag, message: "content write `" + tag + "` at " + op.path, path: op.path},
    }
  }
  if kind == "node_apply" {
    const res = edit_apply_node((op?.params ?? {}).merge({session_id: session_id}))
    return {
      ok: res.result == "applied",
      result: res.result,
      conflict: {code: res.result, message: res.details ?? ("apply_node " + res.result), path: op?.path},
    }
  }
  if kind == "node_insert" {
    const res = edit_insert_at_anchor((op?.params ?? {}).merge({session_id: session_id}))
    return {
      ok: res.result == "applied",
      result: res.result,
      conflict: {code: res.result, message: res.details ?? ("insert_at_anchor " + res.result), path: op?.path},
    }
  }
  return {
    ok: false,
    result: "invalid_op",
    conflict: {code: "invalid_op", message: "unknown refactor op kind"},
  }
}

/**
 * Shared driver for the structured refactorings. Lowers `ops` (typed
 * `content` / `node_apply` / `node_insert` records) into staged-fs
 * writes, previewing or committing atomically per the contract above.
 * Not part of the public API surface.
 */
fn __refactor_run(operation, language, ops, params, warnings) {
  const p = params ?? {}
  const dry_run = p?.dry_run ?? false
  const warns = warnings ?? []
  if len(ops) == 0 {
    return __refactor_result(
      operation,
      language,
      {ok: true, applied: true, result: "no_op", dry_run: dry_run, warnings: warns},
    )
  }
  const touched = __refactor_touched_paths(ops)
  const caller_session = p?.session_id
  const manage_session = dry_run || caller_session == nil
  const session_id = if manage_session {
    __refactor_new_session(operation)
  } else {
    caller_session
  }
  if manage_session {
    if dry_run {
      // A preview never commits, so leave the overlay state at the host
      // default (cwd-relative) rather than scattering `.harn/state` next
      // to the target files — same as `edit_dry_run`.
      hostlib_fs_set_mode({session_id: session_id, mode: "staged"})
    } else {
      // An apply must commit to disk, so root the overlay at the tightest
      // directory enclosing every touched path.
      hostlib_fs_set_mode(
        {session_id: session_id, mode: "staged", root: p?.root ?? __refactor_common_root(touched)},
      )
    }
  }
  let before_map = {}
  for path in touched {
    const r = hostlib_fs_read_text({path: path, session_id: session_id})
    before_map = before_map.merge({[path]: r?.content ?? ""})
  }
  let conflicts = []
  let ok_all = true
  for op in ops {
    const outcome = __refactor_exec_op(op, session_id, before_map)
    if !outcome.ok {
      conflicts = conflicts + [outcome.conflict]
      ok_all = false
      break
    }
  }
  let diffs = []
  let changed = []
  let added = 0
  let removed = 0
  if ok_all {
    for path in touched {
      const before = before_map.get(path, "")
      const after_read = hostlib_fs_read_text({path: path, session_id: session_id})
      const after = after_read?.content ?? before
      if after != before {
        const stat = diff_summary(before, after)
        changed = changed + [path]
        added = added + stat.insertions
        removed = removed + stat.deletions
        diffs = diffs
          + [
          {
            path: path,
            diff: unified_diff(before, after, {path: path}),
            lines_added: stat.insertions,
            lines_removed: stat.deletions,
          },
        ]
      }
    }
  }
  if manage_session {
    if dry_run || !ok_all {
      hostlib_fs_discard_staged({session_id: session_id})
    } else {
      hostlib_fs_commit_staged({session_id: session_id})
    }
  }
  const result_tag = if !ok_all {
    "conflict"
  } else if len(changed) == 0 {
    "no_op"
  } else {
    "applied"
  }
  return __refactor_result(
    operation,
    language,
    {
      ok: result_tag == "applied",
      applied: result_tag == "applied" || result_tag == "no_op",
      result: result_tag,
      dry_run: dry_run,
      touched_files: changed,
      unified_diff: diffs,
      summary: {files_touched: len(changed), lines_added: added, lines_removed: removed},
      conflicts: conflicts,
      details: if !ok_all {
        conflicts[0].message
      } else {
        nil
      },
      errors: conflicts,
      warnings: warns,
    },
  )
}

fn __refactor_var_decl_syntax(language) {
  const table = {
    go: {kw: "", assign: " := ", term: ""},
    javascript: {kw: "const ", assign: " = ", term: ";"},
    jsx: {kw: "const ", assign: " = ", term: ";"},
    python: {kw: "", assign: " = ", term: ""},
    ruby: {kw: "", assign: " = ", term: ""},
    rust: {kw: "let ", assign: " = ", term: ";"},
    swift: {kw: "let ", assign: " = ", term: ""},
    tsx: {kw: "const ", assign: " = ", term: ";"},
    typescript: {kw: "const ", assign: " = ", term: ";"},
  }
  return table.get(language, nil)
}

/**
 * Extract a single-line expression range into a freshly-declared local
 * binding, replacing the original span with `new_name` and inserting the
 * declaration on its own line directly above, at the same indentation.
 *
 * `range` is `{start_line, start_col, end_line, end_col}` in 0-based
 * tree-sitter coordinates (columns are byte offsets within the line).
 * Multi-line ranges return `result: "unsupported"` — select an
 * expression that lives on one line.
 *
 * The declaration form is chosen from a per-language table (`let`/`const`/
 * `:=`/bare), so languages that need an explicit type to declare a local
 * (Java, C, C++) return `result: "unsupported"`.
 *
 * Shares the staged-fs preview/atomic-apply contract of the other
 * structured refactorings: pass `dry_run: true` for a unified-diff
 * preview, `session_id` to stage into a caller-owned session.
 *
 * @effects: [host, fs]
 * @errors: [backend]
 * @api_stability: experimental
 * @example: edit_extract_variable({path: "src/lib.rs", range: {start_line: 4, start_col: 13, end_line: 4, end_col: 24}, new_name: "total"})
 */
pub fn edit_extract_variable(params) {
  const p = params ?? {}
  const language = __refactor_detect_language(p)
  const syntax = __refactor_var_decl_syntax(language)
  if syntax == nil {
    return __refactor_unsupported(
      "extract_variable",
      language,
      "extract_variable has no local-declaration form for language `" + language + "`",
    )
  }
  const {path = "", new_name = "", range = {}} = p ?? {}
  if path == "" || new_name == "" {
    return __refactor_invalid("extract_variable", language, "`path` and `new_name` are required")
  }
  const start_line = range?.start_line
  const {end_line = start_line, start_col = 0} = range ?? {}
  const end_col = range?.end_col
  if start_line == nil || end_col == nil {
    return __refactor_invalid(
      "extract_variable",
      language,
      "`range` must carry start_line, start_col, end_line, end_col",
    )
  }
  if end_line != start_line {
    return __refactor_unsupported(
      "extract_variable",
      language,
      "multi-line ranges are not supported; select an expression on one line",
    )
  }
  const read = hostlib_fs_read_text({path: path, session_id: p?.session_id})
  const content = read?.content ?? ""
  const lines = split(content, "\n")
  if start_line < 0 || start_line >= len(lines) {
    return __refactor_invalid("extract_variable", language, "start_line is outside the file")
  }
  const line = lines[start_line]
  const expr = line.substring(start_col, end_col)
  if trim(expr) == "" {
    return __refactor_invalid("extract_variable", language, "selected range is empty or whitespace")
  }
  const indent = __refactor_leading_ws(line)
  const decl = indent + syntax.kw + new_name + syntax.assign + trim(expr) + syntax.term
  const replaced_line = line.substring(0, start_col) + new_name + line.substring(end_col)
  let new_lines = if start_line > 0 {
    lines[:start_line]
  } else {
    []
  }
  new_lines = new_lines + [decl, replaced_line]
  if start_line + 1 < len(lines) {
    new_lines = new_lines + lines[start_line + 1:]
  }
  const after = join(new_lines, "\n")
  return __refactor_run("extract_variable", language, [{kind: "content", path: path, after: after}], p, [])
}

/**
 * --- Signature-family + return-type refactorings ----------------------------
 *
 * Tree-sitter node/field names per language were verified empirically: the
 * `parameters` field holds the param-list node (whose node type varies:
 * `parameters` / `formal_parameters` / `parameter_list`); the return-type
 * field is `return_type` (Rust/Python/TS) or `result` (Go); call argument
 * lists are the `arguments` / `argument_list` node under a call node's
 * `function` field. Replacing a params or args node replaces the enclosing
 * parens too, so replacements re-add them. TS return-type nodes include the
 * leading `: `, so `ret_prefix` re-adds it.
 */
fn __refactor_lang_spec(language) {
  const table = {
    go: {
      fn_node: "function_declaration",
      params_node: "parameter_list",
      ret_field: "result",
      ret_node: "(_)",
      ret_prefix: "",
      call_node: "call_expression",
      args_node: "argument_list",
    },
    javascript: {
      fn_node: "function_declaration",
      params_node: "formal_parameters",
      ret_field: nil,
      ret_node: nil,
      ret_prefix: "",
      call_node: "call_expression",
      args_node: "arguments",
    },
    jsx: {
      fn_node: "function_declaration",
      params_node: "formal_parameters",
      ret_field: nil,
      ret_node: nil,
      ret_prefix: "",
      call_node: "call_expression",
      args_node: "arguments",
    },
    python: {
      fn_node: "function_definition",
      params_node: "parameters",
      ret_field: "return_type",
      ret_node: "(type)",
      ret_prefix: "",
      call_node: "call",
      args_node: "argument_list",
    },
    rust: {
      fn_node: "function_item",
      params_node: "parameters",
      ret_field: "return_type",
      ret_node: "(_)",
      ret_prefix: "",
      call_node: "call_expression",
      args_node: "arguments",
    },
    tsx: {
      fn_node: "function_declaration",
      params_node: "formal_parameters",
      ret_field: "return_type",
      ret_node: "(type_annotation)",
      ret_prefix: ": ",
      call_node: "call_expression",
      args_node: "arguments",
    },
    typescript: {
      fn_node: "function_declaration",
      params_node: "formal_parameters",
      ret_field: "return_type",
      ret_node: "(type_annotation)",
      ret_prefix: ": ",
      call_node: "call_expression",
      args_node: "arguments",
    },
  }
  return table.get(language, nil)
}

fn __refactor_symbol_name(p) {
  const s = p?.symbol
  if type_of(s) == "dict" {
    return s?.name ?? ""
  }
  if type_of(s) == "string" {
    return s
  }
  return p?.name ?? ""
}

fn __refactor_paren_inner(s) {
  const raw = s ?? ""
  if len(raw) < 2 {
    return ""
  }
  return raw.substring(1, len(raw) - 1)
}

fn __refactor_split_top_level(text) {
  let segs = []
  let depth = 0
  let quote = ""
  let cur = ""
  for c in (text ?? "").chars() {
    if quote != "" {
      cur = cur + c
      if c == quote {
        quote = ""
      }
    } else if c == "\"" || c == "'" {
      quote = c
      cur = cur + c
    } else if c == "(" || c == "[" || c == "{" {
      depth = depth + 1
      cur = cur + c
    } else if c == ")" || c == "]" || c == "}" {
      depth = depth - 1
      cur = cur + c
    } else if c == "," && depth == 0 {
      if trim(cur) != "" {
        segs = segs + [trim(cur)]
      }
      cur = ""
    } else {
      cur = cur + c
    }
  }
  if trim(cur) != "" {
    segs = segs + [trim(cur)]
  }
  return segs
}

fn __refactor_insert_at(list, index, item) {
  const n = len(list)
  const idx = max(0, min(index, n))
  const head = if idx > 0 {
    list[:idx]
  } else {
    []
  }
  const tail = if idx < n {
    list[idx:]
  } else {
    []
  }
  return head + [item] + tail
}

fn __refactor_def_query(spec, fn_name) {
  return "(" + spec.fn_node + " name: (identifier) @__n parameters: (" + spec.params_node
    + ") @target (#eq? @__n \""
    + fn_name
    + "\"))"
}

fn __refactor_call_query(spec, fn_name) {
  return "(" + spec.call_node + " function: (identifier) @__f arguments: (" + spec.args_node
    + ") @target (#eq? @__f \""
    + fn_name
    + "\"))"
}

fn __refactor_probe(query, path, session_id) {
  return edit_apply_node(
    {
      path: path,
      query: query,
      replacement: "",
      select: "all",
      dry_run: true,
      validate: false,
      session_id: session_id,
    },
  )
}

fn __refactor_read_def_params(spec, path, fn_name, session_id) {
  const r = edit_apply_node(
    {
      path: path,
      query: __refactor_def_query(spec, fn_name),
      replacement: "",
      select: "unique",
      dry_run: true,
      validate: false,
      session_id: session_id,
    },
  )
  if r.result != "applied" {
    return {ok: false, result: r.result, inner: "", params: []}
  }
  const original = if len(r.edits) > 0 {
    r.edits[0].original
  } else {
    "()"
  }
  const inner = __refactor_paren_inner(original)
  return {ok: true, result: "applied", inner: inner, params: __refactor_split_top_level(inner)}
}

fn __refactor_call_sites(spec, path, fn_name, session_id) {
  const r = __refactor_probe(__refactor_call_query(spec, fn_name), path, session_id)
  if r.result == "applied" {
    return {count: r.match_count, originals: r.edits.map({ e -> e.original })}
  }
  return {count: 0, originals: []}
}

fn __refactor_call_op(spec, path, fn_name, nth, new_args) {
  return {
    kind: "node_apply",
    path: path,
    params: {
      path: path,
      query: __refactor_call_query(spec, fn_name),
      replacement: "(" + new_args + ")",
      select: "nth",
      nth: nth,
    },
  }
}

fn __refactor_def_op(spec, path, fn_name, new_inner) {
  return {
    kind: "node_apply",
    path: path,
    params: {
      path: path,
      query: __refactor_def_query(spec, fn_name),
      replacement: "(" + new_inner + ")",
      select: "unique",
    },
  }
}

/**
 * Replace a function's entire parameter list with `new_params` (the inner
 * text, without the enclosing parens), updating call sites per
 * `callsite_strategy`:
 *
 * - `"strict"` (default) — refuse with `result: "conflict"` if any call
 *   site exists, since an arbitrary signature change cannot be reconciled
 *   automatically.
 * - `"default_fill"` — append `fill` (required) to every call site's
 *   argument list, for the common "added a trailing parameter" case.
 * - `"manual"` — rewrite the definition only and report the untouched call
 *   sites in `warnings` for the agent to fix.
 *
 * Languages: rust, python, typescript, tsx, javascript, jsx, go.
 *
 * @effects: [host, fs]
 * @errors: [backend]
 * @api_stability: experimental
 * @example: edit_change_signature({path: "src/lib.rs", symbol: {name: "add"}, new_params: "a: i64, b: i64, c: i64", callsite_strategy: "strict"})
 */
pub fn edit_change_signature(params) {
  const p = params ?? {}
  const language = __refactor_detect_language(p)
  const spec = __refactor_lang_spec(language)
  if spec == nil {
    return __refactor_unsupported(
      "change_signature",
      language,
      "no signature grammar for language `" + language + "`",
    )
  }
  const path = p?.path ?? ""
  const fn_name = __refactor_symbol_name(p)
  const new_params = p?.new_params
  if path == "" || fn_name == "" || new_params == nil {
    return __refactor_invalid(
      "change_signature",
      language,
      "`path`, `symbol`/`name`, and `new_params` are required",
    )
  }
  const strategy = p?.callsite_strategy ?? "strict"
  const probe_session = if p?.dry_run ?? false {
    nil
  } else {
    p?.session_id
  }
  const def_op = __refactor_def_op(spec, path, fn_name, new_params)
  const calls = __refactor_call_sites(spec, path, fn_name, probe_session)
  if strategy == "strict" {
    if calls.count > 0 {
      return __refactor_conflict(
        "change_signature",
        language,
        [
          {
            code: "has_call_sites",
            message: "change_signature(strict) refuses: " + to_string(calls.count)
              + " call site(s) would be left inconsistent; use callsite_strategy `default_fill`/`manual`, or reorder_parameters/add_parameter",
            path: path,
            call_count: calls.count,
          },
        ],
      )
    }
    return __refactor_run("change_signature", language, [def_op], p, [])
  }
  if strategy == "manual" {
    const warns = if calls.count > 0 {
      [
        {
          code: "call_sites_unchanged",
          message: to_string(calls.count) + " call site(s) left for manual update",
        },
      ]
    } else {
      []
    }
    return __refactor_run("change_signature", language, [def_op], p, warns)
  }
  if strategy == "default_fill" {
    const fill = p?.fill
    if fill == nil {
      return __refactor_invalid(
        "change_signature",
        language,
        "callsite_strategy `default_fill` requires `fill` (text appended to each call's arguments)",
      )
    }
    let ops = [def_op]
    let i = 0
    while i < calls.count {
      const inner = __refactor_paren_inner(calls.originals[i])
      const new_args = if trim(inner) == "" {
        fill
      } else {
        inner + ", " + fill
      }
      ops = ops + [__refactor_call_op(spec, path, fn_name, i + 1, new_args)]
      i = i + 1
    }
    return __refactor_run("change_signature", language, ops, p, [])
  }
  return __refactor_unsupported(
    "change_signature",
    language,
    "callsite_strategy `" + strategy + "` is not supported (use strict | default_fill | manual)",
  )
}

/**
 * Insert one `param` into a function's parameter list at `index` (0-based;
 * default appends), then reconcile call sites per `callsite_strategy`:
 *
 * - `"default_fill"` (default) — insert `default` (required) at the same
 *   index in every call's argument list.
 * - `"strict"` — refuse with `result: "conflict"` when call sites exist.
 *
 * `param` is the full declaration text (e.g. `"c: i64"`, `"c"`, `"c int"`).
 * Languages: rust, python, typescript, tsx, javascript, jsx, go.
 *
 * @effects: [host, fs]
 * @errors: [backend]
 * @api_stability: experimental
 * @example: edit_add_parameter({path: "src/lib.rs", symbol: {name: "add"}, param: "c: i64", default: "0"})
 */
pub fn edit_add_parameter(params) {
  const p = params ?? {}
  const language = __refactor_detect_language(p)
  const spec = __refactor_lang_spec(language)
  if spec == nil {
    return __refactor_unsupported(
      "add_parameter",
      language,
      "no signature grammar for language `" + language + "`",
    )
  }
  const path = p?.path ?? ""
  const fn_name = __refactor_symbol_name(p)
  const param = p?.param
  if path == "" || fn_name == "" || param == nil || param == "" {
    return __refactor_invalid("add_parameter", language, "`path`, `symbol`/`name`, and `param` are required")
  }
  const probe_session = if p?.dry_run ?? false {
    nil
  } else {
    p?.session_id
  }
  const def = __refactor_read_def_params(spec, path, fn_name, probe_session)
  if !def.ok {
    return __refactor_conflict(
      "add_parameter",
      language,
      [{code: def.result, message: "could not locate definition of `" + fn_name + "`", path: path}],
    )
  }
  const index = p?.index ?? len(def.params)
  const new_inner = join(__refactor_insert_at(def.params, index, param), ", ")
  const def_op = __refactor_def_op(spec, path, fn_name, new_inner)
  const calls = __refactor_call_sites(spec, path, fn_name, probe_session)
  if calls.count == 0 {
    return __refactor_run("add_parameter", language, [def_op], p, [])
  }
  const strategy = p?.callsite_strategy ?? "default_fill"
  if strategy == "strict" {
    return __refactor_conflict(
      "add_parameter",
      language,
      [
        {
          code: "has_call_sites",
          message: to_string(calls.count)
            + " call site(s); pass callsite_strategy `default_fill` with a `default` value",
          path: path,
          call_count: calls.count,
        },
      ],
    )
  }
  const default_val = p?.default
  if default_val == nil {
    return __refactor_invalid(
      "add_parameter",
      language,
      "callsite_strategy `default_fill` requires `default` (value inserted at each call site)",
    )
  }
  let ops = [def_op]
  let i = 0
  while i < calls.count {
    const arg_list = __refactor_split_top_level(__refactor_paren_inner(calls.originals[i]))
    const new_args = join(__refactor_insert_at(arg_list, index, default_val), ", ")
    ops = ops + [__refactor_call_op(spec, path, fn_name, i + 1, new_args)]
    i = i + 1
  }
  return __refactor_run("add_parameter", language, ops, p, [])
}

/**
 * Permute a function's parameters by `order` (a list of 0-based source
 * indices that is a permutation of the current parameters) and apply the
 * same permutation to every call site's arguments. A call whose argument
 * count differs from the parameter count (variadics, omitted defaults)
 * is reported as `result: "conflict"` rather than reordered blindly.
 *
 * Languages: rust, python, typescript, tsx, javascript, jsx, go.
 *
 * @effects: [host, fs]
 * @errors: [backend]
 * @api_stability: experimental
 * @example: edit_reorder_parameters({path: "src/lib.rs", symbol: {name: "add"}, order: [1, 0]})
 */
pub fn edit_reorder_parameters(params) {
  const p = params ?? {}
  const language = __refactor_detect_language(p)
  const spec = __refactor_lang_spec(language)
  if spec == nil {
    return __refactor_unsupported(
      "reorder_parameters",
      language,
      "no signature grammar for language `" + language + "`",
    )
  }
  const path = p?.path ?? ""
  const fn_name = __refactor_symbol_name(p)
  const order = p?.order
  if path == "" || fn_name == "" || order == nil {
    return __refactor_invalid(
      "reorder_parameters",
      language,
      "`path`, `symbol`/`name`, and `order` are required",
    )
  }
  const probe_session = if p?.dry_run ?? false {
    nil
  } else {
    p?.session_id
  }
  const def = __refactor_read_def_params(spec, path, fn_name, probe_session)
  if !def.ok {
    return __refactor_conflict(
      "reorder_parameters",
      language,
      [{code: def.result, message: "could not locate definition of `" + fn_name + "`", path: path}],
    )
  }
  const arity = len(def.params)
  if len(order) != arity {
    return __refactor_invalid(
      "reorder_parameters",
      language,
      "`order` must be a permutation of the " + to_string(arity) + " current parameter(s)",
    )
  }
  for oi in order {
    if oi < 0 || oi >= arity {
      return __refactor_invalid(
        "reorder_parameters",
        language,
        "`order` index " + to_string(oi) + " is out of range",
      )
    }
  }
  const new_inner = join(order.map({ oi -> def.params[oi] }), ", ")
  let ops = [__refactor_def_op(spec, path, fn_name, new_inner)]
  const calls = __refactor_call_sites(spec, path, fn_name, probe_session)
  let i = 0
  while i < calls.count {
    const arg_list = __refactor_split_top_level(__refactor_paren_inner(calls.originals[i]))
    if len(arg_list) != arity {
      return __refactor_conflict(
        "reorder_parameters",
        language,
        [
          {
            code: "arity_mismatch",
            message: "call site #" + to_string(i + 1) + " has " + to_string(len(arg_list))
              + " argument(s) but the signature has "
              + to_string(arity)
              + "; cannot reorder safely",
            path: path,
          },
        ],
      )
    }
    const new_args = join(order.map({ oi -> arg_list[oi] }), ", ")
    ops = ops + [__refactor_call_op(spec, path, fn_name, i + 1, new_args)]
    i = i + 1
  }
  return __refactor_run("reorder_parameters", language, ops, p, [])
}

/**
 * Replace a function's declared return type with `new_type`. Languages
 * that carry a return-type slot are supported (rust, python, typescript,
 * tsx, go); JavaScript/JSX have no annotation and return
 * `result: "unsupported"`. A function with no existing return-type
 * annotation surfaces as `result: "conflict"` (nothing to replace).
 *
 * Caller verification is currently syntactic only: the rewritten file is
 * re-parsed (tree-sitter) but callers are not type-checked. The count of
 * call sites is surfaced in `warnings` so the agent knows what to review.
 *
 * @effects: [host, fs]
 * @errors: [backend]
 * @api_stability: experimental
 * @example: edit_change_return_type({path: "src/lib.rs", symbol: {name: "add"}, new_type: "i32"})
 */
pub fn edit_change_return_type(params) {
  const p = params ?? {}
  const language = __refactor_detect_language(p)
  const spec = __refactor_lang_spec(language)
  if spec == nil || spec.ret_field == nil {
    return __refactor_unsupported(
      "change_return_type",
      language,
      "language `" + language + "` has no return-type annotation to rewrite",
    )
  }
  const path = p?.path ?? ""
  const fn_name = __refactor_symbol_name(p)
  const new_type = p?.new_type
  if path == "" || fn_name == "" || new_type == nil || new_type == "" {
    return __refactor_invalid(
      "change_return_type",
      language,
      "`path`, `symbol`/`name`, and `new_type` are required",
    )
  }
  const probe_session = if p?.dry_run ?? false {
    nil
  } else {
    p?.session_id
  }
  const query = "(" + spec.fn_node + " name: (identifier) @__n " + spec.ret_field + ": " + spec.ret_node
    + " @target (#eq? @__n \""
    + fn_name
    + "\"))"
  const op = {
    kind: "node_apply",
    path: path,
    params: {path: path, query: query, replacement: spec.ret_prefix + new_type, select: "unique"},
  }
  const calls = __refactor_call_sites(spec, path, fn_name, probe_session)
  const warns = if calls.count > 0 {
    [
      {
        code: "callers_not_type_checked",
        message: to_string(calls.count)
          + " call site(s) were re-parsed but not type-checked against the new return type",
      },
    ]
  } else {
    []
  }
  return __refactor_run("change_return_type", language, [op], p, warns)
}

/** --- extract_function ------------------------------------------------------- */
fn __refactor_fn_synth_kind(language) {
  const table = {
    javascript: "brace",
    jsx: "brace",
    python: "python",
    ruby: "ruby",
    tsx: "brace",
    typescript: "brace",
  }
  return table.get(language, nil)
}

fn __refactor_min_indent(lines) {
  let smallest = -1
  for line in lines {
    if trim(line ?? "") == "" {
      continue
    }
    const body = regex_replace("^[ \\t]+", "", line)
    const n = len(line) - len(body)
    if smallest == -1 || n < smallest {
      smallest = n
    }
  }
  if smallest == -1 {
    return 0
  }
  return smallest
}

fn __refactor_strip_n(line, n) {
  const raw = line ?? ""
  if len(raw) >= n {
    return raw.substring(n)
  }
  return ""
}

fn __refactor_indent_lines(lines, prefix) {
  return lines
    .map(
    { l ->
      if trim(l) == "" {
        ""
      } else {
        prefix + l
      }
    },
  )
}

fn __refactor_undef_names(src, language) {
  const r = hostlib_ast_undefined_names({content: src, language: language})
  if !(r?.supported ?? false) {
    return []
  }
  let names = []
  for d in r?.diagnostics ?? [] {
    if (d?.kind ?? "identifier") == "identifier" && !__refactor_member(names, d.name) {
      names = names + [d.name]
    }
  }
  return names
}

fn __refactor_enclosing_fn(symbols, start_line, end_line) {
  let best = nil
  for sym in symbols ?? [] {
    if sym.kind != "function" || sym.container != nil {
      continue
    }
    if sym.start_row <= start_line && sym.end_row >= end_line {
      if best == nil || sym.end_row - sym.start_row < best.end_row - best.start_row {
        best = sym
      }
    }
  }
  return best
}

fn __refactor_synth_fn(kind, name, params, body_lines) {
  const signature = name + "(" + join(params, ", ") + ")"
  if kind == "python" {
    return ["def " + signature + ":"] + __refactor_indent_lines(body_lines, "    ")
  }
  if kind == "ruby" {
    return ["def " + signature] + __refactor_indent_lines(body_lines, "  ") + ["end"]
  }
  return ["function " + signature + " {"] + __refactor_indent_lines(body_lines, "  ") + ["}"]
}

fn __refactor_wrap_probe(kind, body_lines) {
  if kind == "python" {
    return join(["def __harn_probe__():"] + __refactor_indent_lines(body_lines, "    "), "\n")
  }
  if kind == "ruby" {
    return join(["def __harn_probe__"] + __refactor_indent_lines(body_lines, "  ") + ["end"], "\n")
  }
  return join(["function __harn_probe__() {"] + __refactor_indent_lines(body_lines, "  ") + ["}"], "\n")
}

/**
 * Extract a contiguous range of statements (`range`{start_line, end_line},
 * 0-based inclusive) out of an enclosing top-level function into a new
 * function `new_name`, replacing the range with a call to it.
 *
 * Captured free variables become parameters: the selection's free names
 * (computed via `hostlib_ast_undefined_names` over the block) minus the
 * enclosing function's free names (so module-level / imported names stay
 * referenced, not parameterized). Pass `params_order` to fix the order.
 *
 * The new definition is placed at module scope after the enclosing
 * function (`target_scope: "after"`, default) or before it
 * (`target_scope: "before"`). Only top-level functions are supported as
 * the enclosing scope (methods/nested return `result: "unsupported"`),
 * which keeps the placement and indentation correct.
 *
 * v1 produces a `void` function: if the block computes values used after
 * the selection, the generated call will not thread them back — adjust the
 * call by hand or select a self-contained block. Languages: python,
 * javascript, jsx, typescript, tsx, ruby (the set with both capture
 * analysis and a parameter form that needs no inferred types).
 *
 * @effects: [host, fs]
 * @errors: [backend]
 * @api_stability: experimental
 * @example: edit_extract_function({path: "app.py", range: {start_line: 3, end_line: 5}, new_name: "summarize"})
 */
pub fn edit_extract_function(params) {
  const p = params ?? {}
  const language = __refactor_detect_language(p)
  const kind = __refactor_fn_synth_kind(language)
  if kind == nil {
    return __refactor_unsupported(
      "extract_function",
      language,
      "extract_function supports python/javascript/jsx/typescript/tsx/ruby",
    )
  }
  const {path = "", new_name = "", range = {}} = p ?? {}
  const start_line = range?.start_line
  const end_line = range?.end_line ?? start_line
  if path == "" || new_name == "" || start_line == nil || end_line == nil {
    return __refactor_invalid(
      "extract_function",
      language,
      "`path`, `new_name`, and `range`{start_line, end_line} are required",
    )
  }
  const probe_session = if p?.dry_run ?? false {
    nil
  } else {
    p?.session_id
  }
  const read = hostlib_fs_read_text({path: path, session_id: probe_session})
  const content = read?.content ?? ""
  const lines = split(content, "\n")
  if start_line < 0 || end_line >= len(lines) || end_line < start_line {
    return __refactor_invalid("extract_function", language, "`range` is outside the file")
  }
  const block_lines = lines[start_line:end_line + 1]
  const dedent = __refactor_min_indent(block_lines)
  const dedented = block_lines.map({ l -> __refactor_strip_n(l, dedent) })
  const symbols = hostlib_ast_symbols({path: path, language: language})?.symbols ?? []
  const enclosing = __refactor_enclosing_fn(symbols, start_line, end_line)
  if enclosing == nil {
    return __refactor_result(
      "extract_function",
      language,
      {
        result: "unsupported",
        details: "selected range is not inside a top-level function",
        errors: [{code: "no_enclosing_function", message: "range is not inside a top-level function"}],
      },
    )
  }
  const block_undef = __refactor_undef_names(__refactor_wrap_probe(kind, dedented), language)
  const enclosing_lines = lines[enclosing.start_row:enclosing.end_row + 1]
  const enclosing_dedent = __refactor_min_indent(enclosing_lines)
  const enclosing_src = join(enclosing_lines.map({ l -> __refactor_strip_n(l, enclosing_dedent) }), "\n")
  const enclosing_undef = __refactor_undef_names(enclosing_src, language)
  let captures = []
  for nm in block_undef {
    if !__refactor_member(enclosing_undef, nm) && nm != new_name && !__refactor_member(captures, nm) {
      captures = captures + [nm]
    }
  }
  const final_params = p?.params_order ?? captures
  const def_lines = __refactor_synth_fn(kind, new_name, final_params, dedented)
  const orig_indent = __refactor_leading_ws(lines[start_line])
  const term = if kind == "brace" {
    ";"
  } else {
    ""
  }
  const call_line = orig_indent + new_name + "(" + join(final_params, ", ") + ")" + term
  const head = if start_line > 0 {
    lines[:start_line]
  } else {
    []
  }
  const tail = if end_line + 1 < len(lines) {
    lines[end_line + 1:]
  } else {
    []
  }
  const replaced = head + [call_line] + tail
  const target_scope = p?.target_scope ?? "after"
  const new_lines = if target_scope == "before" {
    const pre = if enclosing.start_row > 0 {
      replaced[:enclosing.start_row]
    } else {
      []
    }
    pre + def_lines + [""] + replaced[enclosing.start_row:]
  } else {
    const insert_idx = enclosing.end_row + (1 - (end_line - start_line + 1)) + 1
    const suffix = if insert_idx < len(replaced) {
      replaced[insert_idx:]
    } else {
      []
    }
    replaced[:insert_idx] + [""] + def_lines + suffix
  }
  const after = join(new_lines, "\n")
  return __refactor_run("extract_function", language, [{kind: "content", path: path, after: after}], p, [])
}

/** --- inline + move_decl ----------------------------------------------------- */
fn __refactor_inline_kind(language) {
  if language == "python" {
    return "python"
  }
  return "brace"
}

fn __refactor_inline_expr(body_text, kind) {
  const lines = split(body_text ?? "", "\n")
  // `hostlib_ast_function_body` returns the indented body only for Python,
  // but the whole `fn …{ … }` text for brace languages — so brace bodies
  // drop the signature/opening-brace line and the closing-brace line.
  const inner = if kind == "python" {
    lines
  } else if len(lines) >= 3 {
    lines[1:len(lines) - 1]
  } else {
    []
  }
  let body = []
  for l in inner {
    if trim(l) != "" {
      body = body + [trim(l)]
    }
  }
  if len(body) != 1 {
    return nil
  }
  const stmt = body[0]
  if !stmt.starts_with("return ") {
    return nil
  }
  let expr = trim(stmt.substring(7))
  if expr.ends_with(";") {
    expr = trim(expr.substring(0, len(expr) - 1))
  }
  if expr == "" {
    return nil
  }
  return expr
}

/**
 * Inline a zero-parameter function whose body is a single
 * `return <expr>` statement: replace every `name()` call with
 * `(<expr>)` and delete the definition. Functions with parameters, or
 * with anything other than one return statement, return
 * `result: "unsupported"` (the safe, precedence-correct subset — inlining
 * parameterized bodies needs argument substitution that is left to a
 * future iteration).
 *
 * Languages: rust, python, typescript, tsx, javascript, jsx, go.
 *
 * @effects: [host, fs]
 * @errors: [backend]
 * @api_stability: experimental
 * @example: edit_inline({path: "src/lib.rs", symbol: {name: "answer"}})
 */
pub fn edit_inline(params) {
  const p = params ?? {}
  const language = __refactor_detect_language(p)
  const spec = __refactor_lang_spec(language)
  if spec == nil {
    return __refactor_unsupported("inline", language, "no signature grammar for language `" + language + "`")
  }
  const path = p?.path ?? ""
  const fn_name = __refactor_symbol_name(p)
  if path == "" || fn_name == "" {
    return __refactor_invalid("inline", language, "`path` and `symbol`/`name` are required")
  }
  const probe_session = if p?.dry_run ?? false {
    nil
  } else {
    p?.session_id
  }
  const content = hostlib_fs_read_text({path: path, session_id: probe_session})?.content ?? ""
  const fb = hostlib_ast_function_body({source: content, language: language, function_name: fn_name})
  if !(fb?.found ?? false) {
    return __refactor_conflict(
      "inline",
      language,
      [{code: "symbol_not_found", message: "no function `" + fn_name + "` found", path: path}],
    )
  }
  const def = __refactor_read_def_params(spec, path, fn_name, probe_session)
  if def.ok && len(def.params) != 0 {
    return __refactor_unsupported(
      "inline",
      language,
      "inline supports zero-parameter functions only (argument substitution is not yet implemented)",
    )
  }
  const expr = __refactor_inline_expr(fb.body_text, __refactor_inline_kind(language))
  if expr == nil {
    return __refactor_unsupported(
      "inline",
      language,
      "inline requires a body of exactly one `return <expr>` statement",
    )
  }
  const calls = __refactor_call_sites(spec, path, fn_name, probe_session)
  let i = 0
  while i < calls.count {
    if trim(__refactor_paren_inner(calls.originals[i])) != "" {
      return __refactor_conflict(
        "inline",
        language,
        [
          {
            code: "call_has_arguments",
            message: "call site #" + to_string(i + 1) + " passes arguments to a zero-parameter function",
            path: path,
          },
        ],
      )
    }
    i = i + 1
  }
  const call_target = "((" + spec.call_node + " function: (identifier) @__f (#eq? @__f \"" + fn_name + "\")) @target)"
  const def_target = "((" + spec.fn_node + " name: (identifier) @__n (#eq? @__n \"" + fn_name + "\")) @target)"
  let ops = []
  if calls.count > 0 {
    ops = ops
      + [
      {
        kind: "node_apply",
        path: path,
        params: {path: path, query: call_target, replacement: "(" + expr + ")", select: "all"},
      },
    ]
  }
  ops = ops
    + [
    {
      kind: "node_apply",
      path: path,
      params: {path: path, query: def_target, replacement: "", select: "unique"},
    },
  ]
  return __refactor_run("inline", language, ops, p, [])
}

/**
 * Move a top-level declaration `symbol` out of its source `path` and into
 * `target_file`, deleting it from the source. `target_position` is `"end"`
 * (default, appended) or `"start"` (prepended). Both files are written in
 * one atomic staged-fs transaction.
 *
 * The declaration text is lifted with `hostlib_ast_symbol_extract` and
 * removed with `hostlib_ast_symbol_delete`, so language support follows
 * those builtins (`result: "unsupported"` otherwise). Cross-file import /
 * export references are NOT rewritten yet — that is reported in
 * `warnings`; combine with `edit_rename_symbol` for re-export safety.
 *
 * @effects: [host, fs]
 * @errors: [backend]
 * @api_stability: experimental
 * @example: edit_move_decl({path: "src/a.rs", symbol: {name: "helper"}, target_file: "src/b.rs"})
 */
pub fn edit_move_decl(params) {
  const p = params ?? {}
  const language = __refactor_detect_language(p)
  const path = p?.path ?? ""
  const target_path = p?.target_file
  const fn_name = __refactor_symbol_name(p)
  if path == "" || target_path == nil || target_path == "" || fn_name == "" {
    return __refactor_invalid("move_decl", language, "`path`, `symbol`/`name`, and `target_file` are required")
  }
  const probe_session = if p?.dry_run ?? false {
    nil
  } else {
    p?.session_id
  }
  const src_content = hostlib_fs_read_text({path: path, session_id: probe_session})?.content ?? ""
  const extracted = hostlib_ast_symbol_extract({symbol_name: fn_name, source: src_content, language: language})
  if extracted.result == "unsupported_language" {
    return __refactor_unsupported(
      "move_decl",
      language,
      "symbol extraction is unsupported for language `" + language + "`",
    )
  }
  if extracted.result != "extracted" {
    return __refactor_conflict(
      "move_decl",
      language,
      [{code: extracted.result, message: "cannot extract `" + fn_name + "` from " + path, path: path}],
    )
  }
  const deleted = hostlib_ast_symbol_delete({symbol_name: fn_name, source: src_content, language: language})
  if deleted.result != "removed" {
    return __refactor_conflict(
      "move_decl",
      language,
      [{code: deleted.result, message: "cannot remove `" + fn_name + "` from " + path, path: path}],
    )
  }
  const moved = extracted.text
  const target_content = hostlib_fs_read_text({path: target_path, session_id: probe_session})?.content ?? ""
  const position = p?.target_position ?? "end"
  const new_target = if position == "start" {
    moved + "\n\n" + target_content
  } else if trim(target_content) == "" {
    moved + "\n"
  } else if target_content.ends_with("\n") {
    target_content + "\n" + moved + "\n"
  } else {
    target_content + "\n\n" + moved + "\n"
  }
  const warns = [
    {
      code: "imports_not_rewritten",
      message: "moved `" + fn_name
        + "`; cross-file import/export references may need manual adjustment (pair with edit_rename_symbol)",
    },
  ]
  return __refactor_run(
    "move_decl",
    language,
    [
      {kind: "content", path: path, after: deleted.source},
      {kind: "content", path: target_path, after: new_target},
    ],
    p,
    warns,
  )
}