@@ -80,18 +80,15 @@ impl VisitMut for HasSelf {
80
80
81
81
pub struct ReplaceSelf ;
82
82
83
- impl ReplaceSelf {
84
- #[ cfg_attr( not( self_span_hack) , allow( clippy:: unused_self) ) ]
85
- fn prepend_underscore_to_self ( & self , ident : & mut Ident ) -> bool {
86
- let modified = ident == "self" ;
87
- if modified {
88
- * ident = Ident :: new ( "__self" , ident. span ( ) ) ;
89
- #[ cfg( self_span_hack) ]
90
- ident. set_span ( self . 0 ) ;
91
- }
92
- modified
83
+ fn prepend_underscore_to_self ( ident : & mut Ident ) -> bool {
84
+ let modified = ident == "self" ;
85
+ if modified {
86
+ * ident = Ident :: new ( "__self" , ident. span ( ) ) ;
93
87
}
88
+ modified
89
+ }
94
90
91
+ impl ReplaceSelf {
95
92
fn visit_token_stream ( & mut self , tokens : & mut TokenStream ) -> bool {
96
93
let mut out = Vec :: new ( ) ;
97
94
let mut modified = false ;
@@ -110,7 +107,7 @@ impl ReplaceSelf {
110
107
for tt in tokens {
111
108
match tt {
112
109
TokenTree :: Ident ( mut ident) => {
113
- * modified |= visitor . prepend_underscore_to_self ( & mut ident) ;
110
+ * modified |= prepend_underscore_to_self ( & mut ident) ;
114
111
out. push ( TokenTree :: Ident ( ident) ) ;
115
112
}
116
113
TokenTree :: Group ( group) => {
@@ -129,7 +126,7 @@ impl ReplaceSelf {
129
126
130
127
impl VisitMut for ReplaceSelf {
131
128
fn visit_ident_mut ( & mut self , i : & mut Ident ) {
132
- self . prepend_underscore_to_self ( i) ;
129
+ prepend_underscore_to_self ( i) ;
133
130
}
134
131
135
132
fn visit_path_mut ( & mut self , p : & mut Path ) {
0 commit comments