Feature gate raw identifiers.
This commit is contained in:
parent
fad1648e0f
commit
7d5c29b9ea
14 changed files with 62 additions and 5 deletions
|
@ -784,7 +784,7 @@ impl<'a> Parser<'a> {
|
|||
|
||||
fn parse_ident_common(&mut self, recover: bool) -> PResult<'a, ast::Ident> {
|
||||
match self.token {
|
||||
token::Ident(i, _) => {
|
||||
token::Ident(i, is_raw) => {
|
||||
if self.token.is_reserved_ident() {
|
||||
let mut err = self.expected_ident_found();
|
||||
if recover {
|
||||
|
@ -793,6 +793,9 @@ impl<'a> Parser<'a> {
|
|||
return Err(err);
|
||||
}
|
||||
}
|
||||
if is_raw {
|
||||
self.sess.raw_identifier_spans.borrow_mut().push(self.span);
|
||||
}
|
||||
self.bump();
|
||||
Ok(i)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue