about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorJeffrey Seyfried <jeffrey.seyfried@gmail.com>2017-01-30 23:48:14 +0000
committerJeffrey Seyfried <jeffrey.seyfried@gmail.com>2017-02-28 22:15:09 +0000
commit0cc7053efa243c117b0d9278a5a62eb62ecee227 (patch)
tree8e70a6cf999df43abf0d30f0dfaa5c036e1d23fa /src/libsyntax/parse
parentd8b34e9a74a4e91c4283ba4002a050ac0150cec6 (diff)
downloadrust-0cc7053efa243c117b0d9278a5a62eb62ecee227.tar.gz
rust-0cc7053efa243c117b0d9278a5a62eb62ecee227.zip
Remove `Token::MatchNt`.
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/token.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs
index cb052b9593d..5b65aac92b8 100644
--- a/src/libsyntax/parse/token.rs
+++ b/src/libsyntax/parse/token.rs
@@ -152,9 +152,6 @@ pub enum Token {
     // Can be expanded into several tokens.
     /// Doc comment
     DocComment(ast::Name),
-    // In left-hand-sides of MBE macros:
-    /// Parse a nonterminal (name to bind, name of NT)
-    MatchNt(ast::Ident, ast::Ident),
     // In right-hand-sides of MBE macros:
     /// A syntactic variable that will be filled in by macro expansion.
     SubstNt(ast::Ident),