Skip to content

Commit e02d76a

Browse files
committed
fix(ide-assists): remove AssistKind::None
This was being used by a single assist, which qualifies under the "refactor" kind. The variant has been removed, and all usages updated accordingly. Signed-off-by: Prajwal S N <[email protected]>
1 parent c7845a6 commit e02d76a

File tree

5 files changed

+5
-15
lines changed

5 files changed

+5
-15
lines changed

crates/ide-assists/src/handlers/toggle_ignore.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ pub(crate) fn toggle_ignore(acc: &mut Assists, ctx: &AssistContext<'_>) -> Optio
3030

3131
match has_ignore_attribute(&func) {
3232
None => acc.add(
33-
AssistId::none("toggle_ignore"),
33+
AssistId::refactor("toggle_ignore"),
3434
"Ignore this test",
3535
attr.syntax().text_range(),
3636
|builder| builder.insert(attr.syntax().text_range().end(), "\n#[ignore]"),
3737
),
3838
Some(ignore_attr) => acc.add(
39-
AssistId::none("toggle_ignore"),
39+
AssistId::refactor("toggle_ignore"),
4040
"Re-enable this test",
4141
ignore_attr.syntax().text_range(),
4242
|builder| {

crates/ide-db/src/assists.rs

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ pub enum Command {
4343

4444
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
4545
pub enum AssistKind {
46-
// FIXME: does the None variant make sense? Probably not.
47-
None,
48-
4946
QuickFix,
5047
Generate,
5148
Refactor,
@@ -61,7 +58,7 @@ impl AssistKind {
6158
}
6259

6360
match self {
64-
AssistKind::None | AssistKind::Generate => true,
61+
AssistKind::Generate => true,
6562
AssistKind::Refactor => matches!(
6663
other,
6764
AssistKind::RefactorExtract
@@ -74,7 +71,6 @@ impl AssistKind {
7471

7572
pub fn name(&self) -> &str {
7673
match self {
77-
AssistKind::None => "None",
7874
AssistKind::QuickFix => "QuickFix",
7975
AssistKind::Generate => "Generate",
8076
AssistKind::Refactor => "Refactor",
@@ -90,7 +86,6 @@ impl FromStr for AssistKind {
9086

9187
fn from_str(s: &str) -> Result<Self, Self::Err> {
9288
match s {
93-
"None" => Ok(AssistKind::None),
9489
"QuickFix" => Ok(AssistKind::QuickFix),
9590
"Generate" => Ok(AssistKind::Generate),
9691
"Refactor" => Ok(AssistKind::Refactor),
@@ -108,10 +103,6 @@ impl FromStr for AssistKind {
108103
pub struct AssistId(pub &'static str, pub AssistKind, pub Option<usize>);
109104

110105
impl AssistId {
111-
pub fn none(id: &'static str) -> AssistId {
112-
AssistId(id, AssistKind::None, None)
113-
}
114-
115106
pub fn quick_fix(id: &'static str) -> AssistId {
116107
AssistId(id, AssistKind::QuickFix, None)
117108
}

crates/ide/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ impl Analysis {
753753
frange: FileRange,
754754
) -> Cancellable<Vec<Assist>> {
755755
let include_fixes = match &assist_config.allowed {
756-
Some(it) => it.iter().any(|&it| it == AssistKind::None || it == AssistKind::QuickFix),
756+
Some(it) => it.iter().any(|&it| it == AssistKind::QuickFix),
757757
None => true,
758758
};
759759

crates/rust-analyzer/src/lsp/from_proto.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ pub(crate) fn file_range_uri(
103103

104104
pub(crate) fn assist_kind(kind: lsp_types::CodeActionKind) -> Option<AssistKind> {
105105
let assist_kind = match &kind {
106-
k if k == &lsp_types::CodeActionKind::EMPTY => AssistKind::None,
107106
k if k == &lsp_types::CodeActionKind::QUICKFIX => AssistKind::QuickFix,
108107
k if k == &lsp_types::CodeActionKind::REFACTOR => AssistKind::Refactor,
109108
k if k == &lsp_types::CodeActionKind::REFACTOR_EXTRACT => AssistKind::RefactorExtract,

crates/rust-analyzer/src/lsp/to_proto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1477,7 +1477,7 @@ pub(crate) fn call_hierarchy_item(
14771477

14781478
pub(crate) fn code_action_kind(kind: AssistKind) -> lsp_types::CodeActionKind {
14791479
match kind {
1480-
AssistKind::None | AssistKind::Generate => lsp_types::CodeActionKind::EMPTY,
1480+
AssistKind::Generate => lsp_types::CodeActionKind::EMPTY,
14811481
AssistKind::QuickFix => lsp_types::CodeActionKind::QUICKFIX,
14821482
AssistKind::Refactor => lsp_types::CodeActionKind::REFACTOR,
14831483
AssistKind::RefactorExtract => lsp_types::CodeActionKind::REFACTOR_EXTRACT,

0 commit comments

Comments
 (0)