about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/metadata.rs
AgeCommit message (Collapse)AuthorLines
2022-09-07rustc: Parameterize `ty::Visibility` over used IDVadim Petrochenkov-1/+2
It allows using `LocalDefId` instead of `DefId` when possible, and also encode cheaper `Visibility<DefIndex>` into metadata.
2022-02-24resolve/metadata: Stop encoding macros as reexportsVadim Petrochenkov-0/+2
2022-01-09rustc_middle: Rename `Export` to `ModChild` and add some commentsVadim Petrochenkov-0/+24
Also rename `module_exports`/`export_map` to `module_reexports`/`reexport_map` for clarity.