rust/compiler/rustc_incremental/src/persist
Nicholas Nethercote c8c25ce5a1 Rename some OwnerId fields.
spastorino noticed some silly expressions like `item_id.def_id.def_id`.

This commit renames several `def_id: OwnerId` fields as `owner_id`, so
those expressions become `item_id.owner_id.def_id`.

`item_id.owner_id.local_def_id` would be even clearer, but the use of
`def_id` for values of type `LocalDefId` is *very* widespread, so I left
that alone.
2022-10-29 20:28:38 +11:00
..
fs eplace usages of vec![].into_iter with [].into_iter 2022-01-09 14:09:25 +11:00
data.rs mv compiler to compiler/ 2020-08-30 18:45:07 +03:00
dirty_clean.rs Rename some OwnerId fields. 2022-10-29 20:28:38 +11:00
file_format.rs Use delayed error handling for Encodable and Encoder infallible. 2022-06-08 07:01:26 +10:00
fs.rs Rename debugging_opts to unstable_opts 2022-07-13 17:47:06 -05:00
load.rs Rename debugging_opts to unstable_opts 2022-07-13 17:47:06 -05:00
mod.rs Stream the dep-graph to a file. 2021-03-30 18:09:59 +02:00
README.md mv compiler to compiler/ 2020-08-30 18:45:07 +03:00
save.rs Rename debugging_opts to unstable_opts 2022-07-13 17:47:06 -05:00
work_product.rs Remove unused StableMap and StableSet types from rustc_data_structures 2022-07-20 13:11:39 +02:00

For info on how the incremental compilation works, see the rustc dev guide.