Move the query list into a new `rustc_middle::queries` module This moves the query list from `rustc_middle::query` into a new `rustc_middle::queries` module. This splits up the use of the query system from the remaining implementation of it in `rustc_middle::query`, which conceptually belong to `rustc_query_system`. The goal is to let rustc crates define queries with their own `queries` module, and this makes `rustc_middle` also fit this pattern. The inner `queries` module used by the macros are renamed to `query_info`, so it doesn't conflict with the new outer name. |
||
|---|---|---|
| .. | ||
| lib.rs | ||
| plumbing.rs | ||
| profiling_support.rs | ||
| README.md | ||
For more information about how the query system works, see the rustc dev guide.