@@ -195,6 +195,7 @@ mod handlers {
195
195
mod replace_try_expr_with_match;
196
196
mod replace_derive_with_manual_impl;
197
197
mod replace_if_let_with_match;
198
+ mod replace_is_method_with_if_let_method;
198
199
mod replace_method_eager_lazy;
199
200
mod replace_arith_op;
200
201
mod introduce_named_generic;
@@ -213,7 +214,6 @@ mod handlers {
213
214
mod unwrap_block;
214
215
mod unwrap_result_return_type;
215
216
mod unqualify_method_call;
216
- mod replace_is_method_with_if_let_method;
217
217
mod wrap_return_type_in_result;
218
218
mod into_to_qualified_from;
219
219
@@ -314,6 +314,7 @@ mod handlers {
314
314
replace_derive_with_manual_impl:: replace_derive_with_manual_impl,
315
315
replace_if_let_with_match:: replace_if_let_with_match,
316
316
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,
317
318
replace_let_with_if_let:: replace_let_with_if_let,
318
319
replace_method_eager_lazy:: replace_with_eager_method,
319
320
replace_method_eager_lazy:: replace_with_lazy_method,
@@ -333,7 +334,6 @@ mod handlers {
333
334
unwrap_result_return_type:: unwrap_result_return_type,
334
335
unwrap_tuple:: unwrap_tuple,
335
336
unqualify_method_call:: unqualify_method_call,
336
- replace_is_method_with_if_let_method:: replace_is_method_with_if_let_method,
337
337
wrap_return_type_in_result:: wrap_return_type_in_result,
338
338
// These are manually sorted for better priorities. By default,
339
339
// priority is determined by the size of the target range (smaller
0 commit comments