about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorLymia Aluysia <lymia@lymiahugs.com>2018-03-14 02:00:41 -0500
committerLymia Aluysia <lymia@lymiahugs.com>2018-03-18 10:07:19 -0500
commit7d5c29b9eae5857c040bf6f1b2d729596c8af3ae (patch)
tree8a0880590ff513f1da9acb7dfa8d309c520c8fb1 /src/libsyntax/parse/parser.rs
parentfad1648e0f8299a8b108f85c2b1055eb37bdab9e (diff)
downloadrust-7d5c29b9eae5857c040bf6f1b2d729596c8af3ae.tar.gz
rust-7d5c29b9eae5857c040bf6f1b2d729596c8af3ae.zip
Feature gate raw identifiers.
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 4c1575cf589..c2ee78e9e9d 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -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)
             }