about summary refs log tree commit diff
path: root/src/libsyntax/parse/common.rs
diff options
context:
space:
mode:
authorJohn Clements <clements@racket-lang.org>2013-03-05 17:02:23 -0800
committerJohn Clements <clements@racket-lang.org>2013-03-06 09:41:47 -0800
commit88451878f8eb12a32dbb0c1eded1a91cb6df8305 (patch)
tree8c56227da1962bcc64c55da61d05f75d4ffcf87d /src/libsyntax/parse/common.rs
parent67100ddb3519dedf8ab07371a381c7762f9fcc4f (diff)
downloadrust-88451878f8eb12a32dbb0c1eded1a91cb6df8305.tar.gz
rust-88451878f8eb12a32dbb0c1eded1a91cb6df8305.zip
removed unused abstraction over paths and value_paths
Diffstat (limited to 'src/libsyntax/parse/common.rs')
-rw-r--r--src/libsyntax/parse/common.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libsyntax/parse/common.rs b/src/libsyntax/parse/common.rs
index cdeb9b2f647..7af2204fafd 100644
--- a/src/libsyntax/parse/common.rs
+++ b/src/libsyntax/parse/common.rs
@@ -119,10 +119,6 @@ pub impl Parser {
                                                 id: self.get_id() })
     }
 
-    fn parse_value_ident(&self) -> ast::ident {
-        return self.parse_ident();
-    }
-
     // consume token 'tok' if it exists. Returns true if the given
     // token was present, false otherwise.
     fn eat(&self, tok: &token::Token) -> bool {