aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion/snapshots/completion_item__keywords_in_function4.snap
blob: 5e7ec108c935b20f18602d3bb756004ff7c57505 (plain)
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
---
created: "2019-02-18T07:29:59.696757543Z"
creator: [email protected]
source: crates/ra_ide_api/src/completion/completion_item.rs
expression: kind_completions
---
[
    CompletionItem {
        label: "if",
        source_range: [41; 41),
        kind: Keyword,
        insert_text: "if $0 {}",
        insert_text_format: Snippet
    },
    CompletionItem {
        label: "loop",
        source_range: [41; 41),
        kind: Keyword,
        insert_text: "loop {$0}",
        insert_text_format: Snippet
    },
    CompletionItem {
        label: "match",
        source_range: [41; 41),
        kind: Keyword,
        insert_text: "match $0 {}",
        insert_text_format: Snippet
    },
    CompletionItem {
        label: "return",
        source_range: [41; 41),
        kind: Keyword,
        insert_text: "return;",
        insert_text_format: Snippet
    },
    CompletionItem {
        label: "while",
        source_range: [41; 41),
        kind: Keyword,
        insert_text: "while $0 {}",
        insert_text_format: Snippet
    }
]