Fix test after rebase

This commit is contained in:
Esteban Küber 2018-02-01 14:16:53 -08:00
parent 378e73e6db
commit fd3f2312a7
6 changed files with 33 additions and 61 deletions

View file

@ -777,10 +777,6 @@ impl<'a> Parser<'a> {
self.parse_ident_common(true)
}
pub fn parse_ident_attr(&mut self) -> PResult<'a, ast::Ident> {
self.parse_ident()
}
fn parse_ident_common(&mut self, recover: bool) -> PResult<'a, ast::Ident> {
match self.token {
token::Ident(i) => {