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 211b05a commit 6f04883Copy full SHA for 6f04883
compiler/rustc_query_system/src/query/config.rs
@@ -80,13 +80,6 @@ pub trait QueryAccessors<CTX: QueryContext>: QueryConfig {
80
where
81
CTX: 'a;
82
83
- fn to_dep_node(tcx: CTX, key: &Self::Key) -> DepNode<CTX::DepKind>
84
- where
85
- Self::Key: crate::dep_graph::DepNodeParams<CTX>,
86
- {
87
- DepNode::construct(tcx, Self::DEP_KIND, key)
88
- }
89
-
90
// Don't use this method to compute query results, instead use the methods on TyCtxt
91
fn compute(tcx: CTX, key: Self::Key) -> Self::Value;
92
0 commit comments