]> git.lizzy.rs Git - rust.git/blobdiff - src/libsyntax_expand/lib.rs
Move syntax_expand::config to rustc_parse::config
[rust.git] / src / libsyntax_expand / lib.rs
index 10eb3ecb20bd02d542c3f8e33db66bc2ac96b12a..0aa34af7a762d32708429d2236d988d9e8f31517 100644 (file)
@@ -33,6 +33,35 @@ macro_rules! panictry {
 pub mod base;
 pub mod build;
 pub mod expand;
+pub use rustc_parse::config;
 pub mod proc_macro;
 
 crate mod mbe;
+
+// HACK(Centril, #64197): These shouldn't really be here.
+// Rather, they should be with their respective modules which are defined in other crates.
+// However, since for now constructing a `ParseSess` sorta requires `config` from this crate,
+// these tests will need to live here in the iterim.
+
+#[cfg(test)]
+mod tests;
+#[cfg(test)]
+mod parse {
+    #[cfg(test)]
+    mod tests;
+    #[cfg(test)]
+    mod lexer {
+        #[cfg(test)]
+        mod tests;
+    }
+}
+#[cfg(test)]
+mod tokenstream {
+    #[cfg(test)]
+    mod tests;
+}
+#[cfg(test)]
+mod mut_visit {
+    #[cfg(test)]
+    mod tests;
+}