diff options
Diffstat (limited to 'crates/ra_ide/src/completion/complete_dot.rs')
-rw-r--r-- | crates/ra_ide/src/completion/complete_dot.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/ra_ide/src/completion/complete_dot.rs b/crates/ra_ide/src/completion/complete_dot.rs index 667a8b949..3c6c8c81a 100644 --- a/crates/ra_ide/src/completion/complete_dot.rs +++ b/crates/ra_ide/src/completion/complete_dot.rs | |||
@@ -83,7 +83,7 @@ fn foo(s: S) { s.<|> } | |||
83 | "#, | 83 | "#, |
84 | expect![[r#" | 84 | expect![[r#" |
85 | me bar() fn bar(&self) | 85 | me bar() fn bar(&self) |
86 | fd foo u32 | 86 | fd foo u32 |
87 | "#]], | 87 | "#]], |
88 | ); | 88 | ); |
89 | } | 89 | } |
@@ -98,7 +98,7 @@ impl S { | |||
98 | } | 98 | } |
99 | "#, | 99 | "#, |
100 | expect![[r#" | 100 | expect![[r#" |
101 | me foo() fn foo(self) | 101 | me foo() fn foo(self) |
102 | fd the_field (u32,) | 102 | fd the_field (u32,) |
103 | "#]], | 103 | "#]], |
104 | ) | 104 | ) |
@@ -114,7 +114,7 @@ impl A { | |||
114 | } | 114 | } |
115 | "#, | 115 | "#, |
116 | expect![[r#" | 116 | expect![[r#" |
117 | me foo() fn foo(&self) | 117 | me foo() fn foo(&self) |
118 | fd the_field (u32, i32) | 118 | fd the_field (u32, i32) |
119 | "#]], | 119 | "#]], |
120 | ) | 120 | ) |
@@ -148,7 +148,7 @@ fn foo(a: inner::A) { a.<|> } | |||
148 | "#, | 148 | "#, |
149 | expect![[r#" | 149 | expect![[r#" |
150 | fd crate_field u32 | 150 | fd crate_field u32 |
151 | fd pub_field u32 | 151 | fd pub_field u32 |
152 | fd super_field u32 | 152 | fd super_field u32 |
153 | "#]], | 153 | "#]], |
154 | ); | 154 | ); |