about summary refs log tree commit diff
path: root/compiler/rustc_interface/src/lib.rs
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-10-31 15:46:11 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-12-14 14:24:49 +0000
commit87802536f4abb1792994becc5bd66110fe5db8fa (patch)
treebb61bdc56caf92e4d91ca0f6f8c21817ef93f907 /compiler/rustc_interface/src/lib.rs
parent6ece8036329ac01eca7724c3b4b691b258d04e16 (diff)
downloadrust-87802536f4abb1792994becc5bd66110fe5db8fa.tar.gz
rust-87802536f4abb1792994becc5bd66110fe5db8fa.zip
Remove the parse query
Diffstat (limited to 'compiler/rustc_interface/src/lib.rs')
-rw-r--r--compiler/rustc_interface/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_interface/src/lib.rs b/compiler/rustc_interface/src/lib.rs
index 8cb71aff23a..a2a29612e48 100644
--- a/compiler/rustc_interface/src/lib.rs
+++ b/compiler/rustc_interface/src/lib.rs
@@ -17,8 +17,8 @@ pub mod util;
 
 pub use callbacks::setup_callbacks;
 pub use interface::{Config, run_compiler};
-pub use passes::{DEFAULT_QUERY_PROVIDERS, create_and_enter_global_ctxt};
-pub use queries::{Linker, Queries};
+pub use passes::{DEFAULT_QUERY_PROVIDERS, create_and_enter_global_ctxt, parse};
+pub use queries::Linker;
 
 #[cfg(test)]
 mod tests;