diff options
Diffstat (limited to 'crates/ra_ide_api/src/snapshots')
-rw-r--r-- | crates/ra_ide_api/src/snapshots/tests__inlay_hints.snap | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/crates/ra_ide_api/src/snapshots/tests__inlay_hints.snap b/crates/ra_ide_api/src/snapshots/tests__inlay_hints.snap deleted file mode 100644 index f4d562314..000000000 --- a/crates/ra_ide_api/src/snapshots/tests__inlay_hints.snap +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | --- | ||
2 | created: "2019-07-20T20:13:53.385368Z" | ||
3 | creator: [email protected] | ||
4 | source: crates/ra_ide_api/src/inlay_hints.rs | ||
5 | expression: hints | ||
6 | --- | ||
7 | [ | ||
8 | InlayHint { | ||
9 | range: [71; 75), | ||
10 | text: "let test = 54;", | ||
11 | inlay_kind: LetBinding, | ||
12 | }, | ||
13 | InlayHint { | ||
14 | range: [90; 94), | ||
15 | text: "let test = InnerStruct {};", | ||
16 | inlay_kind: LetBinding, | ||
17 | }, | ||
18 | InlayHint { | ||
19 | range: [121; 125), | ||
20 | text: "let test = OuterStruct {};", | ||
21 | inlay_kind: LetBinding, | ||
22 | }, | ||
23 | InlayHint { | ||
24 | range: [152; 156), | ||
25 | text: "let test = vec![222];", | ||
26 | inlay_kind: LetBinding, | ||
27 | }, | ||
28 | InlayHint { | ||
29 | range: [178; 186), | ||
30 | text: "let mut test = Vec::new();", | ||
31 | inlay_kind: LetBinding, | ||
32 | }, | ||
33 | InlayHint { | ||
34 | range: [229; 233), | ||
35 | text: "let test = test.into_iter().map(|i| i * i).collect::<Vec<_>>();", | ||
36 | inlay_kind: LetBinding, | ||
37 | }, | ||
38 | InlayHint { | ||
39 | range: [258; 259), | ||
40 | text: "i", | ||
41 | inlay_kind: ClosureParameter, | ||
42 | }, | ||
43 | InlayHint { | ||
44 | range: [297; 305), | ||
45 | text: "let mut test = 33;", | ||
46 | inlay_kind: LetBinding, | ||
47 | }, | ||
48 | InlayHint { | ||
49 | range: [417; 426), | ||
50 | text: "let i_squared = i * i;", | ||
51 | inlay_kind: LetBinding, | ||
52 | }, | ||
53 | InlayHint { | ||
54 | range: [500; 506), | ||
55 | text: "let (x, c) = (42, \'a\');", | ||
56 | inlay_kind: LetBinding, | ||
57 | }, | ||
58 | InlayHint { | ||
59 | range: [528; 532), | ||
60 | text: "let test = (42, \'a\');", | ||
61 | inlay_kind: LetBinding, | ||
62 | }, | ||
63 | ] | ||