From: Mazdak Farrokhzad Date: Sun, 8 Dec 2019 10:04:26 +0000 (+0100) Subject: functionalize parse_generic_bound X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=18e5b2f98c7768f0342333e7b6bb6c506f663515;p=rust.git functionalize parse_generic_bound --- diff --git a/src/librustc_parse/parser/ty.rs b/src/librustc_parse/parser/ty.rs index f0a1b36bc36..72f831aab06 100644 --- a/src/librustc_parse/parser/ty.rs +++ b/src/librustc_parse/parser/ty.rs @@ -363,13 +363,15 @@ fn parse_generic_bounds_common( let mut last_plus_span = None; let mut was_negative = false; while self.can_begin_bound() { - self.parse_generic_bound( - colon_span, - last_plus_span, - &mut bounds, - &mut negative_bounds, - &mut was_negative, - )?; + match self.parse_generic_bound(colon_span, last_plus_span)? { + Ok(bound) => bounds.push(bound), + Err(neg_sp) => { + was_negative = true; + if let Some(neg_sp) = neg_sp { + negative_bounds.push(neg_sp); + } + } + } if !allow_plus || !self.eat_plus() { break @@ -436,10 +438,7 @@ fn parse_generic_bound( &mut self, colon_span: Option, last_plus_span: Option, - bounds: &mut Vec, - negative_bounds: &mut Vec, - was_negative: &mut bool, - ) -> PResult<'a, ()> { + ) -> PResult<'a, Result>> { let lo = self.token.span; let has_parens = self.eat(&token::OpenDelim(token::Paren)); let inner_lo = self.token.span; @@ -447,10 +446,11 @@ fn parse_generic_bound( let question = if self.eat(&token::Question) { Some(self.prev_span) } else { None }; if self.token.is_lifetime() { self.error_opt_out_lifetime(question); - bounds.push(GenericBound::Outlives(self.expect_lifetime())); + let bound = GenericBound::Outlives(self.expect_lifetime()); if has_parens { self.recover_paren_lifetime(lo, inner_lo)?; } + Ok(Ok(bound)) } else { let lifetime_defs = self.parse_late_bound_lifetime_defs()?; let path = self.parse_path(PathStyle::Type)?; @@ -459,10 +459,7 @@ fn parse_generic_bound( } let poly_span = lo.to(self.prev_span); if is_negative { - *was_negative = true; - if let Some(sp) = last_plus_span.or(colon_span) { - negative_bounds.push(sp.to(poly_span)); - } + Ok(Err(last_plus_span.or(colon_span).map(|sp| sp.to(poly_span)))) } else { let poly_trait = PolyTraitRef::new(lifetime_defs, path, poly_span); let modifier = if question.is_some() { @@ -470,10 +467,9 @@ fn parse_generic_bound( } else { TraitBoundModifier::None }; - bounds.push(GenericBound::Trait(poly_trait, modifier)); + Ok(Ok(GenericBound::Trait(poly_trait, modifier))) } } - Ok(()) } fn error_opt_out_lifetime(&self, question: Option) {