aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/diagnostics/test_data/snap_multi_line_fix.txt
blob: d3f27ab6a5467ad31f71ab0e092c862944134084 (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
114
115
116
117
118
119
120
121
122
123
124
125
[
    MappedRustDiagnostic {
        url: Url {
            scheme: "file",
            host: None,
            port: None,
            path: "/test/src/main.rs",
            query: None,
            fragment: None,
        },
        diagnostic: Diagnostic {
            range: Range {
                start: Position {
                    line: 3,
                    character: 4,
                },
                end: Position {
                    line: 3,
                    character: 5,
                },
            },
            severity: Some(
                Warning,
            ),
            code: Some(
                String(
                    "let_and_return",
                ),
            ),
            code_description: None,
            source: Some(
                "clippy",
            ),
            message: "returning the result of a let binding from a block\n`#[warn(clippy::let_and_return)]` on by default\nfor further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return",
            related_information: Some(
                [
                    DiagnosticRelatedInformation {
                        location: Location {
                            uri: Url {
                                scheme: "file",
                                host: None,
                                port: None,
                                path: "/test/src/main.rs",
                                query: None,
                                fragment: None,
                            },
                            range: Range {
                                start: Position {
                                    line: 2,
                                    character: 4,
                                },
                                end: Position {
                                    line: 2,
                                    character: 30,
                                },
                            },
                        },
                        message: "unnecessary let binding",
                    },
                ],
            ),
            tags: None,
            data: None,
        },
        fixes: [
            CodeAction {
                title: "return the expression directly",
                group: None,
                kind: Some(
                    CodeActionKind(
                        "quickfix",
                    ),
                ),
                edit: Some(
                    SnippetWorkspaceEdit {
                        changes: Some(
                            {
                                Url {
                                    scheme: "file",
                                    host: None,
                                    port: None,
                                    path: "/test/src/main.rs",
                                    query: None,
                                    fragment: None,
                                }: [
                                    TextEdit {
                                        range: Range {
                                            start: Position {
                                                line: 2,
                                                character: 4,
                                            },
                                            end: Position {
                                                line: 2,
                                                character: 30,
                                            },
                                        },
                                        new_text: "",
                                    },
                                    TextEdit {
                                        range: Range {
                                            start: Position {
                                                line: 3,
                                                character: 4,
                                            },
                                            end: Position {
                                                line: 3,
                                                character: 5,
                                            },
                                        },
                                        new_text: "(0..10).collect()",
                                    },
                                ],
                            },
                        ),
                        document_changes: None,
                    },
                ),
                is_preferred: Some(
                    true,
                ),
                data: None,
            },
        ],
    },
]