chaned dep nodes impl

This commit is contained in:
achernyak 2017-04-29 11:04:55 -05:00
parent ad1959e8e4
commit 00d02cf910
1 changed files with 2 additions and 2 deletions

View File

@ -257,8 +257,8 @@ impl<D: Clone + Debug> DepNode<D> {
let def_ids: Option<Vec<E>> = def_ids.iter().map(op).collect();
def_ids.map(|d| ProjectionCache { def_ids: d })
}
DescribeDef(ref d) => op(d).map(MetaData),
DefSpan(ref d) => op(d).map(MetaData),
DescribeDef(ref d) => op(d).map(DescribeDef),
DefSpan(ref d) => op(d).map(DefSpan),
}
}
}