middle: typeck: remove dead code

This commit is contained in:
Corey Richardson 2014-04-01 10:46:28 -04:00
parent 009389f051
commit 3bd0a37c0b
1 changed files with 0 additions and 9 deletions

View File

@ -264,15 +264,6 @@ pub fn write_substs_to_tcx(tcx: &ty::ctxt,
tcx.node_type_substs.borrow_mut().insert(node_id, substs);
}
}
pub fn write_tpt_to_tcx(tcx: &ty::ctxt,
node_id: ast::NodeId,
tpt: &ty::ty_param_substs_and_ty) {
write_ty_to_tcx(tcx, node_id, tpt.ty);
if !tpt.substs.tps.is_empty() {
write_substs_to_tcx(tcx, node_id, tpt.substs.tps.clone());
}
}
pub fn lookup_def_tcx(tcx:&ty::ctxt, sp: Span, id: ast::NodeId) -> ast::Def {
match tcx.def_map.borrow().find(&id) {
Some(&x) => x,