We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8c9dd4 commit 391bdb3Copy full SHA for 391bdb3
compiler/rustc_interface/src/passes.rs
@@ -44,7 +44,7 @@ use std::sync::{Arc, LazyLock};
44
use std::{env, fs, iter};
45
use tracing::{info, instrument};
46
47
-pub fn parse<'a>(sess: &'a Session) -> Result<ast::Crate> {
+pub(crate) fn parse<'a>(sess: &'a Session) -> Result<ast::Crate> {
48
let krate = sess
49
.time("parse_crate", || {
50
let mut parser = unwrap_or_emit_fatal(match &sess.io.input {
@@ -643,7 +643,7 @@ pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
643
*providers
644
});
645
646
-pub fn create_global_ctxt<'tcx>(
+pub(crate) fn create_global_ctxt<'tcx>(
647
compiler: &'tcx Compiler,
648
mut krate: rustc_ast::Crate,
649
gcx_cell: &'tcx OnceLock<GlobalCtxt<'tcx>>,
0 commit comments