@@ -80,8 +80,8 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
80
80
in
81
81
print_endline (Protocol. stringifySignatureHelp result)
82
82
83
- let codeAction ~path ~pos ~currentFile ~debug =
84
- Xform. extractCodeActions ~path ~pos ~current File ~debug
83
+ let codeAction ~path ~startPos ~ endPos ~currentFile ~debug =
84
+ Xform. extractCodeActions ~path ~start Pos ~end Pos ~current File ~debug
85
85
|> CodeActions. stringifyCodeActions |> print_endline
86
86
87
87
let definition ~path ~pos ~debug =
@@ -268,7 +268,9 @@ let test ~path =
268
268
let lines = text |> String. split_on_char '\n' in
269
269
let processLine i line =
270
270
let createCurrentFile () =
271
- let currentFile, cout = Filename. open_temp_file " def" " txt" in
271
+ let currentFile, cout =
272
+ Filename. open_temp_file " def" (" txt." ^ Filename. extension path)
273
+ in
272
274
let removeLineComment l =
273
275
let len = String. length l in
274
276
let rec loop i =
@@ -372,13 +374,24 @@ let test ~path =
372
374
^ string_of_int col);
373
375
typeDefinition ~path ~pos: (line, col) ~debug: true
374
376
| "xfm" ->
375
- print_endline
376
- (" Xform " ^ path ^ " " ^ string_of_int line ^ " :"
377
- ^ string_of_int col);
377
+ let currentFile = createCurrentFile () in
378
+ (* +2 is to ensure that the character ^ points to is what's considered the end of the selection. *)
379
+ let endCol = col + try String. index rest '^' + 2 with _ -> 0 in
380
+ let endPos = (line, endCol) in
381
+ let startPos = (line, col) in
382
+ if startPos = endPos then
383
+ print_endline
384
+ (" Xform " ^ path ^ " " ^ string_of_int line ^ " :"
385
+ ^ string_of_int col)
386
+ else
387
+ print_endline
388
+ (" Xform " ^ path ^ " start: " ^ Pos. toString startPos
389
+ ^ " , end: " ^ Pos. toString endPos);
378
390
let codeActions =
379
- Xform. extractCodeActions ~path ~pos: (line, col) ~current File:path
391
+ Xform. extractCodeActions ~path ~start Pos ~end Pos ~current File
380
392
~debug: true
381
393
in
394
+ Sys. remove currentFile;
382
395
codeActions
383
396
|> List. iter (fun {Protocol. title; edit = {documentChanges} } ->
384
397
Printf. printf " Hit: %s\n " title;
0 commit comments