about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-05 15:21:03 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-05 15:39:26 -0800
commit9b443289cf32cbcff16768614340f0c844675340 (patch)
treeded9adede0c133b63c4cac911a4d58b76ffadf07 /src/libsyntax/parse
parent6f4c11be3b9706d1ba0e1b74b89de1478410a56f (diff)
downloadrust-9b443289cf32cbcff16768614340f0c844675340.tar.gz
rust-9b443289cf32cbcff16768614340f0c844675340.zip
Register new snapshots
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/lexer/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/parse/lexer/mod.rs b/src/libsyntax/parse/lexer/mod.rs
index 27b65e0f527..b282db5ba2b 100644
--- a/src/libsyntax/parse/lexer/mod.rs
+++ b/src/libsyntax/parse/lexer/mod.rs
@@ -764,7 +764,7 @@ impl<'a> StringReader<'a> {
         }
     }
 
-    // SNAP c9f6d69
+    // SNAP 361baab
     #[allow(unused)]
     fn old_escape_warning(&mut self, sp: Span) {
         self.span_diagnostic
@@ -797,7 +797,7 @@ impl<'a> StringReader<'a> {
                                     self.scan_unicode_escape(delim)
                                 } else {
                                     let res = self.scan_hex_digits(4u, delim, false);
-                                    // SNAP c9f6d69
+                                    // SNAP 361baab
                                     //let sp = codemap::mk_sp(escaped_pos, self.last_pos);
                                     //self.old_escape_warning(sp);
                                     res
@@ -805,7 +805,7 @@ impl<'a> StringReader<'a> {
                             }
                             'U' if !ascii_only => {
                                 let res = self.scan_hex_digits(8u, delim, false);
-                                // SNAP c9f6d69
+                                // SNAP 361baab
                                 //let sp = codemap::mk_sp(escaped_pos, self.last_pos);
                                 //self.old_escape_warning(sp);
                                 res