rust/crates/ide-assists/src/handlers
DropDemBits cc4e06f04b
Migrate add_turbo_fish to mutable ast
`add_type_ascription` is still left as-is since it's a different assist
2023-11-11 21:05:26 -05:00
..
add_braces.rs
add_explicit_type.rs
add_label_to_loop.rs
add_lifetime_to_type.rs
add_missing_impl_members.rs the "add missing members" assists: supported bracketed default const values 2023-08-08 21:57:55 +04:00
add_missing_match_arms.rs Add a test case to add_missing_match_arms 2023-09-22 13:51:19 +02:00
add_return_type.rs
add_turbo_fish.rs Migrate add_turbo_fish to mutable ast 2023-11-11 21:05:26 -05:00
apply_demorgan.rs Replace unwrap with expect 2023-10-04 13:06:23 +02:00
auto_import.rs use check_assist_by_label to pick assist 2023-10-31 22:13:07 +08:00
bind_unused_param.rs Better trait implementation support 2023-08-29 22:56:31 +07:00
bool_to_enum.rs style: simplify node_to_insert_before 2023-09-28 10:09:13 -07:00
change_visibility.rs limit change_visibility assist to applicable items 2023-07-22 17:16:51 +03:00
convert_bool_then.rs Parse builtin# syntax 2023-09-05 10:36:35 +02:00
convert_comment_block.rs v4 2023-09-22 13:32:20 +02:00
convert_integer_literal.rs
convert_into_to_from.rs
convert_iter_for_each_to_for.rs
convert_let_else_to_match.rs
convert_match_to_let_else.rs
convert_named_struct_to_tuple_struct.rs Deunwrap convert_named_struct_to_tuple_struct 2023-08-09 16:40:23 +02:00
convert_nested_function_to_closure.rs
convert_to_guarded_return.rs fix: allow more kinds of if let patterns in guarded return assist 2023-10-01 11:48:10 -07:00
convert_tuple_return_type_to_struct.rs style: clean up magic number for finding pattern usages 2023-10-04 08:04:59 -07:00
convert_tuple_struct_to_named_struct.rs
convert_two_arm_bool_match_to_matches_macro.rs Allow match to matches assist to trigger on non-literal bool arms 2023-08-01 12:10:38 +02:00
convert_while_to_loop.rs
destructure_tuple_binding.rs Updated search to expose some more functions and to make search take the search scope by reference. 2023-07-09 17:30:21 -04:00
desugar_doc_comment.rs v4 2023-09-22 13:32:20 +02:00
expand_glob_import.rs Updated search to expose some more functions and to make search take the search scope by reference. 2023-07-09 17:30:21 -04:00
extract_expressions_from_format_string.rs Don't allocate the format_args template string as an expression 2023-09-06 19:18:12 +02:00
extract_function.rs v3 2023-09-10 23:00:19 +02:00
extract_module.rs Updated search to expose some more functions and to make search take the search scope by reference. 2023-07-09 17:30:21 -04:00
extract_struct_from_enum_variant.rs
extract_type_alias.rs
extract_variable.rs chore: add unapplicable test for extract_variable without select 2023-10-28 10:06:09 +08:00
fix_visibility.rs fix the rest of the nits 2023-07-11 17:32:12 -04:00
flip_binexpr.rs
flip_comma.rs
flip_trait_bound.rs
generate_constant.rs
generate_default_from_enum_variant.rs
generate_default_from_new.rs Don't provide generate_default_from_new when impl self ty is missing 2023-08-07 03:23:41 +09:00
generate_delegate_methods.rs Deunwrap generate_delegate_methods 2023-08-09 23:42:52 +02:00
generate_delegate_trait.rs Remove unwraps from Generate delegate trait 2023-08-05 19:23:56 +03:00
generate_deref.rs
generate_derive.rs v2 2023-08-16 00:22:08 +02:00
generate_documentation_template.rs
generate_enum_is_method.rs
generate_enum_projection_method.rs
generate_enum_variant.rs
generate_from_impl_for_enum.rs
generate_function.rs remove other unwraps 2023-09-25 11:48:23 +00:00
generate_getter_or_setter.rs Unify getter and setter assists 2023-07-06 12:27:45 +02:00
generate_impl.rs
generate_is_empty_from_len.rs
generate_mut_trait_impl.rs make generate_mut_trait_impl assist trigged for std trait only 2023-11-05 12:27:10 +08:00
generate_new.rs
generate_trait_from_impl.rs Minor changes 2023-07-05 16:45:54 +02:00
inline_call.rs Auto merge of #15432 - alibektas:deunwrap/inline_call, r=Veykril 2023-09-22 07:03:02 +00:00
inline_const_as_literal.rs
inline_local_variable.rs fix parens when inlining closure local variables 2023-09-21 21:31:15 -07:00
inline_macro.rs Turn unresolved proc macro expansions into missing expressions 2023-08-05 20:00:37 +02:00
inline_type_alias.rs
into_to_qualified_from.rs Make QualPathTy case readable 2023-09-22 21:23:03 +02:00
introduce_named_generic.rs
introduce_named_lifetime.rs
invert_if.rs
merge_imports.rs
merge_match_arms.rs
move_bounds.rs
move_const_to_impl.rs Updated search to expose some more functions and to make search take the search scope by reference. 2023-07-09 17:30:21 -04:00
move_from_mod_rs.rs
move_guard.rs
move_module_to_file.rs
move_to_mod_rs.rs
number_representation.rs
promote_local_to_const.rs fix: field shorthand overwritten in promote local to const assist 2023-09-11 10:59:23 -07:00
pull_assignment_up.rs Use anonymous lifetime where possible 2023-06-29 23:27:28 +09:00
qualify_method_call.rs
qualify_path.rs
raw_string.rs
remove_dbg.rs Parse builtin# syntax 2023-09-05 10:36:35 +02:00
remove_mut.rs
remove_parentheses.rs
remove_unused_imports.rs Deunwrap remove_unused_imports 2023-08-10 01:22:26 +02:00
remove_unused_param.rs Rollback changes in remove_unused_param.rs 2023-08-29 23:06:12 +07:00
reorder_fields.rs
reorder_impl_items.rs
replace_arith_op.rs
replace_derive_with_manual_impl.rs HiddenDocAttr becomes DocHiddenAttr 2023-07-07 14:15:15 +02:00
replace_if_let_with_match.rs
replace_is_method_with_if_let_method.rs refactor: change generated variable name 2023-10-17 17:34:11 +08:00
replace_let_with_if_let.rs
replace_method_eager_lazy.rs
replace_named_generic_with_impl.rs Updated search to expose some more functions and to make search take the search scope by reference. 2023-07-09 17:30:21 -04:00
replace_qualified_name_with_use.rs
replace_string_with_char.rs
replace_try_expr_with_match.rs
replace_turbofish_with_explicit_type.rs
sort_items.rs
split_import.rs
toggle_ignore.rs
unmerge_match_arm.rs
unmerge_use.rs Give unmerge_use a label explaining what it will affect. 2023-09-16 13:29:03 -07:00
unnecessary_async.rs
unqualify_method_call.rs fix: remove unwrap 2023-10-23 23:12:07 +08:00
unwrap_block.rs
unwrap_result_return_type.rs fix panic with wrapping/unwrapping result return type assists 2023-09-24 16:00:55 -07:00
unwrap_tuple.rs
wrap_return_type_in_result.rs fix panic with wrapping/unwrapping result return type assists 2023-09-24 16:00:55 -07:00