mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-01 07:48:45 +00:00
update mod order to adapt alphabetically sorted
This commit is contained in:
parent
506b1e515b
commit
5bbca22720
1 changed files with 2 additions and 2 deletions
|
@ -195,6 +195,7 @@ mod handlers {
|
||||||
mod replace_try_expr_with_match;
|
mod replace_try_expr_with_match;
|
||||||
mod replace_derive_with_manual_impl;
|
mod replace_derive_with_manual_impl;
|
||||||
mod replace_if_let_with_match;
|
mod replace_if_let_with_match;
|
||||||
|
mod replace_is_method_with_if_let_method;
|
||||||
mod replace_method_eager_lazy;
|
mod replace_method_eager_lazy;
|
||||||
mod replace_arith_op;
|
mod replace_arith_op;
|
||||||
mod introduce_named_generic;
|
mod introduce_named_generic;
|
||||||
|
@ -213,7 +214,6 @@ mod handlers {
|
||||||
mod unwrap_block;
|
mod unwrap_block;
|
||||||
mod unwrap_result_return_type;
|
mod unwrap_result_return_type;
|
||||||
mod unqualify_method_call;
|
mod unqualify_method_call;
|
||||||
mod replace_is_method_with_if_let_method;
|
|
||||||
mod wrap_return_type_in_result;
|
mod wrap_return_type_in_result;
|
||||||
mod into_to_qualified_from;
|
mod into_to_qualified_from;
|
||||||
|
|
||||||
|
@ -314,6 +314,7 @@ mod handlers {
|
||||||
replace_derive_with_manual_impl::replace_derive_with_manual_impl,
|
replace_derive_with_manual_impl::replace_derive_with_manual_impl,
|
||||||
replace_if_let_with_match::replace_if_let_with_match,
|
replace_if_let_with_match::replace_if_let_with_match,
|
||||||
replace_if_let_with_match::replace_match_with_if_let,
|
replace_if_let_with_match::replace_match_with_if_let,
|
||||||
|
replace_is_method_with_if_let_method::replace_is_method_with_if_let_method,
|
||||||
replace_let_with_if_let::replace_let_with_if_let,
|
replace_let_with_if_let::replace_let_with_if_let,
|
||||||
replace_method_eager_lazy::replace_with_eager_method,
|
replace_method_eager_lazy::replace_with_eager_method,
|
||||||
replace_method_eager_lazy::replace_with_lazy_method,
|
replace_method_eager_lazy::replace_with_lazy_method,
|
||||||
|
@ -333,7 +334,6 @@ mod handlers {
|
||||||
unwrap_result_return_type::unwrap_result_return_type,
|
unwrap_result_return_type::unwrap_result_return_type,
|
||||||
unwrap_tuple::unwrap_tuple,
|
unwrap_tuple::unwrap_tuple,
|
||||||
unqualify_method_call::unqualify_method_call,
|
unqualify_method_call::unqualify_method_call,
|
||||||
replace_is_method_with_if_let_method::replace_is_method_with_if_let_method,
|
|
||||||
wrap_return_type_in_result::wrap_return_type_in_result,
|
wrap_return_type_in_result::wrap_return_type_in_result,
|
||||||
// These are manually sorted for better priorities. By default,
|
// These are manually sorted for better priorities. By default,
|
||||||
// priority is determined by the size of the target range (smaller
|
// priority is determined by the size of the target range (smaller
|
||||||
|
|
Loading…
Reference in a new issue