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