about summary refs log tree commit diff
path: root/src/comp/syntax/parse
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-02-03 17:39:39 -0800
committerKevin Atkinson <kevina@cs.utah.edu>2012-02-03 20:54:18 -0700
commit8fc624bc08df5cbb2a507231fe2c91cc56647ac0 (patch)
tree51c0507ffde37aabd18b875e5f781571b9c8b582 /src/comp/syntax/parse
parentdbb13883f79cc4a1d232bd3fa97f0da0b58872bd (diff)
downloadrust-8fc624bc08df5cbb2a507231fe2c91cc56647ac0.tar.gz
rust-8fc624bc08df5cbb2a507231fe2c91cc56647ac0.zip
Fix various drift issues in the qq branch.
Diffstat (limited to 'src/comp/syntax/parse')
-rw-r--r--src/comp/syntax/parse/lexer.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/comp/syntax/parse/lexer.rs b/src/comp/syntax/parse/lexer.rs
index 2ad3a7f0135..00bc73baeba 100644
--- a/src/comp/syntax/parse/lexer.rs
+++ b/src/comp/syntax/parse/lexer.rs
@@ -711,9 +711,12 @@ fn gather_comments_and_literals(cm: codemap::codemap,
         }
         let tok = next_token(rdr);
         if is_lit(tok.tok) {
-            literals += [{lit: rdr.get_str_from(tok.bpos), pos: tok.chpos}];
+            let s = rdr.get_str_from(tok.bpos);
+            literals += [{lit: s, pos: tok.chpos}];
+            log(debug, "tok lit: " + s);
+        } else {
+            log(debug, "tok: " + token::to_str(rdr, tok.tok));
         }
-        log(debug, "tok: " + token::to_str(rdr, tok.tok));
         first_read = false;
     }
     ret {cmnts: comments, lits: literals};