We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fc3deb commit c168fbaCopy full SHA for c168fba
compiler/rustc_middle/src/ty/context.rs
@@ -1077,6 +1077,8 @@ pub struct GlobalCtxt<'tcx> {
1077
/// Output of the resolver.
1078
pub(crate) untracked_resolutions: ty::ResolverOutputs,
1079
untracked_resolver_for_lowering: Steal<ty::ResolverAstLowering>,
1080
+ /// The entire crate as AST. This field serves as the input for the hir_crate query,
1081
+ /// which lowers it from AST to HIR. It must not be read or used by anything else.
1082
pub untracked_crate: Steal<Lrc<ast::Crate>>,
1083
1084
/// This provides access to the incremental compilation on-disk cache for query results.
0 commit comments