Updates all the various files utilized in the system and idempotence tests to directly use the corresponding 'style_edition' configuration as opposed to keeping the original 'version' values and relying on the mapping.
9 lines
173 B
Rust
9 lines
173 B
Rust
// rustfmt-style_edition: 2024
|
|
|
|
pub fn parse_conditional<'a, I: 'a>()
|
|
-> impl Parser<Input = I, Output = Expr, PartialState = ()> + 'a
|
|
where
|
|
I: Stream<Item = char>,
|
|
{
|
|
}
|