aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion/snapshots/completion_item__completes_break_and_continue_in_loops2.snap
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide_api/src/completion/snapshots/completion_item__completes_break_and_continue_in_loops2.snap')
-rw-r--r--crates/ra_ide_api/src/completion/snapshots/completion_item__completes_break_and_continue_in_loops2.snap52
1 files changed, 11 insertions, 41 deletions
diff --git a/crates/ra_ide_api/src/completion/snapshots/completion_item__completes_break_and_continue_in_loops2.snap b/crates/ra_ide_api/src/completion/snapshots/completion_item__completes_break_and_continue_in_loops2.snap
index 225ca4c7f..057ff8a7a 100644
--- a/crates/ra_ide_api/src/completion/snapshots/completion_item__completes_break_and_continue_in_loops2.snap
+++ b/crates/ra_ide_api/src/completion/snapshots/completion_item__completes_break_and_continue_in_loops2.snap
@@ -1,5 +1,5 @@
1--- 1---
2created: "2019-02-18T09:10:52.011157905Z" 2created: "2019-02-18T09:22:24.068967569Z"
3creator: [email protected] 3creator: [email protected]
4source: crates/ra_ide_api/src/completion/completion_item.rs 4source: crates/ra_ide_api/src/completion/completion_item.rs
5expression: kind_completions 5expression: kind_completions
@@ -8,66 +8,36 @@ expression: kind_completions
8 CompletionItem { 8 CompletionItem {
9 label: "if", 9 label: "if",
10 source_range: [60; 60), 10 source_range: [60; 60),
11 text_edit: TextEdit { 11 delete: [60; 60),
12 atoms: [ 12 insert: "if $0 {}",
13 AtomTextEdit {
14 delete: [60; 60),
15 insert: "if $0 {}"
16 }
17 ]
18 },
19 kind: Keyword 13 kind: Keyword
20 }, 14 },
21 CompletionItem { 15 CompletionItem {
22 label: "loop", 16 label: "loop",
23 source_range: [60; 60), 17 source_range: [60; 60),
24 text_edit: TextEdit { 18 delete: [60; 60),
25 atoms: [ 19 insert: "loop {$0}",
26 AtomTextEdit {
27 delete: [60; 60),
28 insert: "loop {$0}"
29 }
30 ]
31 },
32 kind: Keyword 20 kind: Keyword
33 }, 21 },
34 CompletionItem { 22 CompletionItem {
35 label: "match", 23 label: "match",
36 source_range: [60; 60), 24 source_range: [60; 60),
37 text_edit: TextEdit { 25 delete: [60; 60),
38 atoms: [ 26 insert: "match $0 {}",
39 AtomTextEdit {
40 delete: [60; 60),
41 insert: "match $0 {}"
42 }
43 ]
44 },
45 kind: Keyword 27 kind: Keyword
46 }, 28 },
47 CompletionItem { 29 CompletionItem {
48 label: "return", 30 label: "return",
49 source_range: [60; 60), 31 source_range: [60; 60),
50 text_edit: TextEdit { 32 delete: [60; 60),
51 atoms: [ 33 insert: "return $0;",
52 AtomTextEdit {
53 delete: [60; 60),
54 insert: "return $0;"
55 }
56 ]
57 },
58 kind: Keyword 34 kind: Keyword
59 }, 35 },
60 CompletionItem { 36 CompletionItem {
61 label: "while", 37 label: "while",
62 source_range: [60; 60), 38 source_range: [60; 60),
63 text_edit: TextEdit { 39 delete: [60; 60),
64 atoms: [ 40 insert: "while $0 {}",
65 AtomTextEdit {
66 delete: [60; 60),
67 insert: "while $0 {}"
68 }
69 ]
70 },
71 kind: Keyword 41 kind: Keyword
72 } 42 }
73] 43]