Files
rust-analyzer/crates/syntax
A4-Tacks d53146a013 Add ide-assist: add_explicit_method_call_deref
Insert explicit method call reference and dereferences.

Example
---
```rust
struct Foo;
impl Foo { fn foo(&self) {} }
fn test() {
    Foo$0.$0foo();
}
```

->

```rust
struct Foo;
impl Foo { fn foo(&self) {} }
fn test() {
    (&Foo).foo();
}
```
2025-11-08 21:55:36 +08:00
..
2025-03-15 21:32:01 +01:00
2025-06-23 00:50:22 +03:00