diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2017-01-30 23:48:14 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2017-02-28 22:15:09 +0000 |
| commit | 0cc7053efa243c117b0d9278a5a62eb62ecee227 (patch) | |
| tree | 8e70a6cf999df43abf0d30f0dfaa5c036e1d23fa /src/libsyntax/print | |
| parent | d8b34e9a74a4e91c4283ba4002a050ac0150cec6 (diff) | |
| download | rust-0cc7053efa243c117b0d9278a5a62eb62ecee227.tar.gz rust-0cc7053efa243c117b0d9278a5a62eb62ecee227.zip | |
Remove `Token::MatchNt`.
Diffstat (limited to 'src/libsyntax/print')
| -rw-r--r-- | src/libsyntax/print/pprust.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index 593d551046b..ec962d03458 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -271,7 +271,6 @@ pub fn token_to_string(tok: &Token) -> String { /* Other */ token::DocComment(s) => s.to_string(), token::SubstNt(s) => format!("${}", s), - token::MatchNt(s, t) => format!("${}:{}", s, t), token::Eof => "<eof>".to_string(), token::Whitespace => " ".to_string(), token::Comment => "/* */".to_string(), |
