diff --git a/compiler/rustc_parse/src/parser/diagnostics.rs b/compiler/rustc_parse/src/parser/diagnostics.rs index dcb150f18aa..4f2a308f2e9 100644 --- a/compiler/rustc_parse/src/parser/diagnostics.rs +++ b/compiler/rustc_parse/src/parser/diagnostics.rs @@ -1220,7 +1220,7 @@ pub(super) fn maybe_recover_from_bad_type_plus( Ok(()) } - pub(super) fn maybe_recover_from_prefix_increment( + pub(super) fn recover_from_prefix_increment( &mut self, operand_expr: P, op_span: Span, @@ -1235,7 +1235,7 @@ pub(super) fn maybe_recover_from_prefix_increment( self.recover_from_inc_dec(operand_expr, kind, op_span) } - pub(super) fn maybe_recover_from_postfix_increment( + pub(super) fn recover_from_postfix_increment( &mut self, operand_expr: P, op_span: Span, diff --git a/compiler/rustc_parse/src/parser/expr.rs b/compiler/rustc_parse/src/parser/expr.rs index c9864fb9fa3..8ac29c2b5f6 100644 --- a/compiler/rustc_parse/src/parser/expr.rs +++ b/compiler/rustc_parse/src/parser/expr.rs @@ -273,7 +273,7 @@ pub(super) fn parse_assoc_expr_with( let op_span = self.prev_token.span.to(self.token.span); // Eat the second `+` self.bump(); - lhs = self.maybe_recover_from_postfix_increment(lhs, op_span)?; + lhs = self.recover_from_postfix_increment(lhs, op_span)?; continue; } @@ -601,7 +601,7 @@ macro_rules! make_it { this.bump(); let operand_expr = this.parse_dot_or_call_expr(Default::default())?; - this.maybe_recover_from_prefix_increment(operand_expr, pre_span, prev_is_semi) + this.recover_from_prefix_increment(operand_expr, pre_span, prev_is_semi) } token::Ident(..) if this.token.is_keyword(kw::Box) => { make_it!(this, attrs, |this, _| this.parse_box_expr(lo))