@@ -18,11 +18,11 @@ impl<'tcx> Printer<'tcx> for AbsolutePathPrinter<'tcx> {
18
18
self . tcx
19
19
}
20
20
21
- fn print_region ( self , _region : ty:: Region < ' _ > ) -> Result < Self , PrintError > {
22
- Ok ( self )
21
+ fn print_region ( & mut self , _region : ty:: Region < ' _ > ) -> Result < ( ) , PrintError > {
22
+ Ok ( ( ) )
23
23
}
24
24
25
- fn print_type ( mut self , ty : Ty < ' tcx > ) -> Result < Self , PrintError > {
25
+ fn print_type ( & mut self , ty : Ty < ' tcx > ) -> Result < ( ) , PrintError > {
26
26
match * ty. kind ( ) {
27
27
// Types without identity.
28
28
ty:: Bool
@@ -43,7 +43,7 @@ impl<'tcx> Printer<'tcx> for AbsolutePathPrinter<'tcx> {
43
43
// Placeholders (all printed as `_` to uniformize them).
44
44
ty:: Param ( _) | ty:: Bound ( ..) | ty:: Placeholder ( _) | ty:: Infer ( _) | ty:: Error ( _) => {
45
45
write ! ( self , "_" ) ?;
46
- Ok ( self )
46
+ Ok ( ( ) )
47
47
}
48
48
49
49
// Types with identity (print the module path).
@@ -60,74 +60,74 @@ impl<'tcx> Printer<'tcx> for AbsolutePathPrinter<'tcx> {
60
60
}
61
61
}
62
62
63
- fn print_const ( self , ct : ty:: Const < ' tcx > ) -> Result < Self , PrintError > {
63
+ fn print_const ( & mut self , ct : ty:: Const < ' tcx > ) -> Result < ( ) , PrintError > {
64
64
self . pretty_print_const ( ct, false )
65
65
}
66
66
67
67
fn print_dyn_existential (
68
- self ,
68
+ & mut self ,
69
69
predicates : & ' tcx ty:: List < ty:: PolyExistentialPredicate < ' tcx > > ,
70
- ) -> Result < Self , PrintError > {
70
+ ) -> Result < ( ) , PrintError > {
71
71
self . pretty_print_dyn_existential ( predicates)
72
72
}
73
73
74
- fn path_crate ( mut self , cnum : CrateNum ) -> Result < Self , PrintError > {
74
+ fn path_crate ( & mut self , cnum : CrateNum ) -> Result < ( ) , PrintError > {
75
75
self . path . push_str ( self . tcx . crate_name ( cnum) . as_str ( ) ) ;
76
- Ok ( self )
76
+ Ok ( ( ) )
77
77
}
78
78
79
79
fn path_qualified (
80
- self ,
80
+ & mut self ,
81
81
self_ty : Ty < ' tcx > ,
82
82
trait_ref : Option < ty:: TraitRef < ' tcx > > ,
83
- ) -> Result < Self , PrintError > {
83
+ ) -> Result < ( ) , PrintError > {
84
84
self . pretty_path_qualified ( self_ty, trait_ref)
85
85
}
86
86
87
87
fn path_append_impl (
88
- self ,
89
- print_prefix : impl FnOnce ( Self ) -> Result < Self , PrintError > ,
88
+ & mut self ,
89
+ print_prefix : impl FnOnce ( & mut Self ) -> Result < ( ) , PrintError > ,
90
90
_disambiguated_data : & DisambiguatedDefPathData ,
91
91
self_ty : Ty < ' tcx > ,
92
92
trait_ref : Option < ty:: TraitRef < ' tcx > > ,
93
- ) -> Result < Self , PrintError > {
93
+ ) -> Result < ( ) , PrintError > {
94
94
self . pretty_path_append_impl (
95
- |mut cx| {
96
- cx = print_prefix ( cx) ?;
95
+ |cx| {
96
+ print_prefix ( cx) ?;
97
97
98
98
cx. path . push_str ( "::" ) ;
99
99
100
- Ok ( cx )
100
+ Ok ( ( ) )
101
101
} ,
102
102
self_ty,
103
103
trait_ref,
104
104
)
105
105
}
106
106
107
107
fn path_append (
108
- mut self ,
109
- print_prefix : impl FnOnce ( Self ) -> Result < Self , PrintError > ,
108
+ & mut self ,
109
+ print_prefix : impl FnOnce ( & mut Self ) -> Result < ( ) , PrintError > ,
110
110
disambiguated_data : & DisambiguatedDefPathData ,
111
- ) -> Result < Self , PrintError > {
112
- self = print_prefix ( self ) ?;
111
+ ) -> Result < ( ) , PrintError > {
112
+ print_prefix ( self ) ?;
113
113
114
114
write ! ( self . path, "::{}" , disambiguated_data. data) . unwrap ( ) ;
115
115
116
- Ok ( self )
116
+ Ok ( ( ) )
117
117
}
118
118
119
119
fn path_generic_args (
120
- mut self ,
121
- print_prefix : impl FnOnce ( Self ) -> Result < Self , PrintError > ,
120
+ & mut self ,
121
+ print_prefix : impl FnOnce ( & mut Self ) -> Result < ( ) , PrintError > ,
122
122
args : & [ GenericArg < ' tcx > ] ,
123
- ) -> Result < Self , PrintError > {
124
- self = print_prefix ( self ) ?;
123
+ ) -> Result < ( ) , PrintError > {
124
+ print_prefix ( self ) ?;
125
125
let args =
126
126
args. iter ( ) . cloned ( ) . filter ( |arg| !matches ! ( arg. unpack( ) , GenericArgKind :: Lifetime ( _) ) ) ;
127
127
if args. clone ( ) . next ( ) . is_some ( ) {
128
128
self . generic_delimiters ( |cx| cx. comma_sep ( args) )
129
129
} else {
130
- Ok ( self )
130
+ Ok ( ( ) )
131
131
}
132
132
}
133
133
}
@@ -136,31 +136,31 @@ impl<'tcx> PrettyPrinter<'tcx> for AbsolutePathPrinter<'tcx> {
136
136
fn should_print_region ( & self , _region : ty:: Region < ' _ > ) -> bool {
137
137
false
138
138
}
139
- fn comma_sep < T > ( mut self , mut elems : impl Iterator < Item = T > ) -> Result < Self , PrintError >
139
+ fn comma_sep < T > ( & mut self , mut elems : impl Iterator < Item = T > ) -> Result < ( ) , PrintError >
140
140
where
141
141
T : Print < ' tcx , Self > ,
142
142
{
143
143
if let Some ( first) = elems. next ( ) {
144
- self = first. print ( self ) ?;
144
+ first. print ( self ) ?;
145
145
for elem in elems {
146
146
self . path . push_str ( ", " ) ;
147
- self = elem. print ( self ) ?;
147
+ elem. print ( self ) ?;
148
148
}
149
149
}
150
- Ok ( self )
150
+ Ok ( ( ) )
151
151
}
152
152
153
153
fn generic_delimiters (
154
- mut self ,
155
- f : impl FnOnce ( Self ) -> Result < Self , PrintError > ,
156
- ) -> Result < Self , PrintError > {
154
+ & mut self ,
155
+ f : impl FnOnce ( & mut Self ) -> Result < ( ) , PrintError > ,
156
+ ) -> Result < ( ) , PrintError > {
157
157
write ! ( self , "<" ) ?;
158
158
159
- self = f ( self ) ?;
159
+ f ( self ) ?;
160
160
161
161
write ! ( self , ">" ) ?;
162
162
163
- Ok ( self )
163
+ Ok ( ( ) )
164
164
}
165
165
166
166
fn should_print_verbose ( & self ) -> bool {
@@ -177,5 +177,7 @@ impl Write for AbsolutePathPrinter<'_> {
177
177
}
178
178
179
179
pub fn type_name < ' tcx > ( tcx : TyCtxt < ' tcx > , ty : Ty < ' tcx > ) -> String {
180
- AbsolutePathPrinter { tcx, path : String :: new ( ) } . print_type ( ty) . unwrap ( ) . path
180
+ let mut printer = AbsolutePathPrinter { tcx, path : String :: new ( ) } ;
181
+ printer. print_type ( ty) . unwrap ( ) ;
182
+ printer. path
181
183
}
0 commit comments