auto merge of #14044 : hirschenberger/rust/lint_mut_match, r=alexcrichton

fixing #13866
This commit is contained in:
bors 2014-05-09 06:26:33 -07:00
commit 176df98a19
2 changed files with 67 additions and 21 deletions

View File

@ -1367,28 +1367,38 @@ fn check_unsafe_block(cx: &Context, e: &ast::Expr) {
}
}
fn check_unused_mut_pat(cx: &Context, p: &ast::Pat) {
match p.node {
ast::PatIdent(ast::BindByValue(ast::MutMutable),
ref path, _) if pat_util::pat_is_binding(&cx.tcx.def_map, p) => {
// `let mut _a = 1;` doesn't need a warning.
let initial_underscore = if path.segments.len() == 1 {
token::get_ident(path.segments
.get(0)
.identifier).get().starts_with("_")
} else {
cx.tcx.sess.span_bug(p.span,
"mutable binding that doesn't consist \
of exactly one segment")
};
if !initial_underscore &&
!cx.tcx.used_mut_nodes.borrow().contains(&p.id) {
cx.span_lint(UnusedMut, p.span,
"variable does not need to be mutable");
fn check_unused_mut_pat(cx: &Context, pats: &[@ast::Pat]) {
// collect all mutable pattern and group their NodeIDs by their Identifier to
// avoid false warnings in match arms with multiple patterns
let mut mutables = HashMap::new();
for &p in pats.iter() {
pat_util::pat_bindings(&cx.tcx.def_map, p, |mode, id, _, path| {
match mode {
ast::BindByValue(ast::MutMutable) => {
if path.segments.len() != 1 {
cx.tcx.sess.span_bug(p.span,
"mutable binding that doesn't consist \
of exactly one segment");
}
let ident = path.segments.get(0).identifier;
if !token::get_ident(ident).get().starts_with("_") {
mutables.insert_or_update_with(ident.name as uint, vec!(id), |_, old| {
old.push(id);
});
}
}
_ => {
}
}
});
}
let used_mutables = cx.tcx.used_mut_nodes.borrow();
for (_, v) in mutables.iter() {
if !v.iter().any(|e| used_mutables.contains(e)) {
cx.span_lint(UnusedMut, cx.tcx.map.span(*v.get(0)),
"variable does not need to be mutable");
}
_ => ()
}
}
@ -1684,7 +1694,6 @@ impl<'a> Visitor<()> for Context<'a> {
fn visit_pat(&mut self, p: &ast::Pat, _: ()) {
check_pat_non_uppercase_statics(self, p);
check_pat_uppercase_variable(self, p);
check_unused_mut_pat(self, p);
visit::walk_pat(self, p, ());
}
@ -1700,6 +1709,11 @@ impl<'a> Visitor<()> for Context<'a> {
ast::ExprParen(expr) => if self.negated_expr_id == e.id {
self.negated_expr_id = expr.id
},
ast::ExprMatch(_, ref arms) => {
for a in arms.iter() {
check_unused_mut_pat(self, a.pats.as_slice());
}
},
_ => ()
};
@ -1723,6 +1737,18 @@ impl<'a> Visitor<()> for Context<'a> {
check_unused_result(self, s);
check_unnecessary_parens_stmt(self, s);
match s.node {
ast::StmtDecl(d, _) => {
match d.node {
ast::DeclLocal(l) => {
check_unused_mut_pat(self, &[l.pat]);
},
_ => {}
}
},
_ => {}
}
visit::walk_stmt(self, s, ());
}
@ -1732,6 +1758,10 @@ impl<'a> Visitor<()> for Context<'a> {
visit::walk_fn(this, fk, decl, body, span, id, ());
};
for a in decl.inputs.iter(){
check_unused_mut_pat(self, &[a.pat]);
}
match *fk {
visit::FkMethod(_, _, m) => {
self.with_lint_attrs(m.attrs.as_slice(), |cx| {

View File

@ -28,6 +28,13 @@ fn main() {
match 30 {
mut x => {} //~ ERROR: variable does not need to be mutable
}
match (30, 2) {
(mut x, 1) | //~ ERROR: variable does not need to be mutable
(mut x, 2) |
(mut x, 3) => {
}
_ => {}
}
let x = |mut y: int| 10; //~ ERROR: variable does not need to be mutable
fn what(mut foo: int) {} //~ ERROR: variable does not need to be mutable
@ -50,6 +57,15 @@ fn main() {
}
}
match (30, 2) {
(mut x, 1) |
(mut x, 2) |
(mut x, 3) => {
x = 21
}
_ => {}
}
let x = |mut y: int| y = 32;
fn nothing(mut foo: int) { foo = 37; }