@@ -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 } ;
@@ -217,7 +217,7 @@ pub struct QuerySystemFns {
217217
218218pub struct QuerySystem < ' tcx > {
219219 pub arenas : WorkerLocal < QueryArenas < ' tcx > > ,
220- pub query_vtables : PerQueryVTables < ' tcx > ,
220+ pub query_vtables : QueryVTables < ' tcx > ,
221221
222222 /// This provides access to the incremental compilation on-disk cache for query results.
223223 /// Do not access this directly. It is only meant to be used by
@@ -542,9 +542,7 @@ macro_rules! define_callbacks {
542542 }
543543
544544 /// Holds a `QueryVTable` for each query.
545- ///
546- /// ("Per" just makes this pluralized name more visually distinct.)
547- pub struct PerQueryVTables <' tcx> {
545+ pub struct QueryVTables <' tcx> {
548546 $(
549547 pub $name: :: rustc_middle:: query:: plumbing:: QueryVTable <' tcx, $name:: Storage <' tcx>>,
550548 ) *
0 commit comments