diff options
Diffstat (limited to 'crates/ra_ide')
-rw-r--r-- | crates/ra_ide/src/completion/complete_fn_param.rs | 2 | ||||
-rw-r--r-- | crates/ra_ide/src/runnables.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_ide/src/completion/complete_fn_param.rs b/crates/ra_ide/src/completion/complete_fn_param.rs index db2abb4f1..7a53083f5 100644 --- a/crates/ra_ide/src/completion/complete_fn_param.rs +++ b/crates/ra_ide/src/completion/complete_fn_param.rs | |||
@@ -28,7 +28,7 @@ pub(super) fn complete_fn_param(acc: &mut Completions, ctx: &CompletionContext) | |||
28 | } | 28 | } |
29 | }; | 29 | }; |
30 | for item in items { | 30 | for item in items { |
31 | if let ast::ModuleItem::FnDef(func) = item { | 31 | if let ast::Item::FnDef(func) = item { |
32 | if Some(&func) == me.as_ref() { | 32 | if Some(&func) == me.as_ref() { |
33 | continue; | 33 | continue; |
34 | } | 34 | } |
diff --git a/crates/ra_ide/src/runnables.rs b/crates/ra_ide/src/runnables.rs index 45e0a7d85..f612835c2 100644 --- a/crates/ra_ide/src/runnables.rs +++ b/crates/ra_ide/src/runnables.rs | |||
@@ -246,12 +246,12 @@ fn has_test_function_or_multiple_test_submodules(module: &ast::Module) -> bool { | |||
246 | 246 | ||
247 | for item in item_list.items() { | 247 | for item in item_list.items() { |
248 | match item { | 248 | match item { |
249 | ast::ModuleItem::FnDef(f) => { | 249 | ast::Item::FnDef(f) => { |
250 | if has_test_related_attribute(&f) { | 250 | if has_test_related_attribute(&f) { |
251 | return true; | 251 | return true; |
252 | } | 252 | } |
253 | } | 253 | } |
254 | ast::ModuleItem::Module(submodule) => { | 254 | ast::Item::Module(submodule) => { |
255 | if has_test_function_or_multiple_test_submodules(&submodule) { | 255 | if has_test_function_or_multiple_test_submodules(&submodule) { |
256 | number_of_test_submodules += 1; | 256 | number_of_test_submodules += 1; |
257 | } | 257 | } |