Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #16762 - wyatt-herkamp:master, r=Veykril
Added QuickFix for unresolved field. Adds an AssistKind::QuickFix for unresolved field. Currently, Snippets are not available for Diagnostics. So the type defaults to the Unit type if the type is not able to be inferred. https://github.com/rust-lang/rust-analyzer/assets/11785959/bd4c67bd-f8cb-4254-9a87-641ae80a7a28 Closes https://github.com/rust-lang/rust-analyzer/issues/4563
bors 2024-03-11
parent a5035f4 · parent 4f0bc1a · commit a58f574
-rw-r--r--crates/ide-diagnostics/src/handlers/unresolved_field.rs301
1 files changed, 293 insertions, 8 deletions
diff --git a/crates/ide-diagnostics/src/handlers/unresolved_field.rs b/crates/ide-diagnostics/src/handlers/unresolved_field.rs
index 4c01a2d155..06399e5f00 100644
--- a/crates/ide-diagnostics/src/handlers/unresolved_field.rs
+++ b/crates/ide-diagnostics/src/handlers/unresolved_field.rs
@@ -1,11 +1,22 @@
-use hir::{db::ExpandDatabase, HirDisplay, InFile};
+use std::iter;
+
+use hir::{db::ExpandDatabase, Adt, HasSource, HirDisplay, InFile, Struct, Union};
use ide_db::{
assists::{Assist, AssistId, AssistKind},
base_db::FileRange,
+ helpers::is_editable_crate,
label::Label,
- source_change::SourceChange,
+ source_change::{SourceChange, SourceChangeBuilder},
+};
+use syntax::{
+ algo,
+ ast::{self, edit::IndentLevel, make, FieldList, Name, Visibility},
+ AstNode, AstPtr, Direction, SyntaxKind, TextSize,
+};
+use syntax::{
+ ast::{edit::AstNodeEdit, Type},
+ SyntaxNode,
};
-use syntax::{ast, AstNode, AstPtr};
use text_edit::TextEdit;
use crate::{adjusted_display_range, Diagnostic, DiagnosticCode, DiagnosticsContext};
@@ -46,15 +57,191 @@ pub(crate) fn unresolved_field(
}
fn fixes(ctx: &DiagnosticsContext<'_>, d: &hir::UnresolvedField) -> Option<Vec<Assist>> {
- if d.method_with_same_name_exists {
- method_fix(ctx, &d.expr)
- } else {
- // FIXME: add quickfix
+ let mut fixes = if d.method_with_same_name_exists { method_fix(ctx, &d.expr) } else { None };
+ if let Some(fix) = add_field_fix(ctx, d) {
+ fixes.get_or_insert_with(Vec::new).extend(fix);
+ }
+ fixes
+}
+
+fn add_field_fix(ctx: &DiagnosticsContext<'_>, d: &hir::UnresolvedField) -> Option<Vec<Assist>> {
+ // Get the FileRange of the invalid field access
+ let root = ctx.sema.db.parse_or_expand(d.expr.file_id);
+ let expr = d.expr.value.to_node(&root);
+
+ let error_range = ctx.sema.original_range_opt(expr.syntax())?;
+ // Convert the receiver to an ADT
+ let adt = d.receiver.as_adt()?;
+ let target_module = adt.module(ctx.sema.db);
+
+ let suggested_type =
+ if let Some(new_field_type) = ctx.sema.type_of_expr(&expr).map(|v| v.adjusted()) {
+ let display =
+ new_field_type.display_source_code(ctx.sema.db, target_module.into(), true).ok();
+ make::ty(display.as_deref().unwrap_or("()"))
+ } else {
+ make::ty("()")
+ };
- None
+ if !is_editable_crate(target_module.krate(), ctx.sema.db) {
+ return None;
+ }
+
+ // FIXME: Add Snippet Support
+ let field_name = d.name.as_str()?;
+
+ match adt {
+ Adt::Struct(adt_struct) => {
+ add_field_to_struct_fix(ctx, adt_struct, field_name, suggested_type, error_range)
+ }
+ Adt::Union(adt_union) => {
+ add_variant_to_union(ctx, adt_union, field_name, suggested_type, error_range)
+ }
+ _ => None,
}
}
+fn add_variant_to_union(
+ ctx: &DiagnosticsContext<'_>,
+ adt_union: Union,
+ field_name: &str,
+ suggested_type: Type,
+ error_range: FileRange,
+) -> Option<Vec<Assist>> {
+ let adt_source = adt_union.source(ctx.sema.db)?;
+ let adt_syntax = adt_source.syntax();
+ let Some(field_list) = adt_source.value.record_field_list() else {
+ return None;
+ };
+ let range = adt_syntax.original_file_range(ctx.sema.db);
+ let field_name = make::name(field_name);
+ let (offset, record_field) =
+ record_field_layout(None, field_name, suggested_type, field_list, adt_syntax.value)?;
+
+ let mut src_change_builder = SourceChangeBuilder::new(range.file_id);
+ src_change_builder.insert(offset, record_field);
+ Some(vec![Assist {
+ id: AssistId("add-variant-to-union", AssistKind::QuickFix),
+ label: Label::new("Add field to union".to_owned()),
+ group: None,
+ target: error_range.range,
+ source_change: Some(src_change_builder.finish()),
+ trigger_signature_help: false,
+ }])
+}
+fn add_field_to_struct_fix(
+ ctx: &DiagnosticsContext<'_>,
+ adt_struct: Struct,
+ field_name: &str,
+ suggested_type: Type,
+ error_range: FileRange,
+) -> Option<Vec<Assist>> {
+ let struct_source = adt_struct.source(ctx.sema.db)?;
+ let struct_syntax = struct_source.syntax();
+ let struct_range = struct_syntax.original_file_range(ctx.sema.db);
+ let field_list = struct_source.value.field_list();
+ match field_list {
+ Some(FieldList::RecordFieldList(field_list)) => {
+ // Get range of final field in the struct
+ let visibility = if error_range.file_id == struct_range.file_id {
+ None
+ } else {
+ Some(make::visibility_pub_crate())
+ };
+ let field_name = make::name(field_name);
+
+ let (offset, record_field) = record_field_layout(
+ visibility,
+ field_name,
+ suggested_type,
+ field_list,
+ struct_syntax.value,
+ )?;
+
+ let mut src_change_builder = SourceChangeBuilder::new(struct_range.file_id);
+
+ // FIXME: Allow for choosing a visibility modifier see https://github.com/rust-lang/rust-analyzer/issues/11563
+ src_change_builder.insert(offset, record_field);
+ Some(vec![Assist {
+ id: AssistId("add-field-to-record-struct", AssistKind::QuickFix),
+ label: Label::new("Add field to Record Struct".to_owned()),
+ group: None,
+ target: error_range.range,
+ source_change: Some(src_change_builder.finish()),
+ trigger_signature_help: false,
+ }])
+ }
+ None => {
+ // Add a field list to the Unit Struct
+ let mut src_change_builder = SourceChangeBuilder::new(struct_range.file_id);
+ let field_name = make::name(field_name);
+ let visibility = if error_range.file_id == struct_range.file_id {
+ None
+ } else {
+ Some(make::visibility_pub_crate())
+ };
+ // FIXME: Allow for choosing a visibility modifier see https://github.com/rust-lang/rust-analyzer/issues/11563
+ let indent = IndentLevel::from_node(struct_syntax.value) + 1;
+
+ let field = make::record_field(visibility, field_name, suggested_type).indent(indent);
+ let record_field_list = make::record_field_list(iter::once(field));
+ // A Unit Struct with no `;` is invalid syntax. We should not suggest this fix.
+ let semi_colon =
+ algo::skip_trivia_token(struct_syntax.value.last_token()?, Direction::Prev)?;
+ if semi_colon.kind() != SyntaxKind::SEMICOLON {
+ return None;
+ }
+ src_change_builder.replace(semi_colon.text_range(), record_field_list.to_string());
+
+ Some(vec![Assist {
+ id: AssistId("convert-unit-struct-to-record-struct", AssistKind::QuickFix),
+ label: Label::new("Convert Unit Struct to Record Struct and add field".to_owned()),
+ group: None,
+ target: error_range.range,
+ source_change: Some(src_change_builder.finish()),
+ trigger_signature_help: false,
+ }])
+ }
+ Some(FieldList::TupleFieldList(_tuple)) => {
+ // FIXME: Add support for Tuple Structs. Tuple Structs are not sent to this diagnostic
+ None
+ }
+ }
+}
+/// Used to determine the layout of the record field in the struct.
+fn record_field_layout(
+ visibility: Option<Visibility>,
+ name: Name,
+ suggested_type: Type,
+ field_list: ast::RecordFieldList,
+ struct_syntax: &SyntaxNode,
+) -> Option<(TextSize, String)> {
+ let (offset, needs_comma, trailing_new_line, indent) = match field_list.fields().last() {
+ Some(record_field) => {
+ let syntax = algo::skip_trivia_token(field_list.r_curly_token()?, Direction::Prev)?;
+
+ let last_field_syntax = record_field.syntax();
+ let last_field_indent = IndentLevel::from_node(last_field_syntax);
+ (
+ last_field_syntax.text_range().end(),
+ syntax.kind() != SyntaxKind::COMMA,
+ false,
+ last_field_indent,
+ )
+ }
+ // Empty Struct. Add a field right before the closing brace
+ None => {
+ let indent = IndentLevel::from_node(struct_syntax) + 1;
+ let offset = field_list.r_curly_token()?.text_range().start();
+ (offset, false, true, indent)
+ }
+ };
+ let comma = if needs_comma { ",\n" } else { "" };
+ let trailing_new_line = if trailing_new_line { "\n" } else { "" };
+ let record_field = make::record_field(visibility, name, suggested_type);
+
+ Some((offset, format!("{comma}{indent}{record_field}{trailing_new_line}")))
+}
// FIXME: We should fill out the call here, move the cursor and trigger signature help
fn method_fix(
ctx: &DiagnosticsContext<'_>,
@@ -77,9 +264,11 @@ fn method_fix(
}
#[cfg(test)]
mod tests {
+
use crate::{
tests::{
check_diagnostics, check_diagnostics_with_config, check_diagnostics_with_disabled,
+ check_fix,
},
DiagnosticsConfig,
};
@@ -168,4 +357,100 @@ fn foo() {
config.disabled.insert("syntax-error".to_owned());
check_diagnostics_with_config(config, "fn foo() { (). }");
}
+
+ #[test]
+ fn unresolved_field_fix_on_unit() {
+ check_fix(
+ r#"
+ struct Foo;
+
+ fn foo() {
+ Foo.bar$0;
+ }
+ "#,
+ r#"
+ struct Foo{ bar: () }
+
+ fn foo() {
+ Foo.bar;
+ }
+ "#,
+ );
+ }
+ #[test]
+ fn unresolved_field_fix_on_empty() {
+ check_fix(
+ r#"
+ struct Foo{
+ }
+
+ fn foo() {
+ let foo = Foo{};
+ foo.bar$0;
+ }
+ "#,
+ r#"
+ struct Foo{
+ bar: ()
+ }
+
+ fn foo() {
+ let foo = Foo{};
+ foo.bar;
+ }
+ "#,
+ );
+ }
+ #[test]
+ fn unresolved_field_fix_on_struct() {
+ check_fix(
+ r#"
+ struct Foo{
+ a: i32
+ }
+
+ fn foo() {
+ let foo = Foo{a: 0};
+ foo.bar$0;
+ }
+ "#,
+ r#"
+ struct Foo{
+ a: i32,
+ bar: ()
+ }
+
+ fn foo() {
+ let foo = Foo{a: 0};
+ foo.bar;
+ }
+ "#,
+ );
+ }
+ #[test]
+ fn unresolved_field_fix_on_union() {
+ check_fix(
+ r#"
+ union Foo{
+ a: i32
+ }
+
+ fn foo() {
+ let foo = Foo{a: 0};
+ foo.bar$0;
+ }
+ "#,
+ r#"
+ union Foo{
+ a: i32,
+ bar: ()
+ }
+
+ fn foo() {
+ let foo = Foo{a: 0};
+ foo.bar;
+ }
+ "#,
+ );
+ }
}