A4-Tacks 5f8cfeb3f4
fix: convert_integer_literal not on selected
`convert_integer_literal` can only convert the first literal,
it is not reasonable to apply it when selected

Example
---

```rust
fn main() {
    $01+1$0;
}
```

**Assist old outputs**:

```
Convert 1 to 0b1
Convert 1 to 0o1
Convert 1 to 0x1
Replace arithmetic with call to checked_*
Replace arithmetic with call to saturating_*
Replace arithmetic with call to wrapping_*
Extract into variable
Extract into constant
Extract into static
Extract into function
```

**Assist this PR outputs**:

```
Replace arithmetic with call to checked_*
Replace arithmetic with call to saturating_*
Replace arithmetic with call to wrapping_*
Extract into variable
Extract into constant
Extract into static
Extract into function
```
2025-08-22 17:13:30 +08:00
..
2025-07-31 10:55:10 +02:00
2025-08-13 15:28:08 +08:00
2025-08-13 15:33:08 +08:00
2025-08-15 05:04:41 +00:00
2025-08-09 16:08:58 +00:00
2025-08-09 16:08:58 +00:00
2025-07-31 10:55:10 +02:00
2025-07-31 10:55:10 +02:00
2025-07-31 09:55:07 +02:00
2025-08-09 16:08:58 +00:00
2025-08-13 15:28:08 +08:00
2025-08-09 15:47:01 +08:00
2025-07-31 10:55:10 +02:00
2025-07-31 10:55:10 +02:00
2025-07-31 10:55:10 +02:00