Lines Matching defs:parse_expr
1189 fn parse_expr(
1207 rhs = parse_expr(input, rhs, allow_struct, next)?;
1228 rhs = parse_expr(input, rhs, allow_struct, next)?;
1254 rhs = parse_expr(input, rhs, allow_struct, next)?;
1287 fn parse_expr(input: ParseStream, mut lhs: Expr, base: Precedence) -> Result<Expr> {
1300 rhs = parse_expr(input, rhs, next)?;
1354 parse_expr(
2003 return parse_expr(input, expr, allow_struct, Precedence::Any);
2013 return parse_expr(input, expr, allow_struct, Precedence::Any);
2113 parse_expr(input, lhs, allow_struct, Precedence::Compare)?