parser: don't use unreachable!() in fn unexpected.

This commit is contained in:
Mazdak Farrokhzad 2019-11-13 12:05:37 +01:00
parent 374ad1b006
commit dcd91d5ceb
3 changed files with 33 additions and 1 deletions

View file

@ -443,7 +443,9 @@ impl<'a> Parser<'a> {
crate fn unexpected<T>(&mut self) -> PResult<'a, T> {
match self.expect_one_of(&[], &[]) {
Err(e) => Err(e),
Ok(_) => unreachable!(),
// We can get `Ok(true)` from `recover_closing_delimiter`
// which is called in `expected_one_of_not_found`.
Ok(_) => FatalError.raise(),
}
}