diff options
author | Lukas Wirth <[email protected]> | 2021-04-09 16:14:48 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-04-09 16:14:48 +0100 |
commit | ec2895e95649ca87bcac54ee635abb8b6f78b086 (patch) | |
tree | 358a4e35f2b5ff074fce4618b562b050007f1df7 /crates/ide_assists | |
parent | 354151df3556c5e2989746aa01a5aeb620ee9baa (diff) |
Insert unnamed consts to ChildBySource DynMap
Diffstat (limited to 'crates/ide_assists')
-rw-r--r-- | crates/ide_assists/src/handlers/remove_dbg.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_assists/src/handlers/remove_dbg.rs b/crates/ide_assists/src/handlers/remove_dbg.rs index 2862cfa9c..c8226550f 100644 --- a/crates/ide_assists/src/handlers/remove_dbg.rs +++ b/crates/ide_assists/src/handlers/remove_dbg.rs | |||
@@ -30,7 +30,7 @@ pub(crate) fn remove_dbg(acc: &mut Assists, ctx: &AssistContext) -> Option<()> { | |||
30 | if new_contents.is_empty() { | 30 | if new_contents.is_empty() { |
31 | match_ast! { | 31 | match_ast! { |
32 | match it { | 32 | match it { |
33 | ast::BlockExpr(it) => { | 33 | ast::BlockExpr(_it) => { |
34 | macro_call.syntax() | 34 | macro_call.syntax() |
35 | .prev_sibling_or_token() | 35 | .prev_sibling_or_token() |
36 | .and_then(whitespace_start) | 36 | .and_then(whitespace_start) |