@@ -14,7 +14,7 @@ pub use sealed::IntoQueryParam;
1414use crate :: dep_graph;
1515use crate :: dep_graph:: { DepKind , DepNode , DepNodeIndex , SerializedDepNodeIndex } ;
1616use crate :: ich:: StableHashingContext ;
17- use crate :: queries:: { ExternProviders , PerQueryVTables , Providers , QueryArenas } ;
17+ use crate :: queries:: { ExternProviders , Providers , QueryArenas , QueryVTables } ;
1818use crate :: query:: on_disk_cache:: { CacheEncoder , EncodedDepNodeIndex , OnDiskCache } ;
1919use crate :: query:: stack:: { QueryStackDeferred , QueryStackFrame , QueryStackFrameExtra } ;
2020use crate :: query:: { QueryCache , QueryInfo , QueryJob } ;
@@ -229,7 +229,7 @@ pub struct QuerySystemFns {
229229
230230pub struct QuerySystem < ' tcx > {
231231 pub arenas : WorkerLocal < QueryArenas < ' tcx > > ,
232- pub query_vtables : PerQueryVTables < ' tcx > ,
232+ pub query_vtables : QueryVTables < ' tcx > ,
233233
234234 /// This provides access to the incremental compilation on-disk cache for query results.
235235 /// Do not access this directly. It is only meant to be used by
@@ -588,9 +588,7 @@ macro_rules! define_callbacks {
588588 ) *
589589
590590 /// Holds a `QueryVTable` for each query.
591- ///
592- /// ("Per" just makes this pluralized name more visually distinct.)
593- pub struct PerQueryVTables <' tcx> {
591+ pub struct QueryVTables <' tcx> {
594592 $(
595593 pub $name: :: rustc_middle:: query:: plumbing:: QueryVTable <' tcx, $name:: Storage <' tcx>>,
596594 ) *
0 commit comments