]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_metadata/link_args.rs
Rename `Item.node` to `Item.kind`
[rust.git] / src / librustc_metadata / link_args.rs
index cd5951f0e0e3c26f5d22ce7b97510149d6350b60..527d4421fca656d9a9a4250eba539713f707fe66 100644 (file)
@@ -4,21 +4,21 @@
 use rustc_target::spec::abi::Abi;
 use syntax::symbol::sym;
 
-pub fn collect<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) -> Vec<String> {
+pub fn collect(tcx: TyCtxt<'_>) -> Vec<String> {
     let mut collector = Collector {
         args: Vec::new(),
     };
     tcx.hir().krate().visit_all_item_likes(&mut collector);
 
     for attr in tcx.hir().krate().attrs.iter() {
-        if attr.path == "link_args" {
+        if attr.path == sym::link_args {
             if let Some(linkarg) = attr.value_str() {
                 collector.add_link_args(&linkarg.as_str());
             }
         }
     }
 
-    return collector.args
+    return collector.args;
 }
 
 struct Collector {
@@ -27,7 +27,7 @@ struct Collector {
 
 impl<'tcx> ItemLikeVisitor<'tcx> for Collector {
     fn visit_item(&mut self, it: &'tcx hir::Item) {
-        let fm = match it.node {
+        let fm = match it.kind {
             hir::ItemKind::ForeignMod(ref fm) => fm,
             _ => return,
         };