about summary refs log tree commit diff
path: root/src/libsyntax/parse/mod.rs
diff options
context:
space:
mode:
authorJohn Clements <clements@racket-lang.org>2013-03-29 10:04:48 -0700
committerJohn Clements <clements@racket-lang.org>2013-04-28 09:51:14 -0700
commit1b4ced8bcb39ab29ba1caaea0a44e881ccbbc9e1 (patch)
treef4be55a431eebc2f610f986fff3b57146c56c8c0 /src/libsyntax/parse/mod.rs
parent9f8d30a128aa8a75a3304e0e91178dcfb5535554 (diff)
downloadrust-1b4ced8bcb39ab29ba1caaea0a44e881ccbbc9e1.tar.gz
rust-1b4ced8bcb39ab29ba1caaea0a44e881ccbbc9e1.zip
get rid of prec.rs
prec.rs no longer had much to do with precedence; the token->binop
function fits better in token.rs, and the one-liner defining the
precedence of 'as' can go next to the other precedence stuff in
ast_util.rs
Diffstat (limited to 'src/libsyntax/parse/mod.rs')
-rw-r--r--src/libsyntax/parse/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs
index 9381358e161..d27d788e23a 100644
--- a/src/libsyntax/parse/mod.rs
+++ b/src/libsyntax/parse/mod.rs
@@ -36,9 +36,6 @@ pub mod attr;
 /// Common routines shared by parser mods
 pub mod common;
 
-/// Functions dealing with operator precedence
-pub mod prec;
-
 /// Routines the parser uses to classify AST nodes
 pub mod classify;