mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 02:00:00 +03:00
ff9a9ea07b
Split the node_id_to_def_id table into a per-owner table *[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/pull/138995)* My goal is to split all the resolver tables that get passed to act lowering into per-owner tables, so that all information that ast lowering needs from the resolver is separated by owners. This should allow us to fully split ast lowering to have one query invocation per owner that steal the individual resolver results for each owner. part of https://github.com/rust-lang/rust-project-goals/issues/620