Update Expr::Paren generated code
diff --git a/src/gen/fold.rs b/src/gen/fold.rs
index 60935a9..46ac7b4 100644
--- a/src/gen/fold.rs
+++ b/src/gen/fold.rs
@@ -125,7 +125,7 @@
fn fold_expr_match(&mut self, i: ExprMatch) -> ExprMatch { fold_expr_match(self, i) }
# [ cfg ( feature = "full" ) ] # [ cfg ( any ( feature = "full" , feature = "derive" ) ) ]
fn fold_expr_method_call(&mut self, i: ExprMethodCall) -> ExprMethodCall { fold_expr_method_call(self, i) }
-# [ cfg ( feature = "full" ) ] # [ cfg ( any ( feature = "full" , feature = "derive" ) ) ]
+# [ cfg ( any ( feature = "full" , feature = "derive" ) ) ]
fn fold_expr_paren(&mut self, i: ExprParen) -> ExprParen { fold_expr_paren(self, i) }
# [ cfg ( any ( feature = "full" , feature = "derive" ) ) ]
fn fold_expr_path(&mut self, i: ExprPath) -> ExprPath { fold_expr_path(self, i) }
@@ -951,7 +951,7 @@
}
Expr::Paren(_binding_0, ) => {
Expr::Paren (
- full!(_visitor.fold_expr_paren(_binding_0)),
+ _visitor.fold_expr_paren(_binding_0),
)
}
Expr::Group(_binding_0, ) => {
@@ -1217,7 +1217,7 @@
args: FoldHelper::lift(_i . args, |it| { _visitor.fold_expr(it) }),
}
}
-# [ cfg ( feature = "full" ) ] # [ cfg ( any ( feature = "full" , feature = "derive" ) ) ]
+# [ cfg ( any ( feature = "full" , feature = "derive" ) ) ]
pub fn fold_expr_paren<V: Fold + ?Sized>(_visitor: &mut V, _i: ExprParen) -> ExprParen {
ExprParen {
attrs: FoldHelper::lift(_i . attrs, |it| { _visitor.fold_attribute(it) }),