diff options
| author | Stuart Cook <Zalathar@users.noreply.github.com> | 2025-07-31 18:52:11 +1000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-31 18:52:11 +1000 | 
| commit | 017586c93abe3b7e6f495a1f2bf34df4f3693411 (patch) | |
| tree | 964e3155453e109ae9fddaf667fc730841df7bc5 /compiler/rustc_resolve/src | |
| parent | 8cca6bce4ed595c4241ccda75cbfa627892ea4b9 (diff) | |
| parent | 7aec38b6d9077bcd0b8b4b7fefaea73262ccd7d6 (diff) | |
| download | rust-017586c93abe3b7e6f495a1f2bf34df4f3693411.tar.gz rust-017586c93abe3b7e6f495a1f2bf34df4f3693411.zip | |
Rollup merge of #144713 - nnethercote:rustc_middle-ty-cleanups, r=lcnr
`rustc_middle::ty` cleanups r? `@davidtwco`
Diffstat (limited to 'compiler/rustc_resolve/src')
| -rw-r--r-- | compiler/rustc_resolve/src/lib.rs | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/compiler/rustc_resolve/src/lib.rs b/compiler/rustc_resolve/src/lib.rs index 88dfb50b47d..a70ae4fd57a 100644 --- a/compiler/rustc_resolve/src/lib.rs +++ b/compiler/rustc_resolve/src/lib.rs @@ -64,8 +64,8 @@ use rustc_middle::middle::privacy::EffectiveVisibilities; use rustc_middle::query::Providers; use rustc_middle::span_bug; use rustc_middle::ty::{ - self, DelegationFnSig, Feed, MainDefinition, RegisteredTools, ResolverGlobalCtxt, - ResolverOutputs, TyCtxt, TyCtxtFeed, Visibility, + self, DelegationFnSig, Feed, MainDefinition, RegisteredTools, ResolverAstLowering, + ResolverGlobalCtxt, TyCtxt, TyCtxtFeed, Visibility, }; use rustc_query_system::ich::StableHashingContext; use rustc_session::lint::builtin::PRIVATE_MACRO_USE; @@ -1037,6 +1037,11 @@ impl MacroData { } } +pub struct ResolverOutputs { + pub global_ctxt: ResolverGlobalCtxt, + pub ast_lowering: ResolverAstLowering, +} + /// The main resolver class. /// /// This is the visitor that walks the whole crate. | 
