1
Fork 0

Improve function names

This commit is contained in:
Noah Lev 2022-02-17 16:24:22 -08:00
parent 713a11b919
commit 29a5c363c7
2 changed files with 4 additions and 4 deletions

View file

@ -1220,7 +1220,7 @@ impl<'a> Parser<'a> {
Ok(())
}
pub(super) fn maybe_recover_from_prefix_increment(
pub(super) fn recover_from_prefix_increment(
&mut self,
operand_expr: P<Expr>,
op_span: Span,
@ -1235,7 +1235,7 @@ impl<'a> Parser<'a> {
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<Expr>,
op_span: Span,