Save the macro item semicolon
diff --git a/src/gen/fold.rs b/src/gen/fold.rs
index d6939aa..c8f1ae4 100644
--- a/src/gen/fold.rs
+++ b/src/gen/fold.rs
@@ -1567,6 +1567,7 @@
ImplItemMacro {
attrs: FoldHelper::lift(_i . attrs, |it| { _visitor.fold_attribute(it) }),
mac: _visitor.fold_macro(_i . mac),
+ semi_token: _i . semi_token,
}
}
# [ cfg ( feature = "full" ) ]
@@ -1806,6 +1807,7 @@
attrs: FoldHelper::lift(_i . attrs, |it| { _visitor.fold_attribute(it) }),
ident: (_i . ident).map(|it| { _visitor.fold_ident(it) }),
mac: _visitor.fold_macro(_i . mac),
+ semi_token: _i . semi_token,
}
}
# [ cfg ( feature = "full" ) ]
@@ -2380,6 +2382,7 @@
TraitItemMacro {
attrs: FoldHelper::lift(_i . attrs, |it| { _visitor.fold_attribute(it) }),
mac: _visitor.fold_macro(_i . mac),
+ semi_token: _i . semi_token,
}
}
# [ cfg ( feature = "full" ) ]