9 lines
166 B
Rust
9 lines
166 B
Rust
// rustfmt-version: Two
|
|
|
|
pub fn parse_conditional<'a, I: 'a>()
|
|
-> impl Parser<Input = I, Output = Expr, PartialState = ()> + 'a
|
|
where
|
|
I: Stream<Item = char>,
|
|
{
|
|
}
|