We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a4919e commit d91794dCopy full SHA for d91794d
examples/c_expression/parser.rs
@@ -173,8 +173,6 @@ pub(crate) enum Expr {
173
/// and it returns a [`Parser`] that takes in a string and returns an [`Expr`] on
174
/// success.
175
pub(crate) fn pratt_parser(i: &mut &str) -> ModalResult<Expr> {
176
-
177
178
fn parser<'i>(precedence: i64) -> impl Parser<&'i str, Expr, ErrMode<ContextError>> {
179
move |i: &mut &str| {
180
use Infix::{Left, Neither, Right};
0 commit comments