1
Fork 0

Use ast attributes every where (remove HIR attributes).

This could be a [breaking-change] if your lint or syntax extension (is that even possible?) uses HIR attributes or literals.
This commit is contained in:
Nick Cameron 2015-09-14 21:58:20 +12:00
parent d2e13e822a
commit e9f1b06329
83 changed files with 1066 additions and 2557 deletions

View file

@ -52,10 +52,10 @@ use std::sync::Arc;
use externalfiles::ExternalHtml;
use serialize::json::{self, ToJson};
use syntax::{abi, ast};
use syntax::{abi, ast, attr};
use rustc::middle::def_id::{DefId, LOCAL_CRATE};
use rustc::util::nodemap::NodeSet;
use rustc_front::{hir, attr};
use rustc_front::hir;
use clean::{self, SelfTy};
use doctree;