A4-Tacks
db027e057d
Fix indent for unresolved_field fixes
Examples
---
```rust
mod indent {
struct Foo {}
fn foo() {
let foo = Foo{};
foo.bar$0;
}
}
```
**Before this PR**:
```rust
mod indent {
struct Foo { bar: ()
}
fn foo() {
let foo = Foo{};
foo.bar;
}
}
```
**After this PR**:
```rust
mod indent {
struct Foo {
bar: ()
}
fn foo() {
let foo = Foo{};
foo.bar;
}
}
```
---
New field list add newline
```rust
mod indent {
struct Foo;
fn foo() {
Foo.bar$0;
}
}
```
**Before this PR**:
```rust
mod indent {
struct Foo{ bar: () }
fn foo() {
Foo.bar;
}
}
```
**After this PR**:
```rust
mod indent {
struct Foo {
bar: (),
}
fn foo() {
Foo.bar;
}
}
```
2025-09-05 15:57:51 +08:00
..
2025-08-17 22:28:04 +09:00
2025-07-31 10:55:10 +02:00
2025-08-18 06:24:35 +00:00
2025-08-17 22:28:04 +09:00
2025-08-02 21:39:22 +03:00
2025-08-26 19:33:46 +03:00
2025-08-24 02:26:37 +03:00
2025-08-26 05:55:08 +00:00
2025-08-25 19:19:31 +00:00
2025-08-25 19:19:31 +00:00
2025-09-05 15:57:51 +08: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-08-18 09:52:23 +02:00
2025-06-23 00:50:22 +03:00
2025-07-31 10:10:50 +02:00
2025-07-31 09:55:07 +02:00
2025-07-31 10:10:50 +02:00
2025-08-09 16:08:58 +00:00
2025-08-08 23:46:28 +02:00
2025-08-09 16:08:58 +00:00
2025-08-26 05:56:22 +00:00
2025-08-13 15:28:08 +08:00
2025-06-23 00:50:22 +03:00
2025-08-13 15:28:08 +08:00
2025-08-09 15:47:01 +08:00
2025-08-17 22:28:04 +09:00
2025-08-13 06:10:45 +00:00
2025-06-23 00:50:22 +03:00
2025-07-31 10:55:10 +02:00
2025-07-03 10:05:16 +02:00
2025-07-31 10:55:10 +02:00