aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion/snapshots/completion_item__postfix_completion_works_for_trivial_path_expression.snap
blob: fcca19b771d2b12e86cc7c00dca0ea422a165ec3 (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
---
created: "2019-02-18T09:10:52.087222569Z"
creator: [email protected]
source: crates/ra_ide_api/src/completion/completion_item.rs
expression: kind_completions
---
[
    CompletionItem {
        label: "dbg",
        source_range: [76; 76),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: "dbg!(bar)"
                }
            ]
        },
        detail: "dbg!(expr)"
    },
    CompletionItem {
        label: "if",
        source_range: [76; 76),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: "if bar {$0}"
                }
            ]
        },
        detail: "if expr {}"
    },
    CompletionItem {
        label: "match",
        source_range: [76; 76),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: "match bar {\n${1:_} => {$0\\},\n}"
                }
            ]
        },
        detail: "match expr {}"
    },
    CompletionItem {
        label: "not",
        source_range: [76; 76),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: "!bar"
                }
            ]
        },
        detail: "!expr"
    },
    CompletionItem {
        label: "ref",
        source_range: [76; 76),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: "&bar"
                }
            ]
        },
        detail: "&expr"
    },
    CompletionItem {
        label: "refm",
        source_range: [76; 76),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: "&mut bar"
                }
            ]
        },
        detail: "&mut expr"
    },
    CompletionItem {
        label: "while",
        source_range: [76; 76),
        text_edit: TextEdit {
            atoms: [
                AtomTextEdit {
                    delete: [72; 76),
                    insert: "while bar {\n$0\n}"
                }
            ]
        },
        detail: "while expr {}"
    }
]