Skip to content

Commit 1660c3b

Browse files
committed
librustc: Use Typer's node_ty method instead of free function in ExprUseVisitor.
1 parent 5fb2dfa commit 1660c3b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/librustc/middle/expr_use_visitor.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ impl<'d,'t,TYPER:mc::Typer> ExprUseVisitor<'d,'t,TYPER> {
234234
decl: &ast::FnDecl,
235235
body: &ast::Block) {
236236
for arg in decl.inputs.iter() {
237-
let arg_ty = ty::node_id_to_type(self.tcx(), arg.pat.id);
237+
let arg_ty = return_if_err!(self.typer.node_ty(arg.pat.id));
238238

239239
let arg_cmt = self.mc.cat_rvalue(
240240
arg.id,
@@ -414,7 +414,7 @@ impl<'d,'t,TYPER:mc::Typer> ExprUseVisitor<'d,'t,TYPER> {
414414

415415
// Fetch the type of the value that the iteration yields to
416416
// produce the pattern's categorized mutable type.
417-
let pattern_type = ty::node_id_to_type(self.tcx(), pat.id);
417+
let pattern_type = return_if_err!(self.typer.node_ty(pat.id));
418418
let pat_cmt = self.mc.cat_rvalue(pat.id,
419419
pat.span,
420420
ty::ReScope(blk.id),
@@ -828,7 +828,7 @@ impl<'d,'t,TYPER:mc::Typer> ExprUseVisitor<'d,'t,TYPER> {
828828
pat.repr(tcx));
829829

830830
// pat_ty: the type of the binding being produced.
831-
let pat_ty = ty::node_id_to_type(tcx, pat.id);
831+
let pat_ty = return_if_err!(typer.node_ty(pat.id));
832832

833833
// Each match binding is effectively an assignment to the
834834
// binding being produced.
@@ -971,7 +971,7 @@ impl<'d,'t,TYPER:mc::Typer> ExprUseVisitor<'d,'t,TYPER> {
971971
// Create the cmt for the variable being borrowed, from the
972972
// caller's perspective
973973
let var_id = upvar_def.def_id().node;
974-
let var_ty = ty::node_id_to_type(self.tcx(), var_id);
974+
let var_ty = try!(self.typer.node_ty(var_id));
975975
self.mc.cat_def(closure_id, closure_span, var_ty, upvar_def)
976976
}
977977
}

0 commit comments

Comments
 (0)