about summary refs log tree commit diff
path: root/src/libsyntax/lib.rs
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-01-11 17:02:46 +0100
committerMazdak Farrokhzad <twingoow@gmail.com>2020-02-01 18:59:49 +0100
commite233331a519408edf60ac1c7dee4a9cefe8c8756 (patch)
treeb70bcec238312d4d4f6620cf11e55f05ed3585c7 /src/libsyntax/lib.rs
parent98fd6a5c88a44214f15a43a9e633e3b71876bdb3 (diff)
syntax::print -> new crate rustc_ast_pretty
Diffstat (limited to 'src/libsyntax/lib.rs')
-rw-r--r--src/libsyntax/lib.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs
index a0b2d50cef3..c9800da700f 100644
--- a/src/libsyntax/lib.rs
+++ b/src/libsyntax/lib.rs
@@ -47,12 +47,6 @@ pub mod token;
 pub mod tokenstream;
 pub mod visit;
 
-pub mod print {
-    mod helpers;
-    pub mod pp;
-    pub mod pprust;
-}
-
 use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
 
 /// Requirements for a `StableHashingContext` to be used in this crate.