Skip to content

Commit 443f5d1

Browse files
committed
Rename completion modules.
1 parent 1d09ab3 commit 443f5d1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

analysis/src/Commands.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let completion ~debug ~path ~pos ~currentFile ~forHover =
66
| Some text ->
77
let completions =
88
match
9-
Completion.completionWithParser ~debug ~path ~posCursor:pos
9+
CompletionFrontEnd.completionWithParser ~debug ~path ~posCursor:pos
1010
~currentFile ~text
1111
with
1212
| None -> []
@@ -21,10 +21,10 @@ let completion ~debug ~path ~pos ~currentFile ~forHover =
2121
let env = SharedTypes.QueryEnv.fromFile full.file in
2222
let package = full.package in
2323
completable
24-
|> NewCompletions.processCompletable ~debug ~package ~pos ~scope
24+
|> CompletionBackEnd.processCompletable ~debug ~package ~pos ~scope
2525
~env ~forHover)
2626
in
27-
completions |> List.map NewCompletions.completionToItem
27+
completions |> List.map CompletionBackEnd.completionToItem
2828
in
2929
print_endline
3030
(result |> List.map Protocol.stringifyCompletionItem |> Protocol.array)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)