@@ -14,7 +14,7 @@ pub use sealed::IntoQueryParam;
1414use crate :: dep_graph;
1515use crate :: dep_graph:: { DepKind , 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 } ;
@@ -153,7 +153,7 @@ pub struct QuerySystemFns {
153153
154154pub struct QuerySystem < ' tcx > {
155155 pub arenas : WorkerLocal < QueryArenas < ' tcx > > ,
156- pub query_vtables : PerQueryVTables < ' tcx > ,
156+ pub query_vtables : QueryVTables < ' tcx > ,
157157
158158 /// This provides access to the incremental compilation on-disk cache for query results.
159159 /// Do not access this directly. It is only meant to be used by
@@ -500,9 +500,7 @@ macro_rules! define_callbacks {
500500 }
501501
502502 /// Holds a `QueryVTable` for each query.
503- ///
504- /// ("Per" just makes this pluralized name more visually distinct.)
505- pub struct PerQueryVTables <' tcx> {
503+ pub struct QueryVTables <' tcx> {
506504 $(
507505 pub $name: :: rustc_middle:: query:: plumbing:: QueryVTable <' tcx, $name:: Storage <' tcx>>,
508506 ) *
0 commit comments