aboutsummaryrefslogtreecommitdiffstats
path: root/components/macros/lib.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2014-09-16 22:35:41 +0530
committerManish Goregaokar <manishsmail@gmail.com>2014-09-16 22:54:24 +0530
commitbded5c370344c5ed77b706c36e0caf911fbe4e3d (patch)
treee0a44d00ec4d20e7057ff271a968b4454cfea971 /components/macros/lib.rs
parent12dc54d23849f6bc90667e2df432e30587e4af49 (diff)
downloadservo-bded5c370344c5ed77b706c36e0caf911fbe4e3d.tar.gz
servo-bded5c370344c5ed77b706c36e0caf911fbe4e3d.zip
Add unrooted_must_root lint for usages of JS<T> in let/for bindings
Diffstat (limited to 'components/macros/lib.rs')
-rw-r--r--components/macros/lib.rs44
1 files changed, 39 insertions, 5 deletions
diff --git a/components/macros/lib.rs b/components/macros/lib.rs
index 9191af72ce8..5b9aa64a52d 100644
--- a/components/macros/lib.rs
+++ b/components/macros/lib.rs
@@ -85,7 +85,8 @@ impl LintPass for UnrootedPass {
fn check_struct_def(&mut self, cx: &Context, def: &ast::StructDef, _i: ast::Ident, _gen: &ast::Generics, id: ast::NodeId) {
if cx.tcx.map.expect_item(id).attrs.iter().all(|a| !a.check_name("must_root")) {
for ref field in def.fields.iter() {
- lint_unrooted_ty(cx, &*field.node.ty, "Type must be rooted, use #[must_root] on the struct definition to propagate");
+ lint_unrooted_ty(cx, &*field.node.ty,
+ "Type must be rooted, use #[must_root] on the struct definition to propagate");
}
}
}
@@ -96,7 +97,8 @@ impl LintPass for UnrootedPass {
match var.node.kind {
ast::TupleVariantKind(ref vec) => {
for ty in vec.iter() {
- lint_unrooted_ty(cx, &*ty.ty, "Type must be rooted, use #[must_root] on the enum definition to propagate")
+ lint_unrooted_ty(cx, &*ty.ty,
+ "Type must be rooted, use #[must_root] on the enum definition to propagate")
}
}
_ => () // Struct variants already caught by check_struct_def
@@ -104,23 +106,55 @@ impl LintPass for UnrootedPass {
}
}
- fn check_fn(&mut self, cx: &Context, kind: &syntax::visit::FnKind, decl: &ast::FnDecl, block: &ast::Block, _span: syntax::codemap::Span, _id: ast::NodeId) {
+ fn check_fn(&mut self, cx: &Context, kind: &syntax::visit::FnKind, decl: &ast::FnDecl,
+ block: &ast::Block, _span: syntax::codemap::Span, _id: ast::NodeId) {
match *kind {
syntax::visit::FkItemFn(i, _, _, _) |
syntax::visit::FkMethod(i, _, _) if i.as_str() == "new" || i.as_str() == "new_inherited" => {
-
+ return;
}
_ => ()
}
match block.rules {
ast::DefaultBlock => {
for arg in decl.inputs.iter() {
- lint_unrooted_ty(cx, &*arg.ty, "Type must be rooted, use #[must_root] on the struct definition to propagate")
+ lint_unrooted_ty(cx, &*arg.ty,
+ "Type must be rooted, use #[must_root] on the struct definition to propagate")
}
}
_ => () // fn is `unsafe`
}
}
+
+ // Partially copied from rustc::middle::lint::builtin
+ // Catches `let` statements which store a #[must_root] value
+ // Expressions which return out of blocks eventually end up in a `let`
+ // statement or a function return (which will be caught when it is used elsewhere)
+ fn check_stmt(&mut self, cx: &Context, s: &ast::Stmt) {
+ // Catch the let binding
+ let expr = match s.node {
+ ast::StmtDecl(ref decl, _) => match decl.node {
+ ast::DeclLocal(ref loc) => match loc.init {
+ Some(ref e) => &**e,
+ _ => return
+ },
+ _ => return
+ },
+ _ => return
+ };
+
+ let t = expr_ty(cx.tcx, &*expr);
+ match ty::get(t).sty {
+ ty::ty_struct(did, _) |
+ ty::ty_enum(did, _) => {
+ if ty::has_attr(cx.tcx, did, "must_root") {
+ cx.span_lint(UNROOTED_MUST_ROOT, expr.span,
+ format!("Expression of type {} must be rooted", t.repr(cx.tcx)).as_slice());
+ }
+ }
+ _ => {}
+ }
+ }
}
#[plugin_registrar]