about summary refs log tree commit diff
path: root/src/libsyntax/print
diff options
context:
space:
mode:
authorPiotr Czarnecki <pioczarn@gmail.com>2014-10-07 00:18:24 +0100
committerPiotr Czarnecki <pioczarn@gmail.com>2014-11-05 23:06:01 +0100
commit6f30a4ee6c35342cc2775d77882ad26fc31ba61e (patch)
tree91b1dd2f9aa3ecc25cbe88193b2db99adb524d02 /src/libsyntax/print
parent38ce6d9eac5d0bcfa0c102bc64393a987b4a43e3 (diff)
downloadrust-6f30a4ee6c35342cc2775d77882ad26fc31ba61e.tar.gz
rust-6f30a4ee6c35342cc2775d77882ad26fc31ba61e.zip
Remove `Matcher`s
Diffstat (limited to 'src/libsyntax/print')
-rw-r--r--src/libsyntax/print/pprust.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs
index 12ce81eedca..8ffc2aa3583 100644
--- a/src/libsyntax/print/pprust.rs
+++ b/src/libsyntax/print/pprust.rs
@@ -272,7 +272,6 @@ pub fn token_to_string(tok: &Token) -> String {
             token::NtPat(..)      => "an interpolated pattern".into_string(),
             token::NtIdent(..)    => "an interpolated identifier".into_string(),
             token::NtTT(..)       => "an interpolated tt".into_string(),
-            token::NtMatchers(..) => "an interpolated matcher sequence".into_string(),
         }
     }
 }