Skip to content

Commit e95043c

Browse files
committed
Auto merge of #17459 - MariaSolOs:async-compl, r=Veykril
fix(completion): complete async keyword Fixes #17452 Not entirely confident of the fix here, but my logic is that `async` should in general be offered in similar semantic scenarios as other keywords like `static` or `pub`.
2 parents c1fed6a + b4952b2 commit e95043c

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

src/tools/rust-analyzer/crates/ide-completion/src/completions/item_list.rs

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ fn add_keywords(acc: &mut Completions, ctx: &CompletionContext<'_>, kind: Option
100100
add_keyword("enum", "enum $1 {\n $0\n}");
101101
add_keyword("mod", "mod $0");
102102
add_keyword("static", "static $0");
103+
add_keyword("async", "async $0");
103104
add_keyword("struct", "struct $0");
104105
add_keyword("trait", "trait $1 {\n $0\n}");
105106
add_keyword("union", "union $1 {\n $0\n}");

src/tools/rust-analyzer/crates/ide-completion/src/tests/expression.rs

+11
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ impl Unit {
141141
un Union Union
142142
ev TupleV(…) TupleV(u32)
143143
bt u32 u32
144+
kw async
144145
kw const
145146
kw crate::
146147
kw enum
@@ -217,6 +218,7 @@ fn complete_in_block() {
217218
expect![[r#"
218219
fn foo() fn()
219220
bt u32 u32
221+
kw async
220222
kw const
221223
kw crate::
222224
kw enum
@@ -264,6 +266,7 @@ fn complete_after_if_expr() {
264266
expect![[r#"
265267
fn foo() fn()
266268
bt u32 u32
269+
kw async
267270
kw const
268271
kw crate::
269272
kw else
@@ -336,6 +339,7 @@ fn completes_in_loop_ctx() {
336339
expect![[r#"
337340
fn my() fn()
338341
bt u32 u32
342+
kw async
339343
kw break
340344
kw const
341345
kw continue
@@ -799,6 +803,7 @@ fn foo() { if foo {} $0 }
799803
expect![[r#"
800804
fn foo() fn()
801805
bt u32 u32
806+
kw async
802807
kw const
803808
kw crate::
804809
kw else
@@ -839,6 +844,7 @@ fn foo() { if foo {} el$0 }
839844
expect![[r#"
840845
fn foo() fn()
841846
bt u32 u32
847+
kw async
842848
kw const
843849
kw crate::
844850
kw else
@@ -927,6 +933,7 @@ fn foo() { if foo {} $0 let x = 92; }
927933
expect![[r#"
928934
fn foo() fn()
929935
bt u32 u32
936+
kw async
930937
kw const
931938
kw crate::
932939
kw else
@@ -967,6 +974,7 @@ fn foo() { if foo {} el$0 let x = 92; }
967974
expect![[r#"
968975
fn foo() fn()
969976
bt u32 u32
977+
kw async
970978
kw const
971979
kw crate::
972980
kw else
@@ -1007,6 +1015,7 @@ fn foo() { if foo {} el$0 { let x = 92; } }
10071015
expect![[r#"
10081016
fn foo() fn()
10091017
bt u32 u32
1018+
kw async
10101019
kw const
10111020
kw crate::
10121021
kw else
@@ -1059,6 +1068,7 @@ pub struct UnstableThisShouldNotBeListed;
10591068
fn main() fn()
10601069
md std
10611070
bt u32 u32
1071+
kw async
10621072
kw const
10631073
kw crate::
10641074
kw enum
@@ -1111,6 +1121,7 @@ pub struct UnstableButWeAreOnNightlyAnyway;
11111121
md std
11121122
st UnstableButWeAreOnNightlyAnyway UnstableButWeAreOnNightlyAnyway
11131123
bt u32 u32
1124+
kw async
11141125
kw const
11151126
kw crate::
11161127
kw enum

src/tools/rust-analyzer/crates/ide-completion/src/tests/item_list.rs

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ fn in_mod_item_list() {
1414
r#"mod tests { $0 }"#,
1515
expect![[r#"
1616
ma makro!(…) macro_rules! makro
17+
kw async
1718
kw const
1819
kw crate::
1920
kw enum
@@ -47,6 +48,7 @@ fn in_source_file_item_list() {
4748
expect![[r#"
4849
ma makro!(…) macro_rules! makro
4950
md module
51+
kw async
5052
kw const
5153
kw crate::
5254
kw enum
@@ -79,6 +81,7 @@ fn in_item_list_after_attr() {
7981
expect![[r#"
8082
ma makro!(…) macro_rules! makro
8183
md module
84+
kw async
8285
kw const
8386
kw crate::
8487
kw enum
@@ -132,6 +135,7 @@ fn after_visibility() {
132135
check(
133136
r#"pub $0"#,
134137
expect![[r#"
138+
kw async
135139
kw const
136140
kw enum
137141
kw extern
@@ -356,6 +360,7 @@ fn after_unit_struct() {
356360
expect![[r#"
357361
ma makro!(…) macro_rules! makro
358362
md module
363+
kw async
359364
kw const
360365
kw crate::
361366
kw enum

src/tools/rust-analyzer/crates/ide-completion/src/tests/special.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1017,6 +1017,7 @@ fn here_we_go() {
10171017
fn here_we_go() fn()
10181018
st Foo (alias Bar) Foo
10191019
bt u32 u32
1020+
kw async
10201021
kw const
10211022
kw crate::
10221023
kw enum
@@ -1066,6 +1067,7 @@ fn here_we_go() {
10661067
fn here_we_go() fn()
10671068
st Foo (alias Bar, Qux, Baz) Foo
10681069
bt u32 u32
1070+
kw async
10691071
kw const
10701072
kw crate::
10711073
kw enum
@@ -1188,6 +1190,7 @@ fn bar() { qu$0 }
11881190
fn bar() fn()
11891191
fn foo() (alias qux) fn()
11901192
bt u32 u32
1193+
kw async
11911194
kw const
11921195
kw crate::
11931196
kw enum
@@ -1443,6 +1446,7 @@ fn foo() {
14431446
expect![[r#"
14441447
fn foo() fn()
14451448
bt u32 u32
1449+
kw async
14461450
kw const
14471451
kw crate::
14481452
kw enum

0 commit comments

Comments
 (0)