aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion/snapshots/completion_item__completes_break_and_continue_in_loops2.snap
blob: 225ca4c7f0933d789218aa48d982471e0019ac81 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
created: "2019-02-18T09:10:52.011157905Z"
creator: [email protected]
source: crates/ra_ide_api/src/completion/completion_item.rs
expression: kind_completions
---
[
    CompletionItem {
        label: "if",
        source_range: [60; 60),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [60; 60),
                    insert: "if $0 {}"
                }
            ]
        },
        kind: Keyword
    },
    CompletionItem {
        label: "loop",
        source_range: [60; 60),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [60; 60),
                    insert: "loop {$0}"
                }
            ]
        },
        kind: Keyword
    },
    CompletionItem {
        label: "match",
        source_range: [60; 60),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [60; 60),
                    insert: "match $0 {}"
                }
            ]
        },
        kind: Keyword
    },
    CompletionItem {
        label: "return",
        source_range: [60; 60),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [60; 60),
                    insert: "return $0;"
                }
            ]
        },
        kind: Keyword
    },
    CompletionItem {
        label: "while",
        source_range: [60; 60),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [60; 60),
                    insert: "while $0 {}"
                }
            ]
        },
        kind: Keyword
    }
]