Skip to content

Commit 3f9eba1

Browse files
committedNov 10, 2016
rustc: clean up lookup_item_type and remove TypeScheme.
1 parent b46ce08 commit 3f9eba1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+400
-492
lines changed
 

‎src/librustc/dep_graph/dep_tracking_map.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,15 @@ impl<M: DepTrackingMapConfig> MemoizationMap for RefCell<DepTrackingMap<M>> {
112112
/// switched to `Map(key)`. Therefore, if `op` makes use of any
113113
/// HIR nodes or shared state accessed through its closure
114114
/// environment, it must explicitly register a read of that
115-
/// state. As an example, see `type_scheme_of_item` in `collect`,
115+
/// state. As an example, see `type_of_item` in `collect`,
116116
/// which looks something like this:
117117
///
118118
/// ```
119-
/// fn type_scheme_of_item(..., item: &hir::Item) -> ty::TypeScheme<'tcx> {
119+
/// fn type_of_item(..., item: &hir::Item) -> Ty<'tcx> {
120120
/// let item_def_id = ccx.tcx.map.local_def_id(it.id);
121-
/// ccx.tcx.tcache.memoized(item_def_id, || {
121+
/// ccx.tcx.item_types.memoized(item_def_id, || {
122122
/// ccx.tcx.dep_graph.read(DepNode::Hir(item_def_id)); // (*)
123-
/// compute_type_scheme_of_item(ccx, item)
123+
/// compute_type_of_item(ccx, item)
124124
/// });
125125
/// }
126126
/// ```

‎src/librustc/infer/error_reporting.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1436,7 +1436,7 @@ impl<'a, 'gcx, 'tcx> Rebuilder<'a, 'gcx, 'tcx> {
14361436
match self.tcx.expect_def(cur_ty.id) {
14371437
Def::Enum(did) | Def::TyAlias(did) |
14381438
Def::Struct(did) | Def::Union(did) => {
1439-
let generics = self.tcx.lookup_generics(did);
1439+
let generics = self.tcx.item_generics(did);
14401440

14411441
let expected =
14421442
generics.regions.len() as u32;

0 commit comments

Comments
 (0)
Please sign in to comment.