diff options
Diffstat (limited to 'crates/ide_completion/src')
-rw-r--r-- | crates/ide_completion/src/completions.rs | 29 | ||||
-rw-r--r-- | crates/ide_completion/src/completions/lifetime.rs | 285 | ||||
-rw-r--r-- | crates/ide_completion/src/completions/pattern.rs | 2 | ||||
-rw-r--r-- | crates/ide_completion/src/context.rs | 86 | ||||
-rw-r--r-- | crates/ide_completion/src/lib.rs | 2 | ||||
-rw-r--r-- | crates/ide_completion/src/render.rs | 6 |
6 files changed, 377 insertions, 33 deletions
diff --git a/crates/ide_completion/src/completions.rs b/crates/ide_completion/src/completions.rs index 09882c4f3..cdac4e41a 100644 --- a/crates/ide_completion/src/completions.rs +++ b/crates/ide_completion/src/completions.rs | |||
@@ -2,25 +2,27 @@ | |||
2 | 2 | ||
3 | pub(crate) mod attribute; | 3 | pub(crate) mod attribute; |
4 | pub(crate) mod dot; | 4 | pub(crate) mod dot; |
5 | pub(crate) mod record; | 5 | pub(crate) mod flyimport; |
6 | pub(crate) mod pattern; | ||
7 | pub(crate) mod fn_param; | 6 | pub(crate) mod fn_param; |
8 | pub(crate) mod keyword; | 7 | pub(crate) mod keyword; |
9 | pub(crate) mod snippet; | 8 | pub(crate) mod lifetime; |
10 | pub(crate) mod qualified_path; | ||
11 | pub(crate) mod unqualified_path; | ||
12 | pub(crate) mod postfix; | ||
13 | pub(crate) mod macro_in_item_position; | 9 | pub(crate) mod macro_in_item_position; |
14 | pub(crate) mod trait_impl; | ||
15 | pub(crate) mod mod_; | 10 | pub(crate) mod mod_; |
16 | pub(crate) mod flyimport; | 11 | pub(crate) mod pattern; |
12 | pub(crate) mod postfix; | ||
13 | pub(crate) mod qualified_path; | ||
14 | pub(crate) mod record; | ||
15 | pub(crate) mod snippet; | ||
16 | pub(crate) mod trait_impl; | ||
17 | pub(crate) mod unqualified_path; | ||
17 | 18 | ||
18 | use std::iter; | 19 | use std::iter; |
19 | 20 | ||
20 | use hir::{known, ModPath, ScopeDef, Type}; | 21 | use hir::{known, ModPath, ScopeDef, Type}; |
22 | use ide_db::SymbolKind; | ||
21 | 23 | ||
22 | use crate::{ | 24 | use crate::{ |
23 | item::Builder, | 25 | item::{Builder, CompletionKind}, |
24 | render::{ | 26 | render::{ |
25 | const_::render_const, | 27 | const_::render_const, |
26 | enum_variant::render_variant, | 28 | enum_variant::render_variant, |
@@ -31,7 +33,7 @@ use crate::{ | |||
31 | type_alias::render_type_alias, | 33 | type_alias::render_type_alias, |
32 | RenderContext, | 34 | RenderContext, |
33 | }, | 35 | }, |
34 | CompletionContext, CompletionItem, | 36 | CompletionContext, CompletionItem, CompletionItemKind, |
35 | }; | 37 | }; |
36 | 38 | ||
37 | /// Represents an in-progress set of completions being built. | 39 | /// Represents an in-progress set of completions being built. |
@@ -77,6 +79,13 @@ impl Completions { | |||
77 | self.add(item); | 79 | self.add(item); |
78 | } | 80 | } |
79 | 81 | ||
82 | pub(crate) fn add_static_lifetime(&mut self, ctx: &CompletionContext) { | ||
83 | let mut item = | ||
84 | CompletionItem::new(CompletionKind::Reference, ctx.source_range(), "'static"); | ||
85 | item.kind(CompletionItemKind::SymbolKind(SymbolKind::LifetimeParam)); | ||
86 | self.add(item.build()); | ||
87 | } | ||
88 | |||
80 | pub(crate) fn add_resolution( | 89 | pub(crate) fn add_resolution( |
81 | &mut self, | 90 | &mut self, |
82 | ctx: &CompletionContext, | 91 | ctx: &CompletionContext, |
diff --git a/crates/ide_completion/src/completions/lifetime.rs b/crates/ide_completion/src/completions/lifetime.rs new file mode 100644 index 000000000..628c1fb9b --- /dev/null +++ b/crates/ide_completion/src/completions/lifetime.rs | |||
@@ -0,0 +1,285 @@ | |||
1 | //! Completes lifetimes and labels. | ||
2 | use hir::ScopeDef; | ||
3 | |||
4 | use crate::{completions::Completions, context::CompletionContext}; | ||
5 | |||
6 | /// Completes lifetimes. | ||
7 | pub(crate) fn complete_lifetime(acc: &mut Completions, ctx: &CompletionContext) { | ||
8 | if !ctx.lifetime_allowed { | ||
9 | return; | ||
10 | } | ||
11 | let param_lifetime = match ( | ||
12 | &ctx.lifetime_syntax, | ||
13 | ctx.lifetime_param_syntax.as_ref().and_then(|lp| lp.lifetime()), | ||
14 | ) { | ||
15 | (Some(lt), Some(lp)) if lp == lt.clone() => return, | ||
16 | (Some(_), Some(lp)) => Some(lp.to_string()), | ||
17 | _ => None, | ||
18 | }; | ||
19 | |||
20 | ctx.scope.process_all_names(&mut |name, res| { | ||
21 | if let ScopeDef::GenericParam(hir::GenericParam::LifetimeParam(_)) = res { | ||
22 | if param_lifetime != Some(name.to_string()) { | ||
23 | acc.add_resolution(ctx, name.to_string(), &res); | ||
24 | } | ||
25 | } | ||
26 | }); | ||
27 | if param_lifetime.is_none() { | ||
28 | acc.add_static_lifetime(ctx); | ||
29 | } | ||
30 | } | ||
31 | |||
32 | /// Completes labels. | ||
33 | pub(crate) fn complete_label(acc: &mut Completions, ctx: &CompletionContext) { | ||
34 | if !ctx.is_label_ref { | ||
35 | return; | ||
36 | } | ||
37 | ctx.scope.process_all_names(&mut |name, res| { | ||
38 | if let ScopeDef::Label(_) = res { | ||
39 | acc.add_resolution(ctx, name.to_string(), &res); | ||
40 | } | ||
41 | }); | ||
42 | } | ||
43 | |||
44 | #[cfg(test)] | ||
45 | mod tests { | ||
46 | use expect_test::{expect, Expect}; | ||
47 | |||
48 | use crate::{ | ||
49 | test_utils::{check_edit, completion_list_with_config, TEST_CONFIG}, | ||
50 | CompletionConfig, CompletionKind, | ||
51 | }; | ||
52 | |||
53 | fn check(ra_fixture: &str, expect: Expect) { | ||
54 | check_with_config(TEST_CONFIG, ra_fixture, expect); | ||
55 | } | ||
56 | |||
57 | fn check_with_config(config: CompletionConfig, ra_fixture: &str, expect: Expect) { | ||
58 | let actual = completion_list_with_config(config, ra_fixture, CompletionKind::Reference); | ||
59 | expect.assert_eq(&actual) | ||
60 | } | ||
61 | |||
62 | #[test] | ||
63 | fn check_lifetime_edit() { | ||
64 | check_edit( | ||
65 | "'lifetime", | ||
66 | r#" | ||
67 | fn func<'lifetime>(foo: &'li$0) {} | ||
68 | "#, | ||
69 | r#" | ||
70 | fn func<'lifetime>(foo: &'lifetime) {} | ||
71 | "#, | ||
72 | ); | ||
73 | } | ||
74 | |||
75 | #[test] | ||
76 | fn complete_lifetime_in_ref() { | ||
77 | check( | ||
78 | r#" | ||
79 | fn foo<'lifetime>(foo: &'a$0 usize) {} | ||
80 | "#, | ||
81 | expect![[r#" | ||
82 | lt 'lifetime | ||
83 | lt 'static | ||
84 | "#]], | ||
85 | ); | ||
86 | } | ||
87 | |||
88 | #[test] | ||
89 | fn complete_lifetime_in_ref_missing_ty() { | ||
90 | check( | ||
91 | r#" | ||
92 | fn foo<'lifetime>(foo: &'a$0) {} | ||
93 | "#, | ||
94 | expect![[r#" | ||
95 | lt 'lifetime | ||
96 | lt 'static | ||
97 | "#]], | ||
98 | ); | ||
99 | } | ||
100 | #[test] | ||
101 | fn complete_lifetime_in_self_ref() { | ||
102 | check( | ||
103 | r#" | ||
104 | struct Foo; | ||
105 | impl<'impl> Foo { | ||
106 | fn foo<'func>(&'a$0 self) {} | ||
107 | } | ||
108 | "#, | ||
109 | expect![[r#" | ||
110 | lt 'func | ||
111 | lt 'impl | ||
112 | lt 'static | ||
113 | "#]], | ||
114 | ); | ||
115 | } | ||
116 | |||
117 | #[test] | ||
118 | fn complete_lifetime_in_arg_list() { | ||
119 | check( | ||
120 | r#" | ||
121 | struct Foo<'lt>; | ||
122 | fn foo<'lifetime>(_: Foo<'a$0>) {} | ||
123 | "#, | ||
124 | expect![[r#" | ||
125 | lt 'lifetime | ||
126 | lt 'static | ||
127 | "#]], | ||
128 | ); | ||
129 | } | ||
130 | |||
131 | #[test] | ||
132 | fn complete_lifetime_in_where_pred() { | ||
133 | check( | ||
134 | r#" | ||
135 | fn foo2<'lifetime, T>() where 'a$0 {} | ||
136 | "#, | ||
137 | expect![[r#" | ||
138 | lt 'lifetime | ||
139 | lt 'static | ||
140 | "#]], | ||
141 | ); | ||
142 | } | ||
143 | |||
144 | #[test] | ||
145 | fn complete_lifetime_in_ty_bound() { | ||
146 | check( | ||
147 | r#" | ||
148 | fn foo2<'lifetime, T>() where T: 'a$0 {} | ||
149 | "#, | ||
150 | expect![[r#" | ||
151 | lt 'lifetime | ||
152 | lt 'static | ||
153 | "#]], | ||
154 | ); | ||
155 | check( | ||
156 | r#" | ||
157 | fn foo2<'lifetime, T>() where T: Trait<'a$0> {} | ||
158 | "#, | ||
159 | expect![[r#" | ||
160 | lt 'lifetime | ||
161 | lt 'static | ||
162 | "#]], | ||
163 | ); | ||
164 | } | ||
165 | |||
166 | #[test] | ||
167 | fn dont_complete_lifetime_in_assoc_ty_bound() { | ||
168 | check( | ||
169 | r#" | ||
170 | fn foo2<'lifetime, T>() where T: Trait<Item = 'a$0> {} | ||
171 | "#, | ||
172 | expect![[r#""#]], | ||
173 | ); | ||
174 | } | ||
175 | |||
176 | #[test] | ||
177 | fn complete_lifetime_in_param_list() { | ||
178 | check( | ||
179 | r#" | ||
180 | fn foo<'a$0>() {} | ||
181 | "#, | ||
182 | expect![[r#""#]], | ||
183 | ); | ||
184 | check( | ||
185 | r#" | ||
186 | fn foo<'footime, 'lifetime: 'a$0>() {} | ||
187 | "#, | ||
188 | expect![[r#" | ||
189 | lt 'footime | ||
190 | "#]], | ||
191 | ); | ||
192 | } | ||
193 | |||
194 | #[test] | ||
195 | fn complete_label_in_loop() { | ||
196 | check( | ||
197 | r#" | ||
198 | fn foo() { | ||
199 | 'foop: loop { | ||
200 | break '$0 | ||
201 | } | ||
202 | } | ||
203 | "#, | ||
204 | expect![[r#" | ||
205 | lb 'foop | ||
206 | "#]], | ||
207 | ); | ||
208 | check( | ||
209 | r#" | ||
210 | fn foo() { | ||
211 | 'foop: loop { | ||
212 | continue '$0 | ||
213 | } | ||
214 | } | ||
215 | "#, | ||
216 | expect![[r#" | ||
217 | lb 'foop | ||
218 | "#]], | ||
219 | ); | ||
220 | } | ||
221 | |||
222 | #[test] | ||
223 | fn complete_label_in_block_nested() { | ||
224 | check( | ||
225 | r#" | ||
226 | fn foo() { | ||
227 | 'foop: { | ||
228 | 'baap: { | ||
229 | break '$0 | ||
230 | } | ||
231 | } | ||
232 | } | ||
233 | "#, | ||
234 | expect![[r#" | ||
235 | lb 'baap | ||
236 | lb 'foop | ||
237 | "#]], | ||
238 | ); | ||
239 | } | ||
240 | |||
241 | #[test] | ||
242 | fn complete_label_in_loop_with_value() { | ||
243 | check( | ||
244 | r#" | ||
245 | fn foo() { | ||
246 | 'foop: loop { | ||
247 | break '$0 i32; | ||
248 | } | ||
249 | } | ||
250 | "#, | ||
251 | expect![[r#" | ||
252 | lb 'foop | ||
253 | "#]], | ||
254 | ); | ||
255 | } | ||
256 | |||
257 | #[test] | ||
258 | fn complete_label_in_while_cond() { | ||
259 | check( | ||
260 | r#" | ||
261 | fn foo() { | ||
262 | 'outer: while { 'inner: loop { break '$0 } } {} | ||
263 | } | ||
264 | "#, | ||
265 | expect![[r#" | ||
266 | lb 'inner | ||
267 | lb 'outer | ||
268 | "#]], | ||
269 | ); | ||
270 | } | ||
271 | |||
272 | #[test] | ||
273 | fn complete_label_in_for_iterable() { | ||
274 | check( | ||
275 | r#" | ||
276 | fn foo() { | ||
277 | 'outer: for _ in [{ 'inner: loop { break '$0 } }] {} | ||
278 | } | ||
279 | "#, | ||
280 | expect![[r#" | ||
281 | lb 'inner | ||
282 | "#]], | ||
283 | ); | ||
284 | } | ||
285 | } | ||
diff --git a/crates/ide_completion/src/completions/pattern.rs b/crates/ide_completion/src/completions/pattern.rs index 476eecff0..b06498e6d 100644 --- a/crates/ide_completion/src/completions/pattern.rs +++ b/crates/ide_completion/src/completions/pattern.rs | |||
@@ -1,4 +1,4 @@ | |||
1 | //! Completes constats and paths in patterns. | 1 | //! Completes constants and paths in patterns. |
2 | 2 | ||
3 | use crate::{CompletionContext, Completions}; | 3 | use crate::{CompletionContext, Completions}; |
4 | 4 | ||
diff --git a/crates/ide_completion/src/context.rs b/crates/ide_completion/src/context.rs index 6d57da06a..67e2d6f6c 100644 --- a/crates/ide_completion/src/context.rs +++ b/crates/ide_completion/src/context.rs | |||
@@ -4,8 +4,11 @@ use hir::{Local, ScopeDef, Semantics, SemanticsScope, Type}; | |||
4 | use ide_db::base_db::{FilePosition, SourceDatabase}; | 4 | use ide_db::base_db::{FilePosition, SourceDatabase}; |
5 | use ide_db::{call_info::ActiveParameter, RootDatabase}; | 5 | use ide_db::{call_info::ActiveParameter, RootDatabase}; |
6 | use syntax::{ | 6 | use syntax::{ |
7 | algo::find_node_at_offset, ast, match_ast, AstNode, NodeOrToken, SyntaxKind::*, SyntaxNode, | 7 | algo::find_node_at_offset, |
8 | SyntaxToken, TextRange, TextSize, | 8 | ast::{self, NameOrNameRef, NameOwner}, |
9 | match_ast, AstNode, NodeOrToken, | ||
10 | SyntaxKind::*, | ||
11 | SyntaxNode, SyntaxToken, TextRange, TextSize, | ||
9 | }; | 12 | }; |
10 | 13 | ||
11 | use text_edit::Indel; | 14 | use text_edit::Indel; |
@@ -35,18 +38,22 @@ pub(crate) struct CompletionContext<'a> { | |||
35 | /// The token before the cursor, in the macro-expanded file. | 38 | /// The token before the cursor, in the macro-expanded file. |
36 | pub(super) token: SyntaxToken, | 39 | pub(super) token: SyntaxToken, |
37 | pub(super) krate: Option<hir::Crate>, | 40 | pub(super) krate: Option<hir::Crate>, |
38 | pub(super) expected_name: Option<String>, | 41 | pub(super) expected_name: Option<NameOrNameRef>, |
39 | pub(super) expected_type: Option<Type>, | 42 | pub(super) expected_type: Option<Type>, |
40 | pub(super) name_ref_syntax: Option<ast::NameRef>, | 43 | pub(super) name_ref_syntax: Option<ast::NameRef>, |
44 | pub(super) lifetime_syntax: Option<ast::Lifetime>, | ||
45 | pub(super) lifetime_param_syntax: Option<ast::LifetimeParam>, | ||
41 | pub(super) function_syntax: Option<ast::Fn>, | 46 | pub(super) function_syntax: Option<ast::Fn>, |
42 | pub(super) use_item_syntax: Option<ast::Use>, | 47 | pub(super) use_item_syntax: Option<ast::Use>, |
43 | pub(super) record_lit_syntax: Option<ast::RecordExpr>, | 48 | pub(super) record_lit_syntax: Option<ast::RecordExpr>, |
44 | pub(super) record_pat_syntax: Option<ast::RecordPat>, | 49 | pub(super) record_pat_syntax: Option<ast::RecordPat>, |
45 | pub(super) record_field_syntax: Option<ast::RecordExprField>, | 50 | pub(super) record_field_syntax: Option<ast::RecordExprField>, |
46 | pub(super) impl_def: Option<ast::Impl>, | 51 | pub(super) impl_def: Option<ast::Impl>, |
52 | pub(super) lifetime_allowed: bool, | ||
47 | /// FIXME: `ActiveParameter` is string-based, which is very very wrong | 53 | /// FIXME: `ActiveParameter` is string-based, which is very very wrong |
48 | pub(super) active_parameter: Option<ActiveParameter>, | 54 | pub(super) active_parameter: Option<ActiveParameter>, |
49 | pub(super) is_param: bool, | 55 | pub(super) is_param: bool, |
56 | pub(super) is_label_ref: bool, | ||
50 | /// If a name-binding or reference to a const in a pattern. | 57 | /// If a name-binding or reference to a const in a pattern. |
51 | /// Irrefutable patterns (like let) are excluded. | 58 | /// Irrefutable patterns (like let) are excluded. |
52 | pub(super) is_pat_binding_or_const: bool, | 59 | pub(super) is_pat_binding_or_const: bool, |
@@ -136,9 +143,12 @@ impl<'a> CompletionContext<'a> { | |||
136 | original_token, | 143 | original_token, |
137 | token, | 144 | token, |
138 | krate, | 145 | krate, |
146 | lifetime_allowed: false, | ||
139 | expected_name: None, | 147 | expected_name: None, |
140 | expected_type: None, | 148 | expected_type: None, |
141 | name_ref_syntax: None, | 149 | name_ref_syntax: None, |
150 | lifetime_syntax: None, | ||
151 | lifetime_param_syntax: None, | ||
142 | function_syntax: None, | 152 | function_syntax: None, |
143 | use_item_syntax: None, | 153 | use_item_syntax: None, |
144 | record_lit_syntax: None, | 154 | record_lit_syntax: None, |
@@ -146,6 +156,7 @@ impl<'a> CompletionContext<'a> { | |||
146 | record_field_syntax: None, | 156 | record_field_syntax: None, |
147 | impl_def: None, | 157 | impl_def: None, |
148 | active_parameter: ActiveParameter::at(db, position), | 158 | active_parameter: ActiveParameter::at(db, position), |
159 | is_label_ref: false, | ||
149 | is_param: false, | 160 | is_param: false, |
150 | is_pat_binding_or_const: false, | 161 | is_pat_binding_or_const: false, |
151 | is_irrefutable_pat_binding: false, | 162 | is_irrefutable_pat_binding: false, |
@@ -241,7 +252,7 @@ impl<'a> CompletionContext<'a> { | |||
241 | pub(crate) fn source_range(&self) -> TextRange { | 252 | pub(crate) fn source_range(&self) -> TextRange { |
242 | // check kind of macro-expanded token, but use range of original token | 253 | // check kind of macro-expanded token, but use range of original token |
243 | let kind = self.token.kind(); | 254 | let kind = self.token.kind(); |
244 | if kind == IDENT || kind == UNDERSCORE || kind.is_keyword() { | 255 | if kind == IDENT || kind == LIFETIME_IDENT || kind == UNDERSCORE || kind.is_keyword() { |
245 | cov_mark::hit!(completes_if_prefix_is_keyword); | 256 | cov_mark::hit!(completes_if_prefix_is_keyword); |
246 | self.original_token.text_range() | 257 | self.original_token.text_range() |
247 | } else { | 258 | } else { |
@@ -292,13 +303,13 @@ impl<'a> CompletionContext<'a> { | |||
292 | file_with_fake_ident: SyntaxNode, | 303 | file_with_fake_ident: SyntaxNode, |
293 | offset: TextSize, | 304 | offset: TextSize, |
294 | ) { | 305 | ) { |
295 | let expected = { | 306 | let (expected_type, expected_name) = { |
296 | let mut node = match self.token.parent() { | 307 | let mut node = match self.token.parent() { |
297 | Some(it) => it, | 308 | Some(it) => it, |
298 | None => return, | 309 | None => return, |
299 | }; | 310 | }; |
300 | loop { | 311 | loop { |
301 | let ret = match_ast! { | 312 | break match_ast! { |
302 | match node { | 313 | match node { |
303 | ast::LetStmt(it) => { | 314 | ast::LetStmt(it) => { |
304 | cov_mark::hit!(expected_type_let_with_leading_char); | 315 | cov_mark::hit!(expected_type_let_with_leading_char); |
@@ -306,7 +317,7 @@ impl<'a> CompletionContext<'a> { | |||
306 | let ty = it.pat() | 317 | let ty = it.pat() |
307 | .and_then(|pat| self.sema.type_of_pat(&pat)); | 318 | .and_then(|pat| self.sema.type_of_pat(&pat)); |
308 | let name = if let Some(ast::Pat::IdentPat(ident)) = it.pat() { | 319 | let name = if let Some(ast::Pat::IdentPat(ident)) = it.pat() { |
309 | Some(ident.syntax().text().to_string()) | 320 | ident.name().map(NameOrNameRef::Name) |
310 | } else { | 321 | } else { |
311 | None | 322 | None |
312 | }; | 323 | }; |
@@ -319,7 +330,10 @@ impl<'a> CompletionContext<'a> { | |||
319 | ActiveParameter::at_token( | 330 | ActiveParameter::at_token( |
320 | &self.sema, | 331 | &self.sema, |
321 | self.token.clone(), | 332 | self.token.clone(), |
322 | ).map(|ap| (Some(ap.ty), Some(ap.name))) | 333 | ).map(|ap| { |
334 | let name = ap.ident().map(NameOrNameRef::Name); | ||
335 | (Some(ap.ty), name) | ||
336 | }) | ||
323 | .unwrap_or((None, None)) | 337 | .unwrap_or((None, None)) |
324 | }, | 338 | }, |
325 | ast::RecordExprFieldList(_it) => { | 339 | ast::RecordExprFieldList(_it) => { |
@@ -327,10 +341,10 @@ impl<'a> CompletionContext<'a> { | |||
327 | self.token.prev_sibling_or_token() | 341 | self.token.prev_sibling_or_token() |
328 | .and_then(|se| se.into_node()) | 342 | .and_then(|se| se.into_node()) |
329 | .and_then(|node| ast::RecordExprField::cast(node)) | 343 | .and_then(|node| ast::RecordExprField::cast(node)) |
330 | .and_then(|rf| self.sema.resolve_record_field(&rf)) | 344 | .and_then(|rf| self.sema.resolve_record_field(&rf).zip(Some(rf))) |
331 | .map(|f|( | 345 | .map(|(f, rf)|( |
332 | Some(f.0.signature_ty(self.db)), | 346 | Some(f.0.signature_ty(self.db)), |
333 | Some(f.0.name(self.db).to_string()), | 347 | rf.field_name().map(NameOrNameRef::NameRef), |
334 | )) | 348 | )) |
335 | .unwrap_or((None, None)) | 349 | .unwrap_or((None, None)) |
336 | }, | 350 | }, |
@@ -340,7 +354,7 @@ impl<'a> CompletionContext<'a> { | |||
340 | .resolve_record_field(&it) | 354 | .resolve_record_field(&it) |
341 | .map(|f|( | 355 | .map(|f|( |
342 | Some(f.0.signature_ty(self.db)), | 356 | Some(f.0.signature_ty(self.db)), |
343 | Some(f.0.name(self.db).to_string()), | 357 | it.field_name().map(NameOrNameRef::NameRef), |
344 | )) | 358 | )) |
345 | .unwrap_or((None, None)) | 359 | .unwrap_or((None, None)) |
346 | }, | 360 | }, |
@@ -378,14 +392,17 @@ impl<'a> CompletionContext<'a> { | |||
378 | }, | 392 | }, |
379 | } | 393 | } |
380 | }; | 394 | }; |
381 | |||
382 | break ret; | ||
383 | } | 395 | } |
384 | }; | 396 | }; |
385 | self.expected_type = expected.0; | 397 | self.expected_type = expected_type; |
386 | self.expected_name = expected.1; | 398 | self.expected_name = expected_name; |
387 | self.attribute_under_caret = find_node_at_offset(&file_with_fake_ident, offset); | 399 | self.attribute_under_caret = find_node_at_offset(&file_with_fake_ident, offset); |
388 | 400 | ||
401 | if let Some(lifetime) = find_node_at_offset::<ast::Lifetime>(&file_with_fake_ident, offset) | ||
402 | { | ||
403 | self.classify_lifetime(original_file, lifetime, offset); | ||
404 | } | ||
405 | |||
389 | // First, let's try to complete a reference to some declaration. | 406 | // First, let's try to complete a reference to some declaration. |
390 | if let Some(name_ref) = find_node_at_offset::<ast::NameRef>(&file_with_fake_ident, offset) { | 407 | if let Some(name_ref) = find_node_at_offset::<ast::NameRef>(&file_with_fake_ident, offset) { |
391 | // Special case, `trait T { fn foo(i_am_a_name_ref) {} }`. | 408 | // Special case, `trait T { fn foo(i_am_a_name_ref) {} }`. |
@@ -445,6 +462,35 @@ impl<'a> CompletionContext<'a> { | |||
445 | } | 462 | } |
446 | } | 463 | } |
447 | 464 | ||
465 | fn classify_lifetime( | ||
466 | &mut self, | ||
467 | original_file: &SyntaxNode, | ||
468 | lifetime: ast::Lifetime, | ||
469 | offset: TextSize, | ||
470 | ) { | ||
471 | self.lifetime_syntax = | ||
472 | find_node_at_offset(original_file, lifetime.syntax().text_range().start()); | ||
473 | if let Some(parent) = lifetime.syntax().parent() { | ||
474 | if parent.kind() == syntax::SyntaxKind::ERROR { | ||
475 | return; | ||
476 | } | ||
477 | |||
478 | match_ast! { | ||
479 | match parent { | ||
480 | ast::LifetimeParam(_it) => { | ||
481 | self.lifetime_allowed = true; | ||
482 | self.lifetime_param_syntax = | ||
483 | self.sema.find_node_at_offset_with_macros(original_file, offset); | ||
484 | }, | ||
485 | ast::BreakExpr(_it) => self.is_label_ref = true, | ||
486 | ast::ContinueExpr(_it) => self.is_label_ref = true, | ||
487 | ast::Label(_it) => (), | ||
488 | _ => self.lifetime_allowed = true, | ||
489 | } | ||
490 | } | ||
491 | } | ||
492 | } | ||
493 | |||
448 | fn classify_name_ref( | 494 | fn classify_name_ref( |
449 | &mut self, | 495 | &mut self, |
450 | original_file: &SyntaxNode, | 496 | original_file: &SyntaxNode, |
@@ -452,11 +498,11 @@ impl<'a> CompletionContext<'a> { | |||
452 | offset: TextSize, | 498 | offset: TextSize, |
453 | ) { | 499 | ) { |
454 | self.name_ref_syntax = | 500 | self.name_ref_syntax = |
455 | find_node_at_offset(&original_file, name_ref.syntax().text_range().start()); | 501 | find_node_at_offset(original_file, name_ref.syntax().text_range().start()); |
456 | let name_range = name_ref.syntax().text_range(); | 502 | let name_range = name_ref.syntax().text_range(); |
457 | if ast::RecordExprField::for_field_name(&name_ref).is_some() { | 503 | if ast::RecordExprField::for_field_name(&name_ref).is_some() { |
458 | self.record_lit_syntax = | 504 | self.record_lit_syntax = |
459 | self.sema.find_node_at_offset_with_macros(&original_file, offset); | 505 | self.sema.find_node_at_offset_with_macros(original_file, offset); |
460 | } | 506 | } |
461 | 507 | ||
462 | self.fill_impl_def(); | 508 | self.fill_impl_def(); |
@@ -631,7 +677,9 @@ mod tests { | |||
631 | .map(|t| t.display_test(&db).to_string()) | 677 | .map(|t| t.display_test(&db).to_string()) |
632 | .unwrap_or("?".to_owned()); | 678 | .unwrap_or("?".to_owned()); |
633 | 679 | ||
634 | let name = completion_context.expected_name.unwrap_or("?".to_owned()); | 680 | let name = completion_context |
681 | .expected_name | ||
682 | .map_or_else(|| "?".to_owned(), |name| name.to_string()); | ||
635 | 683 | ||
636 | expect.assert_eq(&format!("ty: {}, name: {}", ty, name)); | 684 | expect.assert_eq(&format!("ty: {}, name: {}", ty, name)); |
637 | } | 685 | } |
diff --git a/crates/ide_completion/src/lib.rs b/crates/ide_completion/src/lib.rs index 9ecd82b06..87cddb98e 100644 --- a/crates/ide_completion/src/lib.rs +++ b/crates/ide_completion/src/lib.rs | |||
@@ -133,6 +133,8 @@ pub fn completions( | |||
133 | completions::trait_impl::complete_trait_impl(&mut acc, &ctx); | 133 | completions::trait_impl::complete_trait_impl(&mut acc, &ctx); |
134 | completions::mod_::complete_mod(&mut acc, &ctx); | 134 | completions::mod_::complete_mod(&mut acc, &ctx); |
135 | completions::flyimport::import_on_the_fly(&mut acc, &ctx); | 135 | completions::flyimport::import_on_the_fly(&mut acc, &ctx); |
136 | completions::lifetime::complete_lifetime(&mut acc, &ctx); | ||
137 | completions::lifetime::complete_label(&mut acc, &ctx); | ||
136 | 138 | ||
137 | Some(acc) | 139 | Some(acc) |
138 | } | 140 | } |
diff --git a/crates/ide_completion/src/render.rs b/crates/ide_completion/src/render.rs index 12921e12b..23e00aa47 100644 --- a/crates/ide_completion/src/render.rs +++ b/crates/ide_completion/src/render.rs | |||
@@ -219,6 +219,7 @@ impl<'a> Render<'a> { | |||
219 | hir::GenericParam::ConstParam(_) => SymbolKind::ConstParam, | 219 | hir::GenericParam::ConstParam(_) => SymbolKind::ConstParam, |
220 | }), | 220 | }), |
221 | ScopeDef::Local(..) => CompletionItemKind::SymbolKind(SymbolKind::Local), | 221 | ScopeDef::Local(..) => CompletionItemKind::SymbolKind(SymbolKind::Local), |
222 | ScopeDef::Label(..) => CompletionItemKind::SymbolKind(SymbolKind::Label), | ||
222 | ScopeDef::AdtSelfType(..) | ScopeDef::ImplSelfType(..) => { | 223 | ScopeDef::AdtSelfType(..) | ScopeDef::ImplSelfType(..) => { |
223 | CompletionItemKind::SymbolKind(SymbolKind::SelfParam) | 224 | CompletionItemKind::SymbolKind(SymbolKind::SelfParam) |
224 | } | 225 | } |
@@ -243,7 +244,7 @@ impl<'a> Render<'a> { | |||
243 | 244 | ||
244 | item.set_relevance(CompletionRelevance { | 245 | item.set_relevance(CompletionRelevance { |
245 | exact_type_match: compute_exact_type_match(self.ctx.completion, &ty), | 246 | exact_type_match: compute_exact_type_match(self.ctx.completion, &ty), |
246 | exact_name_match: compute_exact_name_match(self.ctx.completion, local_name.clone()), | 247 | exact_name_match: compute_exact_name_match(self.ctx.completion, &local_name), |
247 | is_local: true, | 248 | is_local: true, |
248 | ..CompletionRelevance::default() | 249 | ..CompletionRelevance::default() |
249 | }); | 250 | }); |
@@ -319,8 +320,7 @@ fn compute_exact_type_match(ctx: &CompletionContext, completion_ty: &hir::Type) | |||
319 | 320 | ||
320 | fn compute_exact_name_match(ctx: &CompletionContext, completion_name: impl Into<String>) -> bool { | 321 | fn compute_exact_name_match(ctx: &CompletionContext, completion_name: impl Into<String>) -> bool { |
321 | let completion_name = completion_name.into(); | 322 | let completion_name = completion_name.into(); |
322 | 323 | ctx.expected_name.as_ref().map_or(false, |name| name.text() == completion_name) | |
323 | Some(&completion_name) == ctx.expected_name.as_ref() | ||
324 | } | 324 | } |
325 | 325 | ||
326 | fn compute_ref_match(ctx: &CompletionContext, completion_ty: &hir::Type) -> Option<Mutability> { | 326 | fn compute_ref_match(ctx: &CompletionContext, completion_ty: &hir::Type) -> Option<Mutability> { |