We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rustc_middle::query
1 parent 30b3f35 commit 5cf8274Copy full SHA for 5cf8274
compiler/rustc_middle/src/query/mod.rs
@@ -1,3 +1,9 @@
1
+//! Defines the various compiler queries.
2
+//!
3
+//! For more information on the query system, see
4
+//! ["Queries: demand-driven compilation"](https://rustc-dev-guide.rust-lang.org/query.html).
5
+//! This chapter includes instructions for adding new queries.
6
+
7
// Each of these queries corresponds to a function pointer field in the
8
// `Providers` struct for requesting a value of that type, and a method
9
// on `tcx: TyCtxt` (and `tcx.at(span)`) for doing that request in a way
0 commit comments