Files
rust/compiler
Mara Bos cc5ee70b1a Simplify expansion for format_args!().
Instead of calling new(), we can just use a struct expression directly.

Before:

        Placeholder::new(…, …, …, …)

After:

        Placeholder {
                position: …,
                flags: …,
                width: …,
                precision: …,
        }
2025-03-30 10:42:00 +02:00
..
2025-03-23 18:18:47 +00:00
2025-03-15 06:34:36 +00:00
2025-03-28 12:14:09 +00:00