about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorPiotr Czarnecki <pioczarn@gmail.com>2015-04-21 12:02:12 +0200
committerPiotr Czarnecki <pioczarn@gmail.com>2015-04-21 12:02:12 +0200
commit13bc8afa4b56e8d7b012f35a35a11087739abf15 (patch)
treef8a7c36c4078df4b108ae9ad5c8e80fab8ce0255 /src/libsyntax
parente5e343aeb78a8fe7fed897eae1e79019383691e8 (diff)
downloadrust-13bc8afa4b56e8d7b012f35a35a11087739abf15.tar.gz
rust-13bc8afa4b56e8d7b012f35a35a11087739abf15.zip
Model lexer: Fix remaining issues
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/codemap.rs2
-rw-r--r--src/libsyntax/ext/tt/macro_parser.rs2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs
index a0bde8f6c52..dfdaa47d8b9 100644
--- a/src/libsyntax/codemap.rs
+++ b/src/libsyntax/codemap.rs
@@ -7,8 +7,6 @@
 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
-//
-// ignore-lexer-test FIXME #15679
 
 //! The CodeMap tracks all the source code used within a single crate, mapping
 //! from integer byte positions to the original source code location. Each bit
diff --git a/src/libsyntax/ext/tt/macro_parser.rs b/src/libsyntax/ext/tt/macro_parser.rs
index 9c3a556b210..58df4038403 100644
--- a/src/libsyntax/ext/tt/macro_parser.rs
+++ b/src/libsyntax/ext/tt/macro_parser.rs
@@ -7,8 +7,6 @@
 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
-//
-// ignore-lexer-test FIXME #15679
 
 //! This is an Earley-like parser, without support for in-grammar nonterminals,
 //! only by calling out to the main rust parser for named nonterminals (which it