mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 12:33:33 +00:00
Simplify unsafe expr collection match
This commit is contained in:
parent
b7e25ba854
commit
68a649d547
1 changed files with 3 additions and 4 deletions
|
@ -108,11 +108,10 @@ fn walk_unsafe(
|
|||
unsafe_exprs.push(UnsafeExpr { expr: current, inside_unsafe_block });
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
Expr::Unsafe { body: child } => {
|
||||
return walk_unsafe(unsafe_exprs, db, infer, body, *child, true);
|
||||
}
|
||||
|
||||
if let &Expr::Unsafe { body: child } = expr {
|
||||
return walk_unsafe(unsafe_exprs, db, infer, body, child, true);
|
||||
_ => {}
|
||||
}
|
||||
|
||||
expr.walk_child_exprs(|child| {
|
||||
|
|
Loading…
Reference in a new issue