Refactor parse_expr_res
.
This removes the final `Option<AttrWrapper>` argument.
This commit is contained in:
parent
43eae4cef4
commit
8170acb197
5 changed files with 33 additions and 28 deletions
|
@ -94,7 +94,8 @@ impl<'a> Parser<'a> {
|
|||
pub fn parse_expr(&mut self) -> PResult<'a, P<Expr>> {
|
||||
self.current_closure.take();
|
||||
|
||||
self.parse_expr_res(Restrictions::empty(), None)
|
||||
let attrs = self.parse_outer_attributes()?;
|
||||
self.parse_expr_res(Restrictions::empty(), attrs)
|
||||
}
|
||||
|
||||
/// Parses an expression, forcing tokens to be collected
|
||||
|
@ -107,7 +108,8 @@ impl<'a> Parser<'a> {
|
|||
}
|
||||
|
||||
fn parse_expr_catch_underscore(&mut self, restrictions: Restrictions) -> PResult<'a, P<Expr>> {
|
||||
match self.parse_expr_res(restrictions, None) {
|
||||
let attrs = self.parse_outer_attributes()?;
|
||||
match self.parse_expr_res(restrictions, attrs) {
|
||||
Ok(expr) => Ok(expr),
|
||||
Err(err) => match self.token.ident() {
|
||||
Some((Ident { name: kw::Underscore, .. }, IdentIsRaw::No))
|
||||
|
@ -134,9 +136,8 @@ impl<'a> Parser<'a> {
|
|||
pub(super) fn parse_expr_res(
|
||||
&mut self,
|
||||
r: Restrictions,
|
||||
attrs: Option<AttrWrapper>,
|
||||
attrs: AttrWrapper,
|
||||
) -> PResult<'a, P<Expr>> {
|
||||
let attrs = self.parse_or_use_outer_attributes(attrs)?;
|
||||
self.with_res(r, |this| this.parse_expr_assoc_with(0, LhsExpr::Unparsed { attrs }))
|
||||
}
|
||||
|
||||
|
@ -2343,7 +2344,8 @@ impl<'a> Parser<'a> {
|
|||
self.restrictions - Restrictions::STMT_EXPR - Restrictions::ALLOW_LET;
|
||||
let prev = self.prev_token.clone();
|
||||
let token = self.token.clone();
|
||||
match self.parse_expr_res(restrictions, None) {
|
||||
let attrs = self.parse_outer_attributes()?;
|
||||
match self.parse_expr_res(restrictions, attrs) {
|
||||
Ok(expr) => expr,
|
||||
Err(err) => self.recover_closure_body(err, before, prev, token, lo, decl_hi)?,
|
||||
}
|
||||
|
@ -2591,8 +2593,9 @@ impl<'a> Parser<'a> {
|
|||
|
||||
/// Parses the condition of a `if` or `while` expression.
|
||||
fn parse_expr_cond(&mut self) -> PResult<'a, P<Expr>> {
|
||||
let attrs = self.parse_outer_attributes()?;
|
||||
let mut cond =
|
||||
self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL | Restrictions::ALLOW_LET, None)?;
|
||||
self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL | Restrictions::ALLOW_LET, attrs)?;
|
||||
|
||||
CondChecker::new(self).visit_expr(&mut cond);
|
||||
|
||||
|
@ -2776,7 +2779,8 @@ impl<'a> Parser<'a> {
|
|||
(Err(err), Some((start_span, left))) if self.eat_keyword(kw::In) => {
|
||||
// We know for sure we have seen `for ($SOMETHING in`. In the happy path this would
|
||||
// happen right before the return of this method.
|
||||
let expr = match self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None) {
|
||||
let attrs = self.parse_outer_attributes()?;
|
||||
let expr = match self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, attrs) {
|
||||
Ok(expr) => expr,
|
||||
Err(expr_err) => {
|
||||
// We don't know what followed the `in`, so cancel and bubble up the
|
||||
|
@ -2810,7 +2814,8 @@ impl<'a> Parser<'a> {
|
|||
self.error_missing_in_for_loop();
|
||||
}
|
||||
self.check_for_for_in_in_typo(self.prev_token.span);
|
||||
let expr = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
|
||||
let attrs = self.parse_outer_attributes()?;
|
||||
let expr = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, attrs)?;
|
||||
Ok((pat, expr))
|
||||
}
|
||||
|
||||
|
@ -2922,7 +2927,8 @@ impl<'a> Parser<'a> {
|
|||
/// Parses a `match ... { ... }` expression (`match` token already eaten).
|
||||
fn parse_expr_match(&mut self) -> PResult<'a, P<Expr>> {
|
||||
let match_span = self.prev_token.span;
|
||||
let scrutinee = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
|
||||
let attrs = self.parse_outer_attributes()?;
|
||||
let scrutinee = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, attrs)?;
|
||||
|
||||
self.parse_match_block(match_span, match_span, scrutinee, MatchKind::Prefix)
|
||||
}
|
||||
|
@ -3126,8 +3132,9 @@ impl<'a> Parser<'a> {
|
|||
let arrow_span = this.prev_token.span;
|
||||
let arm_start_span = this.token.span;
|
||||
|
||||
let attrs = this.parse_outer_attributes()?;
|
||||
let expr =
|
||||
this.parse_expr_res(Restrictions::STMT_EXPR, None).map_err(|mut err| {
|
||||
this.parse_expr_res(Restrictions::STMT_EXPR, attrs).map_err(|mut err| {
|
||||
err.span_label(arrow_span, "while parsing the `match` arm starting here");
|
||||
err
|
||||
})?;
|
||||
|
@ -3332,7 +3339,8 @@ impl<'a> Parser<'a> {
|
|||
}
|
||||
|
||||
fn parse_match_guard_condition(&mut self) -> PResult<'a, P<Expr>> {
|
||||
self.parse_expr_res(Restrictions::ALLOW_LET | Restrictions::IN_IF_GUARD, None).map_err(
|
||||
let attrs = self.parse_outer_attributes()?;
|
||||
self.parse_expr_res(Restrictions::ALLOW_LET | Restrictions::IN_IF_GUARD, attrs).map_err(
|
||||
|mut err| {
|
||||
if self.prev_token == token::OpenDelim(Delimiter::Brace) {
|
||||
let sugg_sp = self.prev_token.span.shrink_to_lo();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue