@@ -195,6 +195,7 @@ mod handlers {
195195 mod replace_try_expr_with_match;
196196 mod replace_derive_with_manual_impl;
197197 mod replace_if_let_with_match;
198+ mod replace_is_method_with_if_let_method;
198199 mod replace_method_eager_lazy;
199200 mod replace_arith_op;
200201 mod introduce_named_generic;
@@ -213,7 +214,6 @@ mod handlers {
213214 mod unwrap_block;
214215 mod unwrap_result_return_type;
215216 mod unqualify_method_call;
216- mod replace_is_method_with_if_let_method;
217217 mod wrap_return_type_in_result;
218218 mod into_to_qualified_from;
219219
@@ -314,6 +314,7 @@ mod handlers {
314314 replace_derive_with_manual_impl:: replace_derive_with_manual_impl,
315315 replace_if_let_with_match:: replace_if_let_with_match,
316316 replace_if_let_with_match:: replace_match_with_if_let,
317+ replace_is_method_with_if_let_method:: replace_is_method_with_if_let_method,
317318 replace_let_with_if_let:: replace_let_with_if_let,
318319 replace_method_eager_lazy:: replace_with_eager_method,
319320 replace_method_eager_lazy:: replace_with_lazy_method,
@@ -333,7 +334,6 @@ mod handlers {
333334 unwrap_result_return_type:: unwrap_result_return_type,
334335 unwrap_tuple:: unwrap_tuple,
335336 unqualify_method_call:: unqualify_method_call,
336- replace_is_method_with_if_let_method:: replace_is_method_with_if_let_method,
337337 wrap_return_type_in_result:: wrap_return_type_in_result,
338338 // These are manually sorted for better priorities. By default,
339339 // priority is determined by the size of the target range (smaller
0 commit comments