pub fn parse_expr_suffix<P: Parser>(
    p: &mut P,
    prefix: Expr,
    prec: ExprPrec
) -> ReportedResult<Expr>
Expand description

Parse an expression suffix. Given an already parsed expression and its precedence, try to parse additional tokens that extend the already parsed expression. This is currently limited to binary operations.