summary refs log tree commit diff
path: root/src/libsyntax/parse/mod.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-11-18 17:56:50 -0800
committerBrian Anderson <banderson@mozilla.com>2012-11-26 18:13:54 -0800
commitbe6613e048c889a0aeaff056131c2406259f1fb4 (patch)
tree1067f383db3a97a6b85e11637ef23b0a0a6a3549 /src/libsyntax/parse/mod.rs
parent81a79603c0c9c2425d0a8475d29b4ef77fae8607 (diff)
downloadrust-be6613e048c889a0aeaff056131c2406259f1fb4.tar.gz
rust-be6613e048c889a0aeaff056131c2406259f1fb4.zip
Remove the crate language
Diffstat (limited to 'src/libsyntax/parse/mod.rs')
-rw-r--r--src/libsyntax/parse/mod.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs
new file mode 100644
index 00000000000..a7c5f20fedf
--- /dev/null
+++ b/src/libsyntax/parse/mod.rs
@@ -0,0 +1,28 @@
+
+#[legacy_exports]
+mod lexer;
+#[legacy_exports]
+mod parser;
+#[legacy_exports]
+mod token;
+#[legacy_exports]
+mod comments;
+#[legacy_exports]
+mod attr;
+#[legacy_exports]
+
+/// Common routines shared by parser mods
+#[legacy_exports]
+mod common;
+
+/// Functions dealing with operator precedence
+#[legacy_exports]
+mod prec;
+
+/// Routines the parser uses to classify AST nodes
+#[legacy_exports]
+mod classify;
+
+/// Reporting obsolete syntax
+#[legacy_exports]
+mod obsolete;