aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion/snapshots/completion_item__postfix_completion_works_for_trivial_path_expression.snap
blob: bd22d546acd504352b2343c2cb8c1312dda9246b (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
---
created: "2019-02-18T07:29:59.734401559Z"
creator: [email protected]
source: crates/ra_ide_api/src/completion/completion_item.rs
expression: kind_completions
---
[
    CompletionItem {
        label: "dbg",
        source_range: [76; 76),
        detail: "dbg!(expr)",
        insert_text: "dbg!(bar)",
        insert_text_format: Snippet,
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: ""
                }
            ]
        }
    },
    CompletionItem {
        label: "if",
        source_range: [76; 76),
        detail: "if expr {}",
        insert_text: "if bar {$0}",
        insert_text_format: Snippet,
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: ""
                }
            ]
        }
    },
    CompletionItem {
        label: "match",
        source_range: [76; 76),
        detail: "match expr {}",
        insert_text: "match bar {\n${1:_} => {$0\\},\n}",
        insert_text_format: Snippet,
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: ""
                }
            ]
        }
    },
    CompletionItem {
        label: "not",
        source_range: [76; 76),
        detail: "!expr",
        insert_text: "!bar",
        insert_text_format: Snippet,
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: ""
                }
            ]
        }
    },
    CompletionItem {
        label: "ref",
        source_range: [76; 76),
        detail: "&expr",
        insert_text: "&bar",
        insert_text_format: Snippet,
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: ""
                }
            ]
        }
    },
    CompletionItem {
        label: "refm",
        source_range: [76; 76),
        detail: "&mut expr",
        insert_text: "&mut bar",
        insert_text_format: Snippet,
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: ""
                }
            ]
        }
    },
    CompletionItem {
        label: "while",
        source_range: [76; 76),
        detail: "while expr {}",
        insert_text: "while bar {\n$0\n}",
        insert_text_format: Snippet,
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: ""
                }
            ]
        }
    }
]