Skip to content

Commit

Permalink
couple more notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Centri3 committed Apr 25, 2023
1 parent dbd8888 commit c584823
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions clippy_lints/src/excessive_nesting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ impl<'conf, 'cx> Visitor<'_> for NestingVisitor<'conf, 'cx> {
}

fn visit_block(&mut self, block: &Block) {
// TODO: Can we use some RAII guard instead? Borrow checker seems to hate that
// idea but it would be a lot cleaner.
self.nest_level += 1;

if !check_indent(self, block.span) {
Expand Down Expand Up @@ -167,6 +169,8 @@ impl<'conf, 'cx> Visitor<'_> for NestingVisitor<'conf, 'cx> {
fn visit_expr(&mut self, expr: &Expr) {
// This is a mess, but really all it does is extract every expression from every applicable variant
// of ExprKind until it finds a Block.
// TODO: clippy_utils has the two functions for_each_expr and for_each_expr_with_closures, can those
// be used here or are they not applicable for this case?
match &expr.kind {
ExprKind::ConstBlock(anon_const) => self.visit_expr(&anon_const.value),
ExprKind::Call(.., args) => {
Expand Down

0 comments on commit c584823

Please sign in to comment.