Skip to content

Commit 45fa812

Browse files
committed
fix
1 parent 843cac9 commit 45fa812

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

analysis/src/Commands.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ let test ~path =
385385
Sys.remove currentFile
386386
| "crm" ->
387387
print_endline
388-
("Complete Revamped " ^ path ^ " " ^ string_of_int line ^ ":"
388+
("Complete " ^ path ^ " " ^ string_of_int line ^ ":"
389389
^ string_of_int col);
390390
let currentFile = createCurrentFile () in
391391
completionRevamped ~debug:true ~path ~pos:(line, col) ~currentFile;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// == TEST: Record field completion in nested record
22
let x = TestTypeDefs.nestedTestRecord.
3-
// ^com
3+
// ^crm
44

55
// == TEST: Record field completion in nested record, another level
66
let x = TestTypeDefs.nestedTestRecord.nested.
7-
// ^com
7+
// ^crm

tests/analysis_new_tests/tests/test_files/SwitchCaseCompletions.res

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ let someStringArr = ["hello"]
33

44
let x = switch someStringArr {
55
|
6-
// ^com
6+
// ^crm
77
}
88

99
// == TEST: Empty case, record
1010
let x = switch TestTypeDefs.nestedTestRecord {
1111
|
12-
// ^com
12+
// ^crm
1313
}
1414

1515
// == TEST: Empty case, bool
1616
let x = switch true {
1717
|
18-
// ^com
18+
// ^crm
1919
}

0 commit comments

Comments
 (0)