diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-04-06 23:14:55 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-04-06 23:14:55 +0530 |
commit | 14eabf0d32b94dba0c0ec0ffcc3b9b950d1e2821 (patch) | |
tree | 1985cbe80f9b075a28df0eceb9e6e7844458b2e5 /components/plugins/lints/unrooted_must_root.rs | |
parent | c631fcf96f03eb6113eb51f44004e68636e5eab2 (diff) | |
parent | bfadfe03490e79a2fd1a8bb14f6a57ae8604afa8 (diff) | |
download | servo-14eabf0d32b94dba0c0ec0ffcc3b9b950d1e2821.tar.gz servo-14eabf0d32b94dba0c0ec0ffcc3b9b950d1e2821.zip |
Auto merge of #10173 - servo:rustup, r=nox
Bump Rust to 2016-04-06
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10173)
<!-- Reviewable:end -->
Diffstat (limited to 'components/plugins/lints/unrooted_must_root.rs')
-rw-r--r-- | components/plugins/lints/unrooted_must_root.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/plugins/lints/unrooted_must_root.rs b/components/plugins/lints/unrooted_must_root.rs index 0bd57774d62..56db0f5f9c4 100644 --- a/components/plugins/lints/unrooted_must_root.rs +++ b/components/plugins/lints/unrooted_must_root.rs @@ -5,7 +5,7 @@ use rustc::front::map as ast_map; use rustc::lint::{LateContext, LintPass, LintArray, LateLintPass, LintContext}; use rustc::middle::pat_util::pat_is_binding; -use rustc::middle::ty; +use rustc::ty; use rustc_front::hir; use rustc_front::intravisit as visit; use syntax::attr::AttrMetaMethods; @@ -125,11 +125,11 @@ impl LateLintPass for UnrootedPass { fn check_fn(&mut self, cx: &LateContext, kind: visit::FnKind, decl: &hir::FnDecl, block: &hir::Block, span: codemap::Span, _id: ast::NodeId) { let in_new_function = match kind { - visit::FnKind::ItemFn(n, _, _, _, _, _) | - visit::FnKind::Method(n, _, _) => { + visit::FnKind::ItemFn(n, _, _, _, _, _, _) | + visit::FnKind::Method(n, _, _, _) => { n.as_str() == "new" || n.as_str().starts_with("new_") } - visit::FnKind::Closure => return, + visit::FnKind::Closure(_) => return, }; for arg in &decl.inputs { @@ -223,7 +223,7 @@ impl<'a, 'b: 'a, 'tcx: 'a+'b> visit::Visitor<'a> for FnDefVisitor<'a, 'b, 'tcx> fn visit_fn(&mut self, kind: visit::FnKind<'a>, decl: &'a hir::FnDecl, block: &'a hir::Block, span: codemap::Span, _id: ast::NodeId) { - if kind == visit::FnKind::Closure { + if let visit::FnKind::Closure(_) = kind { visit::walk_fn(self, kind, decl, block, span); } } |