Skip to content

Commit 2aeff0f

Browse files
committed
Auto merge of #45104 - vitiral:incr_auto_assert2, r=michaelwoerister
Incremental compilation auto assert (with except) cc @michaelwoerister bors merged part 1, so this is a WIP of part 2 of #45009 -- auto asserting DepNodes depending on the type of node rustc_clean/dirty is attached to Framework: - [x] finish auto-detection for specified DepNodes - [x] finish auto-detection for remaining DepNodes Test Refactors: - [x] consts.rs - [x] enum_constructors.rs - [x] extern_mods.rs - [x] inherent_impls.rs - [x] statics.rs - [x] struct_constructors.rs - ~~**BLOCKED** trait_defs.rs, see FIXME~~ - ~~**BLOCKED** trait_impls.rs~~ - [x] type_defs.rs - [x] enum_defs.rs
2 parents 83922fe + 80c13ce commit 2aeff0f

File tree

11 files changed

+786
-475
lines changed

11 files changed

+786
-475
lines changed

src/librustc/dep_graph/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mod safe;
1919
mod serialized;
2020

2121
pub use self::dep_tracking_map::{DepTrackingMap, DepTrackingMapConfig};
22-
pub use self::dep_node::{DepNode, DepKind, DepConstructor, WorkProductId};
22+
pub use self::dep_node::{DepNode, DepKind, DepConstructor, WorkProductId, label_strs};
2323
pub use self::graph::{DepGraph, WorkProduct, DepNodeIndex, DepNodeColor};
2424
pub use self::prev::PreviousDepGraph;
2525
pub use self::query::DepGraphQuery;

0 commit comments

Comments
 (0)