Get rid of of the global_ctxt query

This commit is contained in:
bjorn3
2024-10-31 14:43:23 +00:00
parent ed14192604
commit 6ece803632
6 changed files with 48 additions and 70 deletions

View File

@@ -8,7 +8,7 @@
// tidy-alphabetical-end
mod callbacks;
mod errors;
pub mod errors;
pub mod interface;
pub mod passes;
mod proc_macro_decls;
@@ -17,7 +17,7 @@ pub mod util;
pub use callbacks::setup_callbacks;
pub use interface::{Config, run_compiler};
pub use passes::DEFAULT_QUERY_PROVIDERS;
pub use passes::{DEFAULT_QUERY_PROVIDERS, create_and_enter_global_ctxt};
pub use queries::{Linker, Queries};
#[cfg(test)]