about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorJason Langenauer <jason@jasonlangenauer.com>2018-11-26 21:21:17 +0100
committerJason Langenauer <jason@jasonlangenauer.com>2018-11-26 21:21:17 +0100
commitcd20be50912170842689e4f936c31c5a28184432 (patch)
treec4b6acfd3c57d87870fa7762a2d5614c7276460e /src/libsyntax/parse
parent6bfb46e4ac9a2704f06de1a2ff7a4612cd70c8cb (diff)
downloadrust-cd20be50912170842689e4f936c31c5a28184432.tar.gz
rust-cd20be50912170842689e4f936c31c5a28184432.zip
Update outdated code comments in StringReader
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/lexer/mod.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsyntax/parse/lexer/mod.rs b/src/libsyntax/parse/lexer/mod.rs
index 0584cd5a3df..c90c62c13f9 100644
--- a/src/libsyntax/parse/lexer/mod.rs
+++ b/src/libsyntax/parse/lexer/mod.rs
@@ -60,11 +60,11 @@ pub struct StringReader<'a> {
     // cache a direct reference to the source text, so that we don't have to
     // retrieve it via `self.source_file.src.as_ref().unwrap()` all the time.
     src: Lrc<String>,
-    /// Stack of open delimiters and their spans. Used for error message.
     token: token::Token,
     span: Span,
     /// The raw source span which *does not* take `override_span` into account
     span_src_raw: Span,
+    /// Stack of open delimiters and their spans. Used for error message.
     open_braces: Vec<(token::DelimToken, Span)>,
     /// The type and spans for all braces
     ///
@@ -506,8 +506,7 @@ impl<'a> StringReader<'a> {
         }
     }
 
-    /// Advance the StringReader by one character. If a newline is
-    /// discovered, add it to the SourceFile's list of line start offsets.
+    /// Advance the StringReader by one character.
     crate fn bump(&mut self) {
         let next_src_index = self.src_index(self.next_pos);
         if next_src_index < self.end_src_index {