We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 310d899 commit 47af3f1Copy full SHA for 47af3f1
src/librustc/dep_graph/dep_node.rs
@@ -32,6 +32,12 @@ pub enum DepNode<D: Clone + Debug> {
32
// Represents the HIR node with the given node-id
33
Hir(D),
34
35
+ // Represents the meta-data for a node. For local def-ids, this is
36
+ // created by trans. For remote def-ids, we add a read of this
37
+ // node each time we pull the information for an item out of the
38
+ // crate store.
39
+ MetaData(D),
40
+
41
// Represents different phases in the compiler.
42
CrateReader,
43
CollectLanguageItems,
0 commit comments