Rollup merge of #58654 - estebank:underflow, r=nikomatsakis
Do not underflow after resetting unmatched braces count Fix #58638. r? @oli-obk
This commit is contained in:
commit
2db0e489bc
@ -1184,8 +1184,10 @@ impl<'a> Parser<'a> {
|
|||||||
match ate {
|
match ate {
|
||||||
Some(_) => {
|
Some(_) => {
|
||||||
// See doc comment for `unmatched_angle_bracket_count`.
|
// See doc comment for `unmatched_angle_bracket_count`.
|
||||||
self.unmatched_angle_bracket_count -= 1;
|
if self.unmatched_angle_bracket_count > 0 {
|
||||||
debug!("expect_gt: (decrement) count={:?}", self.unmatched_angle_bracket_count);
|
self.unmatched_angle_bracket_count -= 1;
|
||||||
|
debug!("expect_gt: (decrement) count={:?}", self.unmatched_angle_bracket_count);
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
},
|
},
|
||||||
@ -2248,8 +2250,10 @@ impl<'a> Parser<'a> {
|
|||||||
|
|
||||||
// See doc comment for `unmatched_angle_bracket_count`.
|
// See doc comment for `unmatched_angle_bracket_count`.
|
||||||
self.expect(&token::Gt)?;
|
self.expect(&token::Gt)?;
|
||||||
self.unmatched_angle_bracket_count -= 1;
|
if self.unmatched_angle_bracket_count > 0 {
|
||||||
debug!("parse_qpath: (decrement) count={:?}", self.unmatched_angle_bracket_count);
|
self.unmatched_angle_bracket_count -= 1;
|
||||||
|
debug!("parse_qpath: (decrement) count={:?}", self.unmatched_angle_bracket_count);
|
||||||
|
}
|
||||||
|
|
||||||
self.expect(&token::ModSep)?;
|
self.expect(&token::ModSep)?;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user