Commit graph

4 commits

Author SHA1 Message Date
moxian
a70aedada5 Add a split-use pass.
It transforms "use std::io::{Read, Write}" into
"use std::io::Read; use std::io::Write"

Which later allows to remove just precisely the statements
we do not need, and leave rest be.

The test from the last commit does not pass, but that
is seemingly to do with the test harness setup, since it
works fine locally.
2025-03-31 04:07:28 -07:00
133d42d9ba more 2023-04-01 16:15:14 +02:00
fdfde615f6 item deleter pass 2023-01-22 13:19:18 +01:00
527e3ca657 restructure passes 2023-01-22 11:51:37 +01:00