rust-analyzer/crates/ide-assists
A4-Tacks 168ca55a99
Fix not applicable on trailing comma for remove_dbg
`remove_dbg` not applicable for whitespaces after trailing comma

Example
---
```rust
fn foo() {
    dbg!(
        bar(),
    );
}
```

**Before this PR**:

Assist not applicable

**After this PR**:

```rust
fn foo() {
    bar();
}
```
2025-09-21 11:05:10 +08:00
..
src Fix not applicable on trailing comma for remove_dbg 2025-09-21 11:05:10 +08:00
Cargo.toml Don't run doctests 2025-06-23 00:50:22 +03:00